├── .gitignore ├── .slimignore ├── LICENSE ├── README.md ├── app.manifest ├── default ├── app.conf ├── eventtypes.conf ├── inputs.conf ├── props.conf └── tags.conf ├── metadata └── default.meta └── static ├── appIcon.png ├── appIconAlt.png ├── appIconAlt_2x.png ├── appIcon_2x.png ├── appLogo.png └── appLogo_2x.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextronSystems/TA-aurora/HEAD/.gitignore -------------------------------------------------------------------------------- /.slimignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextronSystems/TA-aurora/HEAD/.slimignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextronSystems/TA-aurora/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextronSystems/TA-aurora/HEAD/README.md -------------------------------------------------------------------------------- /app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextronSystems/TA-aurora/HEAD/app.manifest -------------------------------------------------------------------------------- /default/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextronSystems/TA-aurora/HEAD/default/app.conf -------------------------------------------------------------------------------- /default/eventtypes.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextronSystems/TA-aurora/HEAD/default/eventtypes.conf -------------------------------------------------------------------------------- /default/inputs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextronSystems/TA-aurora/HEAD/default/inputs.conf -------------------------------------------------------------------------------- /default/props.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextronSystems/TA-aurora/HEAD/default/props.conf -------------------------------------------------------------------------------- /default/tags.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextronSystems/TA-aurora/HEAD/default/tags.conf -------------------------------------------------------------------------------- /metadata/default.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextronSystems/TA-aurora/HEAD/metadata/default.meta -------------------------------------------------------------------------------- /static/appIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextronSystems/TA-aurora/HEAD/static/appIcon.png -------------------------------------------------------------------------------- /static/appIconAlt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextronSystems/TA-aurora/HEAD/static/appIconAlt.png -------------------------------------------------------------------------------- /static/appIconAlt_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextronSystems/TA-aurora/HEAD/static/appIconAlt_2x.png -------------------------------------------------------------------------------- /static/appIcon_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextronSystems/TA-aurora/HEAD/static/appIcon_2x.png -------------------------------------------------------------------------------- /static/appLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextronSystems/TA-aurora/HEAD/static/appLogo.png -------------------------------------------------------------------------------- /static/appLogo_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextronSystems/TA-aurora/HEAD/static/appLogo_2x.png --------------------------------------------------------------------------------