Update README.md
Browse files
README.md
CHANGED
|
@@ -1,151 +1,45 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
You can get PojavLauncher via three methods:
|
| 47 |
-
|
| 48 |
-
1. **Releases:** Download the prebuilt app from our [stable releases](https://github.com/PojavLauncherTeam/PojavLauncher/releases) or [automatic builds](https://github.com/PojavLauncherTeam/PojavLauncher/actions).
|
| 49 |
-
2. **Google Play:** Get it from Google Play by clicking on this badge: [](https://play.google.com/store/apps/details?id=net.kdt.pojavlaunch)
|
| 50 |
-
3. **Build from Source:** Follow the [building instructions](#building) below.
|
| 51 |
-
|
| 52 |
-
## Building
|
| 53 |
-
|
| 54 |
-
### Quick Build (Recommended)
|
| 55 |
-
|
| 56 |
-
The easiest way to build PojavLauncher is to use the pre-built JREs provided by our CI.
|
| 57 |
-
|
| 58 |
-
1. Clone the repository: `git clone https://github.com/PojavLauncherTeam/PojavLauncher.git`
|
| 59 |
-
2. Build the launcher: `./gradlew :app_pojavlauncher:assembleDebug` (Use `gradlew.bat` on Windows)
|
| 60 |
-
|
| 61 |
-
The built APK will be located in `app_pojavlauncher/build/outputs/apk/debug/`.
|
| 62 |
-
|
| 63 |
-
### Detailed Build
|
| 64 |
-
|
| 65 |
-
If you need more control over the build process, follow these steps:
|
| 66 |
-
|
| 67 |
-
1. **Java Runtime Environment (JRE):** Download the `jre8-pojav` artifact from our [CI auto builds](https://github.com/PojavLauncherTeam/android-openjdk-build-multiarch/actions). This package contains pre-built JREs for all supported architectures. If you need to build the JRE yourself, follow the instructions in the [android-openjdk-build-multiarch](https://github.com/PojavLauncherTeam/android-openjdk-build-multiarch) repository.
|
| 68 |
-
|
| 69 |
-
2. **LWJGL:** The build instructions for the custom LWJGL are available over the [LWJGL repository](https://github.com/PojavLauncherTeam/lwjgl3).
|
| 70 |
-
|
| 71 |
-
3. **Language List:** Because languages are auto-added by Crowdin, you need to run the language list generator before building. In the project directory, run:
|
| 72 |
-
* Linux/macOS:
|
| 73 |
-
```bash
|
| 74 |
-
chmod +x scripts/languagelist_updater.sh
|
| 75 |
-
bash scripts/languagelist_updater.sh
|
| 76 |
-
```
|
| 77 |
-
* Windows:
|
| 78 |
-
```batch
|
| 79 |
-
scripts\languagelist_updater.bat
|
| 80 |
-
```
|
| 81 |
-
|
| 82 |
-
4. **Build GLFW stub:** `./gradlew :jre_lwjgl3glfw:build`
|
| 83 |
-
|
| 84 |
-
5. **Build the launcher:** `./gradlew :app_pojavlauncher:assembleDebug` (Replace `gradlew` with `gradlew.bat` on Windows).
|
| 85 |
-
|
| 86 |
-
## Current Status
|
| 87 |
-
|
| 88 |
-
* [x] OpenJDK 8 Mobile port: ARM32, ARM64, x86, x86_64
|
| 89 |
-
* [x] OpenJDK 17 Mobile port: ARM32, ARM64, x86, x86_64
|
| 90 |
-
* [x] OpenJDK 21 Mobile port: ARM32, ARM64, x86, x86_64
|
| 91 |
-
* [x] Headless mod installer
|
| 92 |
-
* [x] Mod installer with GUI
|
| 93 |
-
* [x] OpenGL in OpenJDK environment
|
| 94 |
-
* [x] OpenAL (works on most devices)
|
| 95 |
-
* [x] Support for Minecraft 1.12.2 and below
|
| 96 |
-
* [x] Support for Minecraft 1.13 and above
|
| 97 |
-
* [x] Support for Minecraft 1.17 (22w13a) and above
|
| 98 |
-
* [x] Game surface zooming
|
| 99 |
-
* [x] New input pipe rewritten to native code
|
| 100 |
-
* [x] Rewritten entire controls system
|
| 101 |
-
* [ ] More to come!
|
| 102 |
-
|
| 103 |
-
## Known Issues
|
| 104 |
-
|
| 105 |
-
See our [issue tracker](https://github.com/PojavLauncherTeam/PojavLauncher/issues) for a list of known issues and their current status.
|
| 106 |
-
|
| 107 |
-
## FAQ
|
| 108 |
-
|
| 109 |
-
See our [wiki](https://pojavlauncherteam.github.io/) for more information.
|
| 110 |
-
|
| 111 |
-
## Contributing
|
| 112 |
-
|
| 113 |
-
Contributions are welcome! We welcome any type of contribution, not only code. For example, you can help improve the [wiki](https://pojavlauncherteam.github.io/), contribute to the [translations](https://crowdin.com/project/pojavlauncher), or submit bug reports and feature requests.
|
| 114 |
-
|
| 115 |
-
Any code change should be submitted as a pull request. The description should explain what the code does and give steps to execute it.
|
| 116 |
-
|
| 117 |
-
## Support
|
| 118 |
-
|
| 119 |
-
For support, please join our [Discord server](https://discord.com/invite/aenk3EUvER).
|
| 120 |
-
|
| 121 |
-
## License
|
| 122 |
-
|
| 123 |
-
PojavLauncher is licensed under [GNU LGPLv3](https://github.com/PojavLauncherTeam/PojavLauncher/blob/v3_openjdk/LICENSE).
|
| 124 |
-
|
| 125 |
-
## Credits & Dependencies
|
| 126 |
-
|
| 127 |
-
* [Boardwalk](https://github.com/zhuowei/Boardwalk) (JVM Launcher): Unknown License/[Apache License 2.0](https://github.com/zhuowei/Boardwalk/blob/master/LICENSE) or GNU GPLv2.
|
| 128 |
-
* Android Support Libraries: [Apache License 2.0](https://android.googlesource.com/platform/prebuilts/maven_repo/android/+/master/NOTICE.txt).
|
| 129 |
-
* [GL4ES](https://github.com/PojavLauncherTeam/gl4es): [MIT License](https://github.com/ptitSeb/gl4es/blob/master/LICENSE).
|
| 130 |
-
* [OpenJDK](https://github.com/PojavLauncherTeam/openjdk-multiarch-jdk8u): [GNU GPLv2 License](https://openjdk.java.net/legal/gplv2+ce.html).
|
| 131 |
-
* [LWJGL3](https://github.com/PojavLauncherTeam/lwjgl3): [BSD-3 License](https://github.com/LWJGL/lwjgl3/blob/master/LICENSE.md).
|
| 132 |
-
* [LWJGLX](https://github.com/PojavLauncherTeam/lwjglx) (LWJGL2 API compatibility layer for LWJGL3): unknown license.
|
| 133 |
-
* [Mesa 3D Graphics Library](https://gitlab.freedesktop.org/mesa/mesa): [MIT License](https://docs.mesa3d.org/license.html).
|
| 134 |
-
* [pro-grade](https://github.com/pro-grade/pro-grade) (Java sandboxing security manager): [Apache License 2.0](https://github.com/pro-grade/pro-grade/blob/master/LICENSE.txt).
|
| 135 |
-
* [bhook](https://github.com/bytedance/bhook) (Used for exit code trapping): [MIT license](https://github.com/bytedance/bhook/blob/main/LICENSE).
|
| 136 |
-
* [libepoxy](https://github.com/anholt/libepoxy): [MIT License](https://github.com/anholt/libepoxy/blob/master/COPYING).
|
| 137 |
-
* [virglrenderer](https://github.com/PojavLauncherTeam/virglrenderer): [MIT License](https://gitlab.freedesktop.org/virgl/virglrenderer/-/blob/master/COPYING).
|
| 138 |
-
* Thanks to [MCHeads](https://mc-heads.net) for providing Minecraft avatars.
|
| 139 |
-
|
| 140 |
-
## Roadmap
|
| 141 |
-
|
| 142 |
-
We are currently focusing on:
|
| 143 |
-
|
| 144 |
-
* Exploring new rendering technologies.
|
| 145 |
-
|
| 146 |
-
Future plans include:
|
| 147 |
-
|
| 148 |
-
* Improving stability and performance.
|
| 149 |
-
* Enhancing the mod installation experience.
|
| 150 |
-
|
| 151 |
-
We welcome community feedback and suggestions for our roadmap. Please feel free to open a feature request in our [issue tracker](https://github.com/PojavLauncherTeam/PojavLauncher/issues).
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- feature-extraction
|
| 5 |
+
- text-classification
|
| 6 |
+
- token-classification
|
| 7 |
+
- table-question-answering
|
| 8 |
+
- question-answering
|
| 9 |
+
- zero-shot-classification
|
| 10 |
+
- translation
|
| 11 |
+
- summarization
|
| 12 |
+
- text-generation
|
| 13 |
+
- fill-mask
|
| 14 |
+
- sentence-similarity
|
| 15 |
+
- text-to-speech
|
| 16 |
+
- text-to-audio
|
| 17 |
+
- automatic-speech-recognition
|
| 18 |
+
- audio-to-audio
|
| 19 |
+
- audio-classification
|
| 20 |
+
- voice-activity-detection
|
| 21 |
+
- depth-estimation
|
| 22 |
+
- image-classification
|
| 23 |
+
- object-detection
|
| 24 |
+
- image-segmentation
|
| 25 |
+
- text-to-image
|
| 26 |
+
- image-to-text
|
| 27 |
+
- image-to-image
|
| 28 |
+
- image-to-video
|
| 29 |
+
- unconditional-image-generation
|
| 30 |
+
- video-classification
|
| 31 |
+
- reinforcement-learning
|
| 32 |
+
- tabular-classification
|
| 33 |
+
- robotics
|
| 34 |
+
- tabular-regression
|
| 35 |
+
language:
|
| 36 |
+
- en
|
| 37 |
+
- hi
|
| 38 |
+
tags:
|
| 39 |
+
- legal
|
| 40 |
+
- code
|
| 41 |
+
- not-for-all-audiences
|
| 42 |
+
pretty_name: ZBros
|
| 43 |
+
size_categories:
|
| 44 |
+
- n<1K
|
| 45 |
+
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|