From 0751ee3ace372e21318c479e776b721be30bbf17 Mon Sep 17 00:00:00 2001 From: Data07 Date: Sun, 4 Aug 2024 03:17:51 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BA=86CreatAddon=EF=BC=8C?= =?UTF-8?q?=E6=9B=B4=E5=8A=A0=E8=81=AA=E6=98=8E=E4=BA=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CreatAddon.bat | 5 ++- init.json | 8 ++--- sakura_dress_BP/manifest.json | 20 +++++++++--- sakura_dress_RP/manifest.json | 20 +++++++++--- update.ps1 | 58 +++++++++++++++++++++++++++++++++++ 5 files changed, 96 insertions(+), 15 deletions(-) create mode 100644 update.ps1 diff --git a/CreatAddon.bat b/CreatAddon.bat index cc3792b..1a764d7 100644 --- a/CreatAddon.bat +++ b/CreatAddon.bat @@ -1,3 +1,2 @@ -7z a -tzip SakuraDress.mcaddon sakura_dress_BP\ sakura_dress_RP\ -mkdir dist -move SakuraDress.mcaddon dist\ \ No newline at end of file +@pwsh update.ps1 +pause \ No newline at end of file diff --git a/init.json b/init.json index 8c55dbc..8bf9dee 100644 --- a/init.json +++ b/init.json @@ -1,5 +1,5 @@ { - "name": "SakuraDress", - "description": "樱落绘境基岩版萌芽时装", - "version": "1.2.5" -} \ No newline at end of file + "name": "SakuraDress", + "description": "樱落绘境基岩版萌芽时装", + "version": "0.1.2" +} diff --git a/sakura_dress_BP/manifest.json b/sakura_dress_BP/manifest.json index 8da0ead..9e135e6 100644 --- a/sakura_dress_BP/manifest.json +++ b/sakura_dress_BP/manifest.json @@ -1,18 +1,30 @@ { "format_version": 2, "header": { - "name": "SakuraDress", + "name": "SakuraDress 0.1.1", "description": "樱落绘境基岩版萌芽时装", "uuid": "898cbd07-3990-4787-a7d0-85c555cb9889", - "version": [1, 2, 5], - "min_engine_version": [1, 19, 0] + "version": [ + 0, + 1, + 1 + ], + "min_engine_version": [ + 1, + 19, + 0 + ] }, "modules": [ { "description": "Made by fengyun", "type": "data", "uuid": "d8905ad9-229c-49a8-9c66-dac7adb249c0", - "version": [1, 2, 5] + "version": [ + 0, + 1, + 1 + ] } ] } diff --git a/sakura_dress_RP/manifest.json b/sakura_dress_RP/manifest.json index aa2274c..a38ce25 100644 --- a/sakura_dress_RP/manifest.json +++ b/sakura_dress_RP/manifest.json @@ -1,18 +1,30 @@ { "format_version": 2, "header": { - "name": "SakuraDress", + "name": "SakuraDress 0.1.1", "description": "樱落绘境基岩版萌芽时装", "uuid": "34a44803-a08e-431c-a074-613550dde7b8", - "version": [1, 2, 5], - "min_engine_version": [1, 19, 0] + "version": [ + 0, + 1, + 1 + ], + "min_engine_version": [ + 1, + 19, + 0 + ] }, "modules": [ { "description": "Made by fengyun", "type": "resources", "uuid": "ff372316-7481-463b-8370-bcc342883c76", - "version": [1, 2, 5] + "version": [ + 0, + 1, + 1 + ] } ] } diff --git a/update.ps1 b/update.ps1 new file mode 100644 index 0000000..1604bbf --- /dev/null +++ b/update.ps1 @@ -0,0 +1,58 @@ +$intiFilePath = ".\init.json" + +$intiContent = Get-Content $intiFilePath -Raw +$intiObject = ConvertFrom-Json -InputObject $intiContent + +$newName = $intiObject.name +$versionParts = $intiObject.version.Split('.') +$newVersion = [int[]]$versionParts +$vers = $intiObject.version + +# +$folders = @(".\sakura_dress_RP", ".\sakura_dress_BP") +# + +$versionParts = $intiObject.version.Split('.') +$major = [int]$versionParts[0] +$minor = [int]$versionParts[1] +$patch = [int]$versionParts[2] +$patch++ + +foreach ($folder in $folders) { + $manifestPath = Join-Path $folder "manifest.json" + + $manifestContent = Get-Content $manifestPath -Raw + $manifest = ConvertFrom-Json -InputObject $manifestContent + + $manifest.header.name = "$newName $vers" + $manifest.header.version = $newVersion + if ($manifest.modules) { + foreach ($module in $manifest.modules) { + if ($module.PSobject.Properties.Name -contains "version") { + $module.version = $newVersion + } + } + } + + $jsonOutput = ConvertTo-Json $manifest -Depth 10 + $jsonOutput | Set-Content -Path $manifestPath -Encoding utf8NoBOM + + Write-Host "Updated manifest.json in $folder" -ForegroundColor Green +} + +Write-Host "All manifest.json files have been updated." -ForegroundColor Green + + + +# +7z a -tzip "SakuraDress v$vers.mcaddon" sakura_dress_BP\ sakura_dress_RP\ +mkdir dist +# +move "SakuraDress v$vers.mcaddon" .\dist\ + +$newVersion = "$major.$minor.$patch" + +$intiObject.version = $newVersion + +$updatedIntiJson = ConvertTo-Json $intiObject -Depth 10 +$updatedIntiJson | Set-Content -Path $intiFilePath -Encoding utf8NoBOM