Skip to content

Commit

Permalink
Update Submodules
Browse files Browse the repository at this point in the history
Co-authored-by: KotB <[email protected]>
  • Loading branch information
ChristopherHX and 0xCatPKG committed Jan 8, 2023
1 parent 73f8ad3 commit 703ba32
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 20 deletions.
34 changes: 19 additions & 15 deletions README.md
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.
2 changes: 1 addition & 1 deletion eglut
Submodule eglut updated 2 files
+2 −2 src/eglut.c
+1 −1 src/eglut_x11.c
2 changes: 1 addition & 1 deletion libc-shim
2 changes: 1 addition & 1 deletion mcpelauncher-client
Submodule mcpelauncher-client updated 92 files
+13 −0 .clang-format
+24 −0 .github/workflows/ci.yml
+20 −13 src/armhf_support.cpp
+2 −4 src/armhf_support.h
+9 −5 src/armhfrewrite.h
+18 −18 src/cll_upload_auth_step.cpp
+1 −3 src/cll_upload_auth_step.h
+4 −4 src/core_patches.cpp
+0 −2 src/core_patches.h
+14 −14 src/cpuid.cpp
+1 −3 src/cpuid.h
+38 −40 src/fake_assetmanager.cpp
+4 −6 src/fake_assetmanager.h
+88 −89 src/fake_egl.cpp
+2 −4 src/fake_egl.h
+39 −40 src/fake_inputqueue.cpp
+4 −7 src/fake_inputqueue.h
+25 −25 src/fake_looper.cpp
+7 −8 src/fake_looper.h
+4 −4 src/fake_window.cpp
+2 −2 src/fake_window.h
+23 −23 src/gl_core_patch.cpp
+3 −6 src/gl_core_patch.h
+8 −8 src/hbui_patch.cpp
+1 −3 src/hbui_patch.h
+2 −2 src/jni/accounts.cpp
+1 −1 src/jni/arrays.cpp
+1 −2 src/jni/arrays.h
+1 −4 src/jni/cert_manager.cpp
+1 −11 src/jni/cert_manager.h
+20 −20 src/jni/ecdsa.cpp
+5 −5 src/jni/ecdsa.h
+1 −7 src/jni/http_stub.cpp
+2 −3 src/jni/http_stub.h
+3 −7 src/jni/java_types.h
+1 −1 src/jni/jbase64.cpp
+1 −2 src/jni/jbase64.h
+222 −258 src/jni/jni_descriptors.cpp
+62 −72 src/jni/jni_support.cpp
+2 −4 src/jni/jni_support.h
+36 −32 src/jni/lib_http_client.cpp
+9 −5 src/jni/lib_http_client.h
+1 −1 src/jni/locale.cpp
+1 −3 src/jni/locale.h
+24 −12 src/jni/main_activity.cpp
+17 −29 src/jni/main_activity.h
+1 −1 src/jni/package_source.cpp
+0 −4 src/jni/package_source.h
+15 −15 src/jni/pulseaudio.cpp
+1 −2 src/jni/pulseaudio.h
+1 −1 src/jni/securerandom.cpp
+1 −1 src/jni/securerandom.h
+7 −7 src/jni/shahasher.cpp
+3 −3 src/jni/shahasher.h
+0 −1 src/jni/signature.cpp
+1 −3 src/jni/signature.h
+11 −4 src/jni/store.cpp
+2 −5 src/jni/store.h
+3 −4 src/jni/uuid.cpp
+1 −2 src/jni/uuid.h
+3 −3 src/jni/webview.cpp
+2 −2 src/jni/webview.h
+27 −27 src/jni/xbox_live.cpp
+5 −11 src/jni/xbox_live.h
+49 −44 src/main.cpp
+16 −16 src/shader_error_patch.cpp
+1 −3 src/shader_error_patch.h
+5 −5 src/splitscreen_patch.cpp
+1 −3 src/splitscreen_patch.h
+5 −5 src/symbols.cpp
+3 −3 src/symbols.h
+9 −9 src/texel_aa_patch.cpp
+1 −3 src/texel_aa_patch.h
+21 −21 src/text_input_handler.cpp
+2 −4 src/text_input_handler.h
+5 −5 src/thread_mover.cpp
+2 −4 src/thread_mover.h
+4 −6 src/utf8_util.h
+6 −5 src/util.h
+200 −138 src/window_callbacks.cpp
+3 −5 src/window_callbacks.h
+1 −3 src/xal_webview.h
+2 −2 src/xal_webview_cli.cpp
+1 −1 src/xal_webview_cli.h
+1 −1 src/xal_webview_factory.cpp
+1 −4 src/xal_webview_factory.h
+15 −15 src/xal_webview_qt.cpp
+2 −1 src/xal_webview_qt.h
+32 −34 src/xbox_live_helper.cpp
+7 −12 src/xbox_live_helper.h
+7 −7 src/xbox_shutdown_patch.cpp
+1 −3 src/xbox_shutdown_patch.h
2 changes: 1 addition & 1 deletion minecraft-imported-symbols

0 comments on commit 703ba32

Please sign in to comment.