mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 03:25:03 +03:00
Update snapshot appcast and fix release script
This commit is contained in:
parent
1bef38e651
commit
e34f905f80
@ -6,22 +6,23 @@
|
||||
<description>Most recent changes with links to updates for VimR.</description>
|
||||
<language>en</language>
|
||||
<item>
|
||||
<title>SNAPSHOT-20220323.180713</title>
|
||||
<title>SNAPSHOT-20220330.224200</title>
|
||||
<link>https://twitter.com/vimrefined</link>
|
||||
<sparkle:version>20220323.180713</sparkle:version>
|
||||
<sparkle:shortVersionString>SNAPSHOT-20220323.180713</sparkle:shortVersionString>
|
||||
<sparkle:version>20220330.224200</sparkle:version>
|
||||
<sparkle:shortVersionString>SNAPSHOT-20220330.224200</sparkle:shortVersionString>
|
||||
<description><![CDATA[
|
||||
<ul>
|
||||
<li>GH-922: Add an option to set font smoothing.</li>
|
||||
<p>Since last snapshot:</p>
|
||||
<ul>
|
||||
<li>GH-928: Bugfix: Files containing some special characters in their names cannot be opened</li>
|
||||
</ul>
|
||||
]]></description>
|
||||
<releaseNotesLink>
|
||||
https://github.com/qvacua/vimr/releases/tag/snapshot/20220323.180713
|
||||
https://github.com/qvacua/vimr/releases/tag/snapshot/20220330.224200
|
||||
</releaseNotesLink>
|
||||
<pubDate>2022-03-23T18:16:10.030704</pubDate>
|
||||
<pubDate>2022-03-30T22:53:54.541584</pubDate>
|
||||
<minimumSystemVersion>10.13.0</minimumSystemVersion>
|
||||
<enclosure url="https://github.com/qvacua/vimr/releases/download/snapshot/20220323.180713/VimR-SNAPSHOT-20220323.180713.tar.bz2"
|
||||
sparkle:edSignature="CrbUdpVuXgNRQyslJ+e10me48AqhOup1cffCJRuSVDoY+MvHeAJ6MGfqQWh8Am1vFUc3dn2NtZt7GbzH4E87Cw==" length="20911862"
|
||||
<enclosure url="https://github.com/qvacua/vimr/releases/download/snapshot/20220330.224200/VimR-SNAPSHOT-20220330.224200.tar.bz2"
|
||||
sparkle:edSignature="gQZfTIjg5SnMlR22+WzIiNZGxveEcTbtJO7o16zc4qXbwzbsXWVQ7g7yoBLzYO7dydPu65d93rMcn5QQ+IpqBQ==" length="20913311"
|
||||
type="application/octet-stream"/>
|
||||
</item>
|
||||
</channel>
|
||||
|
@ -68,16 +68,14 @@ build_release() {
|
||||
|
||||
create_gh_release() {
|
||||
if [[ "${is_snapshot}" == true ]]; then
|
||||
gh release create \
|
||||
gh release create "${tag}" \
|
||||
--discussion-category "general" \
|
||||
--prerelease \
|
||||
--target "${tag}" \
|
||||
--title "${github_release_name}" \
|
||||
--notes "${release_notes}"
|
||||
else
|
||||
gh release create \
|
||||
gh release create "${tag}" \
|
||||
--discussion-category "general" \
|
||||
--target "${tag}" \
|
||||
--title "${github_release_name}" \
|
||||
--notes "${release_notes}"
|
||||
fi
|
||||
@ -118,9 +116,9 @@ main() {
|
||||
|
||||
pushd "$(dirname "${BASH_SOURCE[0]}")/.." >/dev/null
|
||||
|
||||
check_version
|
||||
prepare_bin
|
||||
build_release
|
||||
# check_version
|
||||
# prepare_bin
|
||||
# build_release
|
||||
|
||||
if [[ "${create_gh_release}" == true ]]; then
|
||||
create_gh_release
|
||||
|
Loading…
Reference in New Issue
Block a user