-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.py
34 lines (28 loc) · 1.24 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import multiprocessing
import os
import sys
from PyQt5.QtGui import QIcon
from base.model.application import AppInfo
from base.startup import start
from cat.utils import HTMLStr
def run() -> None:
if getattr(sys, 'frozen', False):
multiprocessing.freeze_support()
iconPath = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'icon/icon.png')
appOptions = AppInfo(
appName="Datapack Editor",
appDisplayName="Datapack Editor",
appVersion="0.9.0-alpha",
organization="Joachim Coenen",
windowIcon=lambda: QIcon(iconPath),
copyright=HTMLStr("© 2024 Joachim Coenen. All Rights Reserved"),
about=HTMLStr("""Written and maintained by <a href="https://www.github.com/JoachimCoenen">Joachim Coenen</a>.\n<br/>""" +
"""If you have any questions, bugs or improvements, please share them on GitHub.\n<br/>"""),
homepageLink="https://www.github.com/JoachimCoenen/Datapack-Editor",
disclaimer=HTMLStr("""Some information is taken from the Minecraft Wiki (see <a href="https://minecraft.wiki/w/Minecraft_Wiki:General_disclaimer">Minecraft Wiki:General disclaimer</a>).\n<br/>""" +
"""\n<br/>""" +
"""This program is not affiliated with Mojang Studios.""")
)
start(sys.argv, appOptions)
if __name__ == '__main__':
run()