Skip to content

Commit

Permalink
chore: update version
Browse files Browse the repository at this point in the history
  • Loading branch information
OEOTYAN committed Jun 18, 2024
1 parent 48a5d94 commit cafc1d6
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 9 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.13.0] - 2024-06-19

### Added

- Adapted to BDS version 1.21.0x @Lovelylavender4

### Changed

- Fix Concepts (#1547)
- Add vector helper operators

## [0.12.4] - 2024-05-31

### Changed
Expand Down Expand Up @@ -528,7 +539,8 @@ First preview release.

For lip and tooth-hub test only.

[Unreleased]: https://github.com/LiteLDev/LeviLamina/compare/v0.12.4...HEAD
[Unreleased]: https://github.com/LiteLDev/LeviLamina/compare/v0.13.0...HEAD
[0.13.0]: https://github.com/LiteLDev/LeviLamina/compare/v0.12.4...v0.13.0
[0.12.4]: https://github.com/LiteLDev/LeviLamina/compare/v0.12.3...v0.12.4
[0.12.3]: https://github.com/LiteLDev/LeviLamina/compare/v0.12.2...v0.12.3
[0.12.2]: https://github.com/LiteLDev/LeviLamina/compare/v0.12.1...v0.12.2
Expand Down
2 changes: 1 addition & 1 deletion src/ll/api/utils/WinUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ LLNDAPI std::string getModuleFileName(void* handle, void* process = nullptr);

LLNDAPI std::pair<std::tm, int> getLocalTime(); // tm & ms

LLNDAPI bool isStdoutSupportAnsi() ;
LLNDAPI bool isStdoutSupportAnsi();

[[nodiscard]] inline std::string getCallerModuleFileName(void* addr = _ReturnAddress()) {
return getModuleFileName(getModuleHandle(addr));
Expand Down
2 changes: 1 addition & 1 deletion src/ll/core/Config.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@

#include "ll/api/base/Macro.h"
#include "ll/api/reflection/Dispatcher.h"
#include "ll/api/utils/WinUtils.h"
#include "ll/core/tweak/ForceEnableCheatCommands.h"
#include "ll/core/tweak/SimpleServerLogger.h"
#include "ll/core/tweak/Statistics.h"
#include "ll/api/utils/WinUtils.h"

#include "mc/server/commands/CommandPermissionLevel.h"

Expand Down
5 changes: 2 additions & 3 deletions src/ll/core/plugin/NativePluginManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,8 @@ Expected<> NativePluginManager::load(Manifest manifest) {
}
if (!GetProcAddress(lib, "ll_memory_operator_overrided")) {
using namespace i18n_literals;
return makeStringError(
"The plugin is not using the unified memory allocation operator, will not be loaded."_tr()
);
return makeStringError("The plugin is not using the unified memory allocation operator, will not be loaded."_tr(
));
}
currentLoadingPlugin->setHandle(lib);
currentLoadingPlugin->onLoad(reinterpret_cast<Plugin::callback_t*>(GetProcAddress(lib, "ll_plugin_load")));
Expand Down
1 change: 1 addition & 0 deletions src/mc/network/packet/StartGamePacket.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ class StartGamePacket : public ::Packet {
bool mServerEnabledClientSideGeneration;
bool mBlockNetworkIdsAreHashes;
bool mHardcore;

std::vector<std::pair<std::string, CompoundTag>> mBlockProperties;

// prevent constructor by default
Expand Down
Empty file.
1 change: 1 addition & 0 deletions src/mc/world/level/biome/TerrainShaper.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ class TerrainShaper {
float mErosion;
float mRidges;
float mWeirdness;

public:
// prevent constructor by default
Point& operator=(Point const&);
Expand Down
6 changes: 3 additions & 3 deletions tooth.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"format_version": 2,
"tooth": "github.com/LiteLDev/LeviLamina",
"version": "0.12.4",
"version": "0.13.0",
"info": {
"name": "LeviLamina",
"description": "A lightweight, modular and versatile plugin loader for Minecraft Bedrock Server BDS, formerly known as LiteLoaderBDS",
"author": "LiteLDev",
"tags": []
},
"asset_url": "https://github.com/LiteLDev/LeviLamina/releases/download/v0.12.4/levilamina-release-windows-x64.zip",
"asset_url": "https://github.com/LiteLDev/LeviLamina/releases/download/v0.13.0/levilamina-release-windows-x64.zip",
"dependencies": {
"github.com/LiteLDev/bds": ">=1.20.80 <1.20.90",
"github.com/LiteLDev/bds": ">=1.21.0 <1.21.10",
"github.com/LiteLDev/CrashLogger": "1.1.x",
"github.com/LiteLDev/levilamina-loc": "1.1.x",
"github.com/LiteLDev/PeEditor": "3.7.x",
Expand Down

0 comments on commit cafc1d6

Please sign in to comment.