Skip to content

Commit

Permalink
feat: support lip install in source repo
Browse files Browse the repository at this point in the history
  • Loading branch information
futrime committed Jan 12, 2024
1 parent 6cbb76a commit 8e8c429
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 17 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.2] - 2024-01-12

### Added

- lip install support in source repo.

## [0.4.1] - 2024-01-12

### Added
Expand Down Expand Up @@ -55,7 +61,9 @@ First preview release.

For lip and tooth-hub test only.

[unreleased]: https://github.com/LiteLDev/LeviLamina/compare/v0.3.0...HEAD
[unreleased]: https://github.com/LiteLDev/LeviLamina/compare/v0.4.2...HEAD
[0.4.2]: https://github.com/LiteLDev/LeviLamina/compare/v0.4.1...v0.4.2
[0.4.1]: https://github.com/LiteLDev/LeviLamina/compare/v0.4.0...v0.4.1
[0.4.0]: https://github.com/LiteLDev/LeviLamina/compare/v0.3.0...v0.4.0
[0.3.0]: https://github.com/LiteLDev/LeviLamina/compare/v0.2.2...v0.3.0
[0.2.2]: https://github.com/LiteLDev/LeviLamina/compare/v0.2.1...v0.2.2
Expand Down
38 changes: 22 additions & 16 deletions tooth.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,14 @@
{
"format_version": 2,
"tooth": "github.com/tooth-hub/levilamina",
"version": "0.4.1",
"tooth": "github.com/LiteLDev/LeviLamina",
"version": "0.4.2",
"info": {
"name": "LeviLamina",
"description": "A lightweight, modular and versatile plugin loader for Minecraft Bedrock Server BDS, formerly known as LiteLoaderBDS",
"author": "LiteLDev",
"tags": [],
"source": "github.com/LiteLDev/LeviLamina"
},
"commands": {
"post_install": [
".\\PeEditor.exe -mb"
],
"post_uninstall": [
"move bedrock_server.exe.bak bedrock_server.exe"
]
"tags": []
},
"asset_url": "https://github.com/LiteLDev/LeviLamina/releases/download/v0.4.2/levilamina-windows-x64.zip",
"dependencies": {
"github.com/tooth-hub/bds": "1.20.50 || 1.20.51",
"github.com/tooth-hub/peeditor": "3.5.x",
Expand All @@ -25,16 +17,30 @@
"files": {
"place": [
{
"src": "LeviLamina.dll",
"src": "lib/LeviLamina.dll",
"dest": "LeviLamina.dll"
},
{
"src": "LeviLamina.pdb",
"src": "lib/LeviLamina.pdb",
"dest": "LeviLamina.pdb"
}
],
"remove": [
"bedrock_server_mod.exe"
]
}
}
},
"platforms": [
{
"goos": "windows",
"goarch": "amd64",
"commands": {
"post_install": [
".\\PeEditor.exe -mb"
],
"post_uninstall": [
"move bedrock_server.exe.bak bedrock_server.exe"
]
}
}
]
}

0 comments on commit 8e8c429

Please sign in to comment.