Skip to content
Snippets Groups Projects
Commit 854c8fae authored by Adam Procter's avatar Adam Procter
Browse files

updated changelog

added way for you to see your device name and microcosm you are working on just in toolbar (rough design)
parent d0dfaf1b
No related branches found
No related tags found
No related merge requests found
# 0.1.26
_6th October 2020_
### Changed
- Renamed Mobile to List
- Refactored the way the list and discarded view work
- Added some basic style to list and discarded views
### Added
- the toolbar now shows (in basic form) to you only your device name and the microcosm you are currently viewing
# 0.1.25
_2nd October 2020_
......
{
"name": "nodenogg.in",
"version": "0.1.25",
"version": "0.1.26",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
......
......@@ -11,6 +11,9 @@
v-bind:theme="isActive(mode) ? 'light' : 'dark'"
/>
</button>
{{ clientid }} /
{{ microcosm }}
</nav>
</template>
......@@ -24,6 +27,8 @@ export default {
mounted() {
window.addEventListener('online', this.handleConnection)
window.addEventListener('offline', this.handleConnection)
this.clientid = localStorage.myNNClient
this.microcosm = localStorage.mylastMicrocosm
},
computed: {
...mapState({
......@@ -33,6 +38,7 @@ export default {
activeMode: 'ui/activeMode',
}),
},
methods: {
setMode(mode) {
this.$store.commit('ui/setMode', mode)
......@@ -105,6 +111,8 @@ export default {
},
data() {
return {
clientid: String,
microcosm: String,
allModes,
}
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment