Skip to content

Commit

Permalink
show the ZnDraw version in the GUI next to the title
Browse files Browse the repository at this point in the history
  • Loading branch information
PythonFZ committed Jan 7, 2025
1 parent 7398205 commit ae9f7e0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "my-app",
"name": "zndraw",
"private": true,
"version": "0.0.0",
"version": "0.5.8",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
3 changes: 2 additions & 1 deletion app/src/components/headbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import {
Row,
ToggleButton,
} from "react-bootstrap";
import {version} from "../../package.json";
import { MdOutlineAutoGraph } from "react-icons/md";
import { SiMoleculer } from "react-icons/si";
import Select from "react-select";
Expand Down Expand Up @@ -895,7 +896,7 @@ const HeadBar = ({
href="https://github.com/zincware/zndraw"
target="_blank"
>
ZnDraw
ZnDraw {version}
</Button>
{showSiMGen && (
<>
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "zndraw"
version = "0.5.7"
version = "0.5.8"
description = "Display and Edit Molecular Structures and Trajectories in the Browser."
authors = ["zincwarecode <[email protected]>"]
license = "License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)"
Expand Down

0 comments on commit ae9f7e0

Please sign in to comment.