Skip to content

Commit

Permalink
Merge pull request #1052 from aeternity/release/v0.4.1
Browse files Browse the repository at this point in the history
Release 0.4.1
  • Loading branch information
davidyuk authored Apr 12, 2021
2 parents 61c204f + 119fa3d commit df83c68
Show file tree
Hide file tree
Showing 28 changed files with 3,136 additions and 1,305 deletions.
2,701 changes: 1,443 additions & 1,258 deletions package-lock.json

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "superhero-ui",
"version": "0.4.0",
"version": "0.4.1",
"scripts": {
"serve": "vue-cli-service serve",
"serve:tnet": "vue-cli-service serve --mode tnet",
Expand All @@ -20,7 +20,9 @@
"@aeternity/aepp-sdk": "^7.7.0",
"@dicebear/avatars": "^4.5.2",
"@dicebear/avatars-avataaars-sprites": "^4.5.2",
"@fontsource/oxygen": "^4.2.1",
"aeternity-fungible-token": "github:aeternity/aeternity-fungible-token#v1.0.0",
"animate.css": "^4.1.1",
"autosize": "^4.0.2",
"axios": "^0.21.1",
"bignumber.js": "^9.0.1",
Expand All @@ -38,6 +40,7 @@
"soundcloud-widget": "^0.2.1",
"tipping-contract": "github:aeternity/tipping-contract#v3.0.1-alpha1",
"vue": "^2.6.12",
"vue-aos": "^1.1.0",
"vue-chartjs": "^3.5.1",
"vue-i18n": "^8.22.3",
"vue-meta": "^2.4.0",
Expand Down
10 changes: 9 additions & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
<template>
<div id="app">
<div
id="app"
:class="$route.meta.layoutClass"
>
<MobileNavigation v-if="!$route.meta.fullScreen" />
<div class="not-bootstrap-row">
<div
Expand Down Expand Up @@ -38,10 +41,15 @@ export default {
components: { MobileNavigation, LeftSection, RightSection },
computed: {
...mapGetters('modals', ['opened']),
...mapGetters(['isLoggedIn']),
...mapState(['address']),
...mapState('aeternity', ['sdk']),
},
async mounted() {
if (!this.isLoggedIn && this.$route.name === 'feed') {
this.$router.push({ name: 'landing' });
}
EventBus.$on('reloadData', () => {
this.reloadData();
});
Expand Down
27 changes: 27 additions & 0 deletions src/assets/landing/appstore.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/landing/banner-bg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/landing/banner-img.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/landing/bg-black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/landing/github.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions src/assets/landing/github.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit df83c68

Please sign in to comment.