Compare commits

...

3 commits

Author SHA1 Message Date
b009042241
Small fix for flatpak.
All checks were successful
continuous-integration/drone/push Build is passing
2022-01-24 19:27:02 +01:00
add2ab42a7
Merge branch 'master' of https://git.ad5001.eu/Ad5001/LogarithmPlotter 2022-01-24 19:08:53 +01:00
b954650029
Preparing v0.1.5
This reverts commit 216accd94f.
2022-01-24 19:05:58 +01:00
2 changed files with 4 additions and 1 deletions

View file

@ -1,7 +1,7 @@
#!/bin/bash
# Giving pyinstaller another run
rm $(find . -name "*.qmlc")
rm $(find . -name "*.pyc")
rm -rf $(find . -name "*.pyc")
wine python -m pip install -U pyinstaller
# Building translations

View file

@ -78,6 +78,9 @@ def package_data():
for d,folders,files in os.walk("LogarithmPlotter/qml"):
d = d[17:]
pkg_data += [os.path.join(d, f) for f in files]
for d,folders,files in os.walk("LogarithmPlotter/i18n"):
d = d[17:]
pkg_data += [os.path.join(d, f) for f in files]
return pkg_data
data_files = []