├── .DS_Store ├── .github └── workflows │ └── main.yaml ├── .gitignore ├── License ├── Makefile ├── README.md ├── omniedge-synology-en.png └── src ├── AppIcon.jpg ├── INFO.sh ├── PACKAGE_ICON.PNG ├── PACKAGE_ICON_256.PNG ├── WIZARD_UIFILES ├── install_uifile ├── install_uifile_chs └── install_uifile_cht ├── conf ├── privilege └── resource ├── logs └── omniedge.log ├── scripts ├── installer ├── postinst ├── postuninst ├── postupgrade ├── preupgrade └── start-stop-status └── var ├── auth.json └── dialog /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniedgeio/omniedge-synology/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniedgeio/omniedge-synology/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _build/ 2 | _omniedge/ 3 | spks/ 4 | logs 5 | -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniedgeio/omniedge-synology/HEAD/License -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniedgeio/omniedge-synology/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniedgeio/omniedge-synology/HEAD/README.md -------------------------------------------------------------------------------- /omniedge-synology-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniedgeio/omniedge-synology/HEAD/omniedge-synology-en.png -------------------------------------------------------------------------------- /src/AppIcon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniedgeio/omniedge-synology/HEAD/src/AppIcon.jpg -------------------------------------------------------------------------------- /src/INFO.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniedgeio/omniedge-synology/HEAD/src/INFO.sh -------------------------------------------------------------------------------- /src/PACKAGE_ICON.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniedgeio/omniedge-synology/HEAD/src/PACKAGE_ICON.PNG -------------------------------------------------------------------------------- /src/PACKAGE_ICON_256.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniedgeio/omniedge-synology/HEAD/src/PACKAGE_ICON_256.PNG -------------------------------------------------------------------------------- /src/WIZARD_UIFILES/install_uifile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniedgeio/omniedge-synology/HEAD/src/WIZARD_UIFILES/install_uifile -------------------------------------------------------------------------------- /src/WIZARD_UIFILES/install_uifile_chs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniedgeio/omniedge-synology/HEAD/src/WIZARD_UIFILES/install_uifile_chs -------------------------------------------------------------------------------- /src/WIZARD_UIFILES/install_uifile_cht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniedgeio/omniedge-synology/HEAD/src/WIZARD_UIFILES/install_uifile_cht -------------------------------------------------------------------------------- /src/conf/privilege: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniedgeio/omniedge-synology/HEAD/src/conf/privilege -------------------------------------------------------------------------------- /src/conf/resource: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/logs/omniedge.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scripts/installer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniedgeio/omniedge-synology/HEAD/src/scripts/installer -------------------------------------------------------------------------------- /src/scripts/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniedgeio/omniedge-synology/HEAD/src/scripts/postinst -------------------------------------------------------------------------------- /src/scripts/postuninst: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | . $(dirname $0)/installer 3 | 4 | postuninst 5 | -------------------------------------------------------------------------------- /src/scripts/postupgrade: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | . $(dirname $0)/installer 3 | 4 | postupgrade 5 | -------------------------------------------------------------------------------- /src/scripts/preupgrade: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | . $(dirname $0)/installer 3 | 4 | preupgrade 5 | -------------------------------------------------------------------------------- /src/scripts/start-stop-status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniedgeio/omniedge-synology/HEAD/src/scripts/start-stop-status -------------------------------------------------------------------------------- /src/var/auth.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/var/dialog: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------