Skip to content

Commit

Permalink
Bump up to electron-v1.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
GeoffreyChen777 committed Jul 28, 2022
1 parent 70b7da1 commit ae52fe3
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 17 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG_CN.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v1.9.2 27/07 2022

1. 修复 macOS 快捷键关闭之后无法打开的 Bug。

## v1.9.1 27/07 2022

1. 支持 arXiv 更多的 RSS 格式。
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG_EN.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v1.9.2 Jul 28 2022

1. Bug fix: Cannot reopen window on macOS.

## v1.9.1 Jul 27 2022

1. Support more arxiv RSS formats.
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": "1.9.1",
"version": "1.9.2",
"description": "A simple academic paper management tool for CSer.",
"productName": "Paperlib",
"author": "Geoffrey Chen <[email protected]>",
Expand Down
5 changes: 0 additions & 5 deletions packages/main/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,11 +186,6 @@ async function createWindow() {
winPlugin?.show();
}
);
globalShortcut.register("Command+W", () => {
win?.hide();
winPlugin?.hide();
winCheck?.hide();
});
}

app.whenReady().then(createWindow);
Expand Down
8 changes: 1 addition & 7 deletions packages/renderer/src/ui/whats-new-view.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,18 +34,12 @@ onMounted(() => {
<div class="w-[40rem] h-screen px-3 mx-auto">
<img class="w-20 mx-auto mb-2" src="../assets/icon.png" />
<p class="text-center text-2xl font-bold mb-8">
What's New in Paperlib 1.9.1
What's New in Paperlib 1.9.2
</p>

<p class="mt-10"><b>Improvements and Fixed Bugs</b></p>
<li>Support more RSS subscription formats. #50</li>
<p class="ml-5">支持更多的 RSS 返回格式。</p>
<li>Fix: Cannot reopen window on macOS #118</li>
<p class="ml-5">修复 macOS 快捷键关闭之后无法打开的 Bug。</p>
<li>Fix: Text missing under dark mode #117</li>
<p class="ml-5">修复 Tooltip 文字 Bug。</p>
<li>Fix: Database initialisation bug on Windows.</li>
<p class="ml-5">修复 Windows 下数据库初始化 Bug。</p>

<div
class="mt-10 mx-auto flex w-60 h-10 bg-accentlight dark:bg-accentdark text-neutral-50 rounded-md shadow-md cursor-pointer"
Expand Down
5 changes: 1 addition & 4 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
1. Support more arxiv RSS formats.
2. Bug fix: Cannot reopen window on macOS.
3. Bug fix: Windows database initialization bug.
4. Bug fix: Tooltip text missing under dark mode.
1. Bug fix: Cannot reopen window on macOS.

0 comments on commit ae52fe3

Please sign in to comment.