diff --git a/CHANGELOG.md b/CHANGELOG.md index a0584db..eea668f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.1.25 — 2026-08-11 + +### Changed + +- Repository and homepage links now point to the GitHub mirror; README links to both GitHub and Gitea. +- Extension now activates in untrusted (Restricted Mode) workspaces; workspace-defined `ra3modxml.sdkPath` and `ra3modxml.additionalDataSearchPaths` are ignored until the workspace is trusted. + ## 0.1.24 — 2026-08-11 ### Fixed diff --git a/README.md b/README.md index cb80c90..dffd478 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,8 @@ A VS Code extension that brings **IntelliSense, navigation, reference tracking, It understands the RA3 Mod SDK's XML schema, asset types, references, includes, and vanilla game data — so editing a large mod feels much more like working with a real programming language. +Source code: [GitHub mirror](https://github.com/RA3CoronaDevelopers/Ra3ModXmlExt.git) · [Gitea](https://git.ra3battle.cn/RA3CoronaDevelopers/Ra3ModXmlExt) +
diff --git a/README.zh-CN.md b/README.zh-CN.md index bf582fe..ca0e149 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -14,6 +14,8 @@ 它理解 RA3 Mod SDK 的 XML schema、资产类型、引用、include 以及原版游戏数据——编辑大型模组的体验会更接近真正的编程语言。 +源码:[GitHub 镜像](https://github.com/RA3CoronaDevelopers/Ra3ModXmlExt.git) · [Gitea](https://git.ra3battle.cn/RA3CoronaDevelopers/Ra3ModXmlExt) +
diff --git a/package-lock.json b/package-lock.json index bb635eb..52dbbd2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ra3-mod-xml", - "version": "0.1.23", + "version": "0.1.25", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "ra3-mod-xml", - "version": "0.1.23", + "version": "0.1.25", "license": "MIT", "dependencies": { "fast-xml-parser": "^4.5.0" diff --git a/package.json b/package.json index 2f89552..0b76692 100644 --- a/package.json +++ b/package.json @@ -2,15 +2,25 @@ "name": "ra3-mod-xml", "displayName": "%ra3modxml.displayName%", "description": "%ra3modxml.description%", - "version": "0.1.24", + "version": "0.1.25", "publisher": "lanyi", "license": "SEE LICENSE IN LICENSE", "icon": "images/icon.png", "repository": { "type": "git", - "url": "https://git.ra3battle.cn/RA3CoronaDevelopers/Ra3ModXmlExt.git" + "url": "https://github.com/RA3CoronaDevelopers/Ra3ModXmlExt.git" + }, + "homepage": "https://github.com/RA3CoronaDevelopers/Ra3ModXmlExt", + "capabilities": { + "untrustedWorkspaces": { + "supported": "limited", + "description": "The workspace-defined SDK path and additional DATA: search paths are ignored until the workspace is trusted.", + "restrictedConfigurations": [ + "ra3modxml.sdkPath", + "ra3modxml.additionalDataSearchPaths" + ] + } }, - "homepage": "https://git.ra3battle.cn/RA3CoronaDevelopers/Ra3ModXmlExt", "l10n": "./l10n", "engines": { "vscode": "^1.85.0"