diff --git a/public/locales/en.json b/public/locales/en.json
index 2976f54..7fcf562 100644
--- a/public/locales/en.json
+++ b/public/locales/en.json
@@ -327,6 +327,8 @@
"Description": "@:Modules.PMS.Name module allows you to manage your server",
"ErrorNoServerSelectedTitle": "No server selected",
"ErrorNoServerSelectedMsg": "You need to select a server on the top of the screen",
+ "ExportDoneBody": "Check {0}",
+ "ExportDoneTitle": "Export finished",
"Butler": {
"Title": "Butler Scheduled Tasks",
"Description": "Here you can kickstart a scheduled task",
@@ -388,8 +390,14 @@
"Value": "Value"
}
},
- "ExportDoneBody": "Check {0}",
- "ExportDoneTitle": "Export finished"
+ "DVR": {
+ "Name": "DVR",
+ "Description": "@:Modules.PMS.DVR.Name module allows you to backup and restore your DVR settings",
+ "selDVR": "Select DVR to backup",
+ "ttselDVR": "Here you select the DVR you want to make a backup of",
+ "lblBtnBackup": "Backup",
+ "BackupDone": "DVR has been saved"
+ }
},
"PlexTV": {
"Name": "Plex.TV",
@@ -407,14 +415,6 @@
"ExportUsr": "Export user to CSV",
"ExportAllUsr": "Export all users to CSV",
"Settings": "To configure column separator and 'Not Avail', use @:Modules.ET.Name settings"
- },
- "DVR": {
- "Name": "DVR",
- "Description": "@:Modules.DVR.Name module allows you to backup and restore your DVR settings",
- "selDVR": "Select DVR to backup",
- "ttselDVR": "Here you select the DVR you want to make a backup of",
- "lblBtnBackup": "Backup"
-
- }
+ }
}
}
\ No newline at end of file
diff --git a/src/assets/dvr-256.png b/src/assets/dvr-256.png
deleted file mode 100644
index 723778f..0000000
Binary files a/src/assets/dvr-256.png and /dev/null differ
diff --git a/src/assets/release-notes.md b/src/assets/release-notes.md
deleted file mode 100644
index 2816ed5..0000000
--- a/src/assets/release-notes.md
+++ /dev/null
@@ -1,18 +0,0 @@
-# Release Note
-
-For a complete manual, see the [Wiki](https://github.com/WebTools-NG/WebTools-NG/wiki)
-
-What's new:
-
-Please see the [Change Log](https://github.com/WebTools-NG/WebTools-NG/blob/master/CHANGELOG.md)
-
-This is a BETA release
-
-Note that the binaries are not signed, since we cannot afford a signing certificate nor a dev membership with Apple
-* See [Special MAC Work Around](https://github.com/WebTools-NG/WebTools-NG/wiki/Known-Issues#-mac-os)
-
-Depending on your workstation OS, grab the following file from the assets below:
-
-Windows: Use the exe file
-Mac: Use the dmg file
-Linux: Use the AppImage file
diff --git a/src/components/layout/Menu.vue b/src/components/layout/Menu.vue
index aafc1b9..e1ef943 100644
--- a/src/components/layout/Menu.vue
+++ b/src/components/layout/Menu.vue
@@ -12,8 +12,7 @@
import '@fortawesome/fontawesome-free/css/all.css';
import etIcon from '@/assets/ET-256.png';
import pmsIcon from '@/assets/plex-pms-icon.png';
- import plextvIcon from '@/assets/plex-app-icon.png';
- import plexDVRIcon from '@/assets/dvr-256.png';
+ import plextvIcon from '@/assets/plex-app-icon.png';
export default {
@@ -66,14 +65,9 @@
icon: 'fa fa-tasks'
},
{
- href: { path: '/dvr' },
- title: this.$t("Modules.DVR.Name"),
- // icon: 'fas fa-file-export',
- icon: {
- //adjust element
- element: 'img',
- attributes: { src: plexDVRIcon },
- }
+ href: { path: '/pms/dvr' },
+ title: this.$t("Modules.PMS.DVR.Name"),
+ icon: 'fas fa-tv',
}
]
},
@@ -84,7 +78,7 @@
icon: {
//adjust element
element: 'img',
- attributes: { src: etIcon },
+ attributes: { src: etIcon },
},
child: [
{
diff --git a/src/components/modules/DVR/DVR.vue b/src/components/modules/DVR/DVR.vue
deleted file mode 100644
index bd5c41e..0000000
--- a/src/components/modules/DVR/DVR.vue
+++ /dev/null
@@ -1,119 +0,0 @@
-
-