Skip to content

Commit

Permalink
Merge pull request #1056 from aeternity/release/v0.8.9
Browse files Browse the repository at this point in the history
Release 0.8.9
  • Loading branch information
davidyuk authored Jul 30, 2019
2 parents 23ccbe3 + fca1610 commit c94c66c
Show file tree
Hide file tree
Showing 141 changed files with 5,081 additions and 1,821 deletions.
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@ indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[/config.xml]
indent_size = 4
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Base æpp [![Build Status](https://api.travis-ci.org/aeternity/aepp-base.svg?branch=master)](https://api.travis-ci.org/aeternity/aepp-base)
# Base æpp [![Build Status](https://api.travis-ci.org/aeternity/aepp-base.svg?branch=develop)](https://travis-ci.org/aeternity/aepp-base/branches)

## How to get the Base æpp

Expand Down
4 changes: 3 additions & 1 deletion config.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.aeternity.base" version="0.8.8" xmlns="http://www.w3.org/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<widget id="com.aeternity.base" version="0.8.9" xmlns="http://www.w3.org/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Base æpp</name>
<author href="https://aeternity.com">
aeternity developers
Expand All @@ -13,7 +13,9 @@
<allow-intent href="geo:*" />
<platform name="android">
<access origin="*.aepps.com" />
<access origin="*.piwo.app" />
<access origin="aeternity.com" />
<access origin="*.aeternity.com" />
<access origin="api.backendless.com" />
<access origin="cors-anywhere.herokuapp.com" />
<allow-intent href="market:*" />
Expand Down
1 change: 1 addition & 0 deletions config/storybook/config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/* eslint-disable import/no-extraneous-dependencies */
import './stories-init';
import { configure, addDecorator } from '@storybook/vue';
import { withBackgrounds } from '@storybook/addon-backgrounds';
import { withNotes } from '@storybook/addon-notes';
Expand Down
16 changes: 16 additions & 0 deletions config/storybook/stories-init.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import '../../src/components/icon.scss';
import Vue from 'vue';
import Vuex from 'vuex';
import VueRx from 'vue-rx';

Vue.use(Vuex);
Vue.use(VueRx);
Object.assign(Vue.prototype, {
$globals: {
IS_MOBILE_DEVICE: true,
},
$i18n: {},
});

Vue.prototype.$i18n = require('../../src/store/plugins/ui/languages').i18n;
require('../../src/store/plugins/ui/veeValidate');
Loading

0 comments on commit c94c66c

Please sign in to comment.