├── .gitignore ├── .gitmodules ├── LICENSE.md ├── README.md ├── common ├── assets │ ├── img │ │ ├── altstore-2.0.jpg │ │ ├── generic_app.jpeg │ │ ├── loading.gif │ │ └── sidestore.png │ └── json │ │ ├── entitlements.json │ │ ├── legacy-permissions.json │ │ ├── privacy.json │ │ └── sources.json ├── components │ ├── AltStoreBanner.js │ ├── AppHeader.js │ ├── AppPermissionItem.js │ ├── MoreButton.js │ ├── NavigationBar.js │ ├── NewsItem.js │ └── VersionHistoryItem.js ├── modules │ ├── constants.js │ ├── main.js │ └── utilities.js ├── style.css └── vendor │ └── bootstrap-icons-1.11.2 │ ├── bootstrap-icons.min.css │ └── fonts │ ├── bootstrap-icons.woff │ └── bootstrap-icons.woff2 ├── index.css ├── index.html ├── index.js └── view ├── all-apps ├── all-apps.css ├── all-apps.js └── index.html ├── app ├── app.css ├── app.js ├── index.html └── version-history │ ├── index.html │ ├── version-history.css │ └── version-history.js ├── index.html ├── news ├── index.html ├── news.css └── news.js └── view.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/README.md -------------------------------------------------------------------------------- /common/assets/img/altstore-2.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/common/assets/img/altstore-2.0.jpg -------------------------------------------------------------------------------- /common/assets/img/generic_app.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/common/assets/img/generic_app.jpeg -------------------------------------------------------------------------------- /common/assets/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/common/assets/img/loading.gif -------------------------------------------------------------------------------- /common/assets/img/sidestore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/common/assets/img/sidestore.png -------------------------------------------------------------------------------- /common/assets/json/entitlements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/common/assets/json/entitlements.json -------------------------------------------------------------------------------- /common/assets/json/legacy-permissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/common/assets/json/legacy-permissions.json -------------------------------------------------------------------------------- /common/assets/json/privacy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/common/assets/json/privacy.json -------------------------------------------------------------------------------- /common/assets/json/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/common/assets/json/sources.json -------------------------------------------------------------------------------- /common/components/AltStoreBanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/common/components/AltStoreBanner.js -------------------------------------------------------------------------------- /common/components/AppHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/common/components/AppHeader.js -------------------------------------------------------------------------------- /common/components/AppPermissionItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/common/components/AppPermissionItem.js -------------------------------------------------------------------------------- /common/components/MoreButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/common/components/MoreButton.js -------------------------------------------------------------------------------- /common/components/NavigationBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/common/components/NavigationBar.js -------------------------------------------------------------------------------- /common/components/NewsItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/common/components/NewsItem.js -------------------------------------------------------------------------------- /common/components/VersionHistoryItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/common/components/VersionHistoryItem.js -------------------------------------------------------------------------------- /common/modules/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/common/modules/constants.js -------------------------------------------------------------------------------- /common/modules/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/common/modules/main.js -------------------------------------------------------------------------------- /common/modules/utilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/common/modules/utilities.js -------------------------------------------------------------------------------- /common/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/common/style.css -------------------------------------------------------------------------------- /common/vendor/bootstrap-icons-1.11.2/bootstrap-icons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/common/vendor/bootstrap-icons-1.11.2/bootstrap-icons.min.css -------------------------------------------------------------------------------- /common/vendor/bootstrap-icons-1.11.2/fonts/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/common/vendor/bootstrap-icons-1.11.2/fonts/bootstrap-icons.woff -------------------------------------------------------------------------------- /common/vendor/bootstrap-icons-1.11.2/fonts/bootstrap-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/common/vendor/bootstrap-icons-1.11.2/fonts/bootstrap-icons.woff2 -------------------------------------------------------------------------------- /index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/index.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/index.js -------------------------------------------------------------------------------- /view/all-apps/all-apps.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/view/all-apps/all-apps.css -------------------------------------------------------------------------------- /view/all-apps/all-apps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/view/all-apps/all-apps.js -------------------------------------------------------------------------------- /view/all-apps/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/view/all-apps/index.html -------------------------------------------------------------------------------- /view/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/view/app/app.css -------------------------------------------------------------------------------- /view/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/view/app/app.js -------------------------------------------------------------------------------- /view/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/view/app/index.html -------------------------------------------------------------------------------- /view/app/version-history/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/view/app/version-history/index.html -------------------------------------------------------------------------------- /view/app/version-history/version-history.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/view/app/version-history/version-history.css -------------------------------------------------------------------------------- /view/app/version-history/version-history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/view/app/version-history/version-history.js -------------------------------------------------------------------------------- /view/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/view/index.html -------------------------------------------------------------------------------- /view/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/view/news/index.html -------------------------------------------------------------------------------- /view/news/news.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/view/news/news.css -------------------------------------------------------------------------------- /view/news/news.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/view/news/news.js -------------------------------------------------------------------------------- /view/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealFoxster/altsource-viewer/HEAD/view/view.js --------------------------------------------------------------------------------