diff --git a/.travis.yml b/.travis.yml index cfb8bec0d..09295a0a7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,7 +24,6 @@ matrix: cache: directories: - - node_modules - platforms - plugins - /home/travis/.cache/Cypress diff --git a/config.xml b/config.xml index d7ee29895..19fb9946e 100644 --- a/config.xml +++ b/config.xml @@ -1,5 +1,5 @@ - + Base æpp aeternity developers @@ -62,7 +62,7 @@ - + diff --git a/package-lock.json b/package-lock.json index 3d768329c..6434253a2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "aepp-base", - "version": "0.23.0", + "version": "0.23.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 37bfb1853..dcfd213d7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "aepp-base", - "version": "0.23.0", + "version": "0.23.1", "author": "Sascha Hanse ", "private": true, "scripts": { diff --git a/public/apple-app-site-association b/public/.well-known/apple-app-site-association similarity index 100% rename from public/apple-app-site-association rename to public/.well-known/apple-app-site-association diff --git a/scripts/current-branch.js b/scripts/current-branch.js index 909e70bfd..ac9179cf9 100644 --- a/scripts/current-branch.js +++ b/scripts/current-branch.js @@ -1,6 +1,11 @@ const { execSync } = require('child_process'); -const branch = process.env.TRAVIS_BRANCH - || execSync('git rev-parse --abbrev-ref HEAD').toString().trim(); +const { TRAVIS, TRAVIS_BRANCH, TRAVIS_TAG } = process.env; + +const travisBranch = TRAVIS_BRANCH === TRAVIS_TAG ? 'master' : TRAVIS_BRANCH; + +const branch = TRAVIS + ? travisBranch + : execSync('git rev-parse --abbrev-ref HEAD').toString().trim(); module.exports = branch; diff --git a/src/popup.js b/src/popup.js index e5594f7bb..8c8d008f5 100644 --- a/src/popup.js +++ b/src/popup.js @@ -5,11 +5,12 @@ import store from './store'; import languages, { i18n } from './store/plugins/ui/languages'; import initSdk from './store/plugins/initSdk'; import names from './store/plugins/ui/names'; +import appsMetadata from './store/plugins/ui/appsMetadata'; import ConfirmAccountAccess from './components/ConfirmAccountAccess.vue'; Vue.use(Vuex); -[languages, initSdk, names].forEach(plugin => plugin(store)); +[languages, initSdk, names, appsMetadata].forEach(plugin => plugin(store)); const unloadHandler = () => { window.reject(new Error('Rejected by user'));