diff --git a/CHANGELOG.md b/CHANGELOG.md index e45778177..4cf4aede8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) ## [Unreleased] +## [0.1.1] - 2019-09-23 +### Fixed +- Apply latest server URL and secret path inputs + ## 0.1.0 - 2019-09-23 ### Added - First release -[Unreleased]: https://github.com/nwtgck/piping-ui-web/compare/v0.1.0...HEAD +[Unreleased]: https://github.com/nwtgck/piping-ui-web/compare/v0.1.1...HEAD +[0.1.1]: https://github.com/nwtgck/piping-ui-web/compare/v0.1.0...v0.1.1 diff --git a/package-lock.json b/package-lock.json index d81333daa..2715c7063 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "piping-ui", - "version": "0.1.0", + "version": "0.1.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index a539befb8..e161a01c4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "piping-ui", - "version": "0.1.0", + "version": "0.1.1", "private": true, "scripts": { "generate-version": "cross-var echo \"export const VERSION = \\\"$npm_package_version\\\";\" > src/version.ts", diff --git a/public/img/icons/android-chrome-192x192.png b/public/img/icons/android-chrome-192x192.png index 13f12aa93..6436a4571 100644 Binary files a/public/img/icons/android-chrome-192x192.png and b/public/img/icons/android-chrome-192x192.png differ diff --git a/public/img/icons/android-chrome-512x512.png b/public/img/icons/android-chrome-512x512.png index 65690e8bc..e13915d9d 100644 Binary files a/public/img/icons/android-chrome-512x512.png and b/public/img/icons/android-chrome-512x512.png differ diff --git a/public/img/icons/apple-touch-icon-120x120.png b/public/img/icons/apple-touch-icon-120x120.png index 3128f5ca5..d844611a4 100644 Binary files a/public/img/icons/apple-touch-icon-120x120.png and b/public/img/icons/apple-touch-icon-120x120.png differ diff --git a/public/img/icons/apple-touch-icon-152x152.png b/public/img/icons/apple-touch-icon-152x152.png index b46264e93..8a02134e3 100644 Binary files a/public/img/icons/apple-touch-icon-152x152.png and b/public/img/icons/apple-touch-icon-152x152.png differ diff --git a/public/img/icons/apple-touch-icon-180x180.png b/public/img/icons/apple-touch-icon-180x180.png index d884db01e..8c21ccc68 100644 Binary files a/public/img/icons/apple-touch-icon-180x180.png and b/public/img/icons/apple-touch-icon-180x180.png differ diff --git a/public/img/icons/apple-touch-icon-60x60.png b/public/img/icons/apple-touch-icon-60x60.png index c01d28f5a..1a7875dbc 100644 Binary files a/public/img/icons/apple-touch-icon-60x60.png and b/public/img/icons/apple-touch-icon-60x60.png differ diff --git a/public/img/icons/apple-touch-icon-76x76.png b/public/img/icons/apple-touch-icon-76x76.png index 3dede8d5f..6414bfa10 100644 Binary files a/public/img/icons/apple-touch-icon-76x76.png and b/public/img/icons/apple-touch-icon-76x76.png differ diff --git a/public/img/icons/apple-touch-icon.png b/public/img/icons/apple-touch-icon.png index d884db01e..8c21ccc68 100644 Binary files a/public/img/icons/apple-touch-icon.png and b/public/img/icons/apple-touch-icon.png differ diff --git a/public/img/icons/favicon-16x16.png b/public/img/icons/favicon-16x16.png index bd50c9d4b..51da5b37c 100644 Binary files a/public/img/icons/favicon-16x16.png and b/public/img/icons/favicon-16x16.png differ diff --git a/public/img/icons/msapplication-icon-144x144.png b/public/img/icons/msapplication-icon-144x144.png index e1b285cb6..52c6f2ba3 100644 Binary files a/public/img/icons/msapplication-icon-144x144.png and b/public/img/icons/msapplication-icon-144x144.png differ diff --git a/public/img/icons/mstile-150x150.png b/public/img/icons/mstile-150x150.png index 622986e7c..9d84170ea 100644 Binary files a/public/img/icons/mstile-150x150.png and b/public/img/icons/mstile-150x150.png differ diff --git a/src/assets/logo.png b/src/assets/logo.png index f3d2503fc..25c4d9b84 100644 Binary files a/src/assets/logo.png and b/src/assets/logo.png differ diff --git a/src/components/PipingUI.vue b/src/components/PipingUI.vue index e37ba6e22..6020cb158 100644 --- a/src/components/PipingUI.vue +++ b/src/components/PipingUI.vue @@ -248,7 +248,7 @@ export default class PipingUI extends Vue { return strings(globalStore.language); } - // FIXME: Remove this + // FIXME: Should be removed // This for lazy v-model of Combobox private shouldBeRemoved = { latestServerUrl: this.serverUrl, @@ -256,7 +256,7 @@ export default class PipingUI extends Vue { }; - // FIXME: Remove + // FIXME: Should be removed // NOTE: This is for update by clicking listed auto-complete @Watch('serverUrl') private onServerUrl() { @@ -270,7 +270,7 @@ export default class PipingUI extends Vue { this.secretPath = ''; } - // FIXME: Remove + // FIXME: Should be removed // NOTE: This is for update by clicking listed auto-complete this.shouldBeRemoved.latestSecretPath = this.secretPath; } @@ -366,13 +366,18 @@ export default class PipingUI extends Vue { } } - private send() { - // FIXME: remove + // FIXME: Should be removed + private applyLatestServerUrlAndSecretPath() { + // FIXME: should be removed after fix // NOTE: This set the latest secret path because v-model of Combobox is lazy this.serverUrl = this.shouldBeRemoved.latestServerUrl; - // FIXME: remove + // FIXME: should be removed after fix // NOTE: This set the latest secret path because v-model of Combobox is lazy this.secretPath = this.shouldBeRemoved.latestSecretPath; + } + + private send() { + this.applyLatestServerUrlAndSecretPath(); if (!this.isTextMode && this.files.length === 0) { // Show error message @@ -419,6 +424,8 @@ export default class PipingUI extends Vue { // NOTE: Some file types are displayed inline private async get() { + this.applyLatestServerUrlAndSecretPath(); + // If secret path is empty if (this.secretPath === '') { // Show error message @@ -447,6 +454,8 @@ export default class PipingUI extends Vue { } private view() { + this.applyLatestServerUrlAndSecretPath(); + // If secret path is empty if (this.secretPath === '') { // Show error message