-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Change log for Zowie | ||
==================== | ||
|
||
Version 1.0.1 | ||
-------------- | ||
|
||
This release fixes a bug in the installation configuration that caused the shell interface script (`zowie`) to fail to be installed. | ||
|
||
|
||
Version 1.0.0 | ||
-------------- | ||
|
||
This is the first public release of a completed version of Zowie. | ||
|
||
Zowie (a loose acronym of _"**Z**otero link **w**r**i**t**e**r"_) is a command-line program that scans through the files in a local Zotero database, looks up the Zotero bibliographic record corresponding to each PDF file found, and writes a [Zotero select link](https://forums.zotero.org/discussion/78053/given-the-pdf-file-of-an-article-how-can-you-find-out-its-uri#latest) into the PDF file and/or certain macOS Finder/Spotlight metadata fields (depending on the user's choice). A Zotero select link has the form `zotero://select/...` and when opened on macOS, causes the Zotero desktop application to open that item in your database. Zowie thus makes it possible to go from a PDF file opened in an application other than Zotero (e.g., DEVONthink, Adobe Acrobat), to the Zotero record corresponding to that PDF file. | ||
|
||
Zowie is written in Python and is primarily aimed at macOS users. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
|
||
[metadata] | ||
name = zowie | ||
version = 1.0.0 | ||
version = 1.0.1 | ||
description = Write Zotero select links into article PDF files | ||
author = Michael Hucka | ||
author_email = [email protected] | ||
|
@@ -31,5 +31,10 @@ long_description_content_type = text/markdown | |
|
||
[options] | ||
packages = find: | ||
scripts = bin/zowie | ||
zip_safe = False | ||
python_requires = >= 3.6 | ||
|
||
[options.entry_points] | ||
console_scripts = | ||
zowie = zowie.__main__:console_scripts_main |