Skip to content

Commit

Permalink
Bump up to v3.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
GeoffreyChen777 committed Mar 25, 2024
1 parent 785fefa commit e69437f
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 12 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG_CN.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## v3.0.5 25/03 2024

0. 紧急修复一个 Bug。
1. 新功能:现在你可以使用自定义重命名规则,比如:`{year}/{publication}/{title}` 在文件系统中层级地组织你的 PDF。by @geoffreychen777
2. 新功能:添加一个上下文菜单,用于从标签/组中移除论文。by @Rccubc
3. 新功能:点击评分星星以清除评分。by @igoogolx
4. 增强:改进了快捷键的 UI 组件。by @igoogolx
5. 增强:分批次抓取论文元数据。by @geoffreychen777
6. 增强:优化了快速引用工具的体验。by @geoffreychen777
7. 增强:支持自定义根证书。请查看我们的网站。by @geoffreychen777
8. 修复:修复了侧边栏中的拖动 Bug。by @Rccubc
9. 修复:修复了仅于 Linux 的路径 Bug。by @geoffreychen777

## v3.0.4 24/03 2024

1. 新功能:现在你可以使用自定义重命名规则,比如:`{year}/{publication}/{title}` 在文件系统中层级地组织你的 PDF。by @geoffreychen777
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG_EN.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## v3.0.5 Mar 25 2024

0. Fix some bugs.
1. New Feature: Now you can use a custom renaming format such as `{year}/{publication}/{title}` to organize your PDFs in hierarchical folders. By @geoffreychen777.
2. New Feature: Add a context menu to remove papers from tags/folders. By @Rccubc.
3. New Feature: Clear the rating. By @igoogolx.
4. Enhance: Improved UI component for shortcut keys. By @igoogolx, @charlieJ107
5. Enhance: Scrape papers in batch. By @geoffreychen777.
6. Enhance: Optimize the experience of the Quick Reference tool. By @geoffreychen777.
7. Enhance: Support the custom root CA. See our website. By @geoffreychen777.
8. Fix: Resolved a dragging bug in the sidebar. By @Rccubc.
9. Fix: Fixed a Linux-only path bug. By @geoffreychen777.

## v3.0.4 Mar 24 2024

1. New Feature: Now you can use a custom renaming format such as `{year}/{publication}/{title}` to organize your PDFs in hierarchical folders. By @geoffreychen777.
Expand Down
5 changes: 3 additions & 2 deletions app/extension/services/extension-preference-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ class ExtensionPreferenceStore<
const curValue = this._store.get(key);

curValue.options = value.options;
if (curValue.options[curValue.value]) {
curValue.value = curValue.options[0];
if (!curValue.options[curValue.value]) {
const firstKey = Object.keys(curValue.options)[0];
curValue.value = firstKey;
}
this._store.set(key, curValue);
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "paperlib",
"version": "3.0.4",
"version": "3.0.5",
"main": "dist/main-entry.js",
"description": "A simple academic paper management tool.",
"author": "Future Scholars <hi@paperlib.app>",
Expand Down
10 changes: 1 addition & 9 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -1,9 +1 @@
1. New Feature: Now you can use a custom renaming format such as `{year}/{publication}/{title}` to organize your PDFs in hierarchical folders. By @geoffreychen777.
2. New Feature: Add a context menu to remove papers from tags/folders. By @Rccubc.
3. New Feature: Clear the rating. By @igoogolx.
4. Enhance: Improved UI component for shortcut keys. By @igoogolx, @charlieJ107
5. Enhance: Scrape papers in batch. By @geoffreychen777.
6. Enhance: Optimize the experience of the Quick Reference tool. By @geoffreychen777.
7. Enhance: Support the custom root CA. See our website. By @geoffreychen777.
8. Fix: Resolved a dragging bug in the sidebar. By @Rccubc.
9. Fix: Fixed a Linux-only path bug. By @geoffreychen777.
1. Fix some bugs.

0 comments on commit e69437f

Please sign in to comment.