Browse Source

Merge pull request #715 from MortalKastor/moar-win-polish

Some more windows polish
master
Thibaut 7 years ago
committed by GitHub
parent
commit
c9f7d79dbe
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. BIN
      build/windows/app.ico
  2. BIN
      build/windows/installerSidebar.bmp
  3. BIN
      build/windows/uninstaller.ico
  4. BIN
      build/windows/uninstallerSidebar.bmp
  5. 2
      electron-builder.yml
  6. 2
      scripts/compile.sh
  7. 2
      scripts/dist-dir.sh
  8. 2
      scripts/dist.sh
  9. 2
      scripts/hash-utils.sh
  10. 2
      scripts/install-ci-deps.sh
  11. 2
      scripts/postinstall.sh
  12. 2
      scripts/release.sh
  13. 2
      scripts/start.sh
  14. 3
      src/components/UpdateNotifier/UpdateDownloaded.js

BIN
build/windows/app.ico

Binary file not shown.

After

Width:  |  Height:  |  Size: 150 KiB

BIN
build/windows/installerSidebar.bmp

Binary file not shown.

Before

Width:  |  Height:  |  Size: 201 KiB

After

Width:  |  Height:  |  Size: 151 KiB

BIN
build/windows/uninstaller.ico

Binary file not shown.

After

Width:  |  Height:  |  Size: 155 KiB

BIN
build/windows/uninstallerSidebar.bmp

Binary file not shown.

Before

Width:  |  Height:  |  Size: 201 KiB

After

Width:  |  Height:  |  Size: 151 KiB

2
electron-builder.yml

@ -27,6 +27,7 @@ linux:
win:
artifactName: ${name}-${version}-${os}-${arch}.${ext}
icon: build/windows/app.ico
certificateSubjectName: Ledger SAS
certificateSha1: 7dd9acb2ef0402883c65901ebbafd06e5293d391
signingHashAlgorithms:
@ -45,6 +46,7 @@ nsis:
allowToChangeInstallationDirectory: true
installerIcon: build/windows/installer.ico
installerSidebar: build/windows/installerSidebar.bmp
uninstallerIcon: build/windows/uninstaller.ico
uninstallerSidebar: build/windows/uninstallerSidebar.bmp
files:

2
scripts/compile.sh

@ -1,4 +1,4 @@
#/bin/bash
#!/bin/bash
set -e

2
scripts/dist-dir.sh

@ -1,3 +1,3 @@
#/bin/bash
#!/bin/bash
yarn compile && DEBUG=electron-builder electron-builder --dir -c.compression=store -c.mac.identity=null

2
scripts/dist.sh

@ -1,3 +1,3 @@
#/bin/bash
#!/bin/bash
yarn compile && DEBUG=electron-builder electron-builder

2
scripts/hash-utils.sh

@ -1,4 +1,4 @@
#/bin/bash
#!/bin/bash
function GET_HASH_PATH {
HASH_NAME=$1

2
scripts/install-ci-deps.sh

@ -1,4 +1,4 @@
#/bin/bash
#!/bin/bash
source scripts/hash-utils.sh

2
scripts/postinstall.sh

@ -1,4 +1,4 @@
#/bin/bash
#!/bin/bash
source scripts/hash-utils.sh

2
scripts/release.sh

@ -21,4 +21,4 @@ fi
# TODO check if local git HEAD is EXACTLY our remote master HEAD
yarn compile
build
DEBUG=electron-builder yarn run electron-builder build --publish always

2
scripts/start.sh

@ -1,4 +1,4 @@
#/bin/bash
#!/bin/bash
concurrently --raw --kill-others \
"cross-env NODE_ENV=development webpack-cli --mode development --watch --config webpack/internals.config.js" \

3
src/components/UpdateNotifier/UpdateDownloaded.js

@ -35,7 +35,8 @@ const Container = styled(Box).attrs({
px: 3,
bg: 'wallet',
color: 'white',
mt: '-35px',
mt: '-50px',
mb: '35px',
style: p => ({
transform: `translate3d(0, ${p.offset}%, 0)`,
}),

Loading…
Cancel
Save