From 23e83c651ba3c7b1d1fb0d4d096bfa491ffced3c Mon Sep 17 00:00:00 2001 From: Maxwell Lasky Date: Tue, 1 Dec 2020 10:57:53 -0500 Subject: [PATCH] feature: update release notes [WIP] (#2031) * Adds release notes image asset and update release notes * Update patch.svg * Update release notes image assets --- .../images/release-assets/patch-dark.svg | 235 ++++++++++++++++++ .../images/release-assets/patch-light.svg | 230 +++++++++++++++++ .../ReleaseNotesModal/ReleaseNotesModal.jsx | 16 +- .../ReleaseNotesModal/ReleaseNotesModal.scss | 3 +- 4 files changed, 476 insertions(+), 8 deletions(-) create mode 100644 app/assets/images/release-assets/patch-dark.svg create mode 100644 app/assets/images/release-assets/patch-light.svg diff --git a/app/assets/images/release-assets/patch-dark.svg b/app/assets/images/release-assets/patch-dark.svg new file mode 100644 index 000000000..02d37ea6a --- /dev/null +++ b/app/assets/images/release-assets/patch-dark.svg @@ -0,0 +1,235 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/assets/images/release-assets/patch-light.svg b/app/assets/images/release-assets/patch-light.svg new file mode 100644 index 000000000..3b9cda8c1 --- /dev/null +++ b/app/assets/images/release-assets/patch-light.svg @@ -0,0 +1,230 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/components/Modals/ReleaseNotesModal/ReleaseNotesModal.jsx b/app/components/Modals/ReleaseNotesModal/ReleaseNotesModal.jsx index 7a19d5465..06f4b656c 100644 --- a/app/components/Modals/ReleaseNotesModal/ReleaseNotesModal.jsx +++ b/app/components/Modals/ReleaseNotesModal/ReleaseNotesModal.jsx @@ -9,6 +9,8 @@ import Gift from '../../../assets/icons/gift.svg' import release260Dark from '../../../assets/images/release-assets/2.6.0.dark.png' import release260Light from '../../../assets/images/release-assets/2.6.0.light.png' import Github from '../../../assets/images/release-assets/github.svg' +import PatchLight from '../../../assets/images/release-assets/patch-light.svg' +import PatchDark from '../../../assets/images/release-assets/patch-dark.svg' const electron = require('electron').remote @@ -42,7 +44,7 @@ const ReleaseNotesModal = ({ hideModal, theme }: Props) => (
- 13th Nov 2020 + Dec 1st 2020

Patch v2.6.1

@@ -50,11 +52,8 @@ const ReleaseNotesModal = ({ hideModal, theme }: Props) => (

  • Updates RPC node list
  • -
  • - Fixes bug breaking balance logic for tokens that share the same - symbol -
  • -
  • Adds Dora and Neotube to block explorer settings
  • +
  • Fixes edge case balance bugs
  • +
  • Adds Dora and Neotube to explorers

  • View full details of this release on GitHub
    @@ -68,11 +67,14 @@ const ReleaseNotesModal = ({ hideModal, theme }: Props) => ( } />
    +
    + {theme === 'Light' ? : } +
    - 10th Nov 2020 + Nov 10th 2020

    Welcome to the latest release of Neon wallet v2.6.0

    diff --git a/app/components/Modals/ReleaseNotesModal/ReleaseNotesModal.scss b/app/components/Modals/ReleaseNotesModal/ReleaseNotesModal.scss index 581114dcf..93bdff754 100644 --- a/app/components/Modals/ReleaseNotesModal/ReleaseNotesModal.scss +++ b/app/components/Modals/ReleaseNotesModal/ReleaseNotesModal.scss @@ -59,7 +59,8 @@ flex: 1; align-items: center; - img { + img, + svg { display: block; max-width: 310px; }