Skip to content

Commit

Permalink
Fix conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
gamalielhere committed Oct 10, 2019
2 parents 49c6164 + c2e1453 commit 32d6e12
Show file tree
Hide file tree
Showing 61 changed files with 4,035 additions and 589 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
@@ -1,12 +1,15 @@
### Release v5.1.6

### Feature

- Dapp submission page [#1339](https://github.com/MyEtherWallet/MyEtherWallet/pull/1339)

### Devop

- Remove Aldo from team page [#1482](https://github.com/MyEtherWallet/MyEtherWallet/pull/1482)
- Add decision tree [#1442](https://github.com/MyEtherWallet/MyEtherWallet/pull/1442)
- Update packages [#1474](https://github.com/MyEtherWallet/MyEtherWallet/pull/1474)


### Release v5.1.5

### Feature
Expand Down
1,863 changes: 1,282 additions & 581 deletions package-lock.json

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion package-test.js
Expand Up @@ -22,7 +22,6 @@ const CUSTOM_DIST = {
['babel-core']: 'bridge'
};
const ALL_PACKAGES = Object.assign(
{},
package.dependencies,
package.devDependencies
);
Expand Down
1 change: 1 addition & 0 deletions public/index.html
Expand Up @@ -5,6 +5,7 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<meta name="theme-color" content="#0B2840" />
<meta name="referrer" content="origin" />
<meta name="description"
content="MyEtherWallet (MEW) is a free, open-source, client-side interface for generating Ethereum wallets & more. Interact with the Ethereum blockchain easily & securely." />
<meta property="og:title" content="MyEtherWallet.com: Your Key to Ethereum" />
Expand Down
Binary file added src/assets/images/banners/bg.png
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/images/icons/dapps/sotd.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions src/assets/images/icons/linkedin.svg
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/images/icons/remove.png
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/images/message.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
37 changes: 37 additions & 0 deletions src/builds/configs/base-routes.js
Expand Up @@ -10,6 +10,13 @@ const NotFoundLayout = () => import('@/layouts/NotFoundLayout');
const GettingStarted = () => import('@/layouts/GettingStarted');
const SendOfflineHelper = () => import('@/layouts/SendOfflineHelper');
const VerifyMessageLayout = () => import('@/layouts/VerifyMessageLayout');
const DappSubmission = () => import('@/layouts/DappSubmissionLayout');
const AboutYourDapp = () =>
import('@/layouts/DappSubmissionLayout/containers/AboutYourDappContainer');
const AboutYourTeam = () =>
import('@/layouts/DappSubmissionLayout/containers/AboutYourTeamContainer');
const DappSummary = () =>
import('@/layouts/DappSubmissionLayout/containers/SummaryContainer');

const DappsContainer = () =>
import('@/layouts/InterfaceLayout/containers/DappsContainer');
Expand Down Expand Up @@ -90,6 +97,36 @@ const router = [
component: SendOfflineHelper,
meta: { requiresAuth: false }
},
{
path: '/dapp-submission',
component: DappSubmission,
children: [
{
path: '',
name: 'DappSubmission',
component: AboutYourDapp,
meta: { requiresAuth: false }
},
{
path: 'about-your-dapp',
name: 'AboutYourDapp',
component: AboutYourDapp,
meta: { requiresAuth: false }
},
{
path: 'about-your-team',
name: 'AboutYourTeam',
component: AboutYourTeam,
meta: { requiresAuth: false }
},
{
path: 'dapp-summary',
name: 'DappSummary',
component: DappSummary,
meta: { requiresAuth: false }
}
]
},
{
path: '/verify-message',
name: 'VerifyMessageLayout',
Expand Down
7 changes: 6 additions & 1 deletion src/builds/web/app.vue
@@ -1,7 +1,12 @@
<template>
<div id="app">
<logout-warning-modal ref="logoutWarningModal" />
<header-container v-show="$route.fullPath !== '/getting-started'" />
<header-container
v-show="
$route.fullPath !== '/getting-started' &&
!$route.fullPath.includes('/dapp-submission')
"
/>
<welcome-modal ref="welcome" />
<router-view />
<footer-container />
Expand Down
Expand Up @@ -16,6 +16,13 @@
@media all and (max-width: $mobile-width) {
padding: 40px 20px;
}

img {
left: 0;
position: absolute;
top: 0;
width: 100%;
}
}

.buttons {
Expand Down
Expand Up @@ -9,9 +9,12 @@
lazy
>
<div class="modal-content-block">
<img src="@/assets/images/modal/garlands.png" />
<div class="d-block text-center">
<i class="check-icon fa fa-check" aria-hidden="true" />
<h2 class="title">{{ $t('confirmation.success') }}</h2>
<h2 class="title">
{{ successTitle ? successTitle : $t('confirmation.success') }}
</h2>
<p>{{ message }}</p>
</div>

Expand Down Expand Up @@ -56,6 +59,10 @@ export default {
etherscanLink: {
type: String,
default: null
},
successTitle: {
type: String,
default: null
}
},
computed: {
Expand Down Expand Up @@ -83,6 +90,11 @@ export default {
hideModal() {
if (this.linkTo !== '/') {
this.$router.push({ path: this.linkTo });
} else if (
this.linkTo === '/' &&
this.successTitle === 'Congratulations'
) {
this.$router.push({ path: '/' });
}
this.$refs.success.hide();
}
Expand Down
4 changes: 4 additions & 0 deletions src/containers/FooterContainer/FooterContainer.vue
Expand Up @@ -199,6 +199,10 @@ export default {
{
text: this.$t('footer.verifyMessage'),
to: '/verify-message'
},
{
text: 'Submit DApp',
to: '/dapp-submission'
}
]
},
Expand Down
8 changes: 8 additions & 0 deletions src/containers/FooterContainer/affiliates.js
Expand Up @@ -78,6 +78,14 @@ const affiliates = [
href: 'http://lddy.no/a4im',
currency: '$',
logo: 'keepkey'
},
{
text: 'footer.sotd',
price: '',
description: '',
href: 'https://www.stateofthedapps.com/',
currency: '',
logo: ''
}
];

Expand Down
24 changes: 24 additions & 0 deletions src/layouts/DappSubmissionLayout/DappSubmissionLayout.scss
@@ -0,0 +1,24 @@
@import '~@/scss/GlobalVariables';
body {
font-family: 'Avenir Next';
}

.dapp-container-right {
display: inline-block;
vertical-align: top;
position: sticky;
position: -webkit-sticky;
top: 60px;
}

.dapp-container {
text-align: center;
}

.dapp-progress-bar {
height: 5px;
}

.fake-form {
opacity: 0;
}

1 comment on commit 32d6e12

@mew-bot
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.