about summary refs log tree commit diff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
authordevhell <^@regexmail.net>2016-03-16 14:48:19 +0000
committerdevhell <^@regexmail.net>2016-03-16 14:48:19 +0000
commite3054a2bde99889c700fbcc145facff0492f6460 (patch)
treed715b653f85239845fd5ff9b314b321dfe34fde9 /pkgs/applications/office
parent76dead2099e6c4b804f2d5a5057fc45991f96768 (diff)
downloadnixlib-e3054a2bde99889c700fbcc145facff0492f6460.tar
nixlib-e3054a2bde99889c700fbcc145facff0492f6460.tar.gz
nixlib-e3054a2bde99889c700fbcc145facff0492f6460.tar.bz2
nixlib-e3054a2bde99889c700fbcc145facff0492f6460.tar.lz
nixlib-e3054a2bde99889c700fbcc145facff0492f6460.tar.xz
nixlib-e3054a2bde99889c700fbcc145facff0492f6460.tar.zst
nixlib-e3054a2bde99889c700fbcc145facff0492f6460.zip
zotero: 4.0.28 -> 4.0.29
Built and tested locally.

From the changelog:
```
Firefox 45/46 compatibility
  * [Zotero Standalone] Save PDFs directly from browsers via the Save to
    Zotero button
  * Requires Chrome connector version 4.0.29; updated Safari connector
    coming soon
  * To convert a standalone PDF attachment to a full item, right-click
    the item and choose “Retrieve Metadata for PDF” or “Create Parent
    Item”.
  * [Zotero for Firefox] Don't show Firefox open/save dialog when
    showing style installation prompt
  * Retry additional file sync failures automatically
  * Fixed potential crash when dragging in files on some systems
  * Fixed potential crash when dragging collections to another library
  * Miscellaneous bibliographic output and word processor integration
    fixes
  * Updated citeproc-js to version 1.1.71
  * Fixed spacing of toolbar icons on Windows/Linux in Firefox 43+
  * Use larger text field for Book Title
  * Make highlight color of selected items list rows on Linux more
    distinct when items pane doesn't have focus
  * [Zotero for Firefox] Improved error message on Firefox login manager
    failure
  * Improved error message when trying to use a later database version
```
Diffstat (limited to 'pkgs/applications/office')
-rw-r--r--pkgs/applications/office/zotero/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/office/zotero/default.nix b/pkgs/applications/office/zotero/default.nix
index d74e1ac4b7c8..5a21754b44e3 100644
--- a/pkgs/applications/office/zotero/default.nix
+++ b/pkgs/applications/office/zotero/default.nix
@@ -4,10 +4,10 @@ let
 
   xpi = fetchurl {
     url = "https://download.zotero.org/extension/zotero-${version}.xpi";
-    sha256 = "02h2ja08v8as4fawj683rh5rmxsjf5d0qmvqa77i176nm20y5s7s";
+    sha256 = "1dyf578yfj3xr9kkhmsvbkvraw2arghmh67ksi5c8qlxczx5i1xy";
   };
 
-  version = "4.0.28";
+  version = "4.0.29";
 
 in
 stdenv.mkDerivation {
@@ -15,8 +15,8 @@ stdenv.mkDerivation {
   inherit version;
 
   src = fetchurl {
-    url = "https://github.com/zotero/zotero-standalone-build/archive/4.0.28.8.tar.gz";
-    sha256 = "ab1fd5dde9bd2a6b6d31cc9a53183a04de3698f1273a943ef31ecc4c42808a68";
+    url = "https://github.com/zotero/zotero-standalone-build/archive/4.0.29.2.tar.gz";
+    sha256 = "0pfip6s5dawp7wp8r5czvzlnxvvdwjja64g71h9dxyxrh49v2mxa";
   };
 
   nativeBuildInputs = [ perl unzipNLS ];