From 905c580b088f4d41be941c445892eb4d33d06324 Mon Sep 17 00:00:00 2001 From: Hedara Date: Mon, 1 Dec 2025 17:35:59 +0100 Subject: [PATCH] Expansion 1.14.1 --- .../ISSUE_TEMPLATE/01_battle_engine_bugs.yaml | 3 ++- .../ISSUE_TEMPLATE/02_battle_ai_issues.yaml | 3 ++- .github/ISSUE_TEMPLATE/04_other_errors.yaml | 3 ++- README.md | 2 +- docs/SUMMARY.md | 1 + docs/changelogs/1.14.x/1.14.1.md | 22 +++++++++++++++++++ include/constants/expansion.h | 4 ++-- 7 files changed, 32 insertions(+), 6 deletions(-) create mode 100644 docs/changelogs/1.14.x/1.14.1.md diff --git a/.github/ISSUE_TEMPLATE/01_battle_engine_bugs.yaml b/.github/ISSUE_TEMPLATE/01_battle_engine_bugs.yaml index e06d7a2f5d..2f25421ea0 100644 --- a/.github/ISSUE_TEMPLATE/01_battle_engine_bugs.yaml +++ b/.github/ISSUE_TEMPLATE/01_battle_engine_bugs.yaml @@ -43,9 +43,10 @@ body: label: Version description: What version of pokeemerald-expansion are you using? options: - - 1.14.0 (Latest release) + - 1.14.1 (Latest release) - master (default, unreleased bugfixes) - upcoming (Edge) + - 1.14.0 - 1.13.4 - 1.13.3 - 1.13.2 diff --git a/.github/ISSUE_TEMPLATE/02_battle_ai_issues.yaml b/.github/ISSUE_TEMPLATE/02_battle_ai_issues.yaml index 38f171b721..b0ee167021 100644 --- a/.github/ISSUE_TEMPLATE/02_battle_ai_issues.yaml +++ b/.github/ISSUE_TEMPLATE/02_battle_ai_issues.yaml @@ -43,9 +43,10 @@ body: label: Version description: What version of pokeemerald-expansion are you using? options: - - 1.14.0 (Latest release) + - 1.14.1 (Latest release) - master (default, unreleased bugfixes) - upcoming (Edge) + - 1.14.0 - 1.13.4 - 1.13.3 - 1.13.2 diff --git a/.github/ISSUE_TEMPLATE/04_other_errors.yaml b/.github/ISSUE_TEMPLATE/04_other_errors.yaml index b1ba4c3897..4dcb2b3093 100644 --- a/.github/ISSUE_TEMPLATE/04_other_errors.yaml +++ b/.github/ISSUE_TEMPLATE/04_other_errors.yaml @@ -43,9 +43,10 @@ body: label: Version description: What version of pokeemerald-expansion are you using? options: - - 1.14.0 (Latest release) + - 1.14.1 (Latest release) - master (default, unreleased bugfixes) - upcoming (Edge) + - 1.14.0 - 1.13.4 - 1.13.3 - 1.13.2 diff --git a/README.md b/README.md index 65db8463d9..8094c29e85 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ If you use **`pokeemerald-expansion`**, please credit **RHH (Rom Hacking Hideout)**. Optionally, include the version number for clarity. ``` -Based off RHH's pokeemerald-expansion 1.14.0 https://github.com/rh-hideout/pokeemerald-expansion/ +Based off RHH's pokeemerald-expansion 1.14.1 https://github.com/rh-hideout/pokeemerald-expansion/ ``` Please consider [crediting all contributors](CREDITS.md) involved in the project! diff --git a/docs/SUMMARY.md b/docs/SUMMARY.md index 08e6cd4fd0..fa38656d60 100644 --- a/docs/SUMMARY.md +++ b/docs/SUMMARY.md @@ -40,6 +40,7 @@ - [Vs. Seeker](tutorials/vs_seeker.md) - [Changelog](./CHANGELOG.md) - [1.14.x]() + - [Version 1.14.1](changelogs/1.14.x/1.14.0.md) - [Version 1.14.0](changelogs/1.14.x/1.14.0.md) - [1.13.x]() - [Version 1.13.4](changelogs/1.13.x/1.13.4.md) diff --git a/docs/changelogs/1.14.x/1.14.1.md b/docs/changelogs/1.14.x/1.14.1.md new file mode 100644 index 0000000000..1e16317076 --- /dev/null +++ b/docs/changelogs/1.14.x/1.14.1.md @@ -0,0 +1,22 @@ +```md +## How to update +- If you haven't set up a remote, run the command `git remote add RHH https://github.com/rh-hideout/pokeemerald-expansion`. +- Once you have your remote set up, run the command `git pull RHH expansion/1.14.1 +`. +``` + + +## 🧬 General 🧬 +### Changed +* Pret merge, (1st of December, 2025) by @hedara90 in [#8402](https://github.com/rh-hideout/pokeemerald-expansion/pull/8402) + - This changes all the audio samples from `.aif` to `.wav`, `.aif` support is removed. + - There's a migration script to convert from `.bin` to `.wav` in `migration_scripts/1.14/bin_to_wav.py`. + - Run the migration script with `python migration_scripts/1.14/bin_to_wav.py path/to/folder/with/bin/samples` + + + +**Full Changelog**: https://github.com/rh-hideout/pokeemerald-expansion/compare/expansion/1.14.0...expansion/1.14.1 + + + + diff --git a/include/constants/expansion.h b/include/constants/expansion.h index 85e8aba189..cbe7194114 100644 --- a/include/constants/expansion.h +++ b/include/constants/expansion.h @@ -1,13 +1,13 @@ #ifndef GUARD_CONSTANTS_EXPANSION_H #define GUARD_CONSTANTS_EXPANSION_H -// Last version: 1.14.0 +// Last version: 1.14.1 #define EXPANSION_VERSION_MAJOR 1 #define EXPANSION_VERSION_MINOR 14 #define EXPANSION_VERSION_PATCH 1 // FALSE if this this version of Expansion is not a tagged commit, i.e. // it contains unreleased changes. -#define EXPANSION_TAGGED_RELEASE FALSE +#define EXPANSION_TAGGED_RELEASE TRUE #endif