Skip to content

Commit 900e974

Browse files
committed
feat: update version
1 parent 4b2fc98 commit 900e974

File tree

8 files changed

+16
-21
lines changed

8 files changed

+16
-21
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff 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

bin/dll/ModAPI/ModAPI.dll

512 Bytes
Binary file not shown.

bin/dll/ModAPI/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
"name": "ModAPI",
66
"passive": true,
77
"type": "native",
8-
"version": "0.1.1+b6adb37"
8+
"version": "0.2.0+88654cb"
99
}

bin/sdk/include/modapi/Version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
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

bin/sdk/include/modapi/item/base/ICustomArmorItem.h

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@
1212
namespace modapi::inline item {
1313

1414
class ICustomArmorItem : public ::HumanoidArmorItem {
15-
public:
16-
struct Impl;
17-
std::unique_ptr<Impl> pImpl;
18-
1915
public:
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;

bin/sdk/include/modapi/item/base/ICustomItem.h

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@
1212
namespace modapi::inline item {
1313

1414
class ICustomItem : public ::Item {
15-
public:
16-
struct Impl;
17-
std::unique_ptr<Impl> pImpl;
18-
1915
public:
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

bin/sdk/lib/ModAPI.lib

-1.36 KB
Binary file not shown.

tooth.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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",
@@ -18,7 +18,7 @@
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
{

0 commit comments

Comments
 (0)