Skip to content

Commit

Permalink
🔖 v1.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Achuan-2 committed Jan 16, 2024
1 parent 6bdfffe commit e254a51
Show file tree
Hide file tree
Showing 4 changed files with 75 additions and 13 deletions.
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,41 @@
## v1.9.3 / 2023.01.16
- 🐛 fix(字体自定义): 修复Green主题和Dark主题不支持代码片段中的字体自定义
现在主题可以通过把字体放在plugins文件夹下,并在代码片段如下片段,设置全局字体,并且手机端也能使用该字体了
```css
@font-face {
font-family: "汉仪空山楷";
font-style: normal;
src: url("plugins/custom-fonts/汉仪空山楷.ttf");
}

:root {
--b3-font-family: "汉仪空山楷", "Helvetica Neue", "Luxi Sans", "DejaVu Sans", "Hiragino Sans GB", "Microsoft Yahei", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Segoe UI Symbol", "Android Emoji", "EmojiSymbols";

}
```
- 🐛 fix(数据库): 数据库选中单元格不显示背景色
- 🐛 fix(Dark主题): 修复没有加载特定link icon和代码块样式
- 💄 ui(外观): 修改 b3-theme-primary-lightest 颜色

---

- 🐛 fix (font customization): Fixed the issue where the Green and Dark themes did not support font customization in code snippets. Now, the themes can support global font settings by placing the font in the plugins folder and using the following code snippet, allowing the font to be used on mobile devices as well:
```css
@font-face {
font-family: "HanYiKongShanKai";
font-style: normal;
src: url("plugins/custom-fonts/HanYiKongShanKai.ttf");
}

:root {
--b3-font-family: "HanYiKongShanKai", "Helvetica Neue", "Luxi Sans", "DejaVu Sans", "Hiragino Sans GB", "Microsoft Yahei", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Segoe UI Symbol", "Android Emoji", "EmojiSymbols";
}
```
- 🐛 fix (database): Fixed the issue where the selected cell in the database did not display the background color.
- 🐛 fix (Dark theme): Fixed the issue where specific link icons and code block styles were not loaded.
- 💄 ui (appearance): Modified the color of `b3-theme-primary-lightest`.


## v1.9.2 / 2023.01.14

* 💄列表竖线颜色调整,适配导出pdf
Expand Down
23 changes: 17 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,23 @@ English | [中文](./README_zh_CN.md)

## 🚀 CHANGLOGS

v1.9.3 / 2023.01.16
- 🐛 fix (font customization): Fixed the issue where the Green and Dark themes did not support font customization in code snippets. Now, the themes can support global font settings by placing the font in the plugins folder and using the following code snippet, allowing the font to be used on mobile devices as well:
```css
@font-face {
font-family: "HanYiKongShanKai";
font-style: normal;
src: url("plugins/custom-fonts/HanYiKongShanKai.ttf");
}

:root {
--b3-font-family: "HanYiKongShanKai", "Helvetica Neue", "Luxi Sans", "DejaVu Sans", "Hiragino Sans GB", "Microsoft Yahei", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Segoe UI Symbol", "Android Emoji", "EmojiSymbols";
}
```
- 🐛 fix (database): Fixed the issue where the selected cell in the database did not display the background color.
- 🐛 fix (Dark theme): Fixed the issue where specific link icons and code block styles were not loaded.
- 💄 ui (appearance): Modified the color of `b3-theme-primary-lightest`.

v1.9.2 / 2023.01.14
* 💄 Adjusted the color of the vertical lines in the list to adapt for PDF export.
* 🎨 Placed export styles in print.css
Expand All @@ -41,11 +58,6 @@ v1.9.0 / 2023.01.07
- 💄 ui(custom colors): Adjusted color matching
- 💄 ui(title): Changed the style, modified the background color, added some shadows, and included a title prompt for savor

v1.8.9 / 2024.01.04
- 💄 ui(title): Increased spacing above and below
- 💄 ui(blockquote): Made font color bolder
- 💄 ui(database): Default buttons are not hidden


Please see [CHANGELOG](./CHANGELOG.md) for the full update log.

Expand Down Expand Up @@ -109,7 +121,6 @@ I use this name to wake myself up, hoping to make good use of Siyuan notes, help
| f | kb | Convert list to kanban board | Ref: Notion theme |
| f | dt | Convert list to mind map | Ref: Notion theme |
| f | dg | Convert list to table | Ref: Notion theme |
| f | full | Set table width to page width | Ref: Notion theme |
| f | biaotou | Remove bold formatting from table headers | Ref: Notion theme |


Expand Down
25 changes: 19 additions & 6 deletions README_zh_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,25 @@

## 🚀最近更新

v1.9.3 / 2023.01.16
- 🐛 fix(字体自定义): 修复Green主题和Dark主题不支持代码片段中的字体自定义
现在主题可以通过把字体放在plugins文件夹下,并在代码片段如下片段,设置全局字体,并且手机端也能使用该字体了
```css
@font-face {
font-family: "汉仪空山楷";
font-style: normal;
src: url("plugins/custom-fonts/汉仪空山楷.ttf");
}

:root {
--b3-font-family: "汉仪空山楷", "Helvetica Neue", "Luxi Sans", "DejaVu Sans", "Hiragino Sans GB", "Microsoft Yahei", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Segoe UI Symbol", "Android Emoji", "EmojiSymbols";

}
```
- 🐛 fix(数据库): 数据库选中单元格不显示背景色
- 🐛 fix(Dark主题): 修复没有加载特定link icon和代码块样式
- 💄 ui(外观): 修改 b3-theme-primary-lightest 颜色

v1.9.2 / 2023.01.14
* 💄列表竖线颜色调整,适配导出pdf
* 🎨 导出样式放在print.css
Expand All @@ -41,11 +60,6 @@ v1.9.0 / 2023.01.07
- 💄 ui(自定义颜色): 调整配色
- 💄 ui( 标题): 更改样式,改了下背景色、添加了一点阴影、添加了savor的标题提示

v1.8.9 / 2024.01.04
- 💄 ui( 标题): 上下增加间距
- 💄 ui(blockquote): 字体颜色调粗
- 💄 ui(数据库): 默认不隐藏按钮


全部更新日志请见 [CHANGELOG](./CHANGELOG.md)

Expand Down Expand Up @@ -110,7 +124,6 @@ Tsundoku “積 ん 読”是日语里的一个词,维基百科是这样解释
| f | kb | 列表转看板 | Ref:notion主题 |
| f | dt | 列表转脑图 | Ref:notion主题 |
| f | dg | 列表转表格 | Ref:notion主题 |
| f | full | 表格宽度为页面宽度 | Ref:notion主题 |
| f | biaotou | 表格表头不加粗 | Ref:notion主题 |

- 自定义文档属性
Expand Down
2 changes: 1 addition & 1 deletion theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Tsundoku",
"author": "Achuan-2",
"url": "https://github.com/Achuan-2/siyuan-themes-tsundoku",
"version": "1.9.2",
"version": "1.9.3",
"displayName": {
"default": "Tsundoku",
"zh_CN": "積読"
Expand Down

0 comments on commit e254a51

Please sign in to comment.