Skip to content

Commit

Permalink
v0.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ksharindam committed Feb 17, 2024
1 parent c319016 commit 7c7b85f
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 2 deletions.
1 change: 1 addition & 0 deletions AppImage/python3.7-stdlib.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ collections
_collections_abc.py
copy.py
copyreg.py
csv.py
encodings
enum.py
functools.py
Expand Down
2 changes: 1 addition & 1 deletion Windows/ChemCanvas.nsi
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
; HM NIS Edit Wizard helper defines
!define PROG_NAME "ChemCanvas"
!define PROG_VERSION "0.1.0"
!define PROG_VERSION "0.3.0"
!define PROG_PUBLISHER "Arindamsoft"
!define PROG_ICON "chemcanvas.ico"
!define PROG_EXEC "chemcanvas.exe"
Expand Down
3 changes: 2 additions & 1 deletion Windows/chemcanvas.spec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ a = Analysis(
['../chemcanvas.py'],
pathex=['../chemcanvas'],
binaries=[],
datas=[("../chemcanvas/templates/*", "templates")],
datas=[("../chemcanvas/templates/*", "templates"), ("../chemcanvas/periodic_table.csv", ".")],
hiddenimports=[],
hookspath=[],
hooksconfig={},
Expand All @@ -32,6 +32,7 @@ exe = EXE(
codesign_identity=None,
entitlements_file=None,
icon="../data/chemcanvas.ico",
version='version_info.txt',
)
coll = COLLECT(
exe,
Expand Down
33 changes: 33 additions & 0 deletions Windows/version_info.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# UTF-8
#
# Extracted from a executable using pyi-grab_version command
# For more details about fixed file info 'ffi' see:
# http://msdn.microsoft.com/en-us/library/ms646997.aspx
VSVersionInfo(
ffi=FixedFileInfo(
# filevers and prodvers should be always a tuple with four items: (1, 2, 3, 4)
filevers=(0, 3, 0, 0),
prodvers=(0, 3, 0, 0),
# Do not touch these values
mask=0x0,
flags=0x0,
OS=0x0,
fileType=0x0,
subtype=0x0,
date=(0, 0)
),
kids=[
StringFileInfo(
[
StringTable(
'040904b0',
[StringStruct('FileDescription', 'ChemCanvas'),
StringStruct('FileVersion', '0.3.0'),
StringStruct('LegalCopyright', 'Arindam Chaudhuri <arindamsoft94@gmail.com>'),
StringStruct('ProductName', 'ChemCanvas'),
StringStruct('ProductVersion', '0.3.0')]),
StringStruct('CompanyName', 'Arindamsoft')
]),
VarFileInfo([VarStruct('Translation', [1033, 1200])])
]
)

0 comments on commit 7c7b85f

Please sign in to comment.