From 84ebddd08720b503f6a6d2f1fe8ac814d52ff698 Mon Sep 17 00:00:00 2001 From: et0h Date: Mon, 19 Aug 2019 18:03:38 +0100 Subject: [PATCH] Include all .ico files in zip/.exe --- buildPy2exe.py | 3 +-- syncplay/__init__.py | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/buildPy2exe.py b/buildPy2exe.py index dc5b4c6..d972554 100755 --- a/buildPy2exe.py +++ b/buildPy2exe.py @@ -670,10 +670,9 @@ class build_installer(py2exe): script.compile() print("*** DONE ***") -guiIcons = glob('syncplay/resources/*.png') + ['syncplay/resources/spinner.mng'] +guiIcons = glob('syncplay/resources/*.ico') + glob('syncplay/resources/*.png') + ['syncplay/resources/spinner.mng'] resources = [ - "syncplay/resources/icon.ico", "syncplay/resources/syncplayintf.lua", "syncplay/resources/license.rtf", "syncplay/resources/third-party-notices.rtf" diff --git a/syncplay/__init__.py b/syncplay/__init__.py index 051f38a..da83232 100755 --- a/syncplay/__init__.py +++ b/syncplay/__init__.py @@ -1,5 +1,5 @@ version = '1.6.5' revision = ' development' milestone = 'Yoitsu' -release_number = '83' +release_number = '84' projectURL = 'https://syncplay.pl/'