Skip to content

Commit 84da0df

Browse files
committed
Release v2024.09
Signed-off-by: Haru <[email protected]>
1 parent 0a3948d commit 84da0df

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,20 @@ If you are reading this in a text editor, simply ignore this section
2222
### Removed
2323
-->
2424

25-
## [v2024.08] `August 2024`
25+
## [v2024.09] `September 2024`
2626

2727
### Added
2828

29+
- Implemented the script command `getunitparam()` to query values defined in `unit_parameters_db.conf`, and the related `UNIT_PARAM_*` constants. See the `script_commands.txt` documentation for usage details. (#3323)
30+
- Added validation of the name length for configuration entries added through the HPM `addBattleConf()`, `addLoginConf()`, `addCharConf()`, `addCharInterConf()`, `addLogConf()`, `addScriptConf()` methods, to prevent silent truncation. (#3324)
31+
32+
### Fixed
33+
34+
- Fixed an issue causing item-granted skills that were overriding an existing skill level, not to be correctly cleared when unequipping the item. (#3322)
35+
- Fixed previously plagiarized skills re-appearing on subsequent logins due to the related script variables not getting cleared properly. (#3325)
36+
37+
## [v2024.08] `August 2024`
38+
2939
### Changed
3040

3141
- Converted packets `CHARLOGIN_ONLINE_ACCOUNTS`, `MAPCHAR_AUTH_REQ`, `CHARLOGIN_SET_ACCOUNT_ONLINE` to the struct format. (#3304, #3312, #3314)
@@ -3160,6 +3170,7 @@ Note: everything included in this release is part of PR #3198 which consists of
31603170
- New versioning scheme and project changelogs/release notes (#1853)
31613171

31623172
[Unreleased]: https://github.com/HerculesWS/Hercules/compare/stable...master
3173+
[v2024.09]: https://github.com/HerculesWS/Hercules/compare/v2024.08...v2024.09
31633174
[v2024.08]: https://github.com/HerculesWS/Hercules/compare/v2024.06...v2024.08
31643175
[v2024.06]: https://github.com/HerculesWS/Hercules/compare/v2024.05...v2024.06
31653176
[v2024.05]: https://github.com/HerculesWS/Hercules/compare/v2024.04...v2024.05

doc/constants_pre-re.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4878,7 +4878,7 @@
48784878
### Server defines
48794879

48804880
- `PACKETVER`: 20190530
4881-
- `HERCULES_VERSION`: 202408000
4881+
- `HERCULES_VERSION`: 202409000
48824882
- `MAX_LEVEL`: 175
48834883
- `MAX_STORAGE`: 600
48844884
- `MAX_GUILD_STORAGE`: 500

doc/constants_re.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4878,7 +4878,7 @@
48784878
### Server defines
48794879

48804880
- `PACKETVER`: 20190530
4881-
- `HERCULES_VERSION`: 202408000
4881+
- `HERCULES_VERSION`: 202409000
48824882
- `MAX_LEVEL`: 175
48834883
- `MAX_STORAGE`: 600
48844884
- `MAX_GUILD_STORAGE`: 500

src/config/core.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#define CONFIG_CORE_H
2323

2424
/// Hercules version. From tag vYYYY.MM(+PPP) -> YYYYMMPPP
25-
#define HERCULES_VERSION 202408000
25+
#define HERCULES_VERSION 202409000
2626

2727
/// Max number of items on @autolootid list
2828
#define AUTOLOOTITEM_SIZE 10

0 commit comments

Comments
 (0)