This repository has been archived by the owner on Mar 29, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update tests * Add automatic translation upload to deploy script * Improve test coverage * Improve test coverage * Changes... - Update mEDRA API call to their newly updated client-side API. - Remove pointless `preventDefault` call on ReferenceList. - Update deps. * Fix tooltip issue on Firefox and Safari * Changes... - Convert all CSS to BEM methodology + maintain backwards compatibility for old CSS classes. - Add tests for Frontend.ts - Fix issue causing tooltips to not render on Firefox or Safari. - Change to "click" style tooltips, rather than hover style (better user experience). - Minor style changes to tooltips. - Improve / refactor Frontend.ts code. * Changes... - Update dependencies. - Add stylint to test workflow. - Lint all styl files. * Remove unnecessary variable from stylus vars * Remove unneeded dependencies * Remove unnecessary dependency * Changes... - Convert project to yarn package manager. - Update travis.yml for yarn - Move "lint" into npm test script - Add yarn.lock to source control * Remove ".abt-url" reference from options-page * Add inline citation style example * Add the following styles - Aix-Marseille Université - Département d'études asiatiques (French) - Uppsala universitet - Historia * Build release 4.6.0 * Update readme with donor link * Add donation link to options page
- Loading branch information
Showing
54 changed files
with
7,702 additions
and
847 deletions.
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 |
---|---|---|
|
@@ -10,3 +10,4 @@ typings/* | |
!typings/ABT.d.ts | ||
NOTES.md | ||
TODO.md | ||
.env |
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
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 |
---|---|---|
@@ -1,21 +1,25 @@ | ||
language: nodejs | ||
sudo: required | ||
language: node_js | ||
node_js: | ||
- "6" | ||
before_script: | ||
- nvm install node | ||
- node --version | ||
- npm --version | ||
- nvm --version | ||
- npm install | ||
script: | ||
- npm test | ||
- npm run lint | ||
after_success: | ||
- bash <(curl -s https://codecov.io/bash) | ||
- "node" | ||
branches: | ||
only: | ||
- master | ||
- /^greenkeeper-.*$/ | ||
cache: | ||
directories: | ||
- $HOME/.yarn-cache | ||
- node_modules | ||
before_install: | ||
# Repo for newer Node.js versions | ||
- curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - | ||
# Repo for Yarn | ||
- sudo apt-key adv --keyserver pgp.mit.edu --recv D101F7899D41F3C3 | ||
- echo "deb http://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list | ||
- sudo apt-get update -qq | ||
- sudo apt-get install -y -qq yarn | ||
install: | ||
- node --version | ||
- yarn install | ||
after_success: | ||
- bash <(curl -s https://codecov.io/bash) |
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
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
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
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
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
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
Oops, something went wrong.