-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
6 changed files
with
24 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,35 @@ | ||
# mcpelauncher | ||
|
||
This project contains an unofficial launcher for the Android version of Minecraft: Bedrock Edition on linux and macOS. | ||
An unstable unofficial launcher for the Android version of Minecraft: Bedrock Edition on linux and macOS. | ||
|
||
Currently this Launcher can open Minecraft 1.13.0 - 1.18.2. Previous Versions of this Launcher were able to run 0.12 - 1.12.1. | ||
# UI | ||
|
||
The User Interface to login, download and manage Versions can be found [here](https://github.com/minecraft-linux/mcpelauncher-ui-manifest) | ||
|
||
# System Requirements | ||
Your Computer must be able to run Android. | ||
|
||
Operating System|Architecture|Requirements | ||
---|---|--- | ||
linux / macOS 10.10 - 10.14|x86|Intel or Amd CPU with SSSE3 Instruction Set. | ||
linux / macOS 10.10 - latest|x86_64|Intel or Amd CPU with SSSE3, SSE4.1, SSE4.2 and POPCNT Instruction Sets. M1 Macs can run this Launcher with Rosetta 2 | ||
linux|arm32|armv7 CPU and pulseaudio | ||
linux|arm64|armv8 CPU and pulseaudio | ||
Operating System|Architecture|Requirements|Minecraft Versions | ||
---|---|---|--- | ||
linux glibc|x86|Intel or Amd CPU with SSSE3 Instruction Set.|1.13.0 - 1.19.60 | ||
macOS 10.10 - 10.14|x86|Intel or Amd CPU with SSSE3 Instruction Set.|1.13.0 - 1.16.1X | ||
linux glibc|x86_64|Intel or Amd CPU with SSSE3, SSE4.1, SSE4.2 and POPCNT Instruction Sets.|1.13.0 - 1.19.60 | ||
macOS 10.10 - latest|x86_64|Intel or Amd CPU with SSSE3, SSE4.1, SSE4.2 and POPCNT Instruction Sets. M1 Macs can run this Launcher with Rosetta 2|1.13.0 - 1.19.60 | ||
linux glibc|arm32|armv7 CPU and pulseaudio|1.13.0 - 1.19.60 | ||
linux glibc|arm64|armv8 CPU and pulseaudio|1.13.0 - 1.19.60 | ||
|
||
|
||
# Important Minecraft Version specific Bugs | ||
|
||
# Notable Version specfic Bug | ||
Minecraft Version|Bug Description | ||
---|--- | ||
1.13.0 - 1.16.1X|Xbox login doesn't work. It is working in previous Versions of this Launcher. | ||
1.16.20 - latest|No sound for macOS x86 launcher without compiling yourself with pulseaudio | ||
1.16.100 - 1.17.2X|Pressing the archivement button crashs the game | ||
1.16.210 - 1.17.4X|Crafting not working as expected | ||
1.16.210 - 1.17.4X|Textures off by one, enable texture patch in profile settings to mitigate this Bug | ||
1.16.210 - 1.17.4X|Crafting is broken on x86 and x86_64 based devices | ||
1.16.210 - 1.17.4X|Textures are off by one on x86 and x86_64 based devices, enable texture patch in profile settings to mitigate this Bug | ||
1.16.210 - 1.17.4X|World Corruption while next to water | ||
1.16.210 - latest|Store and skins not loading | ||
1.17.4X - latest|Pressing the archivement button does nothing | ||
1.16.210 - 1.18.1X|Store and skins not loading | ||
1.18.30 - latest|**The game stops loading between 55-60% depening on the OS, distro and Hardware you have to force reloading without waiting more than a second**. Store and skins not loading, the game prevents you from selecting a custom skin | ||
|
||
# Wiki | ||
|
||
Please check our wiki https://mcpelauncher.readthedocs.io for information about compiling or installing this launcher. |
Submodule libc-shim
updated
14 files
+24 −0 | .github/workflows/ci.yml | |
+1 −1 | CMakeLists.txt | |
+59 −2 | src/common.cpp | |
+6 −0 | src/common.h | |
+1 −1 | src/ctype_data.cpp | |
+1 −1 | src/ctype_data.h | |
+24 −2 | src/pthreads.cpp | |
+5 −1 | src/pthreads.h | |
+13 −0 | src/sched.cpp | |
+9 −0 | src/sched.h | |
+27 −1 | src/stat.cpp | |
+5 −1 | src/stat.h | |
+27 −0 | src/statvfs.cpp | |
+44 −0 | src/statvfs.h |
Submodule mcpelauncher-client
updated
92 files
Submodule mcpelauncher-linux-bin
updated
5 files
+25 −0 | .github/workflows/update.yml | |
+2 −2 | lib/armeabi-v7a/README.MD | |
+ − | lib/armeabi-v7a/libc.so | |
+2 −2 | lib/armeabi-v7a/libcrt_compat.c | |
+ − | lib/armeabi-v7a/libm.so |
Submodule minecraft-imported-symbols
updated
1 files
+1,038 −0 | include/minecraft/imported/fmod_symbols.h |