Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v2.2.1 #38

Merged
merged 2 commits into from
Oct 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# v2.2.1

- only re-render for non-svg export

# v2.2.0

- make facet outline optional
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This work implements Caspar-Klug Theory to generate high-quality, vectorized cap

# Run

- Run democapsid (v2.2.0): [https://dnanto.github.io/democapsid/app.html](https://dnanto.github.io/democapsid/app.html).
- Run democapsid (v2.2.1): [https://dnanto.github.io/democapsid/app.html](https://dnanto.github.io/democapsid/app.html).

![screenshot.png](screenshot.png)

Expand Down
2 changes: 1 addition & 1 deletion app.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<section class="layout">
<div class="sidebar">
<fieldset style="text-align: center">
<b>&#11041;&nbsp;<a href="https://github.com/dnanto/democapsid">democapsid v2.2.0</a>&nbsp;&#11041;</b>
<b>&#11041;&nbsp;<a href="https://github.com/dnanto/democapsid">democapsid v2.2.1</a>&nbsp;&#11041;</b>
</fieldset>
<fieldset>
<legend>model</legend>
Expand Down
2 changes: 1 addition & 1 deletion js/app.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* democapsid v2.2.0 - Render viral capsids in the browser and export SVG.
* democapsid v2.2.1 - Render viral capsids in the browser and export SVG.
* MIT License
* Copyright (c) 2020 - 2024, Daniel Antonio Negrón (dnanto/remaindeer)
*/
Expand Down
4 changes: 2 additions & 2 deletions js/democapsid.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/*!
* democapsid v2.2.0 - Render viral capsids in the browser and export SVG.
* democapsid v2.2.1 - Render viral capsids in the browser and export SVG.
* MIT License
* Copyright (c) 2020 - 2024, Daniel Antonio Negrón (dnanto/remaindeer)
*/

const VERSION = "2.2.0";
const VERSION = "2.2.1";

const SQRT3 = Math.sqrt(3);
const SQRT5 = Math.sqrt(5);
Expand Down
4 changes: 2 additions & 2 deletions js/democapsid.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "democapsid",
"version": "2.2.0",
"version": "2.2.1",
"author": "Daniel Antonio Negrón",
"license": "MIT",
"description": "Render viral capsids in the browser and export SVG.",
Expand Down
Loading