Skip to content

Commit

Permalink
Merge pull request #42 from vict0rsch/hotfix-search
Browse files Browse the repository at this point in the history
  • Loading branch information
vict0rsch authored Dec 13, 2021
2 parents 0de3f50 + b8eec5e commit 4407542
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Paper Memory",
"version": "0.4.2.1",
"version": "0.4.2.2",
"manifest_version": 2,
"description": "Automatically record papers you read from Arxiv, OpenReview & more! Organize your library with tags, links to code and quick notes.",
"homepage_url": "https://github.com/vict0rsch/PaperMemory",
Expand Down
2 changes: 1 addition & 1 deletion src/popup/js/memory.js
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ const reverseMemory = () => {
* @param {string} letters The user's string query.
*/
const filterMemoryByString = (letters) => {
const words = letters.split(" ");
const words = letters.toLowerCase().split(" ");
let papersList = [];
for (const paper of global.state.sortedPapers) {
const title = paper.title.toLowerCase();
Expand Down
2 changes: 1 addition & 1 deletion src/popup/min/popup.min.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/popup/min/popup.min.js

Large diffs are not rendered by default.

8 changes: 7 additions & 1 deletion src/popup/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,13 @@ <h3>Search</h3>
<h3 style="margin-bottom: 0px;">What's new</h3>
<ul>
<li><strong>Current: </strong><a
href="https://github.com/vict0rsch/PaperMemory/releases/tag/0.4.2.1">0.4.2.1</a>
href="https://github.com/vict0rsch/PaperMemory/releases/tag/0.4.2.2">0.4.2.2</a>
<em>(2021-12-13)</em>
<ul>
<li>[dev] Hotfix: fix lower case Memory search</li>
</ul>
</li>
<li><a href="https://github.com/vict0rsch/PaperMemory/releases/tag/0.4.2.1">0.4.2.1</a>
<em>(2021-12-13)</em>
<ul>
<li>[dev] Hotfix: improve ACL titles</li>
Expand Down

0 comments on commit 4407542

Please sign in to comment.