-
Notifications
You must be signed in to change notification settings - Fork 6
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
5 changed files
with
42 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +0,0 @@ | ||
release.sh | ||
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,5 +1,6 @@ | ||
## v2.2.9 / 2024.10.12 | ||
- 💄 消息已读按钮取消背景色 | ||
- 💄 更改blockquote样式 | ||
|
||
## v2.2.8 /2024.10.10 | ||
- 🐛 黑暗模式下看板视图的文字对比度问题 | ||
|
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 |
---|---|---|
|
@@ -33,8 +33,14 @@ | |
|
||
## 🚀最近更新 | ||
|
||
V2.2.6 / 2024.09.12 | ||
- 🐛 Dark主题无法修改加粗文字 | ||
v2.2.9 / 2024.10.12 | ||
- 💄 消息已读按钮取消背景色 | ||
- 💄 更改blockquote样式 | ||
|
||
v2.2.8 /2024.10.10 | ||
- 🐛 黑暗模式下看板视图的文字对比度问题 | ||
- 💄light 主题的红色调深 | ||
|
||
|
||
v2.2.5 / 2024.09.11 | ||
- 💄 适配思源笔记v3.1.6 代码块样式 | ||
|
@@ -415,7 +421,9 @@ border-bottom: none; | |
|
||
若主题存在样式的问题,欢迎在[Github](https://github.com/Achuan-2/siyuan-themes-tsundoku)提issue或是通过邮箱联系我([email protected])。在提issue之前建议先切换为默认主题,确定是本主题特有的问题。 | ||
|
||
## 用爱发电 | ||
|
||
如果觉得主题好用,欢迎点个star或者给我买包辣条🙏 | ||
<div align="center"> | ||
<img src="donate.webp" width="250" /> | ||
</div> | ||
|
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,30 @@ | ||
# Change directory to the script's directory | ||
cd "$(dirname $0)" | ||
|
||
# Get version from theme.json | ||
version=v$(grep -oP '(?<="version": ")[^"]+' theme.json) | ||
|
||
# Commit changes | ||
git add . | ||
git commit -m "🔖 $version" | ||
git push | ||
|
||
# 判断 tag 是否存在 | ||
if git rev-parse --quiet --verify $version >/dev/null; then | ||
# 删除本地仓库中的 tag | ||
git tag -d $version | ||
# 删除远程仓库中的 tag | ||
git push origin ":refs/tags/$version" | ||
|
||
fi | ||
|
||
# 创建新的 tag | ||
git tag $version # Create a tag | ||
|
||
# 推送新的 tag 到远程仓库 | ||
git push origin --tags | ||
# git archive --format zip --output ../package-$version.zip HEAD # Create a zip archive | ||
|
||
|
||
|
||
|
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