Skip to content

Commit

Permalink
v1.5.5
Browse files Browse the repository at this point in the history
Change to exe
  • Loading branch information
GaelHF committed Feb 12, 2024
1 parent 13e7a58 commit 73d2b17
Show file tree
Hide file tree
Showing 82 changed files with 57,422 additions and 17 deletions.
7 changes: 0 additions & 7 deletions Mechanik.cmd

This file was deleted.

Binary file added app.ico
Binary file not shown.
4 changes: 3 additions & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,17 @@
import pygame
import json

import module
import update
import module


#Varibables
directory = module.get_directory_names("./audios")
keyboards = []
current_keyboard = "eg-oreo"
current_keyboard_name = "EG-Oreo"

#APP
for dir in directory:
with open(f"{dir}/config.json", "r") as f:
data = json.loads(f.read())
Expand Down
38 changes: 38 additions & 0 deletions app.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# -*- mode: python ; coding: utf-8 -*-


a = Analysis(
['app.py'],
pathex=[],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
noarchive=False,
)
pyz = PYZ(a.pure)

exe = EXE(
pyz,
a.scripts,
a.binaries,
a.datas,
[],
name='app',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=False,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
icon=['app.ico'],
)
Loading

0 comments on commit 73d2b17

Please sign in to comment.