Skip to content

Commit

Permalink
release 9.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisgrieser committed May 25, 2022
1 parent 46f6a2f commit caf7531
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
- 2022-05-25 release 9.5.1
- 2022-05-25 fix fuzzy pdf opener
- 2022-05-24 release 9.5.0
- 2022-05-24 release 9.4.0
- 2022-05-24 switch provider of isbns, since ottobib shut down
Expand Down
Binary file modified Supercharged-Citation-Picker.alfredworkflow
Binary file not shown.
2 changes: 1 addition & 1 deletion info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -3196,7 +3196,7 @@ to set a hotkey for the citaiton picker.</string>
<string>bibtex_library_path</string>
</array>
<key>version</key>
<string>9.5.0</string>
<string>9.5.1</string>
<key>webaddress</key>
<string>https://github.com/chrisgrieser/alfred-bibtex-citation-picker</string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion scripts/add-to-bib.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ function run (argv) {
if (isDOI || isISBN) {
const newEntryProperties = bibtexEntry
.split(newLineDelimiter)
.filter(field => !(field.includes("\tean =") || field.includes("\tdate ="))) // remove garbage fields
.filter(field => !(field.includes("\tean =") || field.includes("\tdate ="))); // remove garbage fields

// generate citekey
newCitekey = generateCitekey(newEntryProperties);
Expand Down

0 comments on commit caf7531

Please sign in to comment.