From d2d65c0684086c2b6a6905fa030f75f548943bc2 Mon Sep 17 00:00:00 2001 From: lolcraftboy14 Date: Sat, 21 May 2016 08:12:41 +0200 Subject: [PATCH 1/9] Update PocketMine.php --- src/pocketmine/PocketMine.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pocketmine/PocketMine.php b/src/pocketmine/PocketMine.php index a87aad4..1d7dc04 100644 --- a/src/pocketmine/PocketMine.php +++ b/src/pocketmine/PocketMine.php @@ -75,8 +75,8 @@ namespace pocketmine { const VERSION = "1.0dev"; const API_VERSION = "2.0.0"; const CODENAME = "GladiatorMine"; - const MINECRAFT_VERSION = "v0.14.2 alpha"; - const MINECRAFT_VERSION_NETWORK = "0.14.2"; + const MINECRAFT_VERSION = "v0.14.3 alpha"; + const MINECRAFT_VERSION_NETWORK = "0.14.3"; const GENISYS_API_VERSION = '1.7.2'; /* From 99eb6104c4dae3796f6f60da3183a29c36e97cc3 Mon Sep 17 00:00:00 2001 From: lolcraftboy14 Date: Sat, 21 May 2016 08:14:01 +0200 Subject: [PATCH 2/9] Update Info.php --- src/pocketmine/network/protocol/Info.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pocketmine/network/protocol/Info.php b/src/pocketmine/network/protocol/Info.php index f83b89b..fe2646d 100644 --- a/src/pocketmine/network/protocol/Info.php +++ b/src/pocketmine/network/protocol/Info.php @@ -30,8 +30,8 @@ interface Info{ /** * Actual Minecraft: PE protocol version */ - const CURRENT_PROTOCOL = 60; - const ACCEPTED_PROTOCOLS = [45, 46, 60]; + const CURRENT_PROTOCOL = 70; + const ACCEPTED_PROTOCOLS = [45, 46, 60 ,70]; const LOGIN_PACKET = 0x8f; const PLAY_STATUS_PACKET = 0x90; From 799cf57d13789902812283db651451aa6cb4db70 Mon Sep 17 00:00:00 2001 From: lolcraftboy14 Date: Tue, 24 May 2016 17:30:20 +0200 Subject: [PATCH 3/9] Update PocketMine.php --- src/pocketmine/PocketMine.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pocketmine/PocketMine.php b/src/pocketmine/PocketMine.php index a87aad4..1d7dc04 100644 --- a/src/pocketmine/PocketMine.php +++ b/src/pocketmine/PocketMine.php @@ -75,8 +75,8 @@ namespace pocketmine { const VERSION = "1.0dev"; const API_VERSION = "2.0.0"; const CODENAME = "GladiatorMine"; - const MINECRAFT_VERSION = "v0.14.2 alpha"; - const MINECRAFT_VERSION_NETWORK = "0.14.2"; + const MINECRAFT_VERSION = "v0.14.3 alpha"; + const MINECRAFT_VERSION_NETWORK = "0.14.3"; const GENISYS_API_VERSION = '1.7.2'; /* From fca8dd518474635c87f5c9bb60910edd55c3efca Mon Sep 17 00:00:00 2001 From: MattTheTekie <94870997+MattTheTekie@users.noreply.github.com> Date: Sun, 8 Oct 2023 22:05:25 -0400 Subject: [PATCH 4/9] Append website --- index-2.html | 164 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 164 insertions(+) create mode 100644 index-2.html diff --git a/index-2.html b/index-2.html new file mode 100644 index 0000000..acce987 --- /dev/null +++ b/index-2.html @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Get GladiatorMine + + + + + + + + + + + + + +
+ +
+ + + +

Server software for Minecraft: Pocket Edition

+ +
+ +
Put no limits to your imagination.
+ +
Control all aspects of gameplay.
+ +
Play on multiple worlds, for free.
+ +
+ +
+ + Get GladiatorMine + + + + GladiatorMine Forums + + + + +
+ + Plugins + + + +
+ + + + + + + + + + + + + + + + + + + + From 39e713bfe40e8d90701a3da8f7ce67db6f50fe3b Mon Sep 17 00:00:00 2001 From: MattTheTekie <94870997+MattTheTekie@users.noreply.github.com> Date: Sun, 8 Oct 2023 22:07:23 -0400 Subject: [PATCH 5/9] Update and rename index-2.html to index.html --- index-2.html => index.html | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename index-2.html => index.html (100%) diff --git a/index-2.html b/index.html similarity index 100% rename from index-2.html rename to index.html From 994fb4f643c4c37dd1419ea3a2b01ffeb1a4b844 Mon Sep 17 00:00:00 2001 From: MattTheTekie <94870997+MattTheTekie@users.noreply.github.com> Date: Sun, 8 Oct 2023 22:08:29 -0400 Subject: [PATCH 6/9] Create static.yml --- .github/workflows/static.yml | 43 ++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .github/workflows/static.yml diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml new file mode 100644 index 0000000..73bc423 --- /dev/null +++ b/.github/workflows/static.yml @@ -0,0 +1,43 @@ +# Simple workflow for deploying static content to GitHub Pages +name: Deploy static content to Pages + +on: + # Runs on pushes targeting the default branch + push: + branches: ["master"] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + # Single deploy job since we're just deploying + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Setup Pages + uses: actions/configure-pages@v3 + - name: Upload artifact + uses: actions/upload-pages-artifact@v2 + with: + # Upload entire repository + path: '.' + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v2 From b80b813d300d503d306ecbb806d5333b34ad777b Mon Sep 17 00:00:00 2001 From: MattTheTekie <94870997+MattTheTekie@users.noreply.github.com> Date: Sun, 8 Oct 2023 22:15:37 -0400 Subject: [PATCH 7/9] Correct spacing and archive.org links to use the domain --- index.html | 90 +++++------------------------------------------------- 1 file changed, 8 insertions(+), 82 deletions(-) diff --git a/index.html b/index.html index acce987..d5f8f36 100644 --- a/index.html +++ b/index.html @@ -1,41 +1,18 @@ - - - - - - - - - - - - - - - - - - - - Get GladiatorMine - - - - - -
-
- -

Server software for Minecraft: Pocket Edition

-
-
Put no limits to your imagination.
-
Control all aspects of gameplay.
-
Play on multiple worlds, for free.
-
-
- Get GladiatorMine - - GladiatorMine Forums - - - - - - + - - - - - - + + - - - + - - From 5c3ec97cec70b88b3d1a2f08c43a2aeb6272c0fa Mon Sep 17 00:00:00 2001 From: MattTheTekie <94870997+MattTheTekie@users.noreply.github.com> Date: Sun, 8 Oct 2023 22:21:59 -0400 Subject: [PATCH 8/9] Update index.html --- index.html | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/index.html b/index.html index d5f8f36..575ab01 100644 --- a/index.html +++ b/index.html @@ -14,31 +14,16 @@ - @@ -61,7 +46,7 @@
- +