├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── img ├── addons.png ├── main.gif ├── main.png ├── rrm2x.png └── virus_warning.png └── rr-manager ├── .eslintrc.json ├── Makefile ├── PLIST ├── package-lock.json ├── package.json ├── src ├── app │ ├── alias.syno-app-portal.RRM.conf │ ├── config │ ├── config.txt │ ├── help │ │ ├── enu │ │ │ └── simpleapp_index.html │ │ └── fre │ │ │ └── simpleapp_index.html │ ├── helptoc.conf │ ├── index.conf │ ├── install.sh │ ├── rr-manager.widget.js │ ├── style.css │ ├── tasks.sql │ └── texts │ │ ├── chs │ │ └── strings │ │ ├── cht │ │ └── strings │ │ ├── enu │ │ └── strings │ │ ├── krn │ │ └── strings │ │ └── rus │ │ └── strings ├── conf │ ├── privilege_ │ └── resource ├── dsm-control.sh ├── images │ └── 1x │ │ ├── cate_icn_addons.png │ │ ├── cate_icn_overview.png │ │ └── cate_icn_setting.png ├── requirements.txt ├── rr-manager.png ├── scripts │ ├── checkUpdateStatus.cgi │ ├── getAddons.cgi │ ├── getAvailableUpdates.cgi │ ├── getConfig.cgi │ ├── getModules.cgi │ ├── getNetworkInfo.cgi │ ├── getRrReleaseInfo.cgi │ ├── readUpdateFile.cgi │ ├── runRrUpdate.cgi │ └── uploadConfigFile.cgi ├── service-setup.sh ├── src │ ├── appWindow.js │ ├── components │ │ ├── advancedSearchField.js │ │ ├── dialogs │ │ │ ├── passwordConfirmDialog.js │ │ │ ├── updateAvailableDialog.js │ │ │ └── uploadFileDialog.js │ │ ├── iframePanel.js │ │ ├── statusBox.js │ │ └── statusBoxTmpl.js │ ├── index.js │ ├── panels │ │ ├── debug │ │ │ └── generalTab.js │ │ ├── healthPanel.js │ │ ├── settings │ │ │ ├── generalTab.js │ │ │ ├── rrConfigTab.js │ │ │ ├── rrManagerConfigTab.js │ │ │ └── synoInfoTab.js │ │ └── statusBoxsPanel.js │ ├── tabs │ │ ├── addons.js │ │ ├── debug.js │ │ ├── main.js │ │ ├── setting.js │ │ └── ssh.js │ └── utils │ │ ├── synoApiProvider.js │ │ ├── updateHelper.js │ │ └── updateWizardHelper.js └── wizard_templates │ ├── install_uifile.sh │ ├── shared_uifile_setup.sh │ ├── uifile_vars │ ├── uifile_vars_fre │ └── upgrade_uifile.sh └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/README.md -------------------------------------------------------------------------------- /img/addons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/img/addons.png -------------------------------------------------------------------------------- /img/main.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/img/main.gif -------------------------------------------------------------------------------- /img/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/img/main.png -------------------------------------------------------------------------------- /img/rrm2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/img/rrm2x.png -------------------------------------------------------------------------------- /img/virus_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/img/virus_warning.png -------------------------------------------------------------------------------- /rr-manager/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/.eslintrc.json -------------------------------------------------------------------------------- /rr-manager/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/Makefile -------------------------------------------------------------------------------- /rr-manager/PLIST: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rr-manager/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/package-lock.json -------------------------------------------------------------------------------- /rr-manager/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/package.json -------------------------------------------------------------------------------- /rr-manager/src/app/alias.syno-app-portal.RRM.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/app/alias.syno-app-portal.RRM.conf -------------------------------------------------------------------------------- /rr-manager/src/app/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/app/config -------------------------------------------------------------------------------- /rr-manager/src/app/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/app/config.txt -------------------------------------------------------------------------------- /rr-manager/src/app/help/enu/simpleapp_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/app/help/enu/simpleapp_index.html -------------------------------------------------------------------------------- /rr-manager/src/app/help/fre/simpleapp_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/app/help/fre/simpleapp_index.html -------------------------------------------------------------------------------- /rr-manager/src/app/helptoc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/app/helptoc.conf -------------------------------------------------------------------------------- /rr-manager/src/app/index.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/app/index.conf -------------------------------------------------------------------------------- /rr-manager/src/app/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/app/install.sh -------------------------------------------------------------------------------- /rr-manager/src/app/rr-manager.widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/app/rr-manager.widget.js -------------------------------------------------------------------------------- /rr-manager/src/app/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/app/style.css -------------------------------------------------------------------------------- /rr-manager/src/app/tasks.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/app/tasks.sql -------------------------------------------------------------------------------- /rr-manager/src/app/texts/chs/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/app/texts/chs/strings -------------------------------------------------------------------------------- /rr-manager/src/app/texts/cht/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/app/texts/cht/strings -------------------------------------------------------------------------------- /rr-manager/src/app/texts/enu/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/app/texts/enu/strings -------------------------------------------------------------------------------- /rr-manager/src/app/texts/krn/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/app/texts/krn/strings -------------------------------------------------------------------------------- /rr-manager/src/app/texts/rus/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/app/texts/rus/strings -------------------------------------------------------------------------------- /rr-manager/src/conf/privilege_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/conf/privilege_ -------------------------------------------------------------------------------- /rr-manager/src/conf/resource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/conf/resource -------------------------------------------------------------------------------- /rr-manager/src/dsm-control.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/dsm-control.sh -------------------------------------------------------------------------------- /rr-manager/src/images/1x/cate_icn_addons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/images/1x/cate_icn_addons.png -------------------------------------------------------------------------------- /rr-manager/src/images/1x/cate_icn_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/images/1x/cate_icn_overview.png -------------------------------------------------------------------------------- /rr-manager/src/images/1x/cate_icn_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/images/1x/cate_icn_setting.png -------------------------------------------------------------------------------- /rr-manager/src/requirements.txt: -------------------------------------------------------------------------------- 1 | PyYAML 2 | -------------------------------------------------------------------------------- /rr-manager/src/rr-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/rr-manager.png -------------------------------------------------------------------------------- /rr-manager/src/scripts/checkUpdateStatus.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/scripts/checkUpdateStatus.cgi -------------------------------------------------------------------------------- /rr-manager/src/scripts/getAddons.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/scripts/getAddons.cgi -------------------------------------------------------------------------------- /rr-manager/src/scripts/getAvailableUpdates.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/scripts/getAvailableUpdates.cgi -------------------------------------------------------------------------------- /rr-manager/src/scripts/getConfig.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/scripts/getConfig.cgi -------------------------------------------------------------------------------- /rr-manager/src/scripts/getModules.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/scripts/getModules.cgi -------------------------------------------------------------------------------- /rr-manager/src/scripts/getNetworkInfo.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/scripts/getNetworkInfo.cgi -------------------------------------------------------------------------------- /rr-manager/src/scripts/getRrReleaseInfo.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/scripts/getRrReleaseInfo.cgi -------------------------------------------------------------------------------- /rr-manager/src/scripts/readUpdateFile.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/scripts/readUpdateFile.cgi -------------------------------------------------------------------------------- /rr-manager/src/scripts/runRrUpdate.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/scripts/runRrUpdate.cgi -------------------------------------------------------------------------------- /rr-manager/src/scripts/uploadConfigFile.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/scripts/uploadConfigFile.cgi -------------------------------------------------------------------------------- /rr-manager/src/service-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/service-setup.sh -------------------------------------------------------------------------------- /rr-manager/src/src/appWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/src/appWindow.js -------------------------------------------------------------------------------- /rr-manager/src/src/components/advancedSearchField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/src/components/advancedSearchField.js -------------------------------------------------------------------------------- /rr-manager/src/src/components/dialogs/passwordConfirmDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/src/components/dialogs/passwordConfirmDialog.js -------------------------------------------------------------------------------- /rr-manager/src/src/components/dialogs/updateAvailableDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/src/components/dialogs/updateAvailableDialog.js -------------------------------------------------------------------------------- /rr-manager/src/src/components/dialogs/uploadFileDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/src/components/dialogs/uploadFileDialog.js -------------------------------------------------------------------------------- /rr-manager/src/src/components/iframePanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/src/components/iframePanel.js -------------------------------------------------------------------------------- /rr-manager/src/src/components/statusBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/src/components/statusBox.js -------------------------------------------------------------------------------- /rr-manager/src/src/components/statusBoxTmpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/src/components/statusBoxTmpl.js -------------------------------------------------------------------------------- /rr-manager/src/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/src/index.js -------------------------------------------------------------------------------- /rr-manager/src/src/panels/debug/generalTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/src/panels/debug/generalTab.js -------------------------------------------------------------------------------- /rr-manager/src/src/panels/healthPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/src/panels/healthPanel.js -------------------------------------------------------------------------------- /rr-manager/src/src/panels/settings/generalTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/src/panels/settings/generalTab.js -------------------------------------------------------------------------------- /rr-manager/src/src/panels/settings/rrConfigTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/src/panels/settings/rrConfigTab.js -------------------------------------------------------------------------------- /rr-manager/src/src/panels/settings/rrManagerConfigTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/src/panels/settings/rrManagerConfigTab.js -------------------------------------------------------------------------------- /rr-manager/src/src/panels/settings/synoInfoTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/src/panels/settings/synoInfoTab.js -------------------------------------------------------------------------------- /rr-manager/src/src/panels/statusBoxsPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/src/panels/statusBoxsPanel.js -------------------------------------------------------------------------------- /rr-manager/src/src/tabs/addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/src/tabs/addons.js -------------------------------------------------------------------------------- /rr-manager/src/src/tabs/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/src/tabs/debug.js -------------------------------------------------------------------------------- /rr-manager/src/src/tabs/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/src/tabs/main.js -------------------------------------------------------------------------------- /rr-manager/src/src/tabs/setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/src/tabs/setting.js -------------------------------------------------------------------------------- /rr-manager/src/src/tabs/ssh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/src/tabs/ssh.js -------------------------------------------------------------------------------- /rr-manager/src/src/utils/synoApiProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/src/utils/synoApiProvider.js -------------------------------------------------------------------------------- /rr-manager/src/src/utils/updateHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/src/utils/updateHelper.js -------------------------------------------------------------------------------- /rr-manager/src/src/utils/updateWizardHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/src/utils/updateWizardHelper.js -------------------------------------------------------------------------------- /rr-manager/src/wizard_templates/install_uifile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/wizard_templates/install_uifile.sh -------------------------------------------------------------------------------- /rr-manager/src/wizard_templates/shared_uifile_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/wizard_templates/shared_uifile_setup.sh -------------------------------------------------------------------------------- /rr-manager/src/wizard_templates/uifile_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/wizard_templates/uifile_vars -------------------------------------------------------------------------------- /rr-manager/src/wizard_templates/uifile_vars_fre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/wizard_templates/uifile_vars_fre -------------------------------------------------------------------------------- /rr-manager/src/wizard_templates/upgrade_uifile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/src/wizard_templates/upgrade_uifile.sh -------------------------------------------------------------------------------- /rr-manager/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T-REX-XP/RRManager/HEAD/rr-manager/webpack.config.js --------------------------------------------------------------------------------