Ensuring properties are different when they're edited, + linux installation editions*.

*in preparation for snapcraft.
- Moving application launch to it's separate file
- Removing "install_after_setup" script because it's redundant with setup.py.
- Fixed issue with xdg-icon-resource not being able to install svg files.
- Better prefix handling in setup.py
- Adding logarithmplotter.svg to import files
- Adding weight for mime-type not to be overloaded by text/plain.
- Using more appropriate properties for desktop files.

Also:
- Fixed reference link in MacOS plist file.
This commit is contained in:
Adsooi 2021-07-31 01:40:51 +02:00
parent ee15835dbb
commit 10fa30e2aa
No known key found for this signature in database
GPG key ID: 9C87C7D3A69E6BBE
14 changed files with 86 additions and 197 deletions

4
run.py
View file

@ -1,7 +1,7 @@
def run():
import LogarithmPlotter
LogarithmPlotter.run()
from LogarithmPlotter import logarithmplotter
logarithmplotter.run()
if __name__ == "__main__":
run()