This repository has been archived by the owner on Jan 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ebe08d9
commit 519462d
Showing
29 changed files
with
81 additions
and
157 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,40 +1,4 @@ | ||
# Changelog | ||
|
||
**0.3.0 (Release Candidate 1)** | ||
- Java Rewrite Proof-Of-Concept | ||
|
||
**0.2.0 (Release Candidate 1)** | ||
- Add Splash Text | ||
- Use Dark Theme | ||
- Add Option To Hide Launcher While Game Is Running | ||
- Add "Optimized MCPE" Profile | ||
|
||
**0.1.9** | ||
* Update Proxy | ||
|
||
**0.1.8** | ||
* Add Render Distance Options | ||
|
||
**0.1.7** | ||
* Pre-Populate Server | ||
|
||
**0.1.6** | ||
* Fix Typo | ||
|
||
**0.1.5** | ||
* Drop The ``-R`` | ||
|
||
**0.1.4** | ||
* Update To Reflect MCPI-Reborn Name Change | ||
|
||
**0.1.3** | ||
* New Logo | ||
|
||
**0.1.2** | ||
* Fix Multiplayer Proxy Not Starting/Stopping Correctly | ||
|
||
**0.1.1** | ||
* Update Multiplayer Proxy | ||
|
||
**0.1.0** | ||
* Initial Release | ||
**0.1.0 (Release Candidate 1)** | ||
- Java Rewrite Proof-Of-Concept |
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
</p> | ||
|
||
# jMCPIL | ||
Proof-Of-Concept MCPIL Rewrite In Java | ||
MCPIL Rewrite In Java | ||
|
||
## Packaging | ||
```sh | ||
|
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
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
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/sh | ||
|
||
set -e | ||
|
||
exec /usr/lib/jvm/java-11-openjdk-*/bin/java -jar /opt/jmcpil/jmcpil.jar |
This file was deleted.
Oops, something went wrong.
8 changes: 4 additions & 4 deletions
8
...mmon/usr/share/applications/mcpil.desktop → ...mon/usr/share/applications/jmcpil.desktop
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,10 +1,10 @@ | ||
[Desktop Entry] | ||
Name=MCPIL | ||
Name=jMCPIL | ||
Comment=Minecraft Pi Launcher | ||
Icon=/usr/share/pixmaps/mcpil.png | ||
Icon=/usr/share/pixmaps/jmcpil.png | ||
StartupNotify=false | ||
StartupWMClass=com-thebrokenrail-mcpil-Main | ||
Exec=/usr/bin/mcpil | ||
StartupWMClass=com-thebrokenrail-jmcpil-Main | ||
Exec=/usr/bin/jmcpil | ||
Terminal=false | ||
Type=Application | ||
Categories=Application;Game; |
File renamed without changes
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
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,2 +1,2 @@ | ||
rootProject.name = 'MCPIL' | ||
rootProject.name = 'jMCPIL' | ||
|
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
6 changes: 3 additions & 3 deletions
6
...om/thebrokenrail/mcpil/config/Config.java → ...m/thebrokenrail/jmcpil/config/Config.java
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
2 changes: 1 addition & 1 deletion
2
...rokenrail/mcpil/config/ConfigHandler.java → ...okenrail/jmcpil/config/ConfigHandler.java
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,4 +1,4 @@ | ||
package com.thebrokenrail.mcpil.config; | ||
package com.thebrokenrail.jmcpil.config; | ||
|
||
import com.google.gson.Gson; | ||
|
||
|
6 changes: 3 additions & 3 deletions
6
...enrail/mcpil/gui/control/MainButtons.java → ...nrail/jmcpil/gui/control/MainButtons.java
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
12 changes: 6 additions & 6 deletions
12
...kenrail/mcpil/gui/control/PlayButton.java → ...enrail/jmcpil/gui/control/PlayButton.java
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
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
4 changes: 2 additions & 2 deletions
4
...enrail/mcpil/gui/tab/BaseSettingsTab.java → ...nrail/jmcpil/gui/tab/BaseSettingsTab.java
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
6 changes: 3 additions & 3 deletions
6
...brokenrail/mcpil/gui/tab/FeaturesTab.java → ...rokenrail/jmcpil/gui/tab/FeaturesTab.java
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
2 changes: 1 addition & 1 deletion
2
...thebrokenrail/mcpil/gui/tab/MainTabs.java → ...hebrokenrail/jmcpil/gui/tab/MainTabs.java
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
8 changes: 4 additions & 4 deletions
8
...kenrail/mcpil/gui/tab/MultiplayerTab.java → ...enrail/jmcpil/gui/tab/MultiplayerTab.java
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
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
8 changes: 4 additions & 4 deletions
8
...brokenrail/mcpil/gui/tab/SettingsTab.java → ...rokenrail/jmcpil/gui/tab/SettingsTab.java
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
2 changes: 1 addition & 1 deletion
2
...hebrokenrail/mcpil/proxy/GlobalProxy.java → ...ebrokenrail/jmcpil/proxy/GlobalProxy.java
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,4 +1,4 @@ | ||
package com.thebrokenrail.mcpil.proxy; | ||
package com.thebrokenrail.jmcpil.proxy; | ||
|
||
/** | ||
* Global Proxy Instance | ||
|
2 changes: 1 addition & 1 deletion
2
.../com/thebrokenrail/mcpil/proxy/Proxy.java → ...com/thebrokenrail/jmcpil/proxy/Proxy.java
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
Oops, something went wrong.