Skip to content

Commit

Permalink
fix: table view bug
Browse files Browse the repository at this point in the history
  • Loading branch information
GeoffreyChen777 committed May 19, 2024
1 parent 9b121e5 commit ce6c71e
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG_CN.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
## v3.1.0 18/05 2024
## v3.1.1 19/05 2024

1. 介绍新插件: `paperlib ai chat extension`. 你可以和语言模型讨论你的论文了。by @igoogolx,@geoffreychen777
2. 修复:表格视图 Bug。by @geoffreychen777

## v3.1.0 18/05 2024

1. 介绍新插件: `paperlib ai chat extension`. 你可以和语言模型讨论你的论文了。by @igoogolx,@geoffreychen777
2. 新功能:渲染标题中的 LaTex。by @geoffreychen777
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG_EN.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v3.1.1 May 18 2024

1. Introduce A New Extension: `paperlib ai chat extension`. It allows you to discuss a paper with LLMs!!! by @igoogolx, @geoffreychen777
2. Fix: table view bug. by @geoffreychen777


## v3.1.0 May 18 2024

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ const fields = computed(() => {
>
<WordHighlighter
class="my-auto truncate"
v-if="field.type === 'string' && field.highlightable"
v-else-if="field.type === 'string' && field.highlightable"
:query="queryHighlight"
highlight-class="bg-yellow-300 rounded-sm px-0.5"
:text-to-highlight="field.value"
Expand All @@ -153,7 +153,7 @@ const fields = computed(() => {
></span>
<WordHighlighter
class="my-auto truncate"
v-if="field.type === 'html' && field.highlightable"
v-else-if="field.type === 'html' && field.highlightable"
:query="queryHighlight"
highlight-class="bg-yellow-300 rounded-sm px-0.5"
:html-to-highlight="field.value"
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.1.0",
"version": "3.1.1",
"main": "dist/main-entry.js",
"description": "A simple academic paper management tool.",
"author": "Future Scholars <hi@paperlib.app>",
Expand Down
6 changes: 2 additions & 4 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
1. Feat: render LaTex in the title. by @geoffreychen777
2. Feat: highlight the search keyword in the search result. by @geoffreychen777
3. Others: prepare for the new browser extension. by @geoffreychen777
4. Fix: preference window drag issue. by @geoffreychen777
1. Introduce A New Extension: `paperlib ai chat extension`. It allows you to discuss a paper with LLMs!!! by @igoogolx, @geoffreychen777
2. Fix: table view bug. by @geoffreychen777

0 comments on commit ce6c71e

Please sign in to comment.