aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-04-20Merge pull request #463 from txtsd/enter_shenanigansEzekiel Smith
Only trigger macOS instance rename on KeyDown
2022-04-20Merge pull request #462 from Scrumplex/fix-world-size-sortEzekiel Smith
fix: use size in bytes to sort by world size
2022-04-19Revert "better FreeBSD support"Sefa Eyeoglu
2022-04-19Merge pull request #454 from kthchew/feature/hardened-runtimeSefa Eyeoglu
2022-04-19Merge pull request #452 from Scrumplex/fix-download-mods-crashSefa Eyeoglu
2022-04-19Merge pull request #451 from Scrumplex/fix-modloader-selectiondada513
2022-04-19Merge pull request #444 from Scrumplex/fix-release-workflowdada513
Fix release workflow
2022-04-19Merge pull request #450 from Scrumplex/fix-quilt-mod-dlSefa Eyeoglu
2022-04-19fix: fix filename of linux portableSefa Eyeoglu
2022-04-19bump to 1.2.1DioEgizio
2022-04-19Improve security by enabling hardened runtime for macOSKenneth Chew
This change also fixes a bug on recent versions of macOS where Minecraft mods that requested access to the microphone would silently fail.
2022-04-19fix: bundle binary tarball as user rootSefa Eyeoglu
2022-04-19fix: update files for relase workflowSefa Eyeoglu
2022-04-19fix: Only trigger rename on KeyPresstxtsd
This is macOS specific
2022-04-19fix: use size in bytes to sort by world sizeSefa Eyeoglu
2022-04-19Merge pull request #455 from kthchew/fix/mac-version-numEzekiel Smith
Fix formatting of version string on macOS
2022-04-19fix: fix Modrinth query when Quilt is in useSefa Eyeoglu
2022-04-19Merge pull request #449 from DioEgizio/CI/specify-build-platformSefa Eyeoglu
specify -DLauncher_BUILD_PLATFORM on CI builds (EDIT: also remove "on x")
2022-04-18Fix formatting of version string on macOSKenneth Chew
2022-04-18remove "on x"DioEgizio
2022-04-18fix: don't set mod loader as importantSefa Eyeoglu
2022-04-18fix: handle network errors when downloading modlistSefa Eyeoglu
2022-04-18fix: actually check if a mod loader is selectedSefa Eyeoglu
Thus also removes a suggestCurrent call from loaderFilterChanged, as it will already be triggered by setSelectedLoaderVersion
2022-04-18Merge pull request #442 from kthchew/fix/typosSefa Eyeoglu
2022-04-18Merge pull request #443 from flowln/fix_trSefa Eyeoglu
2022-04-18specify -DLauncher_BUILD_PLATFORM on CI buildsDioEgizio
more cool also maybe helps with updater?
2022-04-17fix(translation): don't translate placeholdersflow
Those are modified programatically, and never show up to the user!
2022-04-17Fix typos and inconsistent capitalization in sort optionsKenneth Chew
2022-04-17Merge pull request #437 from DioEgizio/bump-1.2.0Sefa Eyeoglu
2022-04-17Merge pull request #411 from kthchew/feature/menubarSefa Eyeoglu
2022-04-17Improve menu bar setting stringKenneth Chew
2022-04-17Disable instead of hide menu bar option on LinuxKenneth Chew
Co-authored-by: Sefa Eyeoglu <contact@scrumplex.net>
2022-04-17Fix bugs with instance menu bar options when opening without instancesKenneth Chew
- The launch option is no longer empty. - The program now checks on startup whether an instance is selected to decide whether to disable instance options. Also, get rid of a dynamic cast.
2022-04-17Merge pull request #439 from DioEgizio/CI/new-qt-macostxtsd
CHANGE: use Qt 5.15.3 (from brew) on macos
2022-04-17CHANGE: use Qt 5.15.3 (from brew) on macos DioEgizio
More updated Qt means less bugs and generally less issues. The only drawback is losing MacOS Sierra support
2022-04-17Merge pull request #431 from Scrumplex/feat-quilt-modrinthEzekiel Smith
Query for Fabric mods if Quilt is in use
2022-04-17Merge pull request #436 from flowln/bundled_libsEzekiel Smith
Don't force bundled libraries by default
2022-04-16fix: query for Fabric mods if Quilt is in useSefa Eyeoglu
Right now we want to include Fabric mods in our searches where possible. Modrinth allows definining multiple loaders, while Flame only allows a single value. As a compromise we ask for Fabric mods only on Flame and for both Fabric and Quilt mods on Modrinth.
2022-04-16Merge pull request #336 from Scrumplex/refactor-portableSefa Eyeoglu
2022-04-16Use `TranslatedAction` instead of `QAction` for menu bar actionsKenneth Chew
2022-04-16Remove the Edit menu bar menuKenneth Chew
It wouldn't bring much utility. - The keyboard shortcuts for copy/paste/etc. already work and are well-known. The menu bar likely doesn't need to advertise them. - There's not very many places you would be able to use these options in the main window (because there's not many places to type stuff in the main window). It would only be applicable on systems with a native menu bar that shows in all other windows as well (but again, the keyboard shortcuts still work). Also, rename `actionWiki` -> `actionOpenWiki` to match the corresponding `on_actionOpenWiki_triggered`
2022-04-16bump to 1.2.0DioEgizio
2022-04-16Merge pull request #429 from Irgendwer01/developSefa Eyeoglu
better FreeBSD support
2022-04-16fix: set install prefix for Linux to /usrSefa Eyeoglu
2022-04-16fix(actions): remove macdeployqtSefa Eyeoglu
2022-04-16refactor(actions): combine steps for unified buildsSefa Eyeoglu
2022-04-16fix: drop BUNDLE_DEST_DIRSefa Eyeoglu
2022-04-16fix: don't allow portable builds on macOSSefa Eyeoglu
2022-04-16refactor: combine portable and system buildsSefa Eyeoglu
Portable builds now have the same layout as system builds. If you want to build a portable bundle, you now need to additionally install the `portable` component. For example: $ cmake -Bbuild -DCMAKE_INSTALL_PREFIX=install ... $ cmake --build build $ cmake --install build $ cmake --install build --component portable
2022-04-16Merge pull request #392 from flowln/mod_filterSefa Eyeoglu