File tree Expand file tree Collapse file tree 8 files changed +16
-21
lines changed
Expand file tree Collapse file tree 8 files changed +16
-21
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## [ 0.2.0] - 2025-10-21
11+
12+ ### Changed
13+
14+ - Adapted LeviLamina 1.6.x and BDS 1.21.111.1 @zimuya4153
15+
1016## [ 0.1.1] - 2025-10-12
1117
1218### Fixed
@@ -25,6 +31,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2531
2632[ #1 ] : http://github.com/GroupMountain/ModAPI-Release/issues/1
2733
28- [ Unreleased ] : http://github.com/GroupMountain/ModAPI-Release/compare/v0.1.1...HEAD
34+ [ Unreleased ] : http://github.com/GroupMountain/ModAPI-Release/compare/v0.2.0...HEAD
35+ [ 0.2.0 ] : http://github.com/GroupMountain/ModAPI-Release/compare/v0.1.1...v0.2.0
2936[ 0.1.1 ] : http://github.com/GroupMountain/ModAPI-Release/compare/v0.1.0...v0.1.1
3037[ 0.1.0 ] : http://github.com/GroupMountain/ModAPI-Release/releases/tag/v0.1.0
Original file line number Diff line number Diff line change 55 "name" : " ModAPI" ,
66 "passive" : true ,
77 "type" : " native" ,
8- "version" : " 0.1.1+b6adb37 "
8+ "version" : " 0.2.0+88654cb "
99}
Original file line number Diff line number Diff line change 22
33// clang-format off
44#define MODAPI_VERSION_MAJOR 0
5- #define MODAPI_VERSION_MINOR 1
6- #define MODAPI_VERSION_PATCH 1
5+ #define MODAPI_VERSION_MINOR 2
6+ #define MODAPI_VERSION_PATCH 0
77/* #undef MODAPI_VERSION_PRERELEASE */
8- #define MODAPI_VERSION_COMMIT_SHA b6adb37
8+ #define MODAPI_VERSION_COMMIT_SHA 88654cb
99// clang-format on
1010
1111#define MODAPI_VERSION_TO_STRING_INNER (ver ) #ver
Original file line number Diff line number Diff line change 1212namespace modapi ::inline item {
1313
1414class ICustomArmorItem : public ::HumanoidArmorItem {
15- public:
16- struct Impl ;
17- std::unique_ptr<Impl> pImpl;
18-
1915public:
2016 MOD_NDAPI ICustomArmorItem (std::string const & identifier, HumanoidArmorItem::Tier armorTier);
2117
@@ -51,7 +47,7 @@ class ICustomArmorItem : public ::HumanoidArmorItem {
5147
5248 MOD_API virtual ::SharedTypes::Legacy::UseAnimation getUseAnimation () const ;
5349
54- MOD_API virtual ::std::string getCooldownCategory () const ;
50+ MOD_API virtual ::HashedString const & getCooldownCategory () const ;
5551
5652 MOD_API virtual bool requiresWorldBuilder () const ;
5753
@@ -95,8 +91,6 @@ class ICustomArmorItem : public ::HumanoidArmorItem {
9591
9692 MOD_API virtual std::string getInteractButtonText () const ;
9793
98- MOD_API HashedString const & getCooldownType () const override ;
99-
10094 MOD_API int getArmorValue () const override ;
10195
10296 MOD_API int getToughnessValue () const override ;
Original file line number Diff line number Diff line change 1212namespace modapi ::inline item {
1313
1414class ICustomItem : public ::Item {
15- public:
16- struct Impl ;
17- std::unique_ptr<Impl> pImpl;
18-
1915public:
2016 MOD_NDAPI explicit ICustomItem (std::string const & identifier);
2117
@@ -67,7 +63,7 @@ class ICustomItem : public ::Item {
6763
6864 MOD_API virtual ::std::string getCreativeGroup () const ;
6965
70- MOD_API virtual ::std::string getCooldownCategory () const ;
66+ MOD_API virtual ::HashedString const & getCooldownCategory () const ;
7167
7268 MOD_API virtual bool isDiggerItem () const ;
7369
@@ -93,8 +89,6 @@ class ICustomItem : public ::Item {
9389
9490 MOD_API virtual std::string getInteractButtonText () const ;
9591
96- MOD_API HashedString const & getCooldownType () const override ;
97-
9892 MOD_API float getDestroySpeed (::ItemStackBase const & item, ::Block const & block) const override ;
9993
10094 MOD_API bool
Original file line number Diff line number Diff line change 22 "format_version" : 3 ,
33 "format_uuid" : " 289f771f-2c9a-4d73-9f3f-8492495a924d" ,
44 "tooth" : " github.com/GroupMountain/ModAPI-Release" ,
5- "version" : " 0.1.1 " ,
5+ "version" : " 0.2.0 " ,
66 "info" : {
77 "name" : " ModAPI" ,
88 "description" : " Group Mountain Mod Api" ,
1818 {
1919 "platform" : " win-x64" ,
2020 "dependencies" : {
21- "github.com/LiteLDev/LeviLamina" : " >=1.5 .0"
21+ "github.com/LiteLDev/LeviLamina" : " >=1.6 .0"
2222 },
2323 "assets" : [
2424 {
You can’t perform that action at this time.
0 commit comments