From 207315937a640bca33fea3b7c52c04ba2572c7fe Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Tue, 19 Feb 2019 23:04:45 -0600 Subject: [PATCH] Add files from accessible_output2 by using the right function --- src/application.py | 2 +- src/setup.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/application.py b/src/application.py index 5c224e3b..0d9096f8 100644 --- a/src/application.py +++ b/src/application.py @@ -8,7 +8,7 @@ if snapshot == False: update_url = 'https://twblue.es/updates/stable.php' mirror_update_url = 'https://raw.githubusercontent.com/manuelcortez/TWBlue/next-gen/updates/stable.json' else: - version = "12" + version = "13" update_url = 'https://twblue.es/updates/snapshot.php' mirror_update_url = 'https://raw.githubusercontent.com/manuelcortez/TWBlue/next-gen/updates/snapshots.json' authors = [u"Manuel Cortéz", u"José Manuel Delicado"] diff --git a/src/setup.py b/src/setup.py index 2e5a522b..f5c50f9e 100644 --- a/src/setup.py +++ b/src/setup.py @@ -45,13 +45,13 @@ def get_architecture_files(): def get_data(): import sound_lib import enchant + import accessible_output2 return [ ("", ["conf.defaults", "app-configuration.defaults", "icon.ico"]), - ("", [certs.where()]), - ("accessible_output2/lib", glob("accessible_output2/lib/*.dll")), + ("", [certs.where()]), ("keys/lib", glob("keys/lib/*.dll")), ("keymaps", glob("keymaps/*.keymap")), -]+get_sounds()+get_locales()+get_documentation()+sound_lib.find_datafiles()+enchant.utils.win32_data_files()+get_architecture_files()+wx_files() +]+get_sounds()+get_locales()+get_documentation()+sound_lib.find_datafiles()+accessible_output2.find_datafiles()+enchant.utils.win32_data_files()+get_architecture_files()+wx_files() def get_documentation (): answer = [("documentation", ["documentation/license.txt"])]