mirror of
https://github.com/WebTools-NG/WebTools-NG
synced 2025-03-09 00:37:20 +00:00
Version now 0.1.8 and #173 fixed
This commit is contained in:
parent
229daa9164
commit
1c2b5c9565
3 changed files with 39 additions and 28 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,14 +1,20 @@
|
|||
#  WebTools-ng Change log
|
||||
|
||||
## V0.1.8
|
||||
|
||||
**Note**: This version is an Alhpa version, that is not made public
|
||||
|
||||
* [#173 Sidebar not updated when changing languages](https://github.com/WebTools-NG/WebTools-NG/issues/173)
|
||||
|
||||
## V0.1.7
|
||||
|
||||
**Note**: This version is an Alhpa version, that is not made public, and first version with a changelog
|
||||
**Note**: This version is an Alhpa version, that is not made public
|
||||
|
||||
* [#21 ET Fields selection for custom levels](https://github.com/WebTools-NG/WebTools-NG/issues/21) (Custom levels)
|
||||
|
||||
## V0.1.6
|
||||
|
||||
**Note**: This version is an Alhpa version, that is not made public, and first version with a changelog
|
||||
**Note**: This version is an Alhpa version, that is not made public
|
||||
|
||||
* [#179 BUG: Text fields spotted in the wild, that corrupts export](https://github.com/WebTools-NG/WebTools-NG/issues/179)
|
||||
* [#103 AutoUpdate](https://github.com/WebTools-NG/WebTools-NG/issues/103)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "webtools-ng",
|
||||
"version": "0.1.7",
|
||||
"version": "0.1.8",
|
||||
"description": "WebTools Next Generation 4 Plex",
|
||||
"author": "dane22 & CPSO",
|
||||
"license": "MPL-2.0",
|
||||
|
|
|
@ -7,28 +7,33 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
const log = require('electron-log');
|
||||
console.log = log.log;
|
||||
import '@fortawesome/fontawesome-free/css/all.css'
|
||||
import etIcon from '@/assets/ET-256.png';
|
||||
import i18n from '../../i18n'
|
||||
const log = require('electron-log');
|
||||
console.log = log.log;
|
||||
import '@fortawesome/fontawesome-free/css/all.css'
|
||||
import etIcon from '@/assets/ET-256.png';
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
menu: [
|
||||
collapsed: false
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
menu(){
|
||||
return [
|
||||
{
|
||||
href: { path: '/home' },
|
||||
title: i18n.t("Common.Menu.Sidebar.Home.NavTitle"),
|
||||
href: { path: '/home' },
|
||||
title: this.$t("Common.Menu.Sidebar.Home.NavTitle"),
|
||||
icon: 'fa fa-home'
|
||||
},
|
||||
{
|
||||
header: true,
|
||||
title: i18n.t("Common.Menu.Sidebar.NavSections.Tools"),
|
||||
title: this.$t("Common.Menu.Sidebar.NavSections.Tools"),
|
||||
hiddenOnCollapse: true
|
||||
},
|
||||
{
|
||||
href: { path: '/export' },
|
||||
title: i18n.t("Modules.ET.Name"),
|
||||
title: this.$t("Modules.ET.Name"),
|
||||
// icon: 'fas fa-file-export',
|
||||
icon: {
|
||||
//adjust element
|
||||
|
@ -38,12 +43,12 @@ import i18n from '../../i18n'
|
|||
child: [
|
||||
{
|
||||
href: '/export/settings',
|
||||
title: i18n.t("Common.Menu.Sidebar.ET.Settings"),
|
||||
title: this.$t("Common.Menu.Sidebar.ET.Settings"),
|
||||
icon: 'fa fa-cog'
|
||||
},
|
||||
{
|
||||
href: '/export/custom',
|
||||
title: i18n.t("Common.Menu.Sidebar.ET.Custom"),
|
||||
title: this.$t("Common.Menu.Sidebar.ET.Custom"),
|
||||
icon: 'fa fa-cog'
|
||||
}
|
||||
]
|
||||
|
@ -51,46 +56,46 @@ import i18n from '../../i18n'
|
|||
},
|
||||
{
|
||||
header: true,
|
||||
title: i18n.t("Common.Menu.Sidebar.NavSections.Options"),
|
||||
title: this.$t("Common.Menu.Sidebar.NavSections.Options"),
|
||||
hiddenOnCollapse: true
|
||||
},
|
||||
{
|
||||
href: { path: '/language' },
|
||||
title: i18n.t("Common.Menu.Sidebar.Language.NavTitle"),
|
||||
title: this.$t("Common.Menu.Sidebar.Language.NavTitle"),
|
||||
//icon: 'fas fa-language'
|
||||
icon: 'fa fa-globe'
|
||||
},
|
||||
{
|
||||
href: '/settings',
|
||||
title: i18n.t("Common.Menu.Sidebar.Settings.NavTitle"),
|
||||
title: this.$t("Common.Menu.Sidebar.Settings.NavTitle"),
|
||||
icon: 'fa fa-cog'
|
||||
},
|
||||
{
|
||||
href: { path: '/about' },
|
||||
title: i18n.t("Common.Menu.Sidebar.About.NavTitle"),
|
||||
title: this.$t("Common.Menu.Sidebar.About.NavTitle"),
|
||||
icon: 'fas fa-question-circle'
|
||||
},
|
||||
{
|
||||
href: { path: '/' },
|
||||
title: i18n.t("Common.Menu.Sidebar.Theme.NavTitle"),
|
||||
title: this.$t("Common.Menu.Sidebar.Theme.NavTitle"),
|
||||
icon: 'fas fa-palette',
|
||||
hidden: true
|
||||
},
|
||||
{
|
||||
href: { path: '/' },
|
||||
title: i18n.t("Common.Menu.Sidebar.Reset.NavTitle"),
|
||||
title: this.$t("Common.Menu.Sidebar.Reset.NavTitle"),
|
||||
icon: 'fas fa-power-off',
|
||||
hidden: true
|
||||
}
|
||||
],
|
||||
collapsed: false,
|
||||
}
|
||||
},methods: {
|
||||
onToggleCollapse(collapsed) {
|
||||
]
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
onToggleCollapse(collapsed) {
|
||||
this.$emit("e-iscollapsed", collapsed);
|
||||
log.info(collapsed)
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue