diff options
| author | swirl <swurl@swurl.xyz> | 2022-02-03 13:43:44 -0500 |
|---|---|---|
| committer | swirl <swurl@swurl.xyz> | 2022-02-03 13:43:44 -0500 |
| commit | f5358aa1ca4b7d44dfe75d8e55e26d4b22e09dc6 (patch) | |
| tree | 0f916be4404c7cf0908f89128e4ab40f55ffd8f0 | |
| parent | 3d3f9a8609308ed141c47921607c6e60b1558493 (diff) | |
| parent | 1f176fcb7b2cf9281ac95880d85c1cf7597618e6 (diff) | |
| download | PrismLauncher-f5358aa1ca4b7d44dfe75d8e55e26d4b22e09dc6.tar.gz PrismLauncher-f5358aa1ca4b7d44dfe75d8e55e26d4b22e09dc6.tar.bz2 PrismLauncher-f5358aa1ca4b7d44dfe75d8e55e26d4b22e09dc6.zip | |
Merge branch 'develop' into feature/close_after_launch
| -rw-r--r-- | .github/workflows/build.yml | 107 | ||||
| -rw-r--r-- | .gitignore | 8 | ||||
| -rw-r--r-- | BUILD.md | 15 | ||||
| -rw-r--r-- | README.md | 32 | ||||
| -rw-r--r-- | changelog.md | 1532 | ||||
| -rw-r--r-- | flake.lock | 12 | ||||
| -rw-r--r-- | launcher/ui/dialogs/AboutDialog.cpp | 17 | ||||
| -rw-r--r-- | launcher/ui/dialogs/AboutDialog.ui | 17 | ||||
| -rw-r--r-- | launcher/ui/pages/instance/ScreenshotsPage.cpp | 47 | ||||
| -rw-r--r-- | launcher/ui/pages/instance/ScreenshotsPage.h | 2 | ||||
| -rw-r--r-- | launcher/ui/pages/instance/ScreenshotsPage.ui | 18 | ||||
| -rwxr-xr-x | packages/debian/makedeb.sh | 10 | ||||
| -rw-r--r-- | packages/debian/polymc/DEBIAN/control.template | 9 | ||||
| -rw-r--r-- | packages/nix/polymc/default.nix | 19 | ||||
| -rw-r--r-- | packages/rpm/polymc.spec | 142 | ||||
| -rw-r--r-- | program_info/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | program_info/polymc.manifest | 2 | ||||
| -rw-r--r-- | program_info/polymc.rc | 4 |
18 files changed, 232 insertions, 1763 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..d7eeaf1d --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,107 @@ +name: build_portable + +on: + [push, pull_request, workflow_dispatch] + +jobs: + build: + strategy: + fail-fast: false + matrix: + include: + + - os: ubuntu-20.04 + qt_version: 5.12.8 + qt_host: linux + + - os: windows-2022 + qt_version: 5.15.2 + qt_host: windows + qt_arch: win64_mingw81 + + - os: macos-11 + qt_version: 5.12.12 + qt_host: mac + macosx_deployment_target: 10.12 + + runs-on: ${{ matrix.os }} + + env: + MACOSX_DEPLOYMENT_TARGET: ${{matrix.macosx_deployment_target}} + + steps: + + - name: Checkout + uses: actions/checkout@v2 + with: + submodules: 'true' + + - name: Install OpenJDK + uses: AdoptOpenJDK/install-jdk@v1 + with: + version: '17' + + - name: Cache Qt + id: cache-qt + uses: actions/cache@v2 + with: + path: "${{ github.workspace }}/Qt/" + key: ${{ runner.os }}-${{ matrix.qt_version }}-qt_cache + + - name: Install Qt + uses: jurplel/install-qt-action@v2 + with: + version: ${{ matrix.qt_version }} + host: ${{ matrix.qt_host }} + arch: ${{ matrix.qt_arch }} + cached: ${{ steps.cache-qt.outputs.cache-hit }} + dir: "${{ github.workspace }}/Qt/" + + - name: Install Ninja + uses: urkle/action-get-ninja@v1 + + - name: Configure CMake + run: | + cmake -S . -B build -DCMAKE_INSTALL_PREFIX=install -DCMAKE_BUILD_TYPE=Debug -G Ninja + + - name: Build + run: | + cmake --build build + + - name: Install + run: | + cmake --install build + + - name: Install OpenSSL libs + if: runner.os == 'Windows' + run: | + python -m pip install --upgrade pip + python -m pip install aqtinstall==2.0.5 + python -m aqt install-tool -O "${{ github.workspace }}\Qt\" windows desktop tools_openssl_x64 + copy "${{ github.workspace }}\Qt\Tools\OpenSSL\Win_x64\bin\libssl-1_1-x64.dll" "${{ github.workspace }}\install\" + copy "${{ github.workspace }}\Qt\Tools\OpenSSL\Win_x64\bin\libcrypto-1_1-x64.dll" "${{ github.workspace }}\install\" + + - name: chmod binary on macOS + if: runner.os == 'macOS' + run: | + chmod +x "${{ github.workspace }}/install/PolyMC.app/Contents/MacOS/polymc" + + - name: tar bundle on macOS + if: runner.os == 'macOS' + run: | + cd install + tar -czf ../polymc.tar.gz * + + - name: Upload package for Linux and Windows + if: runner.os != 'macOS' + uses: actions/upload-artifact@v2 + with: + name: polymc-${{ matrix.os }}-portable + path: install/** + + - name: Upload package for macOS + if: runner.os == 'macOS' + uses: actions/upload-artifact@v2 + with: + name: polymc-${{ matrix.os }}-portable + path: polymc.tar.gz @@ -40,13 +40,5 @@ run/ .cache/ -# Flatpak builds -.flatpak-builder -flatbuild -builddir -# Deb -packages/debian/polymc/usr/ -packages/debian/polymc.deb -packages/debian/polymc/DEBIAN/control # Nix/NixOS result/ @@ -25,7 +25,6 @@ The rest of the documentation assumes you have already cloned the repository. Getting the project to build and run on Linux is easy if you use any modern and up-to-date linux distribution. ## Build dependencies - - A C++ compiler capable of building C++11 code. - Qt Development tools 5.6 or newer (`qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tools libqt5core5a libqt5network5 libqt5gui5` on Debian-based system) - cmake 3.1 or newer (`cmake` on Debian-based system) @@ -116,7 +115,7 @@ The path to the rpm packages will be printed when the build is complete. ### Building a flatpak -You only need to clone the flatpak sources +You only need to clone the flatpak sources `flatpak` and `flatpak-builder` need to be installed on your system ```sh @@ -256,8 +255,8 @@ zlib1.dll - Install XCode Command Line tools - Install the official build of CMake (https://cmake.org/download/) -- Install JDK 8 (https://www.oracle.com/java/technologies/javase/javase-jdk8-downloads.html) -- Get Qt 5.6 and install it (https://download.qt.io/new_archive/qt/5.6/5.6.3/) +- Install JDK 8 (https://adoptium.net/releases.html?variant=openjdk8&jvmVariant=hotspot) +- Get Qt 5.6 and install it (https://download.qt.io/new_archive/qt/5.6/5.6.3/) or higher (tested) (https://www.qt.io/download-qt-installer?utm_referrer=https%3A%2F%2Fwww.qt.io%2Fdownload-open-source) You can use `homebrew` to simplify the installation of build dependencies @@ -271,7 +270,7 @@ xcode-select --install ### Build -Pick an installation path - this is where the final `.app` will be constructed when you run `make install`. Supply it as the `CMAKE_INSTALL_PREFIX` argument during CMake configuration. +Pick an installation path - this is where the final `PolyMC.app` will be constructed when you run `make install`. Supply it as the `CMAKE_INSTALL_PREFIX` argument during CMake configuration. By default, it's in the dist folder under PolyMC ``` mkdir build @@ -281,15 +280,15 @@ cmake \ -DCMAKE_CXX_COMPILER=/usr/bin/clang++ \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX:PATH="$(dirname $PWD)/dist/" \ - -DCMAKE_PREFIX_PATH="/path/to/Qt5.6/" \ - -DQt5_DIR="/path/to/Qt5.6/" \ + -DCMAKE_PREFIX_PATH="/path/to/Qt/" \ + -DQt5_DIR="/path/to/Qt/" \ -DLauncher_LAYOUT=mac-bundle \ -DCMAKE_OSX_DEPLOYMENT_TARGET=10.7 \ .. make install ``` -Remember to replace `/path/to/Qt5.6/` with the actual path. For newer Qt installations, it is often in your home directory. +Remember to replace `/path/to/Qt/` with the actual path. For newer Qt installations, it is often in your home directory. **Note:** The final app bundle may not run due to code signing issues, which need to be fixed with `codesign -fs -`. @@ -10,6 +10,8 @@ This is a **fork** of the MultiMC Launcher and not endorsed by MultiMC. The Poly <br> # Installation +- All packages (archived by version) can be found [here](https://packages.polymc.org/) ([latest](https://packages.polymc.org/latest)). +- Last build status: https://jenkins.polymc.org/job/PolyMC/lastBuild/ ## 🐧 Linux @@ -20,15 +22,13 @@ This is a **fork** of the MultiMC Launcher and not endorsed by MultiMC. The Poly <a href="https://packages.polymc.org/latest/appimage/PolyMC-latest-x86_64.AppImage"><img src="https://docs.appimage.org/_images/download-appimage-banner.svg" width="240" alt="Download as AppImage" /></a> - [AppImage SHA256](https://packages.polymc.org/latest/appimage/PolyMC-latest-x86_64.AppImage.sha256) -- All packages (archived by version) can be found [here](https://packages.polymc.org/) ([latest](https://packages.polymc.org/latest)). -- Last build status: https://jenkins.polymc.org/job/PolyMC/lastBuild/ -- [System Package (AMD64)](https://packages.polymc.org/latest/lin64-system/lin64-system.tar.zst) ([SHA256](https://packages.polymc.org/latest/lin64-system/lin64-system.tar.zst.sha256)) - a generic system package intended to be used as a base for making distro-specific packages ### <img src="https://www.vectorlogo.zone/logos/archlinux/archlinux-icon.svg" height="20"/> Arch Linux -There are several AUR packages available: -[](https://aur.archlinux.org/packages/polymc/) -[](https://aur.archlinux.org/packages/polymc-bin/) +There are several AUR packages available: + +[](https://aur.archlinux.org/packages/polymc/) +[](https://aur.archlinux.org/packages/polymc-bin/) [](https://aur.archlinux.org/packages/polymc-git/) ```sh @@ -42,11 +42,11 @@ yay -S polymc-git ### <img src="https://www.vectorlogo.zone/logos/debian/debian-icon.svg" height="20" /> Debian -We use [makedeb](https://docs.makedeb.org/) for our Debian packages. +We use [makedeb](https://docs.makedeb.org/) for our Debian packages. Several MPR packages are available: -[](https://mpr.makedeb.org/packages/polymc) -[](https://mpr.makedeb.org/packages/polymc-bin) +[](https://mpr.makedeb.org/packages/polymc) +[](https://mpr.makedeb.org/packages/polymc-bin) [](https://mpr.makedeb.org/packages/polymc-git) ```sh @@ -69,7 +69,7 @@ A Gentoo ebuild is available in the [swirl](https://git.swurl.xyz/swirl/ebuilds) ```sh # as root: emerge --oneshot eselect-repository -eselect-repository enable swirl +eselect repository enable swirl emaint sync -r swirl emerge polymc # to use latest git version: @@ -78,7 +78,14 @@ sudo tee -a /etc/portage/package.accept_keywords <<< "=games-action/polymc-9999 ### <img src="https://www.vectorlogo.zone/logos/getfedora/getfedora-icon.svg" height="20"> Fedora -An RPM package is available on [COPR](https://copr.fedorainfracloud.org/coprs/sentry/polymc/) +An RPM package is available on [COPR](https://copr.fedorainfracloud.org/coprs/polymc/polymc/). + +```sh +sudo dnf copr enable polymc/polymc +sudo dnf install polymc +``` + +Alternatively, a COPR maintained by a PolyMC user (instead of Jenkins' automated builds) is available [here](https://copr.fedorainfracloud.org/coprs/sentry/polymc). ```sh sudo dnf copr enable sentry/polymc @@ -91,7 +98,7 @@ sudo dnf install polymc ## <img src="https://www.vectorlogo.zone/logos/apple/apple-tile.svg" height="20" /> MacOS -MacOS currently does not have any packages. We are still working on setting up MacOS packaging. +MacOS currently does not have any packages. We are still working on setting up MacOS packaging. Meanwhile, you can [build](https://github.com/PolyMC/PolyMC/blob/develop/BUILD.md#macos) it for yourself. # Help & Support @@ -119,7 +126,6 @@ If you want to contribute to PolyMC you might find it useful to join our Discord If you want to build PolyMC yourself, check [BUILD.md](BUILD.md) for build instructions. ## Code formatting - Just follow the existing formatting. In general, in order of importance: diff --git a/changelog.md b/changelog.md deleted file mode 100644 index 7b1d4ae8..00000000 --- a/changelog.md +++ /dev/null @@ -1,1532 +0,0 @@ -# MultiMC 0.6.14 - -This further refines Microsoft account support, along with small fixes related to modpack platforms and Java runtime detection. - -It's also been 10 years since the first release of MultiMC. All background cats are now ready to party! - -### Microsoft accounts - -The account system now refreshes accounts in the background while the application is running. - -- GH-4071: Errors encountered while refreshing account tokens no longer always result in the tokens expiring: - - Network errors encountered when refreshing the main account tokens result in the account being **Offline**. - - **Hard** errors are produced by the main tokens becoming provably invalid. - - Errors encountered later are treated as **Soft** - they do make the account unusable, but still recoverable by trying again. - - **Soft** errors are treated as **Hard** errors when adding the account initially. - -In general, this should make MultiMC much more forgiving towards various temporary and non-fatal errors. - -- GH-4217: Added support for GamePass accounts and Minecraft profile setup: - - The new endpoint for logging in with Microsoft is now used (`/launcher/login`), enabling compatibility with GamePass. - - Game ownership is checked instead of only relying on Minecraft profile presence. - - Accounts can now be added even when they do not have a profile. - - The launcher should guide you through selecting a Minecraft name if you don't have one yet. - -### Modpack platform changes - -- GH-4055: MultiMC now tries to avoid downloading multiple files to the same path for FTB modpacks. - -- Search as you type is now used for FTB. - -- GH-4185: Version of the modpack is now included in the name of the instance by default. - -- The modpack platform UIs now include text field clear buttons. - -### Other changes - -- Adjusted warnings about Java runtime required for Minecraft 1.18 (it's not Java 16, it's Java 17). - -- GH-3490: Instance sorting is now aware of numbers (and sorts 99 before 100). - -- GH-4164: Reimplemented assigning instances to groups using drag & drop. - -- GH-1795: Added terminal launch option to use a specific Minecraft profile (in-game player name). - - Used like this: - ``` - ./MultiMC --launch 1.17.1 --profile MultiMCTest --server mc.hypixel.net - ``` - -- GH-4227: Fix crash related to invalid Forge mod metadata. - -- GH-4200: Search for the *Eclipse Foundation* and *Adoptium* Java runtimes in the Windows Registry. - -- Added shader packs page to instances. - -- Removed Mojang services status information from the main window - the status is no longer provided by Mojang. - -- It is now possible to turn of global tracking of play time. - -### Technical changes - -- Debranding is mostly finished. You may see some changes in the logo being used in less places. - -# Previous releases - -## MultiMC 0.6.13 - -This release brings initial support for Microsoft accounts, along with a nice pile of modpack platform support changes and improved Java runtime detection. - -Java runtimes still need an overhaul, so we're staying on the 0.6 version for a little longer. - -Next release should also tackle the current Forge 1.17.x issues in a systematic way. - -#### Microsoft accounts - -This is the first release with Microsoft accounts in. - -Implementation is loosely based on documentation available from [wiki.vg](https://wiki.vg/Microsoft_Authentication_Scheme) with some notable changes: - -- More complete implementation including getting and displaying GamerTags [(see XR-046)](https://docs.microsoft.com/en-us/gaming/gdk/_content/gc/policies/pc/live-policies-pc#xr-046-display-name-and-gamerpic-). - -- Using the OAuth Device Flow instead of closely integrating with a browser engine. - - MultiMC asks you to open a Microsoft login web page and put in a code that lets MultiMC authenticate. - - This lets you authenticate on a completely separate device like your phone, leaving code we ship and the computer you may not even trust out of the picture. - -As part of this, the skin fetching no longer uses a third party service and instead gets skins directly from Mojang. - -Capes can also be selected in MultiMC now. With how many people will now get one for migrating their accounts, it only makes sense. - -#### macOS update - -Because of issues with the Microsoft accounts, we now have two builds on macOS: - -- The old build with Qt 5.6 that does not work with Microsoft accounts, but can run on macOS older than 10.13. - -- A new build with Qt 5.15.2 that does work with Microsoft accounts, can use the new macOS dark theme and highlight colors, but requires at least macOS 10.13. - -MultiMC will update to the 5.15.2 builds when it detects that this is possible. **It may look like it is updating twice, just let it do its thing.** - -Similar approach got attempted on Windows, aiming to fix various display scaling and theming issues, but it ran into too many problems and will be attempted later, with more caution. - -#### Modpack platforms - -In general, the modpack platform pages have been made more consistent with each other (GH-3118, GH-3720, GH-3731). - -- FTB improvements: - - - Modpack file downloads are now checked with checksums and cached. - - - GH-1949: Allow Legacy FTB and FTB pack downloads to be aborted. - -- CurseForge improvements: - - - CurseForge modpack platform is now presented as CurseForge, not Twitch. - - - UI has been updated to match other platforms - - - Added sorting - - - GH-3667: Added version selection - - - GH-3611: Added ability to install beta versions - - - GH-3633: When a CurseForge pack is available for multiple Minecraft versions, we assume the latest one. - -- ATLauncher improvements: - - - Handling latest/custom/recommended mod loader versions. - - - Fabric loader packs should now work. - - - GH-3764: Only client mods are installed now for ATL packs. - - - Improved error handling - - - Optional mods are supported. - - - GH-1949: Allow ATLauncher pack downloads to be aborted - - -- Fixed bugs in FTB platform search. - -#### Other changes - -- Forge installation is disabled on Minecraft 1.17+ because of incompatible/unresolved changes on the Forge side. - - We're going to aim for fixing it in time for 1.18. Thankfully, 1.17 is more of a in-between release, so go play some 1.16.x packs! - -- GH-2529: On macOS, MultiMC will ask to move all the instance data to a new `Data` folder in order to fix long load times caused by macOS checking all files. - -- Detection of a large amount of various Java runtime flavors have been added. - -- It is now possible to join servers when starting an instance: - - - From command line via the `--launch` and `--server` arguments. - - - Or by setting this up in the instance settings page. - - This may not work correctly in some cases, because it is a rarely used feature and modders do not test with it. - -- MultiMC now prints resolved IP addresses of Minecraft services into the game log for diagnostic purposes. - -- Updated instance icons based on Minecraft textures. - -- Forge `mods.toml` files are now used for displaying mods in the UI. - -- Datapack button is now disabled when no world is selected. - -- MultiMC warns about GLFW and OpenAL workarounds being enabled in the game log. - -- Languages in the translations list are now sorted by their two/three letter key - -- GH-3450: Displaying and recording gameplay time is now optional and can be turned off. - -- GH-3930: MultiMC can now track the gameplay time of the last session. - -- GH-3033: The version pages of instances now have a filter bar. - -- GH-2971: UI descriptions of texture and resource packs no longer mention mods. - -- Quick and dirty minimum Java runtime versions checks have been added. This needs to be expanded in the future. - -#### Technical changes - -- The codebase continues to move towards being debranded and harder to build as 'MultiMC' for third parties. - - -## MultiMC 0.6.12 - -After roughly one year of maintenance and development work by various contributors, we're just calling it a good time to release. - -What got added since the last time? Quite a bit! But in general, this is more of a spring cleaning before the major changes that we need to make come in. - -#### Modpack platforms - -We've added a whole bunch of new modpack platforms to pick from right into the new instance dialog. If you run into any unusual issues with the imported packs, report them on the bug tracker. - -- Added a CurseForge pack browser - -- GH-3095: Added an FTB pack browser - - Temporarily, MultiMC ignores download failures for FTB packs (GH-3304). This is because the platform has consistency issues. - -- GH-469: Added a Technic/Solder pack browser - -- GH-405: Added a ATLauncher pack browser - -#### Other changes - -- Added the option to not use OpenAL and/or GLFW libraries bundled with the game. - - This is interesting if you have ones that come with your system and work better. - -- Skins (the part used for account icons) are now rendered with the overlay on. - -- GH-3130: Skin upload has been switched over to the new Mojang API and should have less issues. - -- MultiMC now shows world icons and allows resetting world icons in `View Worlds`. - -- GH-3229: Copy seed button has been updated to be compatible with newer versions of the game. - -- GH-3427: `View Worlds` now has a very simple `Datapacks` button - it just opens the system file browser. - -- GH-3189: Updated nbt library - this makes `View Worlds` work properly again for newer versions of the game. - -- Fixed online saving in Classic versions. - -- GH-3131: Fixed not working with proxy ports greater than 32767. - -- Proxy login details are no longer logged in files. - -- GH-3467: The launch could stall in the ScanModFolders task if the mod folders didn't exist yet. - -- GH-3602: Pre-launch commands could fail on first launch of the instance because the .minecraft folder has not been created yet. - -#### Technical changes - -- GH-3234: At build time, the meta URL can be changed. - -- Removed some hacks previously required to get Forge working - - MultiMC no longer contains pack200 and the custom lzma format support used by Forge only. - -- Some preparations have been done to allow downloading Java runtimes from Mojang - support for the Piston repository. - -- Compatibility with unusual build environments has been increased - -## MultiMC 0.6.11 - -This adds Forge 1.13+ support using [ForgeWrapper](https://github.com/ZekerZhayard/ForgeWrapper) by ZekerZhayard. - -#### New or changed features - -- GH-2988: You can now import instances and curse modpacks from the command line with the `--import` option followed by either an URL or a local file path. - -- GH-2544: MultiMC now supports downloading library files without including them on the Java classpath. - - This is done by adding them to the `mavenFiles` list instead of the `libraries` list. - - Such downloads are not deduplicated or version upgraded like libraries are. - - This enables ForgeWrapper to work - MultiMC downloads all the files, and ForgeWrapper runs the Forge installer during instance start when needed. - -## MultiMC 0.6.8 - -This is mostly about removal of the 'curse URL' related features, because they were of low quality and generally unreliable. - -There are some bug fixes included. - -MultiMC also migrated to a new continuous deployment system, which makes everything that much smoother. - -### New or changed features - -- GH-852: Instance group expansion status now saves/loads as expected. - -- The bees have invaded the launcher. We now have a bee icon. - -- Translations have been overhauled, yet again... - - - We now have a [crowdin site](https://translate.multimc.org/) for all the translation work. - - - Translations are made based on the development version, and for the development version. - - - Many strings have been tweaked to make translating the application easier. - - - When selecting languages, European Portuguese is now displaying properly. - -- Accessibility has been further improved - the main window reads as `MultiMC`, not a long string of nonsensical version numbers, when announced by a screen reader. - -- Removed the unimplemented Technic page from instance creation dialog. - -- GH-2859: Broken twitch URL import method was removed. - -- GH-2819: Filter bar in mod lists now also works with descriptions and author lists. - -- GH-2832: Version page now has buttons for opening the Minecraft and internal libraries folders of the instance. - -- GH-2769: When copying an instance, there's now an option to keep or remove the total play time from the copy. - -### Bugfixes - -- GH-2880: Clicking the service status indicators now opens a valid site again, instead of going nowhere. - -- GH-2853: When collapsing groups in instance view, the action no longer becomes 'sticky' and doesn't apply to items clicked afterwards. - -- GH-2787: "Download All" button works again. - -- When a component is customized, the launcher will not try to update it in an infinite loop when something else requires a different version. - - -## MultiMC 0.6.7 - -The previous release introduced some extra buttons that made the instance window way too big for some displays. This release is aimed at fixing that, along with other UI and performance improvements. - -There are some accessibility fixes thrown in too. - -### New or changed features - -- Mod lists are now asynchronous and heavily threaded. - - Basically, both faster and more responsive. - - The changes necessary for this also pave the way for having other sources of mod metadata, and for adding more mod-related features support in general. - -- Mod list printed in log has been improved. - - It now also shows disabled mods, and has prefix and suffix that shows if the mod is enabled, and if it is a folder. - -- You can now enable and disable mods with the keyboard. - - Toggle with enter. - -- Enabling and disabling mods no longer makes the list forget what was selected. - -- GH-358: Switched all the dialog pages from using buttons in layouts to toolbars. - - Toolbar buttons are smaller, and the toolbars can overflow buttons into an overflow space. This allows requiring a lot less space for the windows. - - All of the relevant pages now also have context menus to offset the issues toolbars create when using screen readers. - -- Main window instance list is now compatible with screen readers. - - If you have poor or no eyesight, this makes MultiMC usable. - -- More instance pages are now visible when the instance is running. - - Mods, version and the like should now be visible, but most of the controls are disabled until the game closes. - -- GH-2550, GH-2722, GH-2762: Mod list sorting is much improved. - - You can now sort mods by enabled status. - - Sorting by version actually looks at the versions as versions, not words. - - Sorting by name ignores 'The' prefixes in mod names. For example, 'The Betweenlands' will be sorted as 'Betweenlands'. - - Sorting cascades from 'Enabled' to 'Name' and then 'Version'. This means that if you sort 'Enabled', the enabled and disabled mods are still sorted - by name and mods with the same name will be also sorted by version. - -## MultiMC 0.6.6 - -This release is mostly the smaller things that have accumulated over time, along with a big change in linux packaging. - -No 1.13+ Forge news yet. That's going to be a major overhaul of many of the internals of MultiMC. - -### **IMPORTANT** - -On linux, MultiMC no longer bundles the Qt libraries. This fixes many issues, but it might not run after the update unless you have the required libraries installed. - -Make sure you have the following packages before you update: - -- Arch: `qt5-base` -- Debian/Ubuntu: `qt5-default` -- CentOS/RHEL/Fedora: `qt5-qtbase-gui` -- Suse: `libqt5-qtbase` - -MultiMC on linux is built with Qt 5.4 and older versions of Qt will not work. - -This should be a massive improvement to system integration on linux and resolves GH-1784, GH-2605, GH-1979, GH-2271, GH-1992, GH-1816 and their many duplicates. - -### New or changed features - -- GH-2487: No is now the default button when deleting instances. - -- It is now possible to launch with profilers in offline mode. - -- Massively improved support for icon formats when importing and exporting instances. - - All of the formats MultiMC supports are now supported in exported instances too, instead of just PNG. - -- Added the pocket fox icon. - - We still have the big one under the staircase. It's cute. Just hide your chickens. - -- Global settings can be opened from instance settings where appropriate. - - Many people use the instance overrides where using the global settings would be more appropriate. Hopefully this makes it clearer that the instance settings are overrides for the global settings. - -- Added direct Fabric loader support. - - Much overdue. It's good. Fabric mod metadata is also supported in the mod pages. - -- MultiMC now recognizes the new `experimental` Minecraft versions. - - Go mess with the combat experiment. It's interesting. - -- Added Twitch URL as an option to the Add Instance dialog. - - You can now drag the purple download buttons from CurseForge into MultiMC and get a modpack out of it. Much easier! - -### Bugfixes - -- Translation folder is now created sooner, making first launch translation fetch work again. - -- GH-2716: MultiMC will no longer try to censor values shorter than 4 characters in logs. - - It was actually leaking information and destroying the logs instead of helping. - -- GH-2551: Trim server name and IP before saving them. - -- GH-2591: Fix multiple potential memory leaks and crashes related to destroying objects with Qt memory lifecycle model. - -- `run.sh` on linux now passes all arguments to MultiMC. - -- Adding a disabled mod duplicate now replaces the existing mod. - -- GH-2592: Newly created instances are now selected again. This was a very old regression. - -- GH-689: MultiMC no longer creates an imgur album for single screenshot uploads. - -- GH-1813: `#` is now saved properly when used in instance notes. - -- GH-2515: Deleting an instance externally while the delete dialog is open no longer leads to some other instance being deleted when you click OK. - -- GH-2499: Proxy settings are applied immediately and no longer need an application restart. - -- GH-1701: When downloading updates, the text now reflects the number of downloaded files better. - -- Icon scaling issues on macOS should now be fixed. - -## MultiMC 0.6.5 - -Finalizing the translation workflow improvements and adding fixes for sounds missing in old game versions. - -### New or changed features - -- UI for the language settings has been unified across the application - -- GH-2209: Sounds in old (pre-1.6) versions should now work again - - The launcher now downloads the correct assets and reconstructs the `resources` folder inside instances. This mirrors the same fix implemented in vanilla. - - Also, a minor issue with the reconstruction being done twice per launch has been fixed. - - -## MultiMC 0.6.4 - -Update for a better translation workflow, and new FTB API location. - -### New or changed features - -- FTB API location has changed - - MultiMC now uses the new location and should keep working. - -- Translations have been overhauled, again - - It is now possible to put the translation source `.po` files into the `translations` folder and see changes in MultiMC immediately. - - The new translation workflow is like this: - * Get a `.po` file from here the [translations repository](https://github.com/MultiMC/MultiMC5-translate). - * Alternatively, get the `template.pot` and start a new translation based on it. - * Put it in the `translations` folder. - * Edit it with [POEdit](https://poedit.net/). - * See the changes in real time. - * When done, post the changed files on discord, or github. - - When using a `.po` file, MultiMC logs which strings are missing from the translation on the currently displayed UI screen(s), and which one are marked as fuzzy. This should make it easy to determine what's important. - -## MultiMC 0.6.3 - -This is a release mostly aimed at getting all the small changes and fixes out of the door. - -### Potentially breaking changes - -- Local libraries are only loaded from inside the instances now. - - Before, MultiMC allowed loading local libraries from the main `libraries` folder. - This in turn allowed existence of instances which could not be transported from one installation of MultiMC to another. - - GH-2475: A bug that allowed the launch to continue with missing local libraries has also been fixed. - - Effectively, you will get errors from launching such instances. You can fix the errors by copying the libraries to the locations indicated in the error log. - -### New or changed features - -- FTB import now has support for third party modpack codes. - - Better late than never? - -- Instance creation can now be interrupted / aborted. - -- GH-2053: You can now inspect and change the `servers.dat` file from MultiMC. - -- MultiMC now uses the https protocol for many more network requests. - -- GH-2352: There is now a button to open the `.minecraft` folder inside the selected instance. - -- GH-2232: MultiMC can now use `.gif` icons (not animated). - -- GH-2101: Instance renaming is now done inline, in the actual instance list. - -- GH-2452: When deleting a group, MultiMC asks for confirmation. - -- GH-1552: PermGen is no longer shown when it's not appropriate (java 8 and up). - -- GH-2144: When changing versions of a component like Forge, the current version is marked with `(installed)`. - -- GH-2374: World list has been improved: - |
