Skip to content

Releases: zhaohongxuan/obsidian-weread-plugin

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出现的概率

0.5.8

26 Oct 14:54
Compare
Choose a tag to compare
fix chapter undefined error

0.5.7

26 Oct 08:14
Compare
Choose a tag to compare
fix: fixed chapterIdx undefined

0.5.6

18 Oct 08:17
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.5.5...0.5.6

0.5.5

09 Oct 10:15
Compare
Choose a tag to compare
  • [FIX] 修复笔记同步不完整的Bug。
  • [FIX] 章节按照章节Idx而非Uid进行排序。
  • [FEAT] 透出highlight中的新字段 colorStyle 用来表示高亮颜色。
  • [FEAT] 在metaData中增话一个微信读书网页端地址:pcUrl。

0.5.4

15 Sep 06:28
Compare
Choose a tag to compare
Merge branch 'peanut996-patch-1'

0.5.3

23 Aug 00:17
Compare
Choose a tag to compare

修复同步过程中的 replace undefined报错

0.5.2

03 Aug 08:46
Compare
Choose a tag to compare
  • Metadata中增加了两个字段:总字数:totalWords评分:rating
  • 修复了划线评论顺序颠倒的问题,默认按照range排序:#131
  • 修复了默认模板同一个章节划线评论重复的问题,可能需要手动在Obsidian中修改模板: #137