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

Commit

Permalink
4.8.1 (#262)
Browse files Browse the repository at this point in the history
* chore: update dependencies

* fix: remove the words "from RIS file" from import tooltip

* fix: improve error message for invalid file extension on imports

* chore: update dependencies

* fix: correct crossref abbreviation resolving issue

Closes #260

* chore: bump "tested to" tag + update styles

**Styles added:**
- Amphibia-Reptilia
- Harvard - University of Bath
- Technische Universität Dresden - Kunstgeschichte (note, German)
- Technische Universität Dresden - Medienwissenschaft und Neuere Deutsche Literatur (note, German)

* chore: remove uses of "Object.assign" for typescript object spread

* chore: remove commented code

* chore: build version 4.8.1
  • Loading branch information
dsifford authored Dec 7, 2016
1 parent d18255a commit 28ec535
Show file tree
Hide file tree
Showing 22 changed files with 276 additions and 330 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.8.0
**ABT Version:** 4.8.1

<!-- Which version of PHP are you using with your WordPress installation? -->
**PHP Version:** 5.6
Expand Down
5 changes: 1 addition & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ version: '2'
services:
wordpress:
image: visiblevc/wordpress
links:
- db
ports:
- 8080:80
- 443:443
Expand All @@ -17,12 +15,11 @@ services:
PLUGINS: >-
[local]academic-bloggers-toolkit,
co-authors-plus,
log-deprecated-notices,
query-monitor,
# piglatin,
# relative-url,
db:
image: mysql:5.7
image: mariadb:10
ports:
- 3306:3306
environment:
Expand Down
28 changes: 13 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "academic-bloggers-toolkit",
"version": "4.8.0",
"version": "4.8.1",
"description": "A plugin extending the functionality of WordPress for Academic Blogging.",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -30,24 +30,22 @@
"homepage": "https://github.com/dsifford/academic-bloggers-toolkit#readme",
"devDependencies": {
"autoprefixer": "^6.5.3",
"awesome-typescript-loader": "^3.0.0-beta.9",
"babel-core": "^6.17.0",
"babel-loader": "^6.2.8",
"babel-loader": "^6.2.9",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-register": "^6.16.3",
"browser-sync": "^2.18.2",
"css-loader": "^0.26.0",
"css-loader": "^0.26.1",
"del": "^2.2.2",
"enzyme": "^2.6.0",
"eslint": "^3.11.0",
"eslint": "^3.11.1",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.2.0",
"gulp": "gulpjs/gulp#4.0",
"gulp-replace": "^0.5.4",
"gulp-sort": "^2.0.0",
"gulp-sourcemaps": "^2.1.1",
"gulp-stylus": "^2.5.0",
"gulp-uglify": "^2.0.0",
"gulp-wp-pot": "^1.3.2",
Expand All @@ -58,30 +56,30 @@
"react-addons-test-utils": "^15.4.1",
"style-loader": "^0.13.1",
"stylint": "^1.5.7",
"ts-loader": "^1.2.2",
"ts-loader": "^1.3.0",
"tslint": "^4.0.2",
"tslint-microsoft-contrib": "^2.0.13",
"tslint-microsoft-contrib": "^2.0.14",
"tslint-react": "^2.0.0",
"webpack": "^2.1.0-beta.21",
"webpack-bundle-analyzer": "^2.0.1",
"webpack": "beta",
"webpack-bundle-analyzer": "^2.1.1",
"webpack-stream": "^3.2.0"
},
"dependencies": {
"@types/enzyme": "^2.5.38",
"@types/jest": "^16.0.0",
"@types/enzyme": "^2.5.39",
"@types/jest": "^16.0.1",
"@types/node": "^6.0.51",
"@types/react": "^0.14.50",
"@types/react": "^0.14.54",
"@types/react-addons-css-transition-group": "^0.14.18",
"@types/react-dom": "^0.14.19",
"bibtex-parse-js": "^0.0.23",
"mobx": "^2.6.3",
"mobx": "^2.6.5",
"mobx-react": "^4.0.3",
"react": "^15.4.1",
"react-addons-css-transition-group": "^15.4.1",
"react-addons-shallow-compare": "^15.4.1",
"react-dom": "^15.4.1",
"react-virtualized-select": "^2.1.1",
"typescript": "^2.2.0-dev.20160724"
"typescript": "next"
},
"jest": {
"transform": {
Expand Down
3 changes: 2 additions & 1 deletion scripts/fixtures.js
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ exports.ABT_i18n = {
},
menu: {
tooltips: {
importRIS: 'Import references from RIS file',
importRIS: 'Import references from file',
refresh: 'Refresh reference list',
destroy: 'Delete all references',
help: 'Usage instructions',
Expand Down Expand Up @@ -309,6 +309,7 @@ exports.ABT_i18n = {
badRequest: 'Request not valid',
broken: 'BROKEN!',
denied: 'Site denied request',
fileExtensionError: 'Invalid file extension. Extension must be .ris, .bib, or .bibtex',
filetypeError: 'The selected file could not be processed.',
identifiersNotFound: {
all: 'No identifiers could be found for your request',
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.8.0
* Version: 4.8.1
* Author: Derek P Sifford
* Author URI: https://github.com/dsifford
* License: GPL3 or later
* Text Domain: academic-bloggers-toolkit
*/

define('ABT_VERSION', '4.8.0');
define('ABT_VERSION', '4.8.1');

/**
* Load plugin translations
Expand Down
Loading

0 comments on commit 28ec535

Please sign in to comment.