Skip to content

Commit

Permalink
v0.4.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ksharindam committed Jul 27, 2024
1 parent 0eeb93b commit c2ccc7d
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 9 deletions.
5 changes: 5 additions & 0 deletions AppImage/appimage_gen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,16 @@ linuxdeploy --appdir . --icon-file=../../data/chemcanvas.svg
# compile python bytecodes
find usr/lib -iname '*.py' -exec python3 -m py_compile {} \;

# dump build info
lsb_release -a > usr/share/BUILD_INFO
ldd --version | grep GLIBC >> usr/share/BUILD_INFO

cd ..

# fixes firejail permission issue
chmod -R 0755 AppDir


if [ "$MULTIARCH" = "x86_64-linux-gnu" ]; then
appimagetool -u "zsync|https://github.com/ksharindam/chemcanvas/releases/latest/download/ChemCanvas-x86_64.AppImage.zsync" AppDir
else
Expand Down
29 changes: 25 additions & 4 deletions AppImage/python3.7-stdlib.txt
Original file line number Diff line number Diff line change
@@ -1,43 +1,61 @@
abc.py
base64.py
bisect.py
calendar.py
codecs.py
collections
_collections_abc.py
contextlib.py
copy.py
copyreg.py
csv.py
encodings
datetime.py
enum.py
functools.py
genericpath.py
hashlib.py
heapq.py
importlib
io.py
keyword.py
lib-dynload
linecache.py
locale.py
operator.py
os.py
platform.py
posixpath.py
quopri.py
random.py
reprlib.py
re.py
selectors.py
signal.py
_sitebuiltins.py
site.py
socket.py
sre_compile.py
sre_constants.py
sre_parse.py
ssl.py
stat.py
string.py
stringprep.py
struct.py
subprocess.py
tempfile.py
threading.py
tokenize.py
token.py
traceback.py
types.py
uu.py
warnings.py
weakref.py
_weakrefset.py
collections
email
encodings
http
importlib
urllib
xml/__init__.py
xml/dom
xml/parsers
Expand All @@ -47,5 +65,8 @@ lib-dynload/_codecs_iso2022.cpython-37m-x86_64-linux-gnu.so
lib-dynload/_codecs_jp.cpython-37m-x86_64-linux-gnu.so
lib-dynload/_codecs_kr.cpython-37m-x86_64-linux-gnu.so
lib-dynload/_codecs_tw.cpython-37m-x86_64-linux-gnu.so
lib-dynload/_csv.cpython-37m-x86_64-linux-gnu.so
lib-dynload/_hashlib.cpython-37m-x86_64-linux-gnu.so
lib-dynload/_multibytecodec.cpython-37m-x86_64-linux-gnu.so
lib-dynload/readline.cpython-37m-x86_64-linux-gnu.so
lib-dynload/_ssl.cpython-37m-x86_64-linux-gnu.so
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.4.0"
!define PROG_VERSION "0.4.1"
!define PROG_PUBLISHER "Arindamsoft"
!define PROG_ICON "chemcanvas.ico"
!define PROG_EXEC "chemcanvas.exe"
Expand Down
8 changes: 4 additions & 4 deletions Windows/version_info.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
VSVersionInfo(
ffi=FixedFileInfo(
# filevers and prodvers should be always a tuple with four items: (1, 2, 3, 4)
filevers=(0, 4, 0, 0),
prodvers=(0, 4, 0, 0),
filevers=(0, 4, 1, 0),
prodvers=(0, 4, 1, 0),
# Do not touch these values
mask=0x0,
flags=0x0,
Expand All @@ -22,10 +22,10 @@ VSVersionInfo(
StringTable(
'040904b0',
[StringStruct('FileDescription', 'ChemCanvas'),
StringStruct('FileVersion', '0.4.0'),
StringStruct('FileVersion', '0.4.1'),
StringStruct('LegalCopyright', 'Arindam Chaudhuri <[email protected]>'),
StringStruct('ProductName', 'ChemCanvas'),
StringStruct('ProductVersion', '0.4.0')]),
StringStruct('ProductVersion', '0.4.1')]),
StringStruct('CompanyName', 'Arindamsoft')
]),
VarFileInfo([VarStruct('Translation', [1033, 1200])])
Expand Down

0 comments on commit c2ccc7d

Please sign in to comment.