From e2b7b6a2f57c5519966459ac16e9eac8c38a99cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Vald=C3=A9s?= Date: Wed, 6 Sep 2023 12:43:17 -0300 Subject: [PATCH] =?UTF-8?q?Actualizaci=C3=B3n=20c=C3=B3digo=20fuente?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- python/launcher/launcher_eng.spec | 49 ------------------------------- python/launcher/launcher_esp.py | 6 ++-- python/launcher/launcher_esp.spec | 49 ------------------------------- 3 files changed, 3 insertions(+), 101 deletions(-) delete mode 100644 python/launcher/launcher_eng.spec delete mode 100644 python/launcher/launcher_esp.spec diff --git a/python/launcher/launcher_eng.spec b/python/launcher/launcher_eng.spec deleted file mode 100644 index 12b72e7..0000000 --- a/python/launcher/launcher_eng.spec +++ /dev/null @@ -1,49 +0,0 @@ -# -*- mode: python ; coding: utf-8 -*- - - -block_cipher = None - - -a = Analysis( - ['launcher_eng.py'], - pathex=[], - binaries=[], - datas=[], - hiddenimports=[], - hookspath=[], - hooksconfig={}, - runtime_hooks=[], - excludes=[], - win_no_prefer_redirects=False, - win_private_assemblies=False, - cipher=block_cipher, - noarchive=False, -) -pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher) - -exe = EXE( - pyz, - a.scripts, - a.binaries, - a.zipfiles, - a.datas, - [], - name='Server Launcher for Minecraft', - version_info=(1, 0, 0, 4), - description='Server Launcher for Minecraft', - copyright='©2023 - NGDPL Nk', - author='NGDPL Nk', - icon='icon.ico', - debug=False, - bootloader_ignore_signals=False, - strip=False, - upx=True, - upx_exclude=[], - runtime_tmpdir=None, - console=True, - disable_windowed_traceback=False, - argv_emulation=False, - target_arch=None, - codesign_identity=None, - entitlements_file=None, -) diff --git a/python/launcher/launcher_esp.py b/python/launcher/launcher_esp.py index 69551c3..6b4cfee 100644 --- a/python/launcher/launcher_esp.py +++ b/python/launcher/launcher_esp.py @@ -17,9 +17,9 @@ def limpiar_consola(): #NOMBRE VENTANA if sys.platform.startswith('win32'):#WINDOWS - ctypes.windll.kernel32.SetConsoleTitleW("Lanzador de Servidores para Minecraft") + ctypes.windll.kernel32.SetConsoleTitleW("BETA Lanzador de Servidores para Minecraft") elif sys.platform.startswith('linux') or sys.platform.startswith('darwin'):#LINUX O MACOS - sys.stdout.write(f"\x1b]2;Lanzador de Servidores para Minecraft\x07") + sys.stdout.write(f"\x1b]2;BETA Lanzador de Servidores para Minecraft\x07") #VERSIÓN def version(): @@ -395,7 +395,7 @@ def exiit(): #REAGREGAR OPCIONES CUANDO SEAN AÑADIDAS COMPLETAMENTE Y ERRORES SOLUCIONADOS while True: limpiar_consola() - seleccion = input("Lanzador de Servidores para Minecraft\n-------------------------------------\n\nMenú Principal\n\n(1) Iniciar Servidor\n(2) Licencia\n(3) Salir\n\nSelecciona una opción= ") + seleccion = input("BETA - 23w36a\nLanzador de Servidores para Minecraft\n-------------------------------------\n\nMenú Principal\n\n(1) Iniciar Servidor\n(2) Licencia\n(3) Salir\n\nSelecciona una opción= ") if seleccion == "1": ram() elif seleccion == "4": diff --git a/python/launcher/launcher_esp.spec b/python/launcher/launcher_esp.spec deleted file mode 100644 index 991d107..0000000 --- a/python/launcher/launcher_esp.spec +++ /dev/null @@ -1,49 +0,0 @@ -# -*- mode: python ; coding: utf-8 -*- - - -block_cipher = None - - -a = Analysis( - ['launcher_esp.py'], - pathex=[], - binaries=[], - datas=[], - hiddenimports=[], - hookspath=[], - hooksconfig={}, - runtime_hooks=[], - excludes=[], - win_no_prefer_redirects=False, - win_private_assemblies=False, - cipher=block_cipher, - noarchive=False, -) -pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher) - -exe = EXE( - pyz, - a.scripts, - a.binaries, - a.zipfiles, - a.datas, - [], - name='Lanzador de Servidores para Minecraft', - version_info=(1, 0, 0, 4), - description='Lanzador de Servidores para Minecraft', - copyright='©2023 - NGDPL Nk', - author='NGDPL Nk', - icon='icon.ico', - debug=False, - bootloader_ignore_signals=False, - strip=False, - upx=True, - upx_exclude=[], - runtime_tmpdir=None, - console=True, - disable_windowed_traceback=False, - argv_emulation=False, - target_arch=None, - codesign_identity=None, - entitlements_file=None, -)