Skip to content

Releases: zhaohongxuan/obsidian-weread-plugin

0.10.0

05 Mar 06:03
Compare
Choose a tag to compare
  • 支持同步微信公众号文章

0.9.0

24 Feb 01:27
Compare
Choose a tag to compare
chore: pump version to 0.9.0

0.8.4

27 Jan 07:31
Compare
Choose a tag to compare
chore: compliant with obsidian release

0.8.3

25 Jan 05:33
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.8.2...0.8.3

0.8.2

11 Jan 09:49
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.8.1...0.8.2

0.8.1

10 Jan 15:14
Compare
Choose a tag to compare
fix: Unexpected click event in Windows PC

0.8.0

05 Jan 06:45
Compare
Choose a tag to compare
  • 支持Obsidian中中直接打开微信读书网页版, #122
  • 在读书笔记中可以右键刷新当前笔记
image - 左上角Ribbon Icon增加了右键菜单,可以选择同步,强制同步,以及在OB中打开微信读书官网。 image

0.7.1

30 Dec 08:58
Compare
Choose a tag to compare
fix: sanitize file title #234

0.7.0

30 Dec 08:21
Compare
Choose a tag to compare

本次主要更新了两个功能:

  1. 在顶部的frontmatter中,默认增加了读书元数据,可以更方便使用dataview来统计自己的阅读数据。

    readingStatus: 阅读状态,有四种,未标记,在读,读过,读完。
    progress:当前图书的阅读状态,注意,这里的进度和上面的状态可能冲突,比如状态是阅读完,但是进度可能不是100%
    readingTime:当前图书的阅读时间,格式为XX小时XX分钟
    totalReadDay: 当前图书的总阅读天数。
    readingDate:当前图书开始阅读的时间。
    finishedDate:当前图书完成阅读的时间,如果有的话。

image
  1. 增加chapter title的开关,如果一个章节下面没有划线,那么默认情况下将不输出标题,如果希望展示所有的标题,需要手动打开开关。
image
  1. 修复 #243#238 两个bug
  2. 优化了同步流程提示框,不影响功能

0.6.0

05 Dec 09:24
Compare
Choose a tag to compare
  • 支持完整的章节列表(即使没有划线和评论,也会打印空标题) #106, #170, #233
  • 支持章节级别,可以按照章节级别设置标题类型,比如level=1章节,设置二级标题,level=2的章节设置三级标题,依次类推。如果自定义了模板,需要自行更改以使用新增的level字段,使用方法如下:
{% for chapter in chapterHighlights %}
{% if chapter.level == 1 %}## {{chapter.chapterTitle}}{% elif chapter.level == 2 %}### {{chapter.chapterTitle}}{% elif chapter.level == 3 %}#### {{chapter.chapterTitle}}{% endif %}
{% endfor %}
  • 防止重复点击更新: #235
  • 更新进度提示以及更新时间统计,对于大量笔记用户来说体验更好:
image image - 一定的性能提升,减少http error 499出现的概率