Fixing the icon on wayland, building on MacOS, and date on changelog
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
80f1077b35
commit
f730121047
3 changed files with 3 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## v0.5.0 (11 Jan 2023)
|
## v0.5.0 (11 Jan 2024)
|
||||||
|
|
||||||
**New**
|
**New**
|
||||||
|
|
||||||
|
|
|
@ -89,6 +89,7 @@ def run():
|
||||||
QApplication.setAttribute(Qt.AA_EnableHighDpiScaling)
|
QApplication.setAttribute(Qt.AA_EnableHighDpiScaling)
|
||||||
app = QApplication(argv)
|
app = QApplication(argv)
|
||||||
app.setApplicationName("LogarithmPlotter")
|
app.setApplicationName("LogarithmPlotter")
|
||||||
|
app.setDesktopFileName("eu.ad5001.LogarithmPlotter.desktop")
|
||||||
app.setOrganizationName("Ad5001")
|
app.setOrganizationName("Ad5001")
|
||||||
app.styleHints().setShowShortcutsInContextMenus(True)
|
app.styleHints().setShowShortcutsInContextMenus(True)
|
||||||
app.setWindowIcon(QIcon(path.realpath(path.join(getcwd(), "logarithmplotter.svg"))))
|
app.setWindowIcon(QIcon(path.realpath(path.join(getcwd(), "logarithmplotter.svg"))))
|
||||||
|
|
|
@ -5,7 +5,7 @@ cd "$DIR/.."
|
||||||
|
|
||||||
rm $(find . -name "*.qmlc")
|
rm $(find . -name "*.qmlc")
|
||||||
rm $(find . -name "*.pyc")
|
rm $(find . -name "*.pyc")
|
||||||
python3 -m pip install -U pyinstaller<6.0
|
python3 -m pip install -U "pyinstaller<6.0"
|
||||||
|
|
||||||
# Building translations
|
# Building translations
|
||||||
cd "LogarithmPlotter/i18n/"
|
cd "LogarithmPlotter/i18n/"
|
||||||
|
|
Loading…
Reference in a new issue