Skip to content

Commit 484691a

Browse files
committed
Release v2024.10
Signed-off-by: Haru <[email protected]>
1 parent 5d5c342 commit 484691a

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

CHANGELOG.md

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

25+
## [v2024.10] `October 2024`
26+
27+
### Changed
28+
29+
- Changed the `getmobdrops()` script command to avoid the use of global temporary variables. (#3319)
30+
- The caller now specifies an array that will be filled with the requested data.
31+
- The amount of filled entries will be returned as the command's return value. The caller should only read up to that amount of entries from the array, as it may contain previous leftover values past that point.
32+
- See the script_commands documentation for further details.
33+
- Improved the output of the `@mobinfo` atcommand to include item links for the mob drops, on clients that support it. Unsupported clients will gracefully fall back to just printing the names. #3328
34+
- Improved the output of the `@iteminfo` atcommand to include item links, on clients that support it. Unsupported clients will gracefully fall back to just printing the names. #3329
35+
2536
## [v2024.09] `September 2024`
2637

2738
### Added
@@ -3170,6 +3181,7 @@ Note: everything included in this release is part of PR #3198 which consists of
31703181
- New versioning scheme and project changelogs/release notes (#1853)
31713182

31723183
[Unreleased]: https://github.com/HerculesWS/Hercules/compare/stable...master
3184+
[v2024.10]: https://github.com/HerculesWS/Hercules/compare/v2024.09...v2024.10
31733185
[v2024.09]: https://github.com/HerculesWS/Hercules/compare/v2024.08...v2024.09
31743186
[v2024.08]: https://github.com/HerculesWS/Hercules/compare/v2024.06...v2024.08
31753187
[v2024.06]: https://github.com/HerculesWS/Hercules/compare/v2024.05...v2024.06

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`: 202409000
4881+
- `HERCULES_VERSION`: 202410000
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`: 202409000
4881+
- `HERCULES_VERSION`: 202410000
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 202409000
25+
#define HERCULES_VERSION 202410000
2626

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

0 commit comments

Comments
 (0)