Skip to content

Commit

Permalink
Merge pull request #167 from vict0rsch/fix-sync-website
Browse files Browse the repository at this point in the history
  • Loading branch information
vict0rsch authored Jun 28, 2023
2 parents 6e66f97 + a3b0079 commit d4f0e4b
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@

[![](https://img.shields.io/chrome-web-store/stars/hmebhknlgddhfbbdhgplnillngljgmdi)](https://chrome.google.com/webstore/detail/paper-memory/hmebhknlgddhfbbdhgplnillngljgmdi)
[![](https://img.shields.io/badge/buy%20me-a%20coffee%20%E2%98%95%EF%B8%8F-FFDD03)](https://www.buymeacoffee.com/vict0rsch)
[![](https://img.shields.io/badge/Source%20%5BWIP%5D-v0.5.11-important)](https://github.com/vict0rsch/PaperMemory)
[![](https://img.shields.io/badge/Release-v0.5.11-A41716)](https://github.com/vict0rsch/PaperMemory/tree/0.5.11)
<!-- [![](https://img.shields.io/badge/Source%20%5BWIP%5D-v0.5.12-important)](https://github.com/vict0rsch/PaperMemory) -->
[![](https://img.shields.io/badge/Release-v0.5.12-A41716)](https://github.com/vict0rsch/PaperMemory/tree/0.5.12)

<br/>

Expand Down
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.5.11",
"version": "0.5.12",
"manifest_version": 2,
"description": "Automatically record papers and their codes from Arxiv, OpenReview & more! Organize your library with tags, links and quick notes.",
"homepage_url": "https://github.com/vict0rsch/PaperMemory",
Expand Down
2 changes: 1 addition & 1 deletion src/options/options.css
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ input {

/* Modal Content/Box */
#modal-contents {
background-color: #fefefe;
background-color: var(--lighterBackground);
padding: 20px 35px;
border-radius: var(--rounder);
width: 60%; /* Could be more or less, depending on screen size */
Expand Down
3 changes: 2 additions & 1 deletion src/popup/js/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,9 +198,10 @@ const editManualWebsite = (parsedPaper, url) => {
// No warnings -> store paper
global.state.papers[paper.id] = paper;
await setStorage("papers", global.state.papers);
await pushToRemote();
popupMain(url, await isPaper(url), true, null);
hideId("website-trigger-btn");
hideId("notArxiv");
popupMain(url, await isPaper(url), true, null);
closePopupModal();
}
return false;
Expand Down
2 changes: 1 addition & 1 deletion src/popup/min/popup.min.css

Large diffs are not rendered by default.

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 @@ -481,7 +481,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.5.11">0.5.11</a>
href="https://github.com/vict0rsch/PaperMemory/releases/tag/0.5.12">0.5.12</a>
<em>(2023-06-28)</em>
<ul>
<li>[dev] Fix sync when parsing arbitrary websites</li>
</ul>
</li>
<li><a href="https://github.com/vict0rsch/PaperMemory/releases/tag/0.5.11">0.5.11</a>
<em>(2023-05-19)</em>
<ul>
<li>[dev] Update Firefox popup shortcut and instructions</li>
Expand Down
1 change: 1 addition & 0 deletions src/shared/css/vars.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@
--color: black;
--aColor: rgb(22, 86, 184);
--noteColor: rgb(45, 45, 45);
--lighterBackground: rgb(236, 236, 236);
}

0 comments on commit d4f0e4b

Please sign in to comment.