Rename Package
This commit is contained in:
parent
3259299058
commit
f1520e75c5
@ -37,7 +37,7 @@ endif()
|
||||
include(cmake/util.cmake)
|
||||
|
||||
# Specify Variant Name
|
||||
set(MCPI_VARIANT_NAME "minecraft-pi-reborn")
|
||||
set(MCPI_VARIANT_NAME "minecraft-pi-reborn-legacy")
|
||||
if(MCPI_SERVER_MODE)
|
||||
set(MCPI_VARIANT_NAME "${MCPI_VARIANT_NAME}-server")
|
||||
else()
|
||||
|
@ -1,7 +1,7 @@
|
||||
FROM debian:bullseye-slim
|
||||
|
||||
# Copy DEB
|
||||
ADD ./out/minecraft-pi-reborn-server_*_amd64.deb /root
|
||||
ADD ./out/minecraft-pi-reborn-legacy-server_*_amd64.deb /root
|
||||
|
||||
# Install
|
||||
RUN \
|
||||
@ -18,4 +18,4 @@ WORKDIR /data
|
||||
|
||||
# Setup Entrypoint
|
||||
ENTRYPOINT ["/usr/bin/tini", "--"]
|
||||
CMD ["minecraft-pi-reborn-server"]
|
||||
CMD ["minecraft-pi-reborn-legacy-server"]
|
||||
|
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
@ -22,11 +22,11 @@ pipeline {
|
||||
stage('Publish') {
|
||||
steps {
|
||||
sh 'apt-get update && apt-get install -y docker.io'
|
||||
sh 'docker build --no-cache --tag thebrokenrail/minecraft-pi-reborn-server .'
|
||||
sh 'docker build --no-cache --tag thebrokenrail/minecraft-pi-reborn-legacy-server .'
|
||||
withCredentials([usernamePassword(credentialsId: 'docker_hub_login', usernameVariable: 'DOCKER_HUB_USERNAME', passwordVariable: 'DOCKER_HUB_PASSWORD')]) {
|
||||
sh 'docker login -u "${DOCKER_HUB_USERNAME}" -p "${DOCKER_HUB_PASSWORD}"'
|
||||
}
|
||||
sh 'docker push thebrokenrail/minecraft-pi-reborn-server'
|
||||
sh 'docker push thebrokenrail/minecraft-pi-reborn-legacy-server'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -2,7 +2,7 @@
|
||||
<img alt="Start Screen" src="images/start.png">
|
||||
</p>
|
||||
|
||||
# Minecraft: Pi Edition: Reborn
|
||||
# Minecraft: Pi Edition: Reborn Legacy
|
||||
Minecraft: Pi Edition Modding Project
|
||||
|
||||
## Documentation
|
||||
|
2
debian/client-amd64
vendored
2
debian/client-amd64
vendored
@ -1,4 +1,4 @@
|
||||
Package: minecraft-pi-reborn-client
|
||||
Package: minecraft-pi-reborn-legacy-client
|
||||
Version: ${VERSION}
|
||||
Maintainer: TheBrokenRail <connor24nolan@live.com>
|
||||
Description: Fun with Blocks
|
||||
|
2
debian/client-arm64
vendored
2
debian/client-arm64
vendored
@ -1,4 +1,4 @@
|
||||
Package: minecraft-pi-reborn-client
|
||||
Package: minecraft-pi-reborn-legacy-client
|
||||
Version: ${VERSION}
|
||||
Maintainer: TheBrokenRail <connor24nolan@live.com>
|
||||
Description: Fun with Blocks
|
||||
|
2
debian/client-armhf
vendored
2
debian/client-armhf
vendored
@ -1,4 +1,4 @@
|
||||
Package: minecraft-pi-reborn-client
|
||||
Package: minecraft-pi-reborn-legacy-client
|
||||
Version: ${VERSION}
|
||||
Maintainer: TheBrokenRail <connor24nolan@live.com>
|
||||
Description: Fun with Blocks
|
||||
|
2
debian/server-amd64
vendored
2
debian/server-amd64
vendored
@ -1,4 +1,4 @@
|
||||
Package: minecraft-pi-reborn-server
|
||||
Package: minecraft-pi-reborn-legacy-server
|
||||
Version: ${VERSION}
|
||||
Maintainer: TheBrokenRail <connor24nolan@live.com>
|
||||
Description: Fun with Blocks
|
||||
|
2
debian/server-arm64
vendored
2
debian/server-arm64
vendored
@ -1,4 +1,4 @@
|
||||
Package: minecraft-pi-reborn-server
|
||||
Package: minecraft-pi-reborn-legacy-server
|
||||
Version: ${VERSION}
|
||||
Maintainer: TheBrokenRail <connor24nolan@live.com>
|
||||
Description: Fun with Blocks
|
||||
|
2
debian/server-armhf
vendored
2
debian/server-armhf
vendored
@ -1,4 +1,4 @@
|
||||
Package: minecraft-pi-reborn-server
|
||||
Package: minecraft-pi-reborn-legacy-server
|
||||
Version: ${VERSION}
|
||||
Maintainer: TheBrokenRail <connor24nolan@live.com>
|
||||
Description: Fun with Blocks
|
||||
|
@ -1,15 +1,15 @@
|
||||
# Dedicated Server
|
||||
The dedicated server is a version of Minecraft: Pi Edition modified to run in a headless environment. It loads settings from a ``server.properties`` file.
|
||||
|
||||
This server is also compatible with MCPE Alpha v0.6.1.
|
||||
This server is also compatible with MCPE Alpha v0.5.0.
|
||||
|
||||
## Setup
|
||||
|
||||
### Debian Package
|
||||
To use, install and run ``minecraft-pi-reborn-server``. It will generate the world and ``server.properties`` in the current directory.
|
||||
To use, install and run ``minecraft-pi-reborn-legacy-server``. It will generate the world and ``server.properties`` in the current directory.
|
||||
|
||||
### Docker Image
|
||||
An official Docker image is also provided: [thebrokenrail/minecraft-pi-reborn-server](https://hub.docker.com/r/thebrokenrail/minecraft-pi-reborn-server).
|
||||
An official Docker image is also provided: [thebrokenrail/minecraft-pi-reborn-legacy-server](https://hub.docker.com/r/thebrokenrail/minecraft-pi-reborn-legacy-server).
|
||||
|
||||
## Server Limitations
|
||||
* Player data is not saved because of limitations with MCPE LAN worlds
|
||||
|
@ -1,5 +1,5 @@
|
||||
# Manual Installation
|
||||
[Download Packages Here](https://jenkins.thebrokenrail.com/job/minecraft-pi-reborn/job/master/lastSuccessfulBuild/artifact/out/)
|
||||
[Download Packages Here](https://jenkins.thebrokenrail.com/job/minecraft-pi-reborn/job/legacy/lastSuccessfulBuild/artifact/out/)
|
||||
|
||||
## Supported Distributions
|
||||
* Ubuntu 20.04+
|
||||
@ -9,7 +9,7 @@
|
||||
|
||||
### Name Format
|
||||
```
|
||||
minecraft-pi-reborn-<Variant>_X.Y.Z_<Architecture>
|
||||
minecraft-pi-reborn-legacy-<Variant>_X.Y.Z_<Architecture>
|
||||
```
|
||||
|
||||
### Picking A Variant
|
||||
|
@ -1,7 +1,7 @@
|
||||
# Sound
|
||||
One of MCPI-Reborn's main modifications is a sound-engine since MCPI doesn't include one by default[^1]. However, it can't be used out-of-box because MCPI doesn't contain any sound data and MCPI-Reborn can't include it because of copyright.
|
||||
|
||||
MCPE's sound data can be extracted from any MCPE v0.6.1[^2] APK file, just place its `libminecraftpe.so` into `~/.minecraft-pi/overrides` and you should have sound!
|
||||
MCPE's sound data can be extracted from any MCPE v0.5.0[^2] APK file, just place its `libminecraftpe.so` into `~/.minecraft-pi/overrides` and you should have sound!
|
||||
|
||||
[^1]: The mute button is just leftover code from MCPE, it doesn't actually do anything in un-modded MCPI, however it is connected to MCPI-Reborn's sound-engine.
|
||||
[^2]: This isn't a hard limit, an MCPE v0.8.1 APK would probably work, but don't rely on it.
|
||||
|
@ -1,10 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Name=Minecraft: Pi Edition: Reborn
|
||||
Comment=Fun with Blocks
|
||||
Icon=minecraft-pi-reborn-client
|
||||
StartupNotify=false
|
||||
StartupWMClass=Minecraft: Pi Edition: Reborn
|
||||
Exec=minecraft-pi-reborn-client
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=Application;Game;
|
@ -0,0 +1,10 @@
|
||||
[Desktop Entry]
|
||||
Name=Minecraft: Pi Edition: Reborn Legacy
|
||||
Comment=Fun with Blocks
|
||||
Icon=minecraft-pi-reborn-legacy-client
|
||||
StartupNotify=false
|
||||
StartupWMClass=Minecraft: Pi Edition: Reborn Legacy
|
||||
Exec=minecraft-pi-reborn-legacy-client
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=Application;Game;
|
Before Width: | Height: | Size: 100 KiB After Width: | Height: | Size: 100 KiB |
@ -107,7 +107,7 @@ static void run_zenity_and_set_env(const char *env_name, std::vector<std::string
|
||||
std::vector<std::string> full_command;
|
||||
full_command.push_back("zenity");
|
||||
full_command.push_back("--class");
|
||||
full_command.push_back("Minecraft: Pi Edition: Reborn");
|
||||
full_command.push_back("Minecraft: Pi Edition: Reborn Legacy");
|
||||
full_command.insert(full_command.end(), command.begin(), command.end());
|
||||
// Convert To C Array
|
||||
const char *full_command_array[full_command.size() + 1];
|
||||
|
@ -17,7 +17,7 @@
|
||||
// Custom Title
|
||||
HOOK(SDL_WM_SetCaption, void, (__attribute__((unused)) const char *title, const char *icon)) {
|
||||
ensure_SDL_WM_SetCaption();
|
||||
(*real_SDL_WM_SetCaption)("Minecraft: Pi Edition: Reborn", icon);
|
||||
(*real_SDL_WM_SetCaption)("Minecraft: Pi Edition: Reborn Legacy", icon);
|
||||
}
|
||||
|
||||
// Mouse Cursor Is Always Invisible In Vanilla MCPI
|
||||
|
@ -11,4 +11,4 @@ mkdir -p build/test
|
||||
|
||||
# Run Test
|
||||
cd build/test
|
||||
minecraft-pi-reborn-server --only-generate
|
||||
minecraft-pi-reborn-legacy-server --only-generate
|
||||
|
Loading…
Reference in New Issue
Block a user