forked from libnyanpasu/clash-nyanpasu
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
63 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
## v0.0.23 | ||
|
||
### Features | ||
|
||
- i18n supports | ||
- Remote profile User Agent supports | ||
|
||
### Bug Fixes | ||
|
||
- clash config file case ignore | ||
- clash `external-controller` only port |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
import fs from "fs-extra"; | ||
import path from "path"; | ||
|
||
const UPDATE_LOG = "UPDATELOG.md"; | ||
|
||
// parse the UPDATELOG.md | ||
export async function resolveUpdateLog(tag) { | ||
const cwd = process.cwd(); | ||
|
||
const reTitle = /^## v[\d\.]+/; | ||
const reEnd = /^---/; | ||
|
||
const file = path.join(cwd, UPDATE_LOG); | ||
|
||
if (!(await fs.pathExists(file))) { | ||
throw new Error("could not found UPDATELOG.md"); | ||
} | ||
|
||
const data = await fs.readFile(file).then((d) => d.toString("utf8")); | ||
|
||
const map = {}; | ||
let p = ""; | ||
|
||
data.split("\n").forEach((line) => { | ||
if (reTitle.test(line)) { | ||
p = line.slice(3).trim(); | ||
if (!map[p]) { | ||
map[p] = []; | ||
} else { | ||
throw new Error(`Tag ${p} dup`); | ||
} | ||
} else if (reEnd.test(line)) { | ||
p = ""; | ||
} else if (p) { | ||
map[p].push(line); | ||
} | ||
}); | ||
|
||
if (!map[tag]) { | ||
throw new Error(`could not found "${tag}" in UPDATELOG.md`); | ||
} | ||
|
||
return map[tag].join("\n").trim(); | ||
} |