Skip to content
This repository has been archived by the owner on Mar 29, 2021. It is now read-only.

Commit

Permalink
4.7.0 (#206)
Browse files Browse the repository at this point in the history
* Update deps

* fix: add "Footnotes" localized string to rendered footnotes box

* chore: update donation link on readme.txt

* Update deps

* Hotfix release 4.6.1 -- Fix bug caused by invalid HTML IDs being generated

* Fix (majority) of build failure causes

* fix: ensure https URLs are used for API calls

Closes #212

* fix: allow more than just numbers for Docket Number field

Closes #211

* chore: update citeproc

* feat: add keyboard shortcut for pin/unpin ref list <meta+alt+p>

Closes #210

* feat(UI): add tooltips to cited reference items.

This adds a delayed tooltip on hover to each item within the "Cited
Items" list. The tooltip contains the citation number (index + 1) of the
item in the reference list.

Closes #207

* fix: fix small bug with citation numbering

This fixes a bug that was introduced in a recent release that caused
citations that were inserted in the middle of a set of citations to not
be numbered correctly. There was a small issue with the order of the
conditionals.

Closes #217

* fix: fix issue causing scroll stubbing to not work

Closes #216

* Update dependencies + bump to tslint@next

* Update deps

* Downgrade tslint -- too unstable

* add the following citation styles...

- Data Science Journal
- Health Education Research
- Maison de l'Orient et de la Méditerranée (French)
- Sexual Health

* Build release 4.7.0
  • Loading branch information
dsifford authored Nov 1, 2016
1 parent 2ec7b34 commit 91b8c25
Show file tree
Hide file tree
Showing 23 changed files with 535 additions and 482 deletions.
2 changes: 1 addition & 1 deletion ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Please use this template for all bug reports.
Before submitting an issue, please try disabling all other plugins to ensure issue is isolated within ABT
-->

**ABT Version:** 4.6.1
**ABT Version:** 4.7.0

<!-- Which version of PHP are you using with your WordPress installation? -->
**PHP Version:** 5.6
Expand Down
1 change: 1 addition & 0 deletions gulpfile.babel.js
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,7 @@ gulp.task('_dev',
browserSync.init({
proxy: 'localhost:8080',
open: false,
port: 3005,
});
}
)
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "academic-bloggers-toolkit",
"version": "4.6.1",
"version": "4.7.0",
"description": "A plugin extending the functionality of WordPress for Academic Blogging.",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -68,7 +68,7 @@
"@types/enzyme": "^2.4.36",
"@types/jest": "^15.1.32",
"@types/node": "^6.0.45",
"@types/react": "^0.14.41",
"@types/react": "^0.14.43",
"@types/react-addons-css-transition-group": "^0.14.17",
"@types/react-dom": "^0.14.18",
"mobx": "^2.6.0",
Expand Down
5 changes: 4 additions & 1 deletion scripts/fixtures.js
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,9 @@ exports.reflistState = {
};

exports.ABT_i18n = {
misc: {
footnotes: 'Footnotes',
},
referenceList: {
referenceList: {
tooltips: {
Expand Down Expand Up @@ -700,7 +703,7 @@ exports.ABT_i18n = {
value: 'number',
label: 'Docket Number',
required: false,
pattern: '[0-9]+',
pattern: '\S.*', // eslint-disable-line
placeholder: '',
},
{
Expand Down
4 changes: 2 additions & 2 deletions src/academic-bloggers-toolkit.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
* Plugin Name: Academic Blogger's Toolkit
* Plugin URI: https://wordpress.org/plugins/academic-bloggers-toolkit/
* Description: A plugin extending the functionality of Wordpress for academic blogging
* Version: 4.6.1
* Version: 4.7.0
* Author: Derek P Sifford
* Author URI: https://github.com/dsifford
* License: GPL3 or later
* Text Domain: academic-bloggers-toolkit
*/

define('ABT_VERSION', '4.6.1');
define('ABT_VERSION', '4.7.0');

/**
* Load plugin translations
Expand Down
116 changes: 58 additions & 58 deletions src/academic-bloggers-toolkit.pot
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Copyright (C) 2016 Academic Blogger's Toolkit 4.6.1
# This file is distributed under the same license as the Academic Blogger's Toolkit 4.6.1 package.
# Copyright (C) 2016 Academic Blogger's Toolkit 4.7.0
# This file is distributed under the same license as the Academic Blogger's Toolkit 4.7.0 package.
msgid ""
msgstr ""
"Project-Id-Version: Academic Blogger's Toolkit 4.6.1\n"
"Project-Id-Version: Academic Blogger's Toolkit 4.7.0\n"
"Report-Msgid-Bugs-To: https://github.com/dsifford/academic-bloggers-toolkit/issues\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
Expand Down Expand Up @@ -220,7 +220,7 @@ msgstr ""
msgid "Number or Range of Numbers (100-200)"
msgstr ""

#: lib/php/fieldmaps.php:348, lib/php/i18n.php:92
#: lib/php/fieldmaps.php:348, lib/php/i18n.php:97
msgid "ISBN"
msgstr ""

Expand Down Expand Up @@ -356,7 +356,7 @@ msgstr ""
msgid "DOI"
msgstr ""

#: lib/php/fieldmaps.php:849, lib/php/fieldmaps.php:921, lib/php/fieldmaps.php:993, lib/php/fieldmaps.php:1133, lib/php/fieldmaps.php:1296, lib/php/i18n.php:94
#: lib/php/fieldmaps.php:849, lib/php/fieldmaps.php:921, lib/php/fieldmaps.php:993, lib/php/fieldmaps.php:1133, lib/php/fieldmaps.php:1296, lib/php/i18n.php:99
msgid "URL"
msgstr ""

Expand Down Expand Up @@ -416,199 +416,203 @@ msgstr ""
msgid "Website Title"
msgstr ""

#: lib/php/i18n.php:13
#: lib/php/i18n.php:14, lib/php/views/options-page.php:244
msgid "Footnotes"
msgstr ""

#: lib/php/i18n.php:18
msgid "Request not valid"
msgstr ""

#: lib/php/i18n.php:14
#: lib/php/i18n.php:19
msgid "BROKEN!"
msgstr ""

#: lib/php/i18n.php:15
#: lib/php/i18n.php:20
msgid "Site denied request"
msgstr ""

#: lib/php/i18n.php:16
#: lib/php/i18n.php:21
msgid "The file could not be processed. Are you sure it's a .RIS (Refman) file?"
msgstr ""

#: lib/php/i18n.php:18
#: lib/php/i18n.php:23
msgid "No identifiers could be found for your request"
msgstr ""

#: lib/php/i18n.php:19
#: lib/php/i18n.php:24
msgid "The following identifiers could not be found"
msgstr ""

#: lib/php/i18n.php:21
#: lib/php/i18n.php:26
msgid "Network Error"
msgstr ""

#: lib/php/i18n.php:22
#: lib/php/i18n.php:27
msgid "Your search returned 0 results"
msgstr ""

#: lib/php/i18n.php:23
#: lib/php/i18n.php:28
msgid "Error"
msgstr ""

#: lib/php/i18n.php:24
#: lib/php/i18n.php:29
msgid "The following references were unable to be processed"
msgstr ""

#: lib/php/i18n.php:25
#: lib/php/i18n.php:30
msgid "Request returned a non-200 status code"
msgstr ""

#: lib/php/i18n.php:27
#: lib/php/i18n.php:32
msgid "Warning"
msgstr ""

#: lib/php/i18n.php:28
#: lib/php/i18n.php:33
msgid "Reason"
msgstr ""

#: lib/php/i18n.php:30
#: lib/php/i18n.php:35
msgid "Cannot create publication list for currently selected citation style"
msgstr ""

#: lib/php/i18n.php:31
#: lib/php/i18n.php:36
msgid "Style does not include bibliography"
msgstr ""

#: lib/php/i18n.php:35
#: lib/php/i18n.php:40
msgid "An unexpected error occurred"
msgstr ""

#: lib/php/i18n.php:36
#: lib/php/i18n.php:41
msgid "Please report this error, including the steps taken to trigger it, here: %s"
msgstr ""

#: lib/php/i18n.php:43
#: lib/php/i18n.php:48
msgid "Delete all references"
msgstr ""

#: lib/php/i18n.php:44
#: lib/php/i18n.php:49
msgid "Usage instructions"
msgstr ""

#: lib/php/i18n.php:45
#: lib/php/i18n.php:50
msgid "Import references from RIS file"
msgstr ""

#: lib/php/i18n.php:46
#: lib/php/i18n.php:51
msgid "Refresh reference list"
msgstr ""

#: lib/php/i18n.php:47
#: lib/php/i18n.php:52
msgid "Insert Static Publication List"
msgstr ""

#: lib/php/i18n.php:51
#: lib/php/i18n.php:56
msgid "Cited Items"
msgstr ""

#: lib/php/i18n.php:53
#: lib/php/i18n.php:58
msgid "Add reference to reference list"
msgstr ""

#: lib/php/i18n.php:54
#: lib/php/i18n.php:59
msgid "Insert selected references"
msgstr ""

#: lib/php/i18n.php:55
#: lib/php/i18n.php:60
msgid "Pin reference list to visible window"
msgstr ""

#: lib/php/i18n.php:56
#: lib/php/i18n.php:61
msgid "Remove selected references from reference list"
msgstr ""

#: lib/php/i18n.php:58
#: lib/php/i18n.php:63
msgid "Uncited Items"
msgstr ""

#: lib/php/i18n.php:63
#: lib/php/i18n.php:68
msgid "Import"
msgstr ""

#: lib/php/i18n.php:64
#: lib/php/i18n.php:69
msgid "Import References from RIS File"
msgstr ""

#: lib/php/i18n.php:65
#: lib/php/i18n.php:70
msgid "Choose File"
msgstr ""

#: lib/php/i18n.php:69
#: lib/php/i18n.php:74
msgid "Select"
msgstr ""

#: lib/php/i18n.php:70
#: lib/php/i18n.php:75
msgid "Next"
msgstr ""

#: lib/php/i18n.php:71
#: lib/php/i18n.php:76
msgid "Previous"
msgstr ""

#: lib/php/i18n.php:72, lib/php/i18n.php:93
#: lib/php/i18n.php:77, lib/php/i18n.php:98
msgid "Search"
msgstr ""

#: lib/php/i18n.php:73, lib/php/i18n.php:83
#: lib/php/i18n.php:78, lib/php/i18n.php:88
msgid "Search PubMed for Reference"
msgstr ""

#: lib/php/i18n.php:74
#: lib/php/i18n.php:79
msgid "View"
msgstr ""

#: lib/php/i18n.php:79
#: lib/php/i18n.php:84
msgid "Add Manually"
msgstr ""

#: lib/php/i18n.php:80, lib/php/i18n.php:103
#: lib/php/i18n.php:85, lib/php/i18n.php:108
msgid "Add Reference"
msgstr ""

#: lib/php/i18n.php:81
#: lib/php/i18n.php:86
msgid "Add with Identifier"
msgstr ""

#: lib/php/i18n.php:82
#: lib/php/i18n.php:87
msgid "Insert citation inline"
msgstr ""

#: lib/php/i18n.php:84
#: lib/php/i18n.php:89
msgid "Search PubMed"
msgstr ""

#: lib/php/i18n.php:87
#: lib/php/i18n.php:92
msgid "PMID/DOI"
msgstr ""

#: lib/php/i18n.php:90
#: lib/php/i18n.php:95
msgid "Autocite"
msgstr ""

#: lib/php/i18n.php:91
#: lib/php/i18n.php:96
msgid "Citation Type"
msgstr ""

#: lib/php/i18n.php:97
#: lib/php/i18n.php:102
msgid "Add Contributor"
msgstr ""

#: lib/php/i18n.php:98
#: lib/php/i18n.php:103
msgid "Contributors"
msgstr ""

#: lib/php/i18n.php:99
#: lib/php/i18n.php:104
msgid "Given Name, M.I."
msgstr ""

#: lib/php/i18n.php:100
#: lib/php/i18n.php:105
msgid "Surname"
msgstr ""

Expand Down Expand Up @@ -760,10 +764,6 @@ msgstr ""
msgid "Static Publication Lists"
msgstr ""

#: lib/php/views/options-page.php:244
msgid "Footnotes"
msgstr ""

#: lib/php/views/options-page.php:248
msgid "Note: If you are already using a child theme to load CSS, place your CSS overrides there. The box on the left is only a crutch for those who do not have any custom CSS saved yet. Loading CSS this way is very inefficient."
msgstr ""
Expand Down
Loading

0 comments on commit 91b8c25

Please sign in to comment.