Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-08-28 | Merge pull request #965 from flowln/fat_files_in_memory | Sefa Eyeoglu | |
Refactor a bit EnsureMetadataTask and calculate hashes in a incremental manner | |||
2022-08-24 | fix: fix urls on ftb legacy | DioEgizio | |
Signed-off-by: DioEgizio <83089242+DioEgizio@users.noreply.github.com> | |||
2022-08-20 | fix: distinguish Coremods | Sefa Eyeoglu | |
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net> | |||
2022-08-20 | Merge pull request #878 from flowln/lazy_settings | Sefa Eyeoglu | |
2022-08-20 | Merge pull request #1023 from flowln/better_shared_ptr | Sefa Eyeoglu | |
2022-08-20 | Merge pull request #1044 from flowln/better_orphan_fix | Sefa Eyeoglu | |
2022-08-20 | Merge pull request #992 from Scrumplex/refactor-version | Sefa Eyeoglu | |
2022-08-20 | Merge pull request #1007 from Gingeh/disable-update-button | Sefa Eyeoglu | |
2022-08-20 | Merge pull request #919 from kumquat-ir/download-all-blocked | Sefa Eyeoglu | |
2022-08-19 | Merge pull request #1068 from TayouVR/improvedWindowsJavaCheck | Sefa Eyeoglu | |
2022-08-18 | use qEnvironmentVariable instead of qgetenv in JavaUtils | Tayou | |
Signed-off-by: Tayou <tayou@gmx.net> | |||
2022-08-18 | Merge pull request #1049 from flowln/waiting_for_news_-_- | Sefa Eyeoglu | |
2022-08-18 | check for java installs in PATH on windows | Tayou | |
this should find java installs from scoop as well as any other installer, that registers java in the PATH environment variable. Signed-off-by: Tayou <tayou@gmx.net> | |||
2022-08-18 | Merge pull request #968 from magneticflux-/utf8-logging | Sefa Eyeoglu | |
Decode process lines as UTF-8 | |||
2022-08-13 | Use C locale codec for decoding | Mitchell Skaggs | |
This should correctly decode multi-byte non-UTF-8 text, such as Windows-936 (Simplified Chinese) Signed-off-by: Mitchell Skaggs <skaggsm333@gmail.com> | |||
2022-08-12 | fix: hide 'More news...' button if the news aren't loaded yet | flow | |
Signed-off-by: flow <flowlnlnln@gmail.com> | |||
2022-08-12 | refactor: switch to new versioning scheme | Sefa Eyeoglu | |
The new versioning system is based on the versioning system used by the GNOME Foundation for the GNOME desktop. We are dropping the "major version" as defined by SemVer and move to a version number with a most and least significant number. The most significant number must be incremented, if there are new features or significant changes since last major release. Otherwise, the least significant number must be incremented, if there are only minor changes since the last release. New features or significant changes mustn't be introduced by a bump of the least significant number. If a minor change would introduce small user-facing changes (like a message-box or slight UI changes), it could still be classified as a minor change. At the end of the day, a human shall decide, if a change is minor or significant, as there is no clear line that would separate a "minor" and a "significant" change in a GUI-application. Definitions: feature: New user-facing functionality significant change: Something that changes user-facing behavior minor change: Something that fixes unexpected behavior Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net> | |||
2022-08-11 | fix: only remove orphaned metadata on first opening | flow | |
This avoids deleting the metadata while one is updating their mods. Signed-off-by: flow <flowlnlnln@gmail.com> | |||
2022-08-11 | Merge pull request #897 from jamierocks/atl-updating-initial | timoreo | |
2022-08-11 | Merge pull request #1039 from budak7273/fix-world-safety-nag-title-text | timoreo | |
2022-08-11 | Merge pull request #920 from flowln/metacache_fix | timoreo | |
2022-08-10 | Make new title strings translatable | Robb | |
Signed-off-by: Robb <computerguy440+gh@gmail.com> | |||
2022-08-10 | Merge pull request #1018 from Scrumplex/fix-infinite-auth-loop | timoreo | |
2022-08-09 | fix: Make world safety nag title text match the action being performed ↵ | Robb | |
instead of always saying 'Copy World' Signed-off-by: Robb <computerguy440+gh@gmail.com> | |||
2022-08-09 | Fix use of Qt 5.14 enum | Mitchell Skaggs | |
Signed-off-by: Mitchell Skaggs <skaggsm333@gmail.com> | |||
2022-08-08 | Replace local 8-bit decoding with UTF-8 decoding | Mitchell Skaggs | |
Handles incomplete byte sequences using `QTextDecoder` Signed-off-by: Mitchell Skaggs <skaggsm333@gmail.com> | |||
2022-08-05 | fix: don't mutate QHash while iterating over it | flow | |
Even though it was using a QMutableHashIterator, sometimes it didn't work quite well, so this is a bit better. Signed-off-by: flow <flowlnlnln@gmail.com> | |||
2022-08-05 | fix: add some more nullptr checks / protection | flow | |
die sigsegv :gun: Signed-off-by: flow <flowlnlnln@gmail.com> | |||
2022-08-05 | refactor: simplify smart pointers more | flow | |
Signed-off-by: flow <flowlnlnln@gmail.com> | |||
2022-08-04 | Merge pull request #1017 from flowln/kill_orphan_metadata | flow | |
Remove orphaned metadata to avoid problems with auto-updating instances | |||
2022-08-04 | refactor+fix: use QSharedPointer for shared_qobject_ptr | flow | |
Signed-off-by: flow <flowlnlnln@gmail.com> | |||
2022-08-04 | fix: emit abort in LaunchController | Sefa Eyeoglu | |
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net> | |||
2022-08-03 | fix: Add root path detection on OpenBSD | Sefa Eyeoglu | |
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net> | |||
2022-08-03 | fix: allow user to interrupt launch after 3 tries | Sefa Eyeoglu | |
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net> | |||
2022-08-03 | Move large condition into a new lambda | Gingeh | |
Signed-off-by: Gingeh <39150378+Gingeh@users.noreply.github.com> | |||
2022-08-02 | fix: remove orphaned metadata to avoid problems with auto-updating insts | flow | |
Just as my master has taught me. :gun: Signed-off-by: flow <flowlnlnln@gmail.com> | |||
2022-08-02 | Check for running instance when re-opening the mod folder page and when ↵ | Gingeh | |
selecting mods Signed-off-by: Gingeh <39150378+Gingeh@users.noreply.github.com> | |||
2022-08-02 | Update launcher/ui/pages/instance/ModFolderPage.h | Gingeh | |
Co-authored-by: flow <flowlnlnln@gmail.com> Signed-off-by: Gingeh <39150378+Gingeh@users.noreply.github.com> | |||
2022-08-01 | Disable "Check for Updates" and "Download Mods" while the game is running | Gingeh | |
Signed-off-by: Gingeh <39150378+Gingeh@users.noreply.github.com> | |||
2022-08-01 | Disable "Check for Updates" if all mods are removed | Gingeh | |
Signed-off-by: Gingeh <39150378+Gingeh@users.noreply.github.com> | |||
2022-07-31 | use BlockedModsDialog for ftb packs as well | kumquat-ir | |
Signed-off-by: kumquat-ir <66188216+kumquat-ir@users.noreply.github.com> | |||
2022-07-31 | Merge remote-tracking branch 'origin/develop' into download-all-blocked | kumquat-ir | |
Signed-off-by: kumquat-ir <66188216+kumquat-ir@users.noreply.github.com> | |||
2022-07-30 | Trash instances instead of deleting (when possible) (#549) | Ryan Cao | |
Squashed because of :pofat: commit history | |||
2022-07-30 | Merge pull request #941 from Scrumplex/bump-cxx-standard | LennyMcLennington | |
Bump to C++17 | |||
2022-07-28 | Merge pull request #699 from Scrumplex/resolve-ftb-mods-cf | timoreo | |
2022-07-26 | Merge pull request #974 from flowln/accounts_qt6 | flow | |
Fix adding multiple accounts in Qt6 | |||
2022-07-26 | fix: progress dialog going away even if the task was not aborted | flow | |
Signed-off-by: flow <flowlnlnln@gmail.com> | |||
2022-07-26 | refactor: shuffle some things around to improve readability | flow | |
Signed-off-by: flow <flowlnlnln@gmail.com> | |||
2022-07-26 | fix(ui): pump events to show "Copying modpack files..." text | flow | |
Signed-off-by: flow <flowlnlnln@gmail.com> | |||
2022-07-26 | chore: clean up FTBPackInstallTask a bit and connect missing signals | flow | |
Signed-off-by: flow <flowlnlnln@gmail.com> |