Commit Graph

74 Commits

Author SHA1 Message Date
e8d6a19d03 Disable debug line that was setting progress bar to busy on launch 2025-05-25 01:02:57 -04:00
811e2ef01f Added progress bar to show download progress 2025-05-25 00:58:55 -04:00
4a08bd47cd Allow overriding the color scheme with the THEME environment variable 2025-05-21 12:53:32 -04:00
1af938decd Improved light theme based on testing on Linux/Windows 2025-05-20 23:07:24 -04:00
a4679be043 Added an experimental light theme and automatic system theme detection 2025-05-20 22:26:11 -04:00
07579d7361 Improve illegal character removal
Now removes the NTFS-forbidden characters on all platforms, as some may still cause issues depending on your OS and FS. These characters are also now removed during the actual download process, so they'll still appear in the WAD name box, but will be stripped out before the file is created.
2025-05-20 13:54:27 -04:00
9b4addc8a5 Remove illegal characters from WAD names on Windows 2025-05-20 09:08:07 -04:00
d3653e3138 Add DarkMatterCore to README, minor translation cleanup 2025-05-13 19:01:09 -04:00
Pablo Curiel
3588b3cc54 Add Spanish localization (#30)
Other changes include:

* NUSGet.py: add translation file name fallback under Windows to fix a previously unhandled edge case (tested by me, provided by @NinjaCheetah himself).
* NUSGet.py: fix translation key lookups for strings that need to be formatted at runtime.

* ui_AboutDialog.py: fix translation key lookups for strings that need to be formatted at runtime.
* ui_AboutDialog.py: add myself to the list of translation contributors.

* Translations: update source and translation strings across all localization files to reflect the fixes mentioned above.
* Translations: update source string locations and add a new unfinished translation to all localization files (as a result of running update_translations.py).
2025-05-13 17:57:28 -04:00
f76ad67108 Fix image prefix path on Windows 2025-05-12 18:30:50 -04:00
2557ad236e Added custom information icon, should fix clipping on Windows 2025-05-12 18:22:05 -04:00
5a8439906a Fix for help menu on Windows, dropdown still has graphical issues 2025-05-11 23:51:21 -04:00
69299ad956 Help menu style now based on dropdown style 2025-05-11 23:20:57 -04:00
1ee30146e5 Fixed dropdown styling once and for all 2025-05-11 22:21:53 -04:00
db9b0d665d Stylesheet patch to make tree scrollbar padding consistent 2025-05-08 21:31:21 -04:00
0a458a80e0 Fix styling of vertical scrollbar in tree views 2025-05-08 20:16:41 -04:00
d5cddfc4c0 Added QSS for custom scroll bars
Also enabled the Wii U NUS by default again, because that got missed before. Whoops.
2025-05-06 22:36:55 -04:00
6997ba759f Added more custom QSS, getting close to finished 2025-05-06 21:58:26 -04:00
917b9f665a Slightly increase window size, improve about dialog 2025-05-06 18:30:33 -04:00
249ba861ff Added custom QSS to make NUSGet look nice and pretty (still WIP)
Massive thanks to Isla and Alex from WiiLink for making all the styling I'm using here.
2025-05-05 21:53:52 -04:00
5a42cc5bd7 Added About NUSGet and About Qt dialogs 2025-05-04 19:20:48 -04:00
4f993a3a62 Fix setting custom download dir to cwd when canceling file dialog 2025-04-22 21:50:27 -04:00
a3d8dc7887 Added support for custom download directories 2025-04-22 21:46:15 -04:00
bcb86bc4b0 Added support for disabling auto-updates via a new config file 2025-04-21 23:27:54 -04:00
e96d8932d0 Generate WAD name from title name rather than requiring dedicated key 2025-02-23 19:31:12 -05:00
dcb1cdebca (db) Fixed name for "Everybody Votes Channel" and added missing version 2025-02-23 18:50:31 -05:00
33bea6a560 UPDATE VERSION 2025-02-18 21:29:42 -05:00
449a680d32 Add safeguards to system Qt library loading on Linux
Also made minor update for libWiiPy v0.6.0 compatibility
2025-02-18 20:10:27 -05:00
87905eab2b Clicking the labels for checkboxes now toggles the checkboxes again 2025-01-05 01:18:44 -05:00
5e37dce4e3 Download to "NUSGet Downloads" instead of "NUSGet"
I edited existing translations accordingly, since the folder name was quoted and is the same regardless of your system language, so I figured I could safely change it to "NUSGet Downloads" without damaging the translation.
2024-12-23 18:01:33 -05:00
588b44381c Install standalone instead of onefile when using make install
This makes the app load faster, because the current install setup makes using the compressed onefile over the standalone build pointless and wastes time on launch.
2024-12-22 21:52:20 -05:00
9dcaa22e89 Added ability to filter title trees with search box
Also fixed tree widths not expanding for titles with long names
2024-12-22 17:07:27 -05:00
4ec15d0eb3 Mention scripting in README, added example script 2024-12-19 20:28:53 -05:00
2142dbad7e Added error reporting to script downloads, errors do not stop scripts 2024-12-19 20:16:15 -05:00
87da32d62e Improved WAD name formatting for batch downloads
Also started working on a fix for the checkmark/X icons denoting a ticket not appearing anymore.
2024-12-18 09:08:21 -05:00
6660e129a8 Added WIP JSON-based script support, removed old format
The old script code was already broken from the previous commits anyway, since they changed too much internally. This new format is much easier to understand and will allow for creating more powerful scripts.
2024-12-17 21:55:01 -05:00
62fa5ef7b1 Entirely rewrote title tree backend
Title trees are now model-based rather than item based. Coming with this is proper item metadata, so the data and UI are finally disconnected, making future development much easier. There are also some minor visual improvements as a result of using a TreeView instead of a TreeWidget.
vWii System Menus now have public versions defined in the database. Public version display code has also been entirely rewritten, as the version displayed in the interface and the version used by the code are no longer the same.
2024-12-13 22:39:09 -05:00
c1eb80fbb6 Massively improved code readability
Some checks failed
Python application / build-linux (push) Has been cancelled
Python application / build-macos-x86 (push) Has been cancelled
Python application / build-macos-arm64 (push) Has been cancelled
Python application / build-windows (push) Has been cancelled
NUSGet's code has been updated to use better formatting and practices that align with how my other projects like libWiiPy and WiiPy are written.
2024-12-13 18:34:37 -05:00
Aep
08c2bd27f5 Add Public System Menu Versions (#16)
* Add System Menu Versions

* add ()

* fix comments

* Fix version getting messed up by public version

---------

Co-authored-by: Aep <itisinfactmark@gmail.com>
2024-11-27 11:50:34 -05:00
dadcc02701 Fix --onefile accidentally being passed for macOS builds instead of only --standalone 2024-11-16 23:00:37 -05:00
c716291c2d Updated build process, workflow, and build directions in README 2024-11-16 22:50:36 -05:00
yeah-its-gloria
33b30b4aa5 Clean up the UI 2024-10-21 23:44:27 +02:00
yeah-its-gloria
dd79be0b48 Fix version lookup
Checking regions was pretty superfluous anyway, since it only served to *potentially* speed up the lookup.
2024-10-21 23:22:51 +02:00
yeah-its-gloria
9c15eac1fd Verify titles
Name archives properly using the database
Fix UI problems on macOS
2024-10-21 14:03:07 +02:00
yeah-its-gloria
0dbe28914d Add batch downloading with NUSD scripts 2024-10-19 18:07:42 +02:00
bc1858a5a5 Add region to WAD file names if title is not region free 2024-08-22 21:48:38 -04:00
0ca2cc272a Improved how title loading is handled and improved databases 2024-08-21 22:39:50 -04:00
ac42de6efc Added last missing translations for message boxes 2024-08-21 19:37:59 -04:00
e2decf8d6f Wrote script to update ts files since the real one is broken 2024-08-21 19:34:08 -04:00
bcf82a011f NUSGet now checks for updates on startup 2024-08-21 19:04:39 -04:00