diff --git a/Changelog.md b/Changelog.md index 262dc2b..05c603c 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,5 @@ +- 2022-04-01 release 8.1.0 +- 2022-04-01 quick search (e.g. search 'fou 77' for 'foucault 1977') - 2022-03-31 release 8.0.3 - 2022-03-31 fix parser for when properties include an @ symbol - 2022-03-31 release 8.0.2 diff --git a/README.md b/README.md index c551f26..6de3170 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ Press the hotkey in any text field to launch the citation picker. - Search for the title, author/editor (last name), year, or, collection/journal-title. - Prepend `@` to a word to search for a citekey, e.g. `@Grieser2020`. - Prepend `#` to search for keywords (tags), e.g. `#sociology`. -- *Smart Queries*: You can search for any combination of the above. For example, the query `2020 #cognition Grieser *` will for entries published in 2020, with the tag "cognition", and with "Grieser" as author/editor. +- *Smart Queries*: You can search for any combination of the above. For example, the query `2020 #cognition Grieser *` will for entries published in 2020, with the tag "cognition", and with "Grieser" as author/editor. - *Quick Search*: The search is fuzzy *and* for years also matches the last two digits. For example, you can search for `Fouc 77` to find `Foucault 1977`. - The workflow setting `match_authors_in_etal` determines whether authors (or editors) in the *et al.* are still matched when searching for them (default: *true*). diff --git a/Supercharged-Citation-Picker.alfredworkflow b/Supercharged-Citation-Picker.alfredworkflow index 3884eb3..8b4d190 100644 Binary files a/Supercharged-Citation-Picker.alfredworkflow and b/Supercharged-Citation-Picker.alfredworkflow differ diff --git a/info.plist b/info.plist index 97f82ba..04dad29 100644 --- a/info.plist +++ b/info.plist @@ -2773,7 +2773,7 @@ to set a hotkey for the citaiton picker. literature_note_folder version - 8.0.3 + 8.1.0 webaddress https://github.com/chrisgrieser/alfred-bibtex-citation-picker diff --git a/scripts/autocomplete-for-obsidian.js b/scripts/autocomplete-for-obsidian.js index 4f5c94f..03e3d51 100755 --- a/scripts/autocomplete-for-obsidian.js +++ b/scripts/autocomplete-for-obsidian.js @@ -20,8 +20,6 @@ const delimiter = "|"; // https://tadashi-aikawa.github.io/docs-obsidian-various const insertDisplayDelimiter = ">>>"; - - // ---------- const rawBibtex = app.doShellScript('cat "' + libraryPath + '"');