版本名的更改
Some checks failed
Axolotl desktop CI / guardrails (push) Has been cancelled
Axolotl desktop CI / desktop (macos-latest) (push) Has been cancelled
Axolotl desktop CI / desktop (ubuntu-latest) (push) Has been cancelled
Axolotl desktop CI / desktop (windows-latest) (push) Has been cancelled
Axolotl desktop CI / website (push) Has been cancelled
Repository checks / typos (push) Has been cancelled
Repository checks / tombi (push) Has been cancelled
Rust checks / shear (push) Has been cancelled
Sync source to CNB / Sync Git ref (push) Has been cancelled
Axolotl release / Release preflight (push) Has been cancelled
Prepare pnpm cache / prepare (push) Has been cancelled
Axolotl release / Build (Windows x64) (push) Has been cancelled
Axolotl release / Build (Linux arm64) (push) Has been cancelled
Axolotl release / Build (Linux x64) (push) Has been cancelled
Axolotl release / Build (macOS universal) (push) Has been cancelled
Axolotl release / Verify and publish (push) Has been cancelled
Some checks failed
Axolotl desktop CI / guardrails (push) Has been cancelled
Axolotl desktop CI / desktop (macos-latest) (push) Has been cancelled
Axolotl desktop CI / desktop (ubuntu-latest) (push) Has been cancelled
Axolotl desktop CI / desktop (windows-latest) (push) Has been cancelled
Axolotl desktop CI / website (push) Has been cancelled
Repository checks / typos (push) Has been cancelled
Repository checks / tombi (push) Has been cancelled
Rust checks / shear (push) Has been cancelled
Sync source to CNB / Sync Git ref (push) Has been cancelled
Axolotl release / Release preflight (push) Has been cancelled
Prepare pnpm cache / prepare (push) Has been cancelled
Axolotl release / Build (Windows x64) (push) Has been cancelled
Axolotl release / Build (Linux arm64) (push) Has been cancelled
Axolotl release / Build (Linux x64) (push) Has been cancelled
Axolotl release / Build (macOS universal) (push) Has been cancelled
Axolotl release / Verify and publish (push) Has been cancelled
This commit is contained in:
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@modrinth/app-frontend",
|
"name": "@modrinth/app-frontend",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "1.9.6-beta.3",
|
"version": "1.0.0-beta1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
|
|||||||
8
tools/icon_work/fix_version.py
Normal file
8
tools/icon_work/fix_version.py
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
|
||||||
|
import json
|
||||||
|
p = r"D:\Project\Starlight_Lancher\apps\app-frontend\package.json"
|
||||||
|
data = json.load(open(p, encoding="utf-8"))
|
||||||
|
old = data["version"]
|
||||||
|
data["version"] = "1.0.0-beta1"
|
||||||
|
open(p, "w", encoding="utf-8", newline="\n").write(json.dumps(data, ensure_ascii=False, indent="\t") + "\n")
|
||||||
|
print(f"version: {old} -> 1.0.0-beta1")
|
||||||
Reference in New Issue
Block a user