Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v0.0.9
- ロゴを修正
- デフォルト言語を日本語にしました
- WiFiセットアップ機能を標準にしました
- 初回起動時のRSS購読モーダルを削除しました

## v0.0.8
- APモード専用のファイルを追加

Expand Down
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ _____ _____ _____
*/
setInitLang() {
let lang = localStorage.getItem('lang') ? localStorage.getItem('lang') : this.getLangFromBrowser()
lang = lang.includes("_") ? lang : "en_us";
lang = lang.includes("_") ? lang : "ja_jp";
this.setLang(lang);
},
/**
Expand Down
Binary file modified src/assets/img/logo/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
45 changes: 21 additions & 24 deletions src/assets/img/logo/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 2 additions & 11 deletions src/components/TopBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@
</div>
<!-- Automount USB Drive End -->
<!-- WiFi Settings Start -->
<div class="_is-large hover-effect _is-radius pr-2 mr-4 ml-4" v-if="enableWifiSetup">
<div class="_is-large hover-effect _is-radius pr-2 mr-4 ml-4">
<div class="is-flex is-align-items-center">
<div class="is-flex is-align-items-center is-flex-grow-1 _is-normal">
<b-icon class="mr-1 ml-1" icon="wifi" pack="mdi" custom-size="20px" ></b-icon>
Expand Down Expand Up @@ -465,7 +465,6 @@ export default {
showPower: false,
showPowerTitle: "",
showPowerMessage: "",
enableWifiSetup: false,
};
},
props: {
Expand All @@ -490,7 +489,7 @@ export default {
if (val === oldValue) {
return;
}
const lang = val.includes("_") ? val : "en_us";
const lang = val.includes("_") ? val : "ja_jp";
this.$messageBus("dashboardsetting_language", lang);
this.setLang(lang);
},
Expand Down Expand Up @@ -557,7 +556,6 @@ export default {
this.getUserInfo();
this.getUsbStatus();
this.getHardwareInfo();
this.getOptionInfo();
},

methods: {
Expand Down Expand Up @@ -772,13 +770,6 @@ export default {
},
});
},
getOptionInfo() {
console.log("****getOptionInfo")
this.$api.option.getOptionStatus().then((res) => {
this.enableWifiSetup = res.data;
console.log(res.data)
});
},
/*************************************************
* PART 2 Userinfo
**************************************************/
Expand Down
1 change: 0 additions & 1 deletion src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ export default {
}
if (sessionStorage.getItem('fromWelcome')) {
this.$messageBus('global_newvisit')
this.rssConfirm()
// one-off consumption
sessionStorage.removeItem('fromWelcome')
}
Expand Down
Loading