Add files from accessible_output2 by using the right function

This commit is contained in:
Manuel Cortez 2019-02-19 23:04:45 -06:00
parent 61d9180b2e
commit 207315937a
2 changed files with 4 additions and 4 deletions

View File

@ -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"]

View File

@ -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"])]