Browse Source

Fix giant icon in windows sound control

Wolf Clément 5 years ago
parent
commit
f3f101dda9
3 changed files with 6 additions and 2 deletions
  1. 3 0
      TODO
  2. BIN
      icon.ico
  3. 3 2
      setup.py

+ 3 - 0
TODO

@@ -1,2 +1,5 @@
+- Fix adjusting volume before sounds are loaded
+- Make release executable
+
 Bonus:
 - Encrypted connection

BIN
icon.ico


+ 3 - 2
setup.py

@@ -1,9 +1,10 @@
+import sys
 from cx_Freeze import setup, Executable
 
 base = None
 # To hide console on release versions, uncomment this :
-#if sys.platform == "win32":
-#    base = "Win32GUI"
+if sys.platform == "win32":
+    base = "Win32GUI"
 
 setup(  name = "ccs",
         version = "1.5",