diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml
index 72e00234..1bec6095 100644
--- a/.gitea/workflows/build.yml
+++ b/.gitea/workflows/build.yml
@@ -32,7 +32,7 @@ jobs:
# Dependencies
- name: Install CMake
run: |
- echo 'deb http://deb.debian.org/debian buster-backports main' > /etc/apt/sources.list.d/backports.list
+ echo 'deb http://archive.debian.org/debian buster-backports main' > /etc/apt/sources.list.d/backports.list
apt-get update
apt-get install --no-install-recommends -y -t buster-backports cmake
- name: Install Dependencies
@@ -64,7 +64,7 @@ jobs:
# Dependencies
- name: Install CMake
run: |
- echo 'deb http://deb.debian.org/debian buster-backports main' > /etc/apt/sources.list.d/backports.list
+ echo 'deb http://archive.debian.org/debian buster-backports main' > /etc/apt/sources.list.d/backports.list
apt-get update
apt-get install --no-install-recommends -y -t buster-backports cmake
- name: Install Dependencies
@@ -83,6 +83,10 @@ jobs:
runs-on: ubuntu-latest
container: node:16-buster
steps:
+ - name: Checkout Repository
+ uses: actions/checkout@v4
+ with:
+ submodules: false
# Dependencies
- name: Install Go
uses: actions/setup-go@v4
@@ -93,11 +97,15 @@ jobs:
uses: actions/download-artifact@v3
with:
path: out
+ # Get Changelog
+ - name: Get Changelog
+ id: release-info
+ run: ./scripts/get-changelog.mjs >> "${GITHUB_OUTPUT}"
# Create Release
- name: Create Release
uses: https://gitea.com/actions/release-action@main
with:
- files: ./out
+ files: ./out
api_key: ${{ secrets.RELEASE_TOKEN }}
- title: v${{ github.ref_name }}
- body: "[View Changelog](https://gitea.thebrokenrail.com/minecraft-pi-reborn/minecraft-pi-reborn/src/branch/master/docs/CHANGELOG.md)"
+ title: v${{ steps.release-info.outputs.version }}
+ body: ${{ steps.release-info.outputs.changelog }}
diff --git a/VERSION b/VERSION
index aedc15bb..fe16b348 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.5.3
+2.5.4
diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md
index a06335b7..b044a0bc 100644
--- a/docs/CHANGELOG.md
+++ b/docs/CHANGELOG.md
@@ -1,5 +1,8 @@
# Changelog
+**2.5.4**
+* Use Base64-URL Encoding When Accessing The Skin Server
+
**2.5.3**
* Add ``Replace Block Highlight With Outline`` Feature Flag (Enabled By Default)
* By Default, The Outline Width Is Set Using The GUI Scale
diff --git a/launcher/CMakeLists.txt b/launcher/CMakeLists.txt
index 99386cff..158ed2ea 100644
--- a/launcher/CMakeLists.txt
+++ b/launcher/CMakeLists.txt
@@ -56,7 +56,7 @@ file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/appstream.xml"
"
Minecraft: Pi Edition Modding Project.
\n"
" NOTE: This is not verified by, affiliated with, or supported by Mojang or Microsoft.
\n"
" \n"
- " https://gitea.thebrokenrail.com/TheBrokenRail/minecraft-pi-reborn\n"
+ " https://gitea.thebrokenrail.com/minecraft-pi-reborn/minecraft-pi-reborn\n"
" ${MCPI_APP_ID}.desktop\n"
" \n"
" com.thebrokenrail.MCPIRebornClient.desktop\n"
@@ -93,7 +93,7 @@ if(NOT MCPI_HEADLESS_MODE)
file(APPEND "${CMAKE_CURRENT_BINARY_DIR}/appstream.xml"
" \n"
" \n"
- " https://gitea.thebrokenrail.com/TheBrokenRail/minecraft-pi-reborn/raw/branch/master/images/start.png\n"
+ " https://gitea.thebrokenrail.com/minecraft-pi-reborn/minecraft-pi-reborn/raw/branch/master/images/start.png\n"
" \n"
" \n"
)
diff --git a/mods/src/skin/skin.cpp b/mods/src/skin/skin.cpp
index a7275adc..f53800cb 100644
--- a/mods/src/skin/skin.cpp
+++ b/mods/src/skin/skin.cpp
@@ -1,3 +1,6 @@
+#include
+#include
+
#include
#include
@@ -5,45 +8,32 @@
#include
#include "skin-internal.h"
-// Base64 Encode (https://gist.github.com/tomykaira/f0fd86b6c73063283afe550bc5d77594)
-static std::string base64_encode(const std::string data) {
- static constexpr char encoding_table[] = {
- 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H',
- 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P',
- 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
- 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f',
- 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n',
- 'o', 'p', 'q', 'r', 's', 't', 'u', 'v',
- 'w', 'x', 'y', 'z', '0', '1', '2', '3',
- '4', '5', '6', '7', '8', '9', '+', '/'
- };
-
- size_t in_len = data.size();
- size_t out_len = 4 * ((in_len + 2) / 3);
- std::string ret(out_len, '\0');
- size_t i;
- char *p = const_cast(ret.c_str());
-
- for (i = 0; i < in_len - 2; i += 3) {
- *p++ = encoding_table[(data[i] >> 2) & 0x3f];
- *p++ = encoding_table[((data[i] & 0x3) << 4) | ((int) (data[i + 1] & 0xf0) >> 4)];
- *p++ = encoding_table[((data[i + 1] & 0xf) << 2) | ((int) (data[i + 2] & 0xc0) >> 6)];
- *p++ = encoding_table[data[i + 2] & 0x3f];
- }
- if (i < in_len) {
- *p++ = encoding_table[(data[i] >> 2) & 0x3f];
- if (i == (in_len - 1)) {
- *p++ = encoding_table[((data[i] & 0x3) << 4)];
- *p++ = '=';
+// Base64-URL Encode/Decode (https://stackoverflow.com/a/57314480)
+static constexpr char base64_url_alphabet[] = {
+ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M',
+ 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z',
+ 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm',
+ 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z',
+ '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '-', '_'
+};
+static std::string base64_encode(const std::string &data) {
+ std::string out;
+ int val = 0;
+ int valb = -6;
+ const size_t len = data.length();
+ for (unsigned int i = 0; i < len; i++) {
+ const unsigned char c = data[i];
+ val = (val << 8) + c;
+ valb += 8;
+ while (valb >= 0) {
+ out.push_back(base64_url_alphabet[(val >> valb) & 0x3f]);
+ valb -= 6;
}
- else {
- *p++ = encoding_table[((data[i] & 0x3) << 4) | ((int) (data[i + 1] & 0xf0) >> 4)];
- *p++ = encoding_table[((data[i + 1] & 0xf) << 2)];
- }
- *p++ = '=';
}
-
- return ret;
+ if (valb > -6) {
+ out.push_back(base64_url_alphabet[((val << 8) >> (valb + 8)) & 0x3f]);
+ }
+ return out;
}
// Change Texture For Player Entities
diff --git a/scripts/get-changelog.mjs b/scripts/get-changelog.mjs
new file mode 100755
index 00000000..be3c9e4f
--- /dev/null
+++ b/scripts/get-changelog.mjs
@@ -0,0 +1,36 @@
+#!/usr/bin/env node
+import * as path from 'node:path';
+import * as fs from 'node:fs';
+
+// Read Files
+function readFile(...args) {
+ return fs.readFileSync(path.join(...args), 'utf8').trim();
+}
+const version = readFile('VERSION');
+const changelog = readFile('docs', 'CHANGELOG.md');
+
+// Print Version
+console.log('version=' + version);
+
+// Parse Changelog
+const out = [];
+let foundStart = false;
+const lines = changelog.split('\n');
+for (const line of lines) {
+ if (!foundStart) {
+ // Found Start Of Version Info
+ foundStart = line.includes(`**${version}**`);
+ } else if (line.trim().length === 0) {
+ // Found End
+ break;
+ } else {
+ // Found Entry
+ out.push(line);
+ }
+}
+
+// Print
+const delimiter = 'CHANGELOG_EOF';
+console.log('changelog<<' + delimiter);
+console.log(out.join('\n'));
+console.log(delimiter);
\ No newline at end of file