mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-03 19:28:25 +02:00
* added utf8 support to ct_config.json * Updated track * added 377 new tracks * added 377 tracks to ct_config, also added tracks_list to make edtiting track way easier * renamed (Vide).wu8 to just .wu8, to avoid problem with translation * updated README.md * added test files and distribution.txt to .gitignore * added discord and wiki link * game's version is now in definition.py * update will now only enable if gitversion is newer than local version * added math to lib * renamed .wu8 to _.wu8 * removed 28 unused track * replaced "" by "_" * prepared version file * Removed 5 unused files * config tracks_list is now supported * added missing game prefix * A track name was too long for the game
33 lines
No EOL
957 B
Python
33 lines
No EOL
957 B
Python
from tkinter import *
|
|
from PIL import Image, ImageFont, ImageDraw
|
|
from tkinter import messagebox, filedialog, ttk
|
|
from threading import Thread
|
|
import subprocess
|
|
import requests
|
|
import zipfile
|
|
import shutil
|
|
import json
|
|
import glob
|
|
import math
|
|
import os
|
|
|
|
from source.definition import *
|
|
|
|
class ClassApp():
|
|
from source.__init__ import __init__
|
|
from source.translate import translate, change_language, get_language
|
|
from source.Progress import Progress
|
|
from source.check_update import check_update
|
|
from source.StateButton import StateButton
|
|
from source.create_lecode_config import create_lecode_config
|
|
from source.patch_file import patch_file
|
|
from source.patch_bmg import patch_bmg
|
|
from source.install_mod import install_mod
|
|
from source.restart import restart
|
|
from source.patch_img_desc import patch_img_desc
|
|
from source.patch_ct_icon import patch_ct_icon
|
|
|
|
|
|
# TODO: Wiki Github
|
|
App = ClassApp()
|
|
App.root.mainloop() |