-
Notifications
You must be signed in to change notification settings - Fork 566
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update README.md - Build status 使用 Github Actions Badge - 更新输入法 OS 要求 - 更新代码贡献者列表 * 更新 CHANGELOG 至 0.15.0 * 更新 CI 配置文件 * 更新版本号至 0.15.0 * fix extract_changelog.ps1 [skip ci] * fast test * fix release-ci.yml [skip ci] * add code block to CHANGLOG.md [skip ci] * Update CHANGELOG.md modify changelog.md * allow ci to upload binary to release [skip ci] * Update CHANGELOG [skip ci] * Update README [skip ci] * update appcast.xml * update testing-appcast.xml * Update CHANGELOG.md [skip ci] --------- Co-authored-by: fxliang <fx.liang@outlook.com>
- Loading branch information
Showing
11 changed files
with
234 additions
and
34 deletions.
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
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 |
---|---|---|
|
@@ -38,3 +38,4 @@ Thumbs.db | |
*.VC.db | ||
release-notes.html | ||
*.7z | ||
RELEASE_CHANGELOG.md |
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
Binary file not shown.
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,28 @@ | ||
$tag = $env:GITHUB_REF -replace 'refs/tags/' | ||
$changelogPath = Join-Path $PSScriptRoot "CHANGELOG.md" | ||
$outputPath = Join-Path $PSScriptRoot "RELEASE_CHANGELOG.md" | ||
|
||
$changeLog = Get-Content $changelogPath | ||
Out-File -FilePath $outputPath -NoNewline | ||
|
||
$found = $false | ||
foreach ($line in $changeLog) { | ||
$versionLine = $line -match '<a name="(.*)"></a>' | ||
if ($versionLine) { | ||
$version = $Matches.1 | ||
if (-Not $found) { | ||
if ($version -ne $tag) { | ||
# version mismatch | ||
Write-Output "version mismatch: changelog is ${version} but tag is ${tag}" | ||
exit 1 | ||
} else { | ||
$found = $true | ||
Write-Output "extracting changelog for ${version}" | ||
continue | ||
} | ||
} else { | ||
exit 0 | ||
} | ||
} | ||
$line | Out-File -FilePath $outputPath -Append | ||
} |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#pragma once | ||
|
||
#define WEASEL_VERSION_STR "0.14.3.0" | ||
#define WEASEL_VERSION_NUM 0,14,3,0 | ||
#define WEASEL_VERSION_STR "0.15.0.0" | ||
#define WEASEL_VERSION_NUM 0,15,0,0 | ||
|
||
#define WEASEL_CODE_NAME "Weasel" | ||
#define WEASEL_VERSION WEASEL_VERSION_STR |
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