Changeset 981:3fa8c08f4b8f
Legend:
- Unmodified
- Added
- Removed
-
TODO
r978 r981 11 11 - check some colours on Windows (e.g. the tab background) 12 12 - flightexplain: why is it higher initially 13 - Accepted flights: 14 - Rating: do not display decimal digits 15 - Make underlines work 16 - Huge amounts of error messages 13 17 - eliminate initial resize -
setup.py
r967 r981 73 73 74 74 for components in [ ["lib", "girepository-1.0"], 75 ["lib", "gdk-pixbuf-2.0", "2.10.0"], 76 ["share", "icons"], 75 ["lib", "gdk-pixbuf-2.0", "2.10.0", "loaders.cache"], 76 ["lib", "gdk-pixbuf-2.0", "2.10.0", "loaders", "libpixbufloader-ico.dll"], 77 ["lib", "gdk-pixbuf-2.0", "2.10.0", "loaders", "libpixbufloader-png.dll"], 78 ["lib", "gdk-pixbuf-2.0", "2.10.0", "loaders", "libpixbufloader-svg.dll"], 79 ["share", "icons", "Adwaita", "icon-theme.cache"], 80 ["share", "icons", "Adwaita", "index.theme"], 81 ["share", "icons", "Adwaita", "16x16"], 77 82 ["share", "locale", "hu"], 78 83 ["share", "locale", "en"], 79 84 ["share", "themes"], 80 85 ["share", "glib-2.0", "schemas"]]: 81 path = os.path.join(*components) 82 p = Path(os.path.join(gtkRuntimeDir, path)) 83 for f in p.glob("**/*"): 84 if f.is_file(): 85 d = os.path.join(path, str(f.parent.relative_to(p))) 86 if d in files: 87 files[d].append(str(f)) 88 else: 89 files[d] = [str(f)] 86 path = os.path.join(*components) 87 p = Path(os.path.join(gtkRuntimeDir, path)) 88 if p.is_file(): 89 d = os.path.dirname(path) 90 if d in files: 91 files[d].append(str(p)) 92 else: 93 files[d] = [str(p)] 94 else: 95 for f in p.glob("**/*"): 96 if f.is_file(): 97 d = os.path.join(path, str(f.parent.relative_to(p))) 98 if d in files: 99 files[d].append(str(f)) 100 else: 101 files[d] = [str(f)] 90 102 91 103 for path in files: … … 119 131 120 132 data_files.append(("locales", 121 glob(os.path.join(cefDir, "locales", "*")))) 133 [os.path.join(cefDir, "locales", "hu.pak"), 134 os.path.join(cefDir, "locales", "en-GB.pak"), 135 os.path.join(cefDir, "locales", "en-US.pak"), 136 os.path.join(cefDir, "locales", "ru.pak")])) 122 137 123 138 if os.getenv("WINE")=="yes":
Note:
See TracChangeset
for help on using the changeset viewer.