├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── package-lock.json ├── package.json └── src ├── .vuepress ├── components │ ├── AuroraChangelogs.vue │ ├── ContactsPage.vue │ ├── DonationPage.vue │ ├── DownloadButtons.vue │ ├── DownloadPage.vue │ ├── ReleaseDate.vue │ ├── ServerTable.vue │ └── UpiMobileButton.vue ├── config.js ├── config │ ├── navBar.js │ ├── navBarDE.js │ ├── plugins.js │ ├── sideBar.js │ └── sideBarDE.js ├── constants.js ├── enhanceApp.js ├── public │ ├── CNAME │ ├── assets │ │ ├── Disqu3mirroir.webp │ │ ├── aab_format-2x.webp │ │ ├── apk_splits_tree-2x.webp │ │ ├── auroraoss_banner1200x680.png │ │ ├── auroraoss_update_banner1200x680.png │ │ ├── austin.webp │ │ ├── bitcoinbutton.webp │ │ ├── btcashbutton.webp │ │ ├── cylance.webp │ │ ├── etherumbutton.webp │ │ ├── fdroidrepo.webp │ │ ├── iacobionut.webp │ │ ├── icon_danger.svg │ │ ├── icon_tip.svg │ │ ├── icon_warning.svg │ │ ├── liberapaybutton.webp │ │ ├── matt.webp │ │ ├── paypalbutton.webp │ │ ├── radek.webp │ │ ├── rajeev.webp │ │ ├── screenshots_store.webp │ │ ├── shanetheawesome.webp │ │ ├── snoopalex.webp │ │ ├── storebanner1200x680.png │ │ ├── sunny.webp │ │ ├── tg-auroradroid-qr.webp │ │ ├── tg-auroraofficial-qr.webp │ │ ├── tg-auroraot-qr.webp │ │ ├── tg-aurorasupport-qr.webp │ │ ├── undraw_android.png │ │ ├── undraw_authentication.png │ │ ├── undraw_authentication.svg │ │ ├── undraw_questions.png │ │ ├── undraw_roadmap.png │ │ ├── undraw_roadmap.svg │ │ ├── undraw_server_status.png │ │ ├── undraw_server_status.svg │ │ ├── undraw_troubleshooting.png │ │ ├── undraw_troubleshooting.svg │ │ ├── upibutton.webp │ │ ├── upiqrcode.webp │ │ ├── whyorean.webp │ │ ├── wiki_banner1200x680.png │ │ └── ziemowit.webp │ ├── favicon.ico │ ├── icons │ │ ├── app_warden.webp │ │ ├── apple-touch-icon-152x152.webp │ │ ├── aurora_droid.webp │ │ ├── aurora_store.webp │ │ ├── aurora_wallpapers.webp │ │ ├── aurora_wiki.webp │ │ ├── auroralogo.svg │ │ ├── auroralogo.webp │ │ ├── disclaimer_icon.png │ │ ├── maskable_icon_x128.png │ │ ├── maskable_icon_x192.png │ │ ├── maskable_icon_x384.png │ │ ├── maskable_icon_x48.png │ │ ├── maskable_icon_x512.png │ │ ├── maskable_icon_x72.png │ │ ├── maskable_icon_x96.png │ │ ├── msapplication-icon-144x144.webp │ │ ├── policy_icon.png │ │ ├── safari-pinned-tab.svg │ │ ├── tabler-icon-book.png │ │ ├── tabler-icon-bookmark.png │ │ ├── tabler-icon-download.png │ │ ├── tabler-icon-info-circle.png │ │ ├── tabler-icon-messages.png │ │ ├── tabler-icon-user.png │ │ ├── tabler-icon-users.png │ │ └── tos_icon.png │ └── manifest.json ├── store │ └── index.js ├── styles │ ├── animate.css │ ├── index.styl │ ├── palette.styl │ └── sweetalert2.css └── theme │ ├── components │ ├── AlgoliaSearchBox.vue │ ├── DarkThemeSwitcher.vue │ ├── Home.vue │ ├── Navbar.vue │ └── Sidebar.vue │ └── index.js ├── contact └── README.md ├── contribution ├── BCH.md ├── BTC.md ├── ETH.md ├── README.md └── UPI.md ├── de ├── contact │ └── README.md ├── contribution │ ├── BCH.md │ ├── BTC.md │ ├── ETH.md │ ├── README.md │ └── UPI.md ├── download │ ├── AppWarden.md │ ├── AuroraDroid.md │ ├── AuroraStore │ │ ├── README.md │ │ ├── disclaimer.md │ │ ├── policy.md │ │ └── terms-of-service.md │ ├── AuroraWallpapers.md │ └── README.md ├── faq │ ├── README.md │ └── site-policy.md ├── guides │ ├── anonymous-logins.md │ ├── roadmap.md │ ├── server-status.md │ ├── system-app.md │ ├── troubleshooting.md │ └── wiki-home.md └── index.md ├── download ├── AppWarden.md ├── AuroraDroid.md ├── AuroraStore │ ├── README.md │ ├── disclaimer.md │ ├── policy.md │ └── terms-of-service.md ├── AuroraWallpapers.md └── README.md ├── faq ├── README.md └── site-policy.md ├── guides ├── android-apps.md ├── anonymous-logins.md ├── roadmap.md ├── server-status.md ├── system-app.md ├── troubleshooting.md └── wiki-home.md └── index.md /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig is awesome: https://EditorConfig.org 2 | 3 | # top-most EditorConfig file 4 | root = true 5 | 6 | [*] 7 | indent_style = space 8 | indent_size = 2 9 | end_of_line = lf 10 | charset = utf-8 11 | trim_trailing_whitespace = true 12 | insert_final_newline = true 13 | 14 | [*.vue,styl] 15 | indent_style = tab 16 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | # Markdown content 2 | contact 3 | contribution 4 | download 5 | faq 6 | guides 7 | index.md 8 | 9 | # Vuepress 10 | dist 11 | !.vuepress 12 | ServerTable.vue 13 | 14 | # Language folders 15 | de -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | env: { 3 | browser: true, 4 | es6: true, 5 | }, 6 | 7 | extends: [ 8 | "vuepress", 9 | "prettier" 10 | ], 11 | 12 | globals: { 13 | Atomics: "readonly", 14 | SharedArrayBuffer: "readonly", 15 | }, 16 | 17 | parserOptions: { 18 | ecmaVersion: 2018, 19 | parser: "babel-eslint", 20 | sourceType: "module", 21 | }, 22 | 23 | rules: { 24 | "prettier/prettier": [ 25 | "error", 26 | { 27 | endOfLine: "auto", 28 | }, 29 | ], 30 | "import/no-unresolved": [ 31 | 2, 32 | { 33 | ignore: [ 34 | "^@", 35 | ], 36 | }, 37 | ], 38 | }, 39 | 40 | plugins: [ 41 | "vue", 42 | "prettier", 43 | "markdown", 44 | ], 45 | } 46 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # VSCode stuff 2 | .vscode 3 | 4 | # Node 5 | node_modules 6 | 7 | # Planned stuff for .vuepress/components 8 | misc 9 | 10 | # Local stuff for build testing 11 | dist -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | pids 2 | logs 3 | node_modules 4 | npm-debug.log 5 | coverage/ 6 | run 7 | dist 8 | .DS_Store 9 | .nyc_output 10 | .basement 11 | config.local.js 12 | basement_dist 13 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "tabWidth": 4, 3 | "useTabs": true, 4 | "printWidth": 120, 5 | "trailingComma": "es5", 6 | "bracketSpacing": true, 7 | "htmlWhitespaceSensitivity": "ignore", 8 | "endOfLine": "auto" 9 | } 10 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Code of Conduct 2 | 3 | We base our day-to-day interactions and decision-making on AuroraOSS guidelines. Trust, respect, collaboration and transparency are core values we believe should live and breathe within our projects. Our community welcomes participants from around the world with different experiences, unique perspectives, and great ideas to share. 4 | 5 | ## Our Pledge 6 | 7 | In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. 8 | 9 | ## Our Standards 10 | 11 | Examples of behaviour that contributes to creating a positive environment include: 12 | 13 | - Using welcoming and inclusive language 14 | - Being respectful of differing viewpoints and experiences 15 | - Gracefully accepting constructive criticism 16 | - Attempting collaboration before conflict 17 | - Focusing on what is best for the community 18 | - Showing empathy towards other community members 19 | 20 | Examples of unacceptable behaviour by participants include: 21 | 22 | - Violence, threats of violence, or inciting others to commit self-harm 23 | - The use of sexualized language or imagery and unwelcome sexual attention or advances 24 | - Trolling, intentionally spreading misinformation, insulting/derogatory comments, and personal or political attacks 25 | - Public or private harassment 26 | - Publishing others' private information, such as a physical or electronic address, without explicit permission 27 | - Abuse of the reporting process to intentionally harass or exclude others 28 | - Advocating for, or encouraging, any of the above behaviour 29 | - Other conduct which could reasonably be considered inappropriate in a professional setting 30 | 31 | ## Our Responsibilities 32 | 33 | Project maintainers are responsible for clarifying the standards of acceptable behaviour and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behaviour. 34 | 35 | Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. 36 | 37 | ## Scope 38 | 39 | This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. 40 | 41 | ## Enforcement 42 | 43 | Instances of abusive, harassing, or otherwise unacceptable behaviour may be reported by contacting us through [Email][email] or [Telegram][telegram]. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. 44 | 45 | Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. 46 | 47 | If you are unsure whether an incident is a violation, or whether the space where the incident took place is covered by our Code of Conduct, **we encourage you to still report it**. We would prefer to have a few extra reports where we decide to take no action, than to leave an incident go unnoticed and unresolved that may result in an individual or group to feel like they can no longer participate in the community. Reports deemed as not a violation will also allow us to improve our Code of Conduct and processes surrounding it. If you witness a dangerous situation or someone in distress, we encourage you to report even if you are only an observer. 48 | 49 | ## Attribution 50 | 51 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html 52 | 53 | [homepage]: https://contributor-covenant.org 54 | [email]: mailto:auroraoss.dev@gmail.com 55 | [telegram]: https://t.me/auroraoss -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021-present Austin Hornhead a.k.a austinhornhead_12/marchingon12 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | /* eslint-disable vue/comment-directive */ 2 |
3 |

4 | 5 |

6 |

AuroraOSS Website

7 |

8 | GitHub 9 | GitHub code size in bytes 10 | GitHub last commit 11 | Website 12 | Project Status: Active – The project has reached a stable, usable state and is being actively developed. 13 | Actively Maintained 14 |

15 | 16 |
17 | 18 | ## About 19 | 20 | This is the main repository for the website hosted at auroraoss.com. 21 | 22 | ## Contributing 23 | 24 | Before doing a PR or commit, read the following documents to make sure your PR or commit is valid: 25 | 26 | - [CODE_OF_CONDUCT](CODE_OF_CONDUCT.md) 27 | - [CONTRIBUTING](CONTRIBUTING.md) 28 | 29 | ### Translations 30 | 31 | The way translated pages work here is (will be) by using submodules in git. This allows a repository to exist within a repository, meaning we can have many content repositories in different languages without having to edit most of the main repo itself. Please read [this](https://gist.github.com/gitaarik/8735255) very well explained git gist on Git Submodules. 32 | 33 | Every translation repo is assigned to a team, consisting of members who maintain the repo and check the content regularly. All changes must correspond with this parent repo. 34 | 35 | - German: 36 | - French: 37 | - Russian: 38 | - Chinese: 39 | - Spanish: 40 | - Italian: 41 | - Portuguese: 42 | 43 | ## Development 44 | 45 | Starting development server: 46 | ```bash 47 | # Using npm 48 | npm run dev 49 | # Using vuepress 50 | vuepress dev src 51 | ``` 52 | 53 | Building static files: 54 | ```bash 55 | # Using npm 56 | npm run build 57 | # Using vuepress 58 | vuepress build src 59 | ``` 60 | 61 | 62 | ## [License](LICENSE.md) 63 | 64 |
View license 65 |

66 | 67 | MIT License 68 | 69 | Copyright (c) 2021-present Austin Hornhead a.k.a austinhornhead_12/marchingon12 70 | 71 | Permission is hereby granted, free of charge, to any person obtaining a copy 72 | of this software and associated documentation files (the "Software"), to deal 73 | in the Software without restriction, including without limitation the rights 74 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 75 | copies of the Software, and to permit persons to whom the Software is 76 | furnished to do so, subject to the following conditions: 77 | 78 | The above copyright notice and this permission notice shall be included in all 79 | copies or substantial portions of the Software. 80 | 81 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 82 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 83 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 84 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 85 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 86 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 87 | SOFTWARE. 88 |

89 |
90 | 91 | 92 | ## Browser compatibility 93 | 94 | ### Chrome/Chromium-based Browsers & Firefox Desktop 95 | 96 | You should have no problem with theming or CSS breaking. 97 | 98 | ### Firefox Mobile (Fenix) 99 | 100 | You may experience JS breaking or random reloads while scrolling through the page. 101 | 102 | The official Firefox has tons of fixes pending and many things still don't work with the mobile version. If you wish to remain using Firefox Mobile, use [Mull](https://divestos.org/fdroid/official/us.spotco.fennec_dos) by DivestOS, which you can download from their [F-Droid repository](https://divestos.org/fdroid/official/?fingerprint=E4BE8D6ABFA4D9D4FEEF03CDDA7FF62A73FD64B75566F6DD4E5E577550BE8467): 103 | - Link: https://divestos.org/fdroid/official/ 104 | - Fingerprint: E4BE8D6ABFA4D9D4FEEF03CDDA7FF62A73FD64B75566F6DD4E5E577550BE8467 105 | 106 | Their fork has most of the fixes that make it stable and to use. Check out their source code [here](https://gitlab.com/divested-mobile/mull-fenix). 107 | 108 | With Mull you won't experience any problems. 109 | 110 | ## Credits 111 | 112 | Kudos to the tachiyomiorg/website team for their help. 113 | Huge thanks to [@robsonsobral](https://github.com/robsonsobral) for helping our with theming! 114 | 115 | 116 | 117 | 118 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "aurora-website", 3 | "version": "1.0.0", 4 | "description": "The official AuroraOSS website.", 5 | "main": "index.js", 6 | "authors": { 7 | "name": "Austin Hornhead", 8 | "email": "augustthegreat.cool@gmail.com" 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "git+https://github.com/aurora-website/website_v1.git" 13 | }, 14 | "scripts": { 15 | "dev": "vuepress dev src", 16 | "build": "vuepress build src", 17 | "format": "npx prettier -w src", 18 | "lint": "eslint --fix src/.vuepress/**/*.{js,vue}" 19 | }, 20 | "license": "MIT", 21 | "private": true, 22 | "bugs": { 23 | "url": "https://github.com/aurora-website/website_v1/issues" 24 | }, 25 | "homepage": "https://github.com/aurora-website/website_v1#readme", 26 | "devDependencies": { 27 | "@vuepress/plugin-active-header-links": "^1.8.2", 28 | "@vuepress/plugin-pwa": "^1.8.2", 29 | "babel-eslint": "^10.1.0", 30 | "eslint": "^7.21.0", 31 | "eslint-config-vuepress": "^3.2.0", 32 | "eslint-plugin-markdown": "^2.0.0", 33 | "eslint-plugin-vue": "^7.8.0", 34 | "vuepress": "^1.8.2", 35 | "vuepress-plugin-clean-urls": "^1.1.2", 36 | "vuepress-plugin-container": "^2.1.5", 37 | "vuepress-plugin-element-ui": "^1.1.0", 38 | "vuepress-plugin-robots": "^1.0.1", 39 | "vuepress-plugin-zooming": "^1.1.8" 40 | }, 41 | "dependencies": { 42 | "@vuepress/plugin-back-to-top": "^1.8.2", 43 | "axios": "^0.21.1", 44 | "core-js": "^2.6.12", 45 | "element-ui": "^2.15.1", 46 | "marked": "^2.0.1", 47 | "prettier": "^2.2.1", 48 | "vue": "^2.6.12", 49 | "vue-good-table": "^2.21.3", 50 | "vue-moment": "^4.1.0", 51 | "vue-sweetalert2": "^4.2.1", 52 | "vue-tabler-icons": "^1.8.2", 53 | "vuepress-plugin-code-copy": "^1.0.6", 54 | "vuepress-plugin-sitemap": "^2.3.1", 55 | "vuex": "^3.6.2" 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /src/.vuepress/components/AuroraChangelogs.vue: -------------------------------------------------------------------------------- 1 | 61 | 62 | 134 | 135 | 144 | -------------------------------------------------------------------------------- /src/.vuepress/components/DonationPage.vue: -------------------------------------------------------------------------------- 1 | 13 | 14 | 22 | 23 | 28 | -------------------------------------------------------------------------------- /src/.vuepress/components/DownloadPage.vue: -------------------------------------------------------------------------------- 1 | 13 | 14 | 22 | 23 | 28 | -------------------------------------------------------------------------------- /src/.vuepress/components/ReleaseDate.vue: -------------------------------------------------------------------------------- 1 | 24 | 25 | 101 | 102 | 107 | -------------------------------------------------------------------------------- /src/.vuepress/components/ServerTable.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 58 | 59 | 63 | -------------------------------------------------------------------------------- /src/.vuepress/components/UpiMobileButton.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 22 | 23 | 47 | -------------------------------------------------------------------------------- /src/.vuepress/config.js: -------------------------------------------------------------------------------- 1 | const navBarConfig = require("./config/navBar"); 2 | const navBarDEConfig = require("./config/navBarDE"); 3 | const sideBarConfig = require("./config/sideBar"); 4 | const sideBarConfigDE = require("./config/sideBarDE"); 5 | const pluginsConfig = require("./config/plugins"); 6 | 7 | module.exports = { 8 | locales: { 9 | "/": { 10 | lang: "en-GB", // this will be set as the lang attribute on 11 | title: "AuroraOSS", 12 | description: 13 | "An organization that aims to build applications that are easy to use & beautiful to look at. Aurora Apps Open-Source Software. Inspired by you. Built for the community.", 14 | }, 15 | "/de/": { 16 | lang: "de", 17 | title: "AuroraOSS", 18 | description: 19 | "Eine Organization mit dem Ziel Apps zu erstellen die einfach zu benuzten sind und schön aussehen. Aurora Apps Open-Source-Software. Von euch inspiriert. Für die Community gebaut.", 20 | }, 21 | }, 22 | 23 | // Extra tags to be injected to the page HTML `` 24 | head: [ 25 | // required headers 26 | ["link", { rel: "icon", href: "/favicon.ico" }], 27 | ["meta", { name: "viewport", content: "width=device-width, initial-scale=1.0" }], 28 | // important headers for metadata 29 | ["meta", { property: "og:site_name", content: "AuroraOSS" }], 30 | // custom headers for PWA 31 | ["link", { rel: "manifest", href: "/manifest.json" }], 32 | ["meta", { name: "theme-color", content: "#b071e3" }], 33 | ["meta", { name: "mobile-web-app-capable", content : "yes"}], 34 | ["meta", { name: "apple-mobile-web-app-capable", content: "yes" }], 35 | ["meta", { name: "apple-mobile-web-app-status-bar-style", content: "black" }], 36 | ["link", { rel: "apple-touch-icon", href: "/icons/apple-touch-icon-152x152.webp" }], 37 | ["link", { rel: "mask-icon", href: "/icons/safari-pinned-tab.svg", color: "#3eaf7c" }], 38 | ["meta", { name: "msapplication-TileImage", content: "/icons/msapplication-icon-144x144.webp" }], 39 | ["meta", { name: "msapplication-TileColor", content: "#000000" }], 40 | ], 41 | 42 | /** 43 | * Theme configuration, here is the default theme configuration for VuePress. 44 | * 45 | * ref:https://v1.vuepress.vuejs.org/theme/default-theme-config.html 46 | */ 47 | themeConfig: { 48 | logo: "/icons/auroralogo.webp", 49 | // repo: "https://gitlab.com/marchingon12/AuroraOSS", 50 | // repo: "https://github.com/marchingon12/AuroraOSS", 51 | editLinks: false, 52 | docsRepo: "aurora-website/website_v1", 53 | docsDir: "src", 54 | docsBranch: "source", 55 | editLinks: true, 56 | editLinkText: "Help us improve this page", 57 | lastUpdated: "Last updated", 58 | smoothScroll: true, 59 | search: true, 60 | searchPlaceholder: "Search...", 61 | locales: { 62 | "/": { 63 | // text for language dropdown 64 | selectText: "Languages", 65 | // label for this language dropdown 66 | label: "English", 67 | // Aria Label for locale in dropdown 68 | ariaLabel: "Languages", 69 | // text for the edit-on-github link 70 | editLinkText: "Edit this page on GitHub", 71 | nav: navBarConfig, 72 | sidebar: { 73 | "/guides/": sideBarConfig.guides, 74 | "/contact/": sideBarConfig.contact, 75 | "/faq/": sideBarConfig.faq, 76 | "/contribution/": sideBarConfig.contribution, 77 | "/download/": sideBarConfig.download, 78 | }, 79 | }, 80 | "/de/": { 81 | selectText: "Sprachen", 82 | label: "Deutsch", 83 | ariaLabel: "Language Menu", 84 | editLinkText: "Seite auf GitHub bearbeiten", 85 | nav: navBarDEConfig, 86 | sidebar: { 87 | "/de/guides/": sideBarConfigDE.guides, 88 | "/de/contact/": sideBarConfigDE.contact, 89 | "/de/faq/": sideBarConfigDE.faq, 90 | "/de/contribution/": sideBarConfigDE.contribution, 91 | "/de/download/": sideBarConfigDE.download, 92 | }, 93 | }, 94 | }, 95 | }, 96 | plugins: pluginsConfig, 97 | extraWatchFiles: [ 98 | ".vuepress/config/plugins.js", 99 | ".vuepress/config/navBar.js", 100 | ".vuepress/config/navBarDE.js", 101 | ".vuepress/config/sideBar.js", 102 | ".vuepress/config/sideBarDE.js", 103 | ], 104 | markdown: { 105 | lineNumbers: true 106 | } 107 | }; 108 | -------------------------------------------------------------------------------- /src/.vuepress/config/navBar.js: -------------------------------------------------------------------------------- 1 | module.exports = [ 2 | { text: "Home", link: "/" }, 3 | { text: "Guides", link: "/guides/wiki-home" }, 4 | { text: "Download", link: "/download/" }, 5 | { text: "Contact", link: "/contact/" }, 6 | ]; 7 | -------------------------------------------------------------------------------- /src/.vuepress/config/navBarDE.js: -------------------------------------------------------------------------------- 1 | module.exports = [ 2 | { text: "Home", link: "/de/" }, 3 | { text: "Benutzerhandbuch", link: "/de/guides/wiki-home" }, 4 | { text: "Download", link: "/de/download/" }, 5 | { text: "Kontakt", link: "/de/contact/" }, 6 | ]; 7 | -------------------------------------------------------------------------------- /src/.vuepress/config/plugins.js: -------------------------------------------------------------------------------- 1 | module.exports = [ 2 | ["@vuepress/plugin-back-to-top"], 3 | ["vuepress-plugin-element-ui"], 4 | [ 5 | "@vuepress/active-header-links", 6 | { 7 | sidebarLinkSelector: ".sidebar-link", 8 | headerAnchorSelector: ".header-anchor", 9 | }, 10 | ], 11 | [ 12 | "vuepress-plugin-sitemap", 13 | { 14 | hostname: "https://auroraoss.com", 15 | dateFormatter: val => { 16 | return new Date().toISOString() 17 | }, 18 | }, 19 | ], 20 | [ 21 | "vuepress-plugin-robots", 22 | { 23 | host: "https://auroraoss.com", 24 | allowAll: true, 25 | sitemap: "/sitemap.xml", 26 | }, 27 | ], 28 | [ 29 | "@vuepress/pwa", 30 | { 31 | serviceWorker: true, 32 | updatePopup: true, 33 | }, 34 | ], 35 | [ 36 | "vuepress-plugin-clean-urls", 37 | { 38 | normalSuffix: "/", 39 | }, 40 | ], 41 | [ 42 | "vuepress-plugin-zooming", 43 | { 44 | selector: ".theme-default-content img.zoomable", 45 | delay: 1000, 46 | options: { 47 | bgColor: "black", 48 | bgOpacity: "0.8", 49 | }, 50 | }, 51 | ], 52 | [ 53 | "vuepress-plugin-container", 54 | { 55 | type: "c-tip", 56 | before: (info) => `

${info}

`, 57 | after: "
", 58 | defaultTitle: "", 59 | }, 60 | ], 61 | [ 62 | "vuepress-plugin-container", 63 | { 64 | type: "c-warning", 65 | before: (info) => `

${info}

`, 66 | after: "
", 67 | defaultTitle: "", 68 | }, 69 | ], 70 | [ 71 | "vuepress-plugin-container", 72 | { 73 | type: "c-danger", 74 | before: (info) => `

${info}

`, 75 | after: "
", 76 | defaultTitle: "", 77 | }, 78 | ], 79 | [ 80 | "vuepress-plugin-container", 81 | { 82 | type: "expander", 83 | before: (info) => `
${info}`, 84 | after: "
", 85 | }, 86 | ], 87 | [ 88 | "vuepress-plugin-container", 89 | { 90 | type: "guide", 91 | before: (info) => `

${info}

`, 92 | after: "
", 93 | }, 94 | ], 95 | [ 96 | "vuepress-plugin-container", 97 | { 98 | type: "videolink", 99 | before: "", 101 | }, 102 | ], 103 | [ 104 | "vuepress-plugin-container", 105 | { 106 | type: "guide-empty", 107 | before: "
", 108 | after: "
", 109 | }, 110 | ], 111 | [ 112 | "vuepress-plugin-container", 113 | { 114 | type: "note", 115 | before: "

", 116 | after: "

", 117 | }, 118 | ], 119 | [ 120 | "vuepress-plugin-code-copy", 121 | { 122 | color: "#696969", 123 | backgroundColor: "#696969", 124 | staticIcon: true, 125 | }, 126 | ], 127 | ]; 128 | -------------------------------------------------------------------------------- /src/.vuepress/config/sideBar.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | download: [ 3 | "/", 4 | { 5 | title: "Downloads", 6 | path: "/download/", 7 | }, 8 | { 9 | title: "Frequently Asked Questions", 10 | path: "/faq/", 11 | }, 12 | { 13 | title: "Guide", 14 | path: "/guides/wiki-home", 15 | }, 16 | { 17 | title: "Contribution", 18 | path: "/contribution/", 19 | }, 20 | { 21 | title: "Contact", 22 | path: "/contact/", 23 | }, 24 | ], 25 | faq: [ 26 | "/", 27 | { 28 | title: "Downloads", 29 | path: "/download/", 30 | }, 31 | { 32 | title: "Frequently Asked Questions", 33 | path: "/faq/", 34 | }, 35 | { 36 | title: "Guide", 37 | path: "/guides/wiki-home", 38 | }, 39 | { 40 | title: "Contribution", 41 | path: "/contribution/", 42 | }, 43 | { 44 | title: "Contact", 45 | path: "/contact/", 46 | }, 47 | ], 48 | guides: [ 49 | "/", 50 | { 51 | title: "Downloads", 52 | path: "/download/", 53 | }, 54 | { 55 | title: "Frequently Asked Questions", 56 | path: "/faq/", 57 | }, 58 | { 59 | title: "Guide", 60 | collapsable: false, 61 | children: [ 62 | "/guides/wiki-home", 63 | "/guides/troubleshooting", 64 | "/guides/anonymous-logins", 65 | "/guides/server-status", 66 | "/guides/system-app", 67 | "/guides/roadmap", 68 | ], 69 | sidebarDepth: 2, 70 | }, 71 | { 72 | title: "Contribution", 73 | path: "/contribution/", 74 | }, 75 | { 76 | title: "Contact", 77 | path: "/contact/", 78 | }, 79 | ], 80 | contribution: [ 81 | "/", 82 | { 83 | title: "Downloads", 84 | path: "/download/", 85 | }, 86 | { 87 | title: "Frequently Asked Questions", 88 | path: "/faq/", 89 | }, 90 | { 91 | title: "Guide", 92 | path: "/guides/wiki-home", 93 | }, 94 | { 95 | title: "Contribution", 96 | path: "/contribution/", 97 | }, 98 | { 99 | title: "Contact", 100 | path: "/contact/", 101 | }, 102 | ], 103 | contact: [ 104 | "/", 105 | { 106 | title: "Downloads", 107 | path: "/download/", 108 | }, 109 | { 110 | title: "Frequently Asked Questions", 111 | path: "/faq/", 112 | }, 113 | { 114 | title: "Guide", 115 | path: "/guides/wiki-home", 116 | }, 117 | { 118 | title: "Contribution", 119 | path: "/contribution/", 120 | }, 121 | { 122 | title: "Contact", 123 | path: "/contact/", 124 | }, 125 | ], 126 | }; 127 | -------------------------------------------------------------------------------- /src/.vuepress/config/sideBarDE.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | download: [ 3 | "/de/", 4 | { 5 | title: "Downloads", 6 | path: "/de/download/", 7 | }, 8 | { 9 | title: "Frequently Asked Questions", 10 | path: "/de/faq/", 11 | }, 12 | { 13 | title: "Benutzerhandbuch", 14 | path: "/de/guides/wiki-home", 15 | }, 16 | { 17 | title: "Teilnehmen", 18 | path: "/de/contribution/", 19 | }, 20 | { 21 | title: "Kontakt", 22 | path: "/de/contact/", 23 | }, 24 | ], 25 | faq: [ 26 | "/de/", 27 | { 28 | title: "Downloads", 29 | path: "/de/download/", 30 | }, 31 | { 32 | title: "Frequently Asked Questions", 33 | path: "/de/faq/", 34 | }, 35 | { 36 | title: "Benutzerhandbuch", 37 | path: "/de/guides/wiki-home", 38 | }, 39 | { 40 | title: "Teilnehmen", 41 | path: "/de/contribution/", 42 | }, 43 | { 44 | title: "Kontakt", 45 | path: "/de/contact/", 46 | }, 47 | ], 48 | guides: [ 49 | "/de/", 50 | { 51 | title: "Downloads", 52 | path: "/de/download/", 53 | }, 54 | { 55 | title: "Frequently Asked Questions", 56 | path: "/de/faq/", 57 | }, 58 | { 59 | title: "Benutzerhandbuch", 60 | collapsable: false, 61 | children: [ 62 | "/de/guides/wiki-home", 63 | "/de/guides/troubleshooting", 64 | "/de/guides/anonymous-logins", 65 | "/de/guides/server-status", 66 | "/de/guides/system-app", 67 | "/de/guides/roadmap", 68 | ], 69 | sidebarDepth: 2, 70 | }, 71 | { 72 | title: "Teilnehmen", 73 | path: "/de/contribution/", 74 | }, 75 | { 76 | title: "Kontakt", 77 | path: "/de/contact/", 78 | }, 79 | ], 80 | contribution: [ 81 | "/de/", 82 | { 83 | title: "Downloads", 84 | path: "/de/download/", 85 | }, 86 | { 87 | title: "Frequently Asked Questions", 88 | path: "/de/faq/", 89 | }, 90 | { 91 | title: "Benutzerhandbuch", 92 | path: "/de/guides/wiki-home", 93 | }, 94 | { 95 | title: "Teilnehmen", 96 | path: "/de/contribution/", 97 | }, 98 | { 99 | title: "Kontakt", 100 | path: "/de/contact/", 101 | }, 102 | ], 103 | contact: [ 104 | "/de/", 105 | { 106 | title: "Downloads", 107 | path: "/de/download/", 108 | }, 109 | { 110 | title: "Frequently Asked Questions", 111 | path: "/de/faq/", 112 | }, 113 | { 114 | title: "Benutzerhandbuch", 115 | path: "/de/guides/wiki-home", 116 | }, 117 | { 118 | title: "Teilnehmen", 119 | path: "/de/contribution/", 120 | }, 121 | { 122 | title: "Kontakt", 123 | path: "/de/contact/", 124 | }, 125 | ], 126 | }; 127 | -------------------------------------------------------------------------------- /src/.vuepress/constants.js: -------------------------------------------------------------------------------- 1 | // Github 2 | // export const GITHUB_STABLE_API_STORE = "https://api.github.com/repos/marchingon12/AuroraStore/releases/latest"; 3 | // export const GITHUB_STABLE_RELEASE_STORE = "https://github.com/marchingon12/AuroraStore/releases/latest"; 4 | // export const GITHUB_STABLE_API_DROID = "https://api.github.com/repos/marchingon12/AuroraDroid/releases/latest"; 5 | // export const GITHUB_STABLE_RELEASE_DROID = "https://github.com/marchingon12/AuroraDroid/releases/latest"; 6 | 7 | // Server 8 | // RELEASES 9 | export const SERVER_STABLE_RELEASE_STORE = "https://api.auroraoss.com/AuroraStore/Stable/Latest/"; 10 | export const SERVER_NIGHTLY_RELEASE_STORE = "https://api.auroraoss.com/AuroraStore/Nightly/Latest/"; 11 | export const SERVER_STABLE_RELEASE_DROID = "https://api.auroraoss.com/AuroraDroid/Stable/Latest/"; 12 | export const SERVER_NIGHTLY_RELEASE_DROID = "https://api.auroraoss.com/AuroraDroid/Nightly/Latest/"; 13 | export const SERVER_STABLE_RELEASE_WARDEN = "https://api.auroraoss.com/Warden/Stable/Latest/"; 14 | export const SERVER_STABLE_RELEASE_WALLS = "https://api.auroraoss.com/Wallpapers/Latest/"; 15 | // APIS 16 | // export const SERVER_STABLE_API_STORE = "https://api.auroraoss.com/AuroraStore/Stable/"; 17 | // export const SERVER_NIGHTLY_API_STORE = "https://api.auroraoss.com/AuroraStore/Nightly/"; 18 | // export const SERVER_STABLE_API_DROID = "https://api.auroraoss.com/AuroraDroid/Stable/"; 19 | // export const SERVER_NIGHTLY_API_DROID = "https://api.auroraoss.com/AuroraDroid/Nightly/"; 20 | // export const SERVER_STABLE_API_WARDEN = "https://api.auroraoss.com/Warden/Stable/"; 21 | // export const SERVER_STABLE_API_WALLS = "https://api.auroraoss.com/Wallpapers/"; 22 | 23 | // Gitlab 24 | // export const GITLAB_STABLE_STORE_RELEASE = "https://gitlab.com/api/v4/projects/6922885/releases"; 25 | -------------------------------------------------------------------------------- /src/.vuepress/enhanceApp.js: -------------------------------------------------------------------------------- 1 | import "./styles/animate.css"; 2 | import "./styles/sweetalert2.css"; 3 | 4 | import VueSweetalert2 from "vue-sweetalert2"; 5 | import VueMoment from "vue-moment"; 6 | import Element from "element-ui"; 7 | import VueTablerIcons from "vue-tabler-icons"; 8 | import VueGoodTablePlugin from "vue-good-table"; 9 | 10 | import store from "./store"; 11 | 12 | export default ({ 13 | Vue, // the version of Vue being used in the VuePress app 14 | options, // the options for the root Vue instance 15 | router, // the router instance for the app 16 | siteData, // site metadata 17 | }) => { 18 | Vue.use(VueGoodTablePlugin); 19 | Vue.use(VueTablerIcons); 20 | Vue.use(VueSweetalert2); 21 | Vue.use(Element); 22 | Vue.use(VueMoment); 23 | Vue.mixin({ store }); 24 | // ...apply enhancements for the site. 25 | }; 26 | -------------------------------------------------------------------------------- /src/.vuepress/public/CNAME: -------------------------------------------------------------------------------- 1 | auroraoss.com -------------------------------------------------------------------------------- /src/.vuepress/public/assets/Disqu3mirroir.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/Disqu3mirroir.webp -------------------------------------------------------------------------------- /src/.vuepress/public/assets/aab_format-2x.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/aab_format-2x.webp -------------------------------------------------------------------------------- /src/.vuepress/public/assets/apk_splits_tree-2x.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/apk_splits_tree-2x.webp -------------------------------------------------------------------------------- /src/.vuepress/public/assets/auroraoss_banner1200x680.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/auroraoss_banner1200x680.png -------------------------------------------------------------------------------- /src/.vuepress/public/assets/auroraoss_update_banner1200x680.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/auroraoss_update_banner1200x680.png -------------------------------------------------------------------------------- /src/.vuepress/public/assets/austin.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/austin.webp -------------------------------------------------------------------------------- /src/.vuepress/public/assets/bitcoinbutton.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/bitcoinbutton.webp -------------------------------------------------------------------------------- /src/.vuepress/public/assets/btcashbutton.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/btcashbutton.webp -------------------------------------------------------------------------------- /src/.vuepress/public/assets/cylance.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/cylance.webp -------------------------------------------------------------------------------- /src/.vuepress/public/assets/etherumbutton.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/etherumbutton.webp -------------------------------------------------------------------------------- /src/.vuepress/public/assets/fdroidrepo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/fdroidrepo.webp -------------------------------------------------------------------------------- /src/.vuepress/public/assets/iacobionut.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/iacobionut.webp -------------------------------------------------------------------------------- /src/.vuepress/public/assets/icon_danger.svg: -------------------------------------------------------------------------------- 1 | 2 | icon-danger-shit-colour 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/.vuepress/public/assets/icon_tip.svg: -------------------------------------------------------------------------------- 1 | 2 | bulb-icon 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/.vuepress/public/assets/icon_warning.svg: -------------------------------------------------------------------------------- 1 | 2 | icon-danger-shit-colour 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/.vuepress/public/assets/liberapaybutton.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/liberapaybutton.webp -------------------------------------------------------------------------------- /src/.vuepress/public/assets/matt.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/matt.webp -------------------------------------------------------------------------------- /src/.vuepress/public/assets/paypalbutton.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/paypalbutton.webp -------------------------------------------------------------------------------- /src/.vuepress/public/assets/radek.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/radek.webp -------------------------------------------------------------------------------- /src/.vuepress/public/assets/rajeev.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/rajeev.webp -------------------------------------------------------------------------------- /src/.vuepress/public/assets/screenshots_store.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/screenshots_store.webp -------------------------------------------------------------------------------- /src/.vuepress/public/assets/shanetheawesome.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/shanetheawesome.webp -------------------------------------------------------------------------------- /src/.vuepress/public/assets/snoopalex.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/snoopalex.webp -------------------------------------------------------------------------------- /src/.vuepress/public/assets/storebanner1200x680.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/storebanner1200x680.png -------------------------------------------------------------------------------- /src/.vuepress/public/assets/sunny.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/sunny.webp -------------------------------------------------------------------------------- /src/.vuepress/public/assets/tg-auroradroid-qr.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/tg-auroradroid-qr.webp -------------------------------------------------------------------------------- /src/.vuepress/public/assets/tg-auroraofficial-qr.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/tg-auroraofficial-qr.webp -------------------------------------------------------------------------------- /src/.vuepress/public/assets/tg-auroraot-qr.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/tg-auroraot-qr.webp -------------------------------------------------------------------------------- /src/.vuepress/public/assets/tg-aurorasupport-qr.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/tg-aurorasupport-qr.webp -------------------------------------------------------------------------------- /src/.vuepress/public/assets/undraw_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/undraw_android.png -------------------------------------------------------------------------------- /src/.vuepress/public/assets/undraw_authentication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/undraw_authentication.png -------------------------------------------------------------------------------- /src/.vuepress/public/assets/undraw_questions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/undraw_questions.png -------------------------------------------------------------------------------- /src/.vuepress/public/assets/undraw_roadmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/undraw_roadmap.png -------------------------------------------------------------------------------- /src/.vuepress/public/assets/undraw_server_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/undraw_server_status.png -------------------------------------------------------------------------------- /src/.vuepress/public/assets/undraw_troubleshooting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/undraw_troubleshooting.png -------------------------------------------------------------------------------- /src/.vuepress/public/assets/undraw_troubleshooting.svg: -------------------------------------------------------------------------------- 1 | solution_mindset -------------------------------------------------------------------------------- /src/.vuepress/public/assets/upibutton.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/upibutton.webp -------------------------------------------------------------------------------- /src/.vuepress/public/assets/upiqrcode.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/upiqrcode.webp -------------------------------------------------------------------------------- /src/.vuepress/public/assets/whyorean.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/whyorean.webp -------------------------------------------------------------------------------- /src/.vuepress/public/assets/wiki_banner1200x680.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/wiki_banner1200x680.png -------------------------------------------------------------------------------- /src/.vuepress/public/assets/ziemowit.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/assets/ziemowit.webp -------------------------------------------------------------------------------- /src/.vuepress/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/favicon.ico -------------------------------------------------------------------------------- /src/.vuepress/public/icons/app_warden.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/icons/app_warden.webp -------------------------------------------------------------------------------- /src/.vuepress/public/icons/apple-touch-icon-152x152.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/icons/apple-touch-icon-152x152.webp -------------------------------------------------------------------------------- /src/.vuepress/public/icons/aurora_droid.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/icons/aurora_droid.webp -------------------------------------------------------------------------------- /src/.vuepress/public/icons/aurora_store.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/icons/aurora_store.webp -------------------------------------------------------------------------------- /src/.vuepress/public/icons/aurora_wallpapers.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/icons/aurora_wallpapers.webp -------------------------------------------------------------------------------- /src/.vuepress/public/icons/aurora_wiki.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/icons/aurora_wiki.webp -------------------------------------------------------------------------------- /src/.vuepress/public/icons/auroralogo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/icons/auroralogo.webp -------------------------------------------------------------------------------- /src/.vuepress/public/icons/disclaimer_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/icons/disclaimer_icon.png -------------------------------------------------------------------------------- /src/.vuepress/public/icons/maskable_icon_x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/icons/maskable_icon_x128.png -------------------------------------------------------------------------------- /src/.vuepress/public/icons/maskable_icon_x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/icons/maskable_icon_x192.png -------------------------------------------------------------------------------- /src/.vuepress/public/icons/maskable_icon_x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/icons/maskable_icon_x384.png -------------------------------------------------------------------------------- /src/.vuepress/public/icons/maskable_icon_x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/icons/maskable_icon_x48.png -------------------------------------------------------------------------------- /src/.vuepress/public/icons/maskable_icon_x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/icons/maskable_icon_x512.png -------------------------------------------------------------------------------- /src/.vuepress/public/icons/maskable_icon_x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/icons/maskable_icon_x72.png -------------------------------------------------------------------------------- /src/.vuepress/public/icons/maskable_icon_x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/icons/maskable_icon_x96.png -------------------------------------------------------------------------------- /src/.vuepress/public/icons/msapplication-icon-144x144.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/icons/msapplication-icon-144x144.webp -------------------------------------------------------------------------------- /src/.vuepress/public/icons/policy_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/icons/policy_icon.png -------------------------------------------------------------------------------- /src/.vuepress/public/icons/tabler-icon-book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/icons/tabler-icon-book.png -------------------------------------------------------------------------------- /src/.vuepress/public/icons/tabler-icon-bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/icons/tabler-icon-bookmark.png -------------------------------------------------------------------------------- /src/.vuepress/public/icons/tabler-icon-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/icons/tabler-icon-download.png -------------------------------------------------------------------------------- /src/.vuepress/public/icons/tabler-icon-info-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/icons/tabler-icon-info-circle.png -------------------------------------------------------------------------------- /src/.vuepress/public/icons/tabler-icon-messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/icons/tabler-icon-messages.png -------------------------------------------------------------------------------- /src/.vuepress/public/icons/tabler-icon-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/icons/tabler-icon-user.png -------------------------------------------------------------------------------- /src/.vuepress/public/icons/tabler-icon-users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/icons/tabler-icon-users.png -------------------------------------------------------------------------------- /src/.vuepress/public/icons/tos_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aurora-website/website_v1/2738292365f54ab36201d7478b0d60a2459ded06/src/.vuepress/public/icons/tos_icon.png -------------------------------------------------------------------------------- /src/.vuepress/public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "AuroraOSS: Aurora Open Source Software", 3 | "short_name": "AuroraOSS", 4 | "scope": "/", 5 | "start_url": "/?source=pwa", 6 | "display": "standalone", 7 | "theme_color": "#f4deff", 8 | "background_color": "#F7F7F7", 9 | "description": "An app for AuroraOSS software.", 10 | "shortcuts": [ 11 | { 12 | "name": "Download Apps", 13 | "short_name": "Download", 14 | "description": "Download the latest apps from AuroraOSS", 15 | "url": "/download/?source=pwa", 16 | "icons": [ 17 | { 18 | "src": "/icons/tabler-icon-download.png", 19 | "sizes": "192x192" 20 | } 21 | ] 22 | }, 23 | { 24 | "name": "Frequently Asked Questions", 25 | "short_name": "FAQs", 26 | "description": "View weather information for today", 27 | "url": "/faq/?source=pwa", 28 | "icons": [ 29 | { 30 | "src": "/icons/tabler-icon-messages.png", 31 | "sizes": "192x192" 32 | } 33 | ] 34 | }, 35 | { 36 | "name": "Contact Us", 37 | "short_name": "Contact", 38 | "description": "Contact information for AuroraOSS Team", 39 | "url": "/contact/?source=pwa", 40 | "icons": [ 41 | { 42 | "src": "/icons/tabler-icon-users.png", 43 | "sizes": "192x192" 44 | } 45 | ] 46 | } 47 | ], 48 | "icons": [ 49 | { 50 | "src": "icons/maskable_icon_x48.png", 51 | "sizes": "48x48", 52 | "type": "image/png" 53 | }, 54 | { 55 | "src": "icons/maskable_icon_x72.png", 56 | "sizes": "72x72", 57 | "type": "image/png" 58 | }, 59 | { 60 | "src": "icons/maskable_icon_x96.png", 61 | "sizes": "96x96", 62 | "type": "image/png" 63 | }, 64 | { 65 | "src": "icons/maskable_icon_x128.png", 66 | "sizes": "128x128", 67 | "type": "image/png" 68 | }, 69 | { 70 | "src": "icons/maskable_icon_x192.png", 71 | "sizes": "192x192", 72 | "type": "image/png", 73 | "purpose": "maskable" 74 | }, 75 | { 76 | "src": "icons/maskable_icon_x384.png", 77 | "sizes": "384x384", 78 | "type": "image/png" 79 | }, 80 | { 81 | "src": "icons/maskable_icon_x512.png", 82 | "sizes": "512x512", 83 | "type": "image/png" 84 | } 85 | ] 86 | } -------------------------------------------------------------------------------- /src/.vuepress/store/index.js: -------------------------------------------------------------------------------- 1 | import Vue from "vue"; 2 | import Vuex from "vuex"; 3 | import axios from "axios"; 4 | 5 | import { 6 | SERVER_STABLE_RELEASE_STORE, 7 | SERVER_NIGHTLY_RELEASE_STORE, 8 | SERVER_STABLE_RELEASE_DROID, 9 | SERVER_NIGHTLY_RELEASE_DROID, 10 | SERVER_STABLE_RELEASE_WARDEN, 11 | SERVER_STABLE_RELEASE_WALLS, 12 | } from "../constants"; 13 | 14 | const worker = (function () { 15 | const networkMap = new Map(); 16 | 17 | // Makes sure there is only one network call to API 18 | // Everyone else wait for promise 19 | function _getDataFromServer(name, url) { 20 | if (networkMap.has(name)) { 21 | return networkMap.get(name); 22 | } 23 | 24 | const call = axios 25 | .get(url) 26 | .then((value) => { 27 | networkMap.delete(name); 28 | return Promise.resolve(value); 29 | }) 30 | .catch((reason) => { 31 | networkMap.delete(name); 32 | return Promise.reject(reason); 33 | }); 34 | 35 | networkMap.set(name, call); 36 | 37 | return call; 38 | } 39 | 40 | const dataMap = new Map(); 41 | 42 | const now = new Date().getTime(); 43 | 44 | // Makes sure there is only one mutation 45 | // Everyone else wait for promise 46 | function _getData(store, name, type, url) { 47 | if (dataMap.has(name)) { 48 | return dataMap.get(name); 49 | } 50 | 51 | const promise = _getDataFromServer(name, url) 52 | .then(({ data }) => { 53 | const object = { 54 | updated: now, 55 | data, 56 | }; 57 | store.commit({ 58 | type, 59 | object, 60 | }); 61 | dataMap.delete(name); 62 | return Promise.resolve(); 63 | }) 64 | .catch((reason) => { 65 | const object = { 66 | updated: null, 67 | data: null, 68 | }; 69 | store.commit({ 70 | type, 71 | object, 72 | }); 73 | dataMap.delete(name); 74 | return Promise.reject(reason); 75 | }); 76 | 77 | dataMap.set(name, promise); 78 | 79 | return promise; 80 | } 81 | 82 | return { 83 | getStoreData(store, name) { 84 | return new Promise((resolve, reject) => { 85 | _getData(store, name, "setStoreReleaseData", SERVER_STABLE_RELEASE_STORE) 86 | .then(() => { 87 | resolve(store.state.astore); 88 | }) 89 | .catch((reason) => { 90 | reject(reason); 91 | }); 92 | }); 93 | }, 94 | getStoreDataNightly(store, name) { 95 | return new Promise((resolve, reject) => { 96 | _getData(store, name, "setStoreReleaseDataNightly", SERVER_NIGHTLY_RELEASE_STORE) 97 | .then(() => { 98 | resolve(store.state.astoreN); 99 | }) 100 | .catch((reason) => { 101 | reject(reason); 102 | }); 103 | }); 104 | }, 105 | getDroidData(store, name) { 106 | return new Promise((resolve, reject) => { 107 | _getData(store, name, "setDroidReleaseData", SERVER_STABLE_RELEASE_DROID) 108 | .then(() => { 109 | resolve(store.state.adroid); 110 | }) 111 | .catch((reason) => { 112 | reject(reason); 113 | }); 114 | }); 115 | }, 116 | getDroidDataNightly(store, name) { 117 | return new Promise((resolve, reject) => { 118 | _getData(store, name, "setDroidReleaseDataNightly", SERVER_NIGHTLY_RELEASE_DROID) 119 | .then(() => { 120 | resolve(store.state.adroidN); 121 | }) 122 | .catch((reason) => { 123 | reject(reason); 124 | }); 125 | }); 126 | }, 127 | getWardenData(store, name) { 128 | return new Promise((resolve, reject) => { 129 | _getData(store, name, "setWardenReleaseData", SERVER_STABLE_RELEASE_WARDEN) 130 | .then(() => { 131 | resolve(store.state.awarden); 132 | }) 133 | .catch((reason) => { 134 | reject(reason); 135 | }); 136 | }); 137 | }, 138 | getWallsData(store, name) { 139 | return new Promise((resolve, reject) => { 140 | _getData(store, name, "setWallsReleaseData", SERVER_STABLE_RELEASE_WALLS) 141 | .then(() => { 142 | resolve(store.state.awalls); 143 | }) 144 | .catch((reason) => { 145 | reject(reason); 146 | }); 147 | }); 148 | }, 149 | }; 150 | })(); 151 | 152 | Vue.use(Vuex); 153 | 154 | export default new Vuex.Store({ 155 | state: { 156 | astore: { 157 | updated: null, 158 | data: null, 159 | }, 160 | adroid: { 161 | updated: null, 162 | data: null, 163 | }, 164 | astoreN: { 165 | updated: null, 166 | data: null, 167 | }, 168 | adroidN: { 169 | updated: null, 170 | data: null, 171 | }, 172 | awarden: { 173 | updated: null, 174 | data: null, 175 | }, 176 | awalls: { 177 | updated: null, 178 | data: null, 179 | }, 180 | }, 181 | mutations: { 182 | setStoreReleaseData(state, { object }) { 183 | // eslint-disable-next-line no-param-reassign 184 | state.astore = object; 185 | }, 186 | setDroidReleaseData(state, { object }) { 187 | // eslint-disable-next-line no-param-reassign 188 | state.adroid = object; 189 | }, 190 | setStoreReleaseDataNightly(state, { object }) { 191 | // eslint-disable-next-line no-param-reassign 192 | state.astoreN = object; 193 | }, 194 | setDroidReleaseDataNightly(state, { object }) { 195 | // eslint-disable-next-line no-param-reassign 196 | state.adroidN = object; 197 | }, 198 | setWardenReleaseData(state, { object }) { 199 | // eslint-disable-next-line no-param-reassign 200 | state.awarden = object; 201 | }, 202 | setWallsReleaseData(state, { object }) { 203 | // eslint-disable-next-line no-param-reassign 204 | state.awalls = object; 205 | }, 206 | }, 207 | actions: { 208 | getStoreStableReleaseData() { 209 | const { updated } = this.state.astore; 210 | const now = new Date().getTime(); 211 | 212 | if (updated != null && now - updated <= 60 * 60 * 24 * 1000) { 213 | return Promise.resolve(this.state.astore); 214 | } 215 | 216 | return worker.getStoreData(this, "astore"); 217 | }, 218 | getDroidStableReleaseData() { 219 | const { updated } = this.state.adroid; 220 | const now = new Date().getTime(); 221 | 222 | if (updated != null && now - updated <= 60 * 60 * 24 * 1000) { 223 | return Promise.resolve(this.state.adroid); 224 | } 225 | 226 | return worker.getDroidData(this, "adroid"); 227 | }, 228 | getStoreNightlyReleaseData() { 229 | const { updated } = this.state.astoreN; 230 | const now = new Date().getTime(); 231 | 232 | if (updated != null && now - updated <= 60 * 60 * 24 * 1000) { 233 | return Promise.resolve(this.state.astoreN); 234 | } 235 | 236 | return worker.getStoreDataNightly(this, "astoreN"); 237 | }, 238 | getDroidNightlyReleaseData() { 239 | const { updated } = this.state.adroidN; 240 | const now = new Date().getTime(); 241 | 242 | if (updated != null && now - updated <= 60 * 60 * 24 * 1000) { 243 | return Promise.resolve(this.state.adroidN); 244 | } 245 | 246 | return worker.getDroidDataNightly(this, "adroidN"); 247 | }, 248 | getWardenReleaseData() { 249 | const { updated } = this.state.awarden; 250 | const now = new Date().getTime(); 251 | 252 | if (updated != null && now - updated <= 60 * 60 * 24 * 1000) { 253 | return Promise.resolve(this.state.awarden); 254 | } 255 | 256 | return worker.getWardenData(this, "awarden"); 257 | }, 258 | getWallsReleaseData() { 259 | const { updated } = this.state.awalls; 260 | const now = new Date().getTime(); 261 | 262 | if (updated != null && now - updated <= 60 * 60 * 24 * 1000) { 263 | return Promise.resolve(this.state.awalls); 264 | } 265 | 266 | return worker.getWallsData(this, "awalls"); 267 | }, 268 | }, 269 | }); 270 | -------------------------------------------------------------------------------- /src/.vuepress/styles/palette.styl: -------------------------------------------------------------------------------- 1 | /** 2 | * Custom palette here. 3 | * 4 | * ref:https://v1.vuepress.vuejs.org/config/#palette-styl 5 | */ 6 | 7 | // Colors 8 | $accentColor = #b071e3 9 | $accentColorSecondary = #eb6cad 10 | $textColor = $lighttextColor 11 | $borderColor = $lightborderColor 12 | $codeBgColor = #282c34 13 | $arrowBgColor = #ccc 14 | $badgeTipColor = #6bd66b 15 | $badgeWarningColor = darken(#ffe564, 35%) 16 | $badgeErrorColor = #DA5961 17 | $badgeVersionColor = #000000 18 | $backgroundColor = $lightbackgroundColor 19 | $backgroundColorSecondary = $lightbackgroundColorSecondary 20 | $containerBackground = $lightcontainerBackground 21 | $navbarColor = $lightnavbarColor 22 | 23 | // Lightmode scheme 24 | $lighttextColor = #2c3e50 25 | $lightborderColor = #eaecef 26 | $lightbadgeVersionColor = #000000 27 | $lightbackgroundColor = #fcfcff 28 | $lightbackgroundColorSecondary = #FFFFFF 29 | $lightcontainerBackground = rgba(203, 92, 255, 0.2) 30 | $lightnavbarColor = #FDFDFD 31 | 32 | // Darkmode scheme 33 | $darktextColor = #b0c2d4 34 | $darkborderColor = #292929 35 | $darkbadgeVersionColor = #232222 36 | $darkbackgroundColor =#171514 37 | $darkbackgroundColorSecondary = #1f1f1f 38 | $darkcontainerBackground = rgba(222, 5, 253, 0.15) 39 | $darknavbarColor = #1f1f1f 40 | 41 | // Layout 42 | $navbarHeight = 3.6rem 43 | $sidebarWidth = 20rem 44 | $contentWidth = 46.25rem 45 | $homePageWidth = 70rem 46 | $heroImageHeight = 8rem 47 | $containerBorderRadius = 0.4rem 48 | $buttonBorderRadius = 0.25rem 49 | 50 | // Responsive breakpoints 51 | $MQNarrow = 959px 52 | $MQMobile = 767px 53 | $MQMobileNarrow = 419px 54 | 55 | // Fonts 56 | $fontButton = "Open Sans", Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif 57 | $fontCode = source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace 58 | 59 | // Custom blocks 60 | $customTip = #184cef 61 | $customWarning = #e8c82a 62 | $customDanger = #e5422b 63 | 64 | // Social 65 | $emailAccentColor = #D44638 66 | $facebookAccentColor = #3B5998 67 | $instagramAccentColor = #FF2e66 68 | $telegramAccentColor = #0088CC 69 | $gitlabAccentColor = #FC6D27 70 | $redditAccentColor = #FF5700 71 | $githubAccentColor = $githubLightAccentColor 72 | $githubLightAccentColor = #000000 73 | $githubDarkAccentColor = lighten(#000000, 80%) 74 | 75 | // Element-UI 76 | $elementAccentColor = $accentColor 77 | 78 | // Misc 79 | $greyLighten5 = lighten(grey, 5%) 80 | -------------------------------------------------------------------------------- /src/.vuepress/theme/components/AlgoliaSearchBox.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 72 | 73 | 178 | -------------------------------------------------------------------------------- /src/.vuepress/theme/components/DarkThemeSwitcher.vue: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 54 | 55 | 80 | 81 | 82 | 83 | -------------------------------------------------------------------------------- /src/.vuepress/theme/components/Home.vue: -------------------------------------------------------------------------------- 1 | 57 | 58 | 83 | 84 | 218 | -------------------------------------------------------------------------------- /src/.vuepress/theme/components/Navbar.vue: -------------------------------------------------------------------------------- 1 | 36 | 37 | 88 | 89 | 179 | -------------------------------------------------------------------------------- /src/.vuepress/theme/components/Sidebar.vue: -------------------------------------------------------------------------------- 1 | 15 | 16 | 26 | 27 | 78 | -------------------------------------------------------------------------------- /src/.vuepress/theme/index.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extend: "@vuepress/theme-default", 3 | }; 4 | -------------------------------------------------------------------------------- /src/contact/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: Contact 3 | title: AuroraOSS contact 4 | metaTitle: AuroraOSS contact 5 | description: Contact the AuroraOSS Team! 6 | lang: en-GB 7 | meta: 8 | - property: og:image 9 | content: /icons/auroralogo.webp 10 | sidebar: true 11 | --- 12 | 13 | # Contact 14 | 15 | ## The Team 16 | 17 | 18 | 19 | ## Support 20 | 21 | Any questions our FAQs can't answer, problems that you want to discuss discreetly or trust issues with our apps? No worries! Feel free to contact us on any of the following platforms below. 22 | 23 | ### Telegram 24 | 25 | Our go-to platform would be Telegram. We are almost active everyday so we won't miss a message if you chime in. Install Telegram if you don't already have it, choose any of the groups below and scan them with a QR Code scanner to get started! 26 | 27 | ...or click on the QR code images to open the links. (QR codes are cooler, though.) 28 | 29 | ::: guide Important! 30 | Please read the group rules, pinned messages and a few of the previous messages to see if their context is what you are looking for before asking any questions, you're helping us reduce spam and time! 👍 31 | ::: 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | ### GitLab 50 | 51 | All the issues and merge requsts for the code of our apps are reported on our GitLab Organization, [AuroraOSS](https://gitlab.com/auroraoss). 52 | 53 | ### XDA 54 | 55 | For those who have been in the Android community for some time might know about XDA-Developers, a great place for Android enthusiasts to tinker and explore Android. Check out our XDA-Developers Forum [Thread](https://forum.xda-developers.com/t/app-5-0-aurora-store-an-unofficial-oss-play-store-client-may-16.3739733/) for Aurora Store. 56 | 57 | ### Email 58 | 59 | Want to write to us discreetly? Send us a [mail](mailto:auroraoss.dev@gmail.com)! 60 | 61 | ### Reddit (planned) 62 | 63 | We're planning on starting a Reddit subreddit after we stabilized things a bit. Who wouldn't want their service to be on the world's most well-known forum service, right? 64 | 65 | 66 | -------------------------------------------------------------------------------- /src/contribution/BCH.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: DonationPage 3 | title: Bitcoin Cash Donation 4 | description: Donate Bitcoin Cash to AuroraOSS! 5 | lang: en-GB 6 | sidebar: false 7 | --- 8 | 9 | # Bitcoin Cash 10 | 11 |

12 | 13 | Bitcoin Cash Wallet Address 14 | 15 |

16 | 17 | ### Bitcoin Cash (BCH): 18 | 19 | ``` 20 | qpqus3qdlz8guf476vwz0fjl8s34fseukcmrl6eknl 21 | ``` 22 | 23 | --- 24 | -------------------------------------------------------------------------------- /src/contribution/BTC.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: DonationPage 3 | title: Bitcoin Donation 4 | description: Donate Bitcoin to AuroraOSS! 5 | lang: en-GB 6 | sidebar: false 7 | --- 8 | 9 | # Bitcoin 10 | 11 |

12 | 13 | Bitcoin Wallet Address 14 | 15 |

16 | 17 | ### Bitcoin (BTC): 18 | 19 | ``` 20 | bc1qu7cy9fepjj309y4r2x3rymve7mw4ff39c8cpe0 21 | ``` 22 | 23 | --- 24 | -------------------------------------------------------------------------------- /src/contribution/ETH.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: DonationPage 3 | title: Etherum Donation 4 | description: Donate Etherum to AuroraOSS! 5 | lang: en-GB 6 | sidebar: false 7 | --- 8 | 9 | # Etherum 10 | 11 |

12 | 13 | Etherum Wallet Address 14 | 15 |

16 | 17 | ### Etherum (ETH): 18 | 19 | ``` 20 | 0x6977446933EC8b5964D921f7377950992337B1C6 21 | ``` 22 | 23 | --- 24 | -------------------------------------------------------------------------------- /src/contribution/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Contribution 3 | description: Find out how to contribute to AuroraOSS! 4 | lang: en-GB 5 | meta: 6 | - property: og:image 7 | content: /icons/auroralogo.webp 8 | sidebar: true 9 | --- 10 | 11 | # Contribution 12 | 13 | Find out how to help translate or contribute to AuroraOSS. 14 | 15 | ## Code 16 | 17 | Skilled at code? Know how to improve something or you generally want to support the creation of our apps? 18 | 19 | For UI improvements, you can do a Merge Request. These will not be checked on as often, but if it's something major and urgent then we will consider merging. 20 | 21 | ### Applications 22 | 23 | Source code of applications by AuroraOSS. 24 | 25 | - [aurorastore](https://gitlab.com/auroraoss/aurorastore) 26 | - [auroradroid](https://gitlab.com/auroraoss/auroradroid) 27 | - [appwarden](https://gitlab.com/auroraoss/appwarden) 28 | - [aurorawallpapers](https://gitlab.com/auroraoss/aurorawallpapers) 29 | 30 | --- 31 | 32 | ### Website 33 | 34 | The repository that hosts this very website you're reading on now. 35 | 36 | - [aurora-website/website_v1](https://github.com/aurora-website/website_v1) 37 | 38 | --- 39 | 40 | ### Translation 41 | 42 | Want to help translate the website to your language? You can easily help by utilizing a service we use called **POEditor**. 43 | 44 | Visit our translation projects: 45 | 46 | - [Website](https://poeditor.com/join/project/54swaCpFXJ) (coming soon). 47 | - [Aurora Store](https://poeditor.com/join/project/54swaCpFXJ). 48 | - [Aurora Droid](https://poeditor.com/join/project/a9lzT3YrI4). 49 | 50 | ::: c-tip Notice 51 | We will soon be moving our translation projects to [Weblate](https://hosted.weblate.org). 52 | ::: 53 | 54 | #### Project status 55 | *** 56 | Aurora Store v4 57 | 58 | 59 | Translation status 60 | 61 | *** 62 | Aurora Website 63 | 64 | 65 | Translation status 66 | 67 | 68 | #### Helpful links 69 | 70 | --- 71 | 72 | - [Translators guide](https://docs.weblate.org/en/latest/user/translating.html) 73 | - [Secondary-languages](https://docs.weblate.org/en/latest/user/profile.html#secondary-languages) 74 | - [Subscriptions](https://docs.weblate.org/en/latest/user/profile.html#subscriptions) 75 | - [Glossary](https://docs.weblate.org/en/latest/user/translating.html#glossary) 76 | 77 | ## Donation 78 | 79 | If you can't contribute code or translations but you still wish to help, then you can choose to contribute directly to the projects founder, [whyorean](https://gitlab.com/whyorean/) by using the following sources below. 80 | 81 | --- 82 | 83 | 84 | Donate via UPI 85 | 86 | 87 | Donate with PayPal 88 | 89 | 90 | Bitcoin accepted here 91 | 92 | 93 | 94 | Bitcoin accepted here 95 | 96 | 97 | Bitcoin accepted here 98 | 99 | 100 | Bitcoin accepted here 101 | 102 | -------------------------------------------------------------------------------- /src/contribution/UPI.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: DonationPage 3 | title: UPI Donation 4 | description: Donate via UPI to AuroraOSS! 5 | lang: en-GB 6 | sidebar: false 7 | --- 8 | 9 | # UPI 10 | 11 |

12 | Bitcoin Cash Wallet Address 13 |

14 | 15 | -------------------------------------------------------------------------------- /src/de/contact/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: Contact 3 | title: AuroraOSS contact 4 | metaTitle: AuroraOSS contact 5 | description: Contact the AuroraOSS Team! 6 | lang: de 7 | meta: 8 | - property: og:image 9 | content: /icons/auroralogo.webp 10 | sidebar: true 11 | --- 12 | 13 | # Contact 14 | 15 | ## The Team 16 | 17 | 18 | 19 | ## Support 20 | 21 | Any questions our FAQs can't answer, problems that you want to discuss discreetly or trust issues with our apps? No worries! Feel free to contact us on any of the following platforms below. 22 | 23 | ### Telegram 24 | 25 | Our go-to platform would be Telegram. We are almost active everyday so we won't miss a message if you chime in. Install Telegram if you don't already have it, choose any of the groups below and scan them with a QR Code scanner to get started! 26 | 27 | ...or click on the QR code images to open the links. (QR codes are cooler, though.) 28 | 29 | ::: guide Important! 30 | Please read the group rules, pinned messages and a few of the previous messages to see if their context is what you are looking for before asking any questions, you're helping us reduce spam and time! 👍 31 | ::: 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | ### GitLab 50 | 51 | All the issues and merge requsts for the code of our apps are reported on our GitLab Organization, [AuroraOSS](https://gitlab.com/auroraoss). 52 | 53 | ### XDA 54 | 55 | For those who have been in the Android community for some time might know about XDA-Developers, a great place for Android enthusiasts to tinker and explore Android. Check out our XDA-Developers Forum [Thread](https://forum.xda-developers.com/t/app-5-0-aurora-store-an-unofficial-oss-play-store-client-may-16.3739733/) for Aurora Store. 56 | 57 | ### Email 58 | 59 | Want to write to us discreetly? Send us a [mail](mailto:auroraoss.dev@gmail.com)! 60 | 61 | ### Reddit (planned) 62 | 63 | We're planning on starting a Reddit subreddit after we stabilized things a bit. Who wouldn't want their service to be on the world's most well-known forum service, right? 64 | 65 | -------------------------------------------------------------------------------- /src/de/contribution/BCH.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: DonationPage 3 | title: Bitcoin Cash Donation 4 | description: Donate Bitcoin Cash to AuroraOSS! 5 | lang: de 6 | sidebar: false 7 | --- 8 | 9 | # Bitcoin Cash 10 | 11 |

12 | 13 | Bitcoin Cash Wallet Address 14 | 15 |

16 | 17 | ### Bitcoin Cash (BCH): 18 | 19 | ``` 20 | qpqus3qdlz8guf476vwz0fjl8s34fseukcmrl6eknl 21 | ``` 22 | 23 | --- 24 | -------------------------------------------------------------------------------- /src/de/contribution/BTC.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: DonationPage 3 | title: Bitcoin Donation 4 | description: Donate Bitcoin to AuroraOSS! 5 | lang: de 6 | sidebar: false 7 | --- 8 | 9 | # Bitcoin 10 | 11 |

12 | 13 | Bitcoin Wallet Address 14 | 15 |

16 | 17 | ### Bitcoin (BTC): 18 | 19 | ``` 20 | bc1qu7cy9fepjj309y4r2x3rymve7mw4ff39c8cpe0 21 | ``` 22 | 23 | --- 24 | -------------------------------------------------------------------------------- /src/de/contribution/ETH.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: DonationPage 3 | title: Etherum Donation 4 | description: Donate Etherum to AuroraOSS! 5 | lang: de 6 | sidebar: false 7 | --- 8 | 9 | # Etherum 10 | 11 |

12 | 13 | Etherum Wallet Address 14 | 15 |

16 | 17 | ### Etherum (ETH): 18 | 19 | ``` 20 | 0x6977446933EC8b5964D921f7377950992337B1C6 21 | ``` 22 | 23 | --- 24 | -------------------------------------------------------------------------------- /src/de/contribution/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Contribution 3 | description: Find out how to contribute to AuroraOSS! 4 | lang: de 5 | meta: 6 | - property: og:image 7 | content: /icons/auroralogo.webp 8 | sidebar: true 9 | --- 10 | 11 | # Contribution 12 | 13 | Find out how to help translate or contribute to AuroraOSS. 14 | 15 | ## Code 16 | 17 | Skilled at code? Know how to improve something or you generally want to support the creation of our apps? 18 | 19 | For UI improvements, you can do a Merge Request. These will not be checked on as often, but if it's something major and urgent then we will consider merging. 20 | 21 | ### Applications 22 | 23 | Source code of applications by AuroraOSS. 24 | 25 | - [aurorastore](https://gitlab.com/auroraoss/aurorastore) 26 | - [auroradroid](https://gitlab.com/auroraoss/auroradroid) 27 | - [appwarden](https://gitlab.com/auroraoss/appwarden) 28 | - [aurorawallpapers](https://gitlab.com/auroraoss/aurorawallpapers) 29 | 30 | --- 31 | 32 | ### Website 33 | 34 | The repository that hosts this very website you're reading on now. 35 | 36 | - [aurora-website/website_v1](https://github.com/aurora-website/website_v1) 37 | 38 | --- 39 | 40 | ### Translation 41 | 42 | Want to help translate the website to your language? You can easily help by utilizing a service we use called **POEditor**. 43 | 44 | Visit our translation projects: 45 | 46 | - [Website](https://poeditor.com/join/project/54swaCpFXJ) (coming soon). 47 | - [Aurora Store](https://poeditor.com/join/project/54swaCpFXJ). 48 | - [Aurora Droid](https://poeditor.com/join/project/a9lzT3YrI4). 49 | 50 | ::: c-tip Notice 51 | We will soon be moving our translation projects to [Weblate](https://hosted.weblate.org). 52 | ::: 53 | 54 | #### Project status 55 | *** 56 | Aurora Store v4 57 | 58 | 59 | Translation status 60 | 61 | *** 62 | Aurora Website 63 | 64 | 65 | Translation status 66 | 67 | 68 | #### Helpful links 69 | 70 | --- 71 | 72 | - [Translators guide](https://docs.weblate.org/en/latest/user/translating.html) 73 | - [Secondary-languages](https://docs.weblate.org/en/latest/user/profile.html#secondary-languages) 74 | - [Subscriptions](https://docs.weblate.org/en/latest/user/profile.html#subscriptions) 75 | - [Glossary](https://docs.weblate.org/en/latest/user/translating.html#glossary) 76 | 77 | ## Donation 78 | 79 | If you can't contribute code or translations but you still wish to help, then you can choose to contribute directly to the projects founder, [whyorean](https://gitlab.com/whyorean/) by using the following sources below. 80 | 81 | --- 82 | 83 | 84 | Donate via UPI 85 | 86 | 87 | Donate with PayPal 88 | 89 | 90 | Bitcoin accepted here 91 | 92 | 93 | 94 | Bitcoin accepted here 95 | 96 | 97 | Bitcoin accepted here 98 | 99 | 100 | Bitcoin accepted here 101 | 102 | -------------------------------------------------------------------------------- /src/de/contribution/UPI.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: DonationPage 3 | title: UPI Donation 4 | description: Donate via UPI to AuroraOSS! 5 | lang: de 6 | sidebar: false 7 | --- 8 | 9 | # UPI 10 | 11 |

12 | Bitcoin Cash Wallet Address 13 |

14 | 15 | -------------------------------------------------------------------------------- /src/de/download/AppWarden.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: DownloadPage 3 | title: App Warden 4 | description: An open source app utility manager for all your installed apps. 5 | lang: de 6 | meta: 7 | - property: og:title 8 | content: App Warden 9 | - property: og:description 10 | content: An open source app utility manager for all your installed apps. 11 | - property: og:image 12 | content: /assets/storebanner1200x680.webp 13 | - property: og:image:alt 14 | content: App Warden Banner Image 15 | - property: og:url 16 | content: /de/download/AppWarden/ 17 | - property: og:locale 18 | content: de 19 | - property: twitter:card 20 | content: summary_large_image 21 | sidebar: false 22 | --- 23 | 24 | # Aurora Store 25 | 26 | ## About 27 | 28 | App Warden is an app utility manager for all your installed apps. 29 | 30 | ## Screenshots 31 | 32 | 33 | 34 | ## Features: 35 | 36 | - Generates report for all trackers & loggers present in app installed on device. 37 | - Advance profile based de-bloater, allowing to disable/uninstall/hide junks. 38 | - **Nuke it!** - Disable all trackers across the whole device automatically. 39 | - Show trackers hidden in an app with version history, powered by Exodus Privacy. 40 | 41 | ## Credits 42 | 43 | - [whyorean](https://gitlab.com/whyorean/) (Rahul Patel) for making the app. 44 | 45 | ## Known Bugs 46 | 47 | ## Disclaimer 48 | 49 | The developer of this application is not responsible for getting your device bricked or modifications you do. You are using this service at your own risk, so please do not blame the dev. 50 | 51 | ## Support Group 52 | 53 |

54 | 55 | 56 | 57 |

-------------------------------------------------------------------------------- /src/de/download/AuroraDroid.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: DownloadPage 3 | title: Aurora Droid 4 | description: An open source F-Droid client with modern UI. 5 | lang: de 6 | meta: 7 | - property: og:title 8 | content: Aurora Droid 9 | - property: og:description 10 | content: An open source F-Droid client with modern UI. 11 | - property: og:image 12 | content: /assets/storebanner1200x680.webp 13 | - property: og:image:alt 14 | content: Aurora Droid Banner Image 15 | - property: og:url 16 | content: /de/download/AuroraDroid/ 17 | - property: og:locale 18 | content: de 19 | - property: twitter:card 20 | content: summary_large_image 21 | sidebar: false 22 | --- 23 | 24 | # Aurora Droid 25 | 26 | ## About 27 | 28 | Aurora Droid is a FOSS client for F-Droid. It's been redesigned to appeal users who are fed-up with the official F-Droid client, with user-friendly navigation and quick usability. 29 | 30 | ## Screenshots 31 | 32 | 33 | 34 | ## Features: 35 | 36 | - Easy repo management, with more than 20 repos available by default. 37 | - Beautiful UI based on latest Material Design guidelines. 38 | - A full featured download manager with parallel & sequential download support. 39 | 40 | ## Credits 41 | 42 | - [whyorean](https://gitlab.com/whyorean/) (Rahul Patel) for making the app. 43 | - [F-Droid Team?](https://github.com/F-Droid/) maybe. 44 | 45 | ## Known Bugs 46 | 47 | ## Disclaimer 48 | 49 | The developer of this application is not responsible for getting your device malware or anything affiliated with apps in the F-Droid Store except Aurora Apps by AuroraOSS. 50 | 51 | ## Support Group 52 | 53 |

54 | 55 | 56 | 57 |

-------------------------------------------------------------------------------- /src/de/download/AuroraStore/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: DownloadPage 3 | title: Aurora Store 4 | description: An open-source alternative Google Play Store frontend with privacy features and clean UI. 5 | lang: de 6 | meta: 7 | - property: og:title 8 | content: Aurora Store 9 | - property: og:description 10 | content: An open-source alternative Google Play Store frontend with privacy features and clean UI. 11 | - property: og:image 12 | content: /assets/storebanner1200x680.webp 13 | - property: og:image:alt 14 | content: Aurora Store Banner Image 15 | - property: og:url 16 | content: /de/download/AuroraStore/ 17 | - property: og:locale 18 | content: de 19 | - property: twitter:card 20 | content: summary_large_image 21 | sidebar: false 22 | --- 23 | 24 | # Aurora Store 25 | 26 | ## About 27 | 28 | Aurora Store is an open-source alternative Google Play Store frontend client with privacy and modern design in mind. Not only does Aurora Store download, update, and search for apps like the Play Store, it also empowers the user with useful features. 29 | 30 | ## Screenshots 31 | 32 | 33 | 34 | ## Features: 35 | 36 | - **Anonymous login**: Login anonymously so that you stay private. 37 | - **Google login**: access your paid apps and install beta apps. 38 | - **Device spoofing**: App not available for your device? Use available device configurations to spoof you device! 39 | - **Filter F-Droid app**: Don't want F-Droid apps to be in your update list? Use the filter to exclude them. 40 | - **Blacklist apps**: By blacklisting apps, Google will not know that the selected apps are installed on your device. 41 | 42 | ## Credits 43 | 44 | - [whyorean](https://gitlab.com/whyorean/) (Rahul Patel) for making the app. 45 | 46 | ## Known Bugs 47 | 48 | ::: guide Bugs 49 | - Root installation not working properly on Android 11 (R+) 50 | ::: 51 | 52 | ## Terms Of Service 53 | 54 | Every user is required to read and agree to the Terms of Service before being able to use Aurora Store. You can read the Terms Of Service [here](/de/download/AuroraStore/terms-of-service/). 55 | 56 | ## Policy 57 | 58 | Please read our [Policy](/de/download/AuroraStore/policy/) to know what we data we require & collect from you and what we send to Google. 59 | 60 | ## Disclaimer 61 | 62 | Please read our [Disclaimer](/de/download/AuroraStore/disclaimer/) to know why what you do using Aurora Store is up to you and not us. 63 | 64 | As per [**Google Play Terms of Service §4**](https://play.google.com/intl/en-us_us/about/play-terms/index.html), under "Restrictions" there are a number of things that could potentially be used against you for the deactivation of your personal Google account that you want to remain using. 65 | 66 | ## Support Group 67 | 68 |

69 | 70 | 71 | 72 |

73 | -------------------------------------------------------------------------------- /src/de/download/AuroraStore/disclaimer.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: DISCLAIMER 3 | description: Disclaimer for Aurora Store 4 | lang: de 5 | meta: 6 | - property: og:title 7 | content: Disclaimer 8 | - property: og:description 9 | content: Disclaimer for Aurora Store 10 | - property: og:image 11 | content: /icons/disclaimer_icon.png 12 | - property: og:image:alt 13 | content: Aurora Store Disclaimer Banner Image 14 | - property: og:url 15 | content: /de/download/AuroraStore/disclaimer 16 | - property: og:locale 17 | content: de 18 | - property: twitter:card 19 | content: summary 20 | sidebar: false 21 | --- 22 | 23 | # Disclaimer 24 | 25 | ### 1. Google Accounts. 26 | 27 | You hold yourself accountable if you are to use Aurora Store with your personal Google Account, which may cause your account to be blocked/blacklisted by Google. As per **Google Play's Terms Of Service §4 and §2**: 28 | 29 | #### §4 Rights and Restrictions 30 | 31 | > **Violation of License Terms.** If you violate any of the Content restriction provisions of the Terms, materially or repeatedly violate any of the other Terms or we are investigating you for suspected misconduct then Google may, without refund to you, terminate your access to Google Play, the Content or your Google Account and your rights under this licence will immediately terminate. We will notify you with the reason for our action unless we reasonably believe that to do so would cause Google or another person legal liability, would compromise an investigation, would compromise the operation of any Google products, services or systems, would cause harm to our users or would be in breach of the law or the direction of a legal enforcement authority. See Disabled Accounts in Section 2 for additional information. 32 | > 33 | > **Restrictions:** You may not: 34 | > 35 | > - display (in part or in whole) the Content as part of any public performance or display even if no fee is charged except (a) where such use would not constitute a copyright infringement or violate any other applicable right or (b) as specifically permitted and only in the exact manner provided. 36 | > - sell, rent, lease, redistribute, broadcast, transmit, communicate, modify, sublicense, transfer, assign any Content to any third party including with regard to any downloads of Content that you may obtain through Google Play except as specifically permitted and only in the exact manner provided. 37 | > - use Google Play or any Content in conjunction with any stream-ripping, stream capture or similar software to record or create a copy of any Content that is presented to you in streaming format. 38 | > - use Content as part of any service for sharing, lending or multi-person use, or for the purpose of any other institution, except as specifically permitted and only in the exact manner provided. 39 | > - attempt to, or assist, authorize or encourage others to circumvent, disable or defeat any of the security features or components that protect, obfuscate or otherwise restrict access to any Content or Google Play. 40 | > - remove any watermarks, labels or other legal or proprietary notices included in any Content, or attempt to modify any Content obtained through Google Play, including any modification for the purpose of disguising or changing any indications of the ownership or source of Content. 41 | > 42 | > **Multiple Accounts.** If you have multiple Google Accounts with different user names, in some cases you may transfer Content out of an account and into another account, provided you are the owner of each such account and provided Google has enabled a feature of the relevant service allowing such transfers. 43 | 44 | #### §2 Your Use of Google Play 45 | > **Disabled Accounts.** If Google disables access to your account in accordance with the Terms (for example if you materially or repeatedly violate the Terms), you may be prevented from accessing Google Play, your account details or any files or other Content that is stored with your account. See the Help Center for more information. If you are the family manager of a family on Google Play and Google disables access to your account, your family members may lose access to family features requiring a family group, such as a family payment method, family subscriptions, or Content shared by family members. If you are a family member of a family on Google Play and Google disables your account, your family members will lose access to Content you have shared with them. 46 | 47 | ### 2. Installing **Aurora Store** from third-party sources. 48 | 49 | You are to hold yourself responsible by installing **Aurora Store** from other sources other than our own, in which you do not blame us for malicious programs, device bricking or anything else. The following sources are the only official links we provide: 50 | - **F-Droid:** [https://f-droid.org/en/packages/com.aurora.store/](https://f-droid.org/en/packages/com.aurora.store/) 51 | - **AuroraOSS Website:** [https://auroraoss.com/download/](https://auroraoss.com/download/) 52 | - **Official Telegram Channel:** [https://t.me/AuroraOfficial](https://t.me/AuroraOfficial) 53 | - **GitLab:** [https://gitlab.com/AuroraOSS/AuroraStore/-/releases](https://gitlab.com/AuroraOSS/AuroraStore/-/releases) 54 | 55 | ### 3. Links in Aurora Store 56 | 57 | **AuroraOSS**, makes no claim or representation regarding, and accepts no responsibility for third party websites accessible by hyperlink from the Service or websites linking to the Service. When you leave the Service, you should be aware that these Terms and our policies no longer govern. The only links we provide are: 58 | 59 | - **Donation links** Bitcoin, Bitcoin Cash, Etherum, BHIM-UPI, PayPal & Liberapay links 60 | - **Repository sources** GitLab repository link 61 | - **xda-developers** Aurora Store xda-developers thread 62 | - **Telegram** Aurora Support group link 63 | - **F-Droid** Aurora Store in F-Droid repository link 64 | 65 | ### 4. Content 66 | 67 | We do not own any content within **Aurora Store**, all available content i.e. applications, information and links are provided "as is" directly from Google Play repositories/servers. For all content on **Aurora Store**, we don't review, verify or authenticate it, and it may include inaccuracies or false information. We make no representations, warranties, or guarantees relating to the quality, suitability, truth, accuracy or completeness of any content contained in the Service. You acknowledge sole responsibility for and assume all risk arising from your use of or reliance on any content. 68 | 69 | -------------------------------------------------------------------------------- /src/de/download/AuroraStore/policy.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: POLICY 3 | description: Policy for Aurora Store 4 | lang: de 5 | meta: 6 | - property: og:title 7 | content: Privacy Policy 8 | - property: og:description 9 | content: Policy for Aurora Store 10 | - property: og:image 11 | content: /icons/policy_icon.png 12 | - property: og:image:alt 13 | content: Aurora Store Policy Banner Image 14 | - property: og:url 15 | content: /de/download/AuroraStore/policy 16 | - property: og:locale 17 | content: de 18 | - property: twitter:card 19 | content: summary 20 | sidebar: false 21 | --- 22 | 23 | # Aurora Store Privacy Policy Last Updated: **01.03.2021** 24 | 25 | ## User data sent to Google by default 26 | 27 | The following data is mandatory to make the Service function, all of which Google needs for **Aurora Store** to be able to receive required data: 28 | 29 | - **IP Address** which is bound to network request 30 | - **Timezone, MCC & MNC\*** are stripped & replaced with a random constant 31 | - **BUILD_CONFIG** includes the app details - package name, version-name, version-code 32 | - **BUILD** includes your device details, see for more info 33 | 34 | If you choose to use your own account, the following are added to the above: 35 | 36 | - **Account details** for Google sign-in verification 37 | 38 | We do not store, process or sell any of the collected data above. The data is sent to and processed by Google's servers directly untouched. All accounts being used within **Aurora Store** are saved onto the device as AAS Tokens & email pair for account verification. **No passwords** are saved to Aurora Store. 39 | 40 | **\*MCC**: Mobile Country Code; **MNC**: Mobile Network Code. 41 | 42 | ## User data sent to our server by default 43 | 44 | The only data being sent to our server are **IP addresses**. This is to ensure the functionality and stability of our server, which detects the amount of GET requests from an IP address and if deemed them as spamming, will be banned from our server, otherwise rate-limited. Rate-limiting lasts for an hour. If you keep going over the 20 request per hour limit, an additional hour to the rate-limiting will be added for every additional 20 requests. So do yourself a favour and don't do it. 45 | 46 | ## Changes To This Privacy Policy 47 | 48 | We may update our Privacy Policy from time to time. You are thus advised to review this Privacy Policy periodically for any changes. Changes to this Privacy Policy are effective when they are posted on this page. 49 | 50 | ## Contact Us 51 | 52 | If you have any questions about this Privacy Policy, please contact us at **aurora.dev@gmail.com** or via our support groups on Telegram. 53 | -------------------------------------------------------------------------------- /src/de/download/AuroraStore/terms-of-service.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: TermsOfService 3 | description: Terms of Service for Aurora Store 4 | lang: de 5 | meta: 6 | - property: og:title 7 | content: Terms of Service 8 | - property: og:description 9 | content: Terms of Service for Aurora Store 10 | - property: og:image 11 | content: /icons/tos_icon.png 12 | - property: og:image:alt 13 | content: Aurora Store TOS Banner Image 14 | - property: og:url 15 | content: /de/download/AuroraStore/terms-of-service 16 | - property: og:locale 17 | content: de 18 | - property: twitter:card 19 | content: summary 20 | sidebar: false 21 | --- 22 | 23 | # **Aurora Store** TERMS OF SERVICE 24 | 25 | Last Updated: **01.03.2021** 26 | 27 | These terms of service ("Terms") apply to your access and use of **Aurora Store**. Please read them carefully. 28 | 29 | ## Accepting these Terms 30 | 31 | If you access or use the Service, it means you agree to be bound by all of the terms below. So, before you use the Service, please read all of the terms. If you don't agree to all of the terms below, please do not use the Service. Also, if a term does not make sense to you, please let us know by e-mailing [auroraoss.dev@gmail.com](mailto:auroraoss.dev@gmail.com). 32 | 33 | ## Changes to these Terms 34 | 35 | We reserve the right to modify these Terms at any time. For instance, we may need to change these Terms if we come out with a new feature or for some other reason. Whenever we make changes to these Terms, the changes are effective **01.03.2021** after we post such revised Terms (indicated by revising the date at the top of these Terms) or upon your acceptance if we provide a mechanism for your immediate acceptance of the revised Terms (such as a click-through confirmation or acceptance button). It is your responsibility to check **Aurora Store** for changes to these Terms. If you continue to use the Service after the revised Terms go into effect, then you have accepted the changes to these Terms. 36 | 37 | ## Privacy Policy 38 | 39 | We have a privacy policy covering the collection, use, and disclosure of user information, which can be found [here](/download/AuroraStore/policy/). 40 | 41 | ## Copyright Policy 42 | 43 | We take intellectual property rights seriously, and by using a copyright policy in accordance with the GNU GENERAL PUBLIC LICENSE Version 3, we have adopted a policy of terminating, in appropriate circumstances and, at our sole discretion, access to the service for users who are deemed to be repeat infringers. Persons who wish to fork the Aurora Store project or copy code from the repository MUST comply with the used license. The license in use can be found [here](https://www.gnu.org/licenses/gpl-3.0.en.html) 44 | 45 | ## Disclaimer 46 | 47 | We have a disclaimer covering the use of our Service and the content within **Aurora Store**, which can be found [here](/download/AuroraStore/disclaimer/). 48 | 49 | ## Third-Party Services 50 | 51 | We provide users with two major third party services. Your use of the Service may also include the use of applications that are developed or owned by a third party. Your use of such third party applications, websites, and services is governed by that party's own terms of service or privacy policies. We encourage you to read the terms and conditions and privacy policy of any third party application, website or service that you visit or use. 52 | 53 | ## Token Dispenser Server 54 | 55 | We provide users with the ability to use anonymous accounts within **Aurora Store**, provided from our server as tokens. Your use of the Service agrees to not affect our server in any way deemed harmful or with malicious intent. We may occasionally ask contributors to provide us with accounts. You hereby acknowledge that the accounts you make for **Aurora Store** to be given entire access to **AuroraOSS** and to be stored on our server. This does not apply to non-anonymous accounts. 56 | 57 | If there are anonymous accounts that somehow are able to gain access to paid apps, you MUST directly inform us with: 58 | - **Proof**, be it a a screen recording, screenshots or other image/video material, 59 | - **Email address** of the account, which can be located at the Accounts page on the sidebar as **Accounts**, 60 | - **Time & Date** of when you encountered the breach. 61 | You can either message admins of the Telegram support group, direct message [@whyorean](tg://resolve?domain=whyorean) or via [auroraoss.dev@gmail.com](mailto:auroraoss.dev@gmail.com). 62 | 63 | If we find accounts with a breach like this, we will either: 64 | - remove that account from the dispenser server or, 65 | - fix the breach and generate a new AAS token for that account or, 66 | - shut down the dispenser server with a notice on our website blog and Telegram channel, stating what the problem is. 67 | 68 | We do not allow or support piracy and do not tolerate users who abuse our Service. We are obligated to block users from accessing the accounts. Our server, our rules. 69 | 70 | ## **Aurora Store** Materials 71 | 72 | We put a lot of effort into creating the Service including, the logo and all designs, text, graphics, pictures, information and other content (excluding content within **Aurora Store**). This property is owned by us or our licensors and it is protected by open-source licenses. We grant you the right to use it. 73 | 74 | ## Unavoidable Legal Stuff 75 | 76 | THE SERVICE AND ANY OTHER SERVICE AND CONTENT INCLUDED ON OR OTHERWISE MADE AVAILABLE TO YOU THROUGH THE SERVICE ARE PROVIDED TO YOU ON AN AS IS OR AS AVAILABLE BASIS WITHOUT ANY REPRESENTATIONS OR WARRANTIES OF ANY KIND. WE DISCLAIM ANY AND ALL WARRANTIES AND REPRESENTATIONS (EXPRESS OR IMPLIED, ORAL OR WRITTEN) WITH RESPECT TO THE SERVICE AND CONTENT INCLUDED ON OR OTHERWISE MADE AVAILABLE TO YOU THROUGH THE SERVICE WHETHER ALLEGED TO ARISE BY OPERATION OF LAW, BY REASON OF CUSTOM OR USAGE IN THE TRADE, BY COURSE OF DEALING OR OTHERWISE. IN NO EVENT WILL **AURORA OSS** BE LIABLE TO YOU OR ANY THIRD PARTY FOR ANY SPECIAL, INDIRECT, INCIDENTAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES OF ANY KIND ARISING OUT OF OR IN CONNECTION WITH THE SERVICE OR ANY OTHER SERVICE AND/OR CONTENT INCLUDED ON OR OTHERWISE MADE AVAILABLE TO YOU THROUGH THE SERVICE, REGARDLESS OF THE FORM OF ACTION, WHETHER IN CONTRACT, TORT, STRICT LIABILITY OR OTHERWISE, EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES OR ARE AWARE OF THE POSSIBILITY OF SUCH DAMAGES. OUR TOTAL LIABILITY FOR ALL CAUSES OF ACTION AND UNDER ALL THEORIES OF LIABILITY WILL BE LIMITED TO THE AMOUNT YOU PAID TO **AURORA OSS**. THIS SECTION WILL BE GIVEN FULL EFFECT EVEN IF ANY REMEDY SPECIFIED IN THIS AGREEMENT IS DEEMED TO HAVE FAILED OF ITS ESSENTIAL PURPOSE. You agree to defend, indemnify and hold us harmless from and against any and all costs, damages, liabilities, and expenses (including attorneys' fees, costs, penalties, interest and disbursements) we incur in relation to, arising from, or for the purpose of avoiding, any claim or demand from a third party relating to your use of the Service or the use of the Service by any person using your account, including any claim that your use of the Service violates any applicable law or regulation, or the rights of any third party, and/or your violation of these Terms. ## Termination If you breach any of these Terms, we have the right to suspend or disable your access to or use of the Service. 77 | 78 | ## Entire Agreement 79 | 80 | These Terms constitute the entire agreement between you and **AuroraOSS** regarding the use of the Service, superseding any prior agreements between you and **AuroraOSS** relating to your use of the Service. 81 | 82 | ## Feedback 83 | 84 | Please let us know what you think of the Service, these Terms and, in general, **Aurora Store**. When you provide us with any feedback, comments or suggestions about the Service, these Terms and, in general, **Aurora Store**, you irrevocably assign to us all of your right, title and interest in and to your feedback, comments and suggestions. If you discover or suspect any Service security breaches, please let us know as soon as possible. 85 | 86 | ## Questions & Contact Information 87 | 88 | Questions or comments about the Service may be directed to us at the email address [auroraoss.dev@gmail.com](mailto:auroraoss.dev@gmail.com). -------------------------------------------------------------------------------- /src/de/download/AuroraWallpapers.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: DownloadPage 3 | title: Aurora Wallpapers 4 | description: Beautiful wallpapers readily available within your fingertips! 5 | lang: de 6 | meta: 7 | - property: og:title 8 | content: Aurora Wallpapers 9 | - property: og:description 10 | content: Beautiful wallpapers readily available within your fingertips! 11 | - property: og:image 12 | content: /assets/storebanner1200x680.webp 13 | - property: og:image:alt 14 | content: Aurora Wallpapers Banner Image 15 | - property: og:url 16 | content: /download/AuroraWallpapers/ 17 | - property: og:locale 18 | content: de 19 | - property: twitter:card 20 | content: summary_large_image 21 | sidebar: false 22 | --- 23 | 24 | # Aurora Store 25 | 26 | ## About 27 | 28 | App Warden is an app utility manager for all your installed apps. 29 | 30 | ## Screenshots 31 | 32 | 33 | 34 | ## Features: 35 | 36 | - Generates report for all trackers & loggers present in app installed on device. 37 | - Advance profile based de-bloater, allowing to disable/uninstall/hide junks. 38 | - **Nuke it!** - Disable all trackers across the whole device automatically. 39 | - Show trackers hidden in an app with version history, powered by Exodus Privacy. 40 | 41 | ## Credits 42 | 43 | - [whyorean](https://gitlab.com/whyorean/) (Rahul Patel) for making the app. 44 | 45 | ## Known Bugs 46 | 47 | ## Disclaimer 48 | 49 | The developer of this application is not responsible for getting your device bricked or modifications you do. You are using this service at your own risk, so please do not blame the dev. 50 | 51 | ## Support Group 52 | 53 |

54 | 55 | 56 | 57 |

-------------------------------------------------------------------------------- /src/de/download/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: Downloads 3 | title: Downloads 4 | metaTitle: Downloads 5 | description: Download the latest Aurora Apps. 6 | meta: 7 | - name: keywords 8 | content: Download, Official, Android app, App Store, APK 9 | lang: de 10 | --- 11 | 12 | # Downloads 13 | 14 | Download our latest apps here. 15 | 16 | ::: c-tip Tip! 17 | To know more about our apps, click on the app titles! 18 | ::: 19 | 20 | ## [Aurora Store](/download/AuroraStore/) 21 | 22 | The latest stable version of **Aurora Store** was uploaded . 23 | 24 | 25 | 26 | 27 | 28 | ::: c-tip 29 | Older versions of **Aurora Store** (Stable & Nightly) can be found [here](https://files.auroraoss.com/AuroraStore/). 30 | ::: 31 | 32 | ## [Aurora Droid](/download/AuroraDroid/) 33 | 34 | The latest stable version of **Aurora Droid** was uploaded . 35 | 36 | 37 | 38 | 39 | 40 | ::: c-tip 41 | Older versions of **Aurora Droid** (Stable & Nightly) can be found [here](https://files.auroraoss.com/AuroraDroid/). 42 | ::: 43 | 44 | ## [App Warden](/download/AppWarden/) 45 | 46 | The latest version of **App Warden** was uploaded . 47 | 48 | 49 | 50 | 51 | 52 | ::: c-tip 53 | Older versions of **App Warden** can be found [here](https://files.auroraoss.com/AppWarden/Stable/). \ 54 | Scripts can be found [here](https://files.auroraoss.com/AppWarden/Scripts/) 55 | ::: 56 | 57 | ## [Aurora Wallpapers](/download/AuroraWallpapers/) 58 | 59 | The latest version of **Aurora Wallpapers** was uploaded . 60 | 61 | 62 | 63 | 64 | 65 | ::: c-tip 66 | Older versions of **Aurora Wallpapers** can be found [here](https://files.auroraoss.com/Wallpapers/). 67 | ::: 68 | -------------------------------------------------------------------------------- /src/de/faq/site-policy.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SITE-POLICY 3 | description: Privacy Policy for AuroraOSS.com 4 | lang: de 5 | meta: 6 | - property: og:title 7 | content: Privacy Policy 8 | - property: og:description 9 | content: Privacy Policy for AuroraOSS.com 10 | - property: og:image 11 | content: /icons/policy_icon.png 12 | - property: og:image:alt 13 | content: AuroraOSS Policy Banner Image 14 | - property: og:url 15 | content: /de/faq/site-policy 16 | - property: og:locale 17 | content: de 18 | - property: twitter:card 19 | content: summary 20 | published: March 9, 2021 21 | sidebar: false 22 | search: false 23 | --- 24 | 25 | # Privacy Statement for AuroraOSS.com 26 | 27 | Effective date: **{{ $frontmatter.published }}** 28 | 29 | [[toc]] 30 | 31 | ## What information AuroraOSS does collect 32 | 33 | "User Personal Information" is any information about one of our Users which could, alone or together with other information, personally identify them or otherwise be reasonably linked or connected with them. Information like your Internet protocol (IP) address is collected within the category “User Personal Information.” 34 | 35 | User Personal Information does not include aggregated, non-personally identifying information that does not identify a User or cannot otherwise be reasonably linked or connected with them. 36 | 37 | ### Device information 38 | 39 | We may collect certain information about your device, such as its IP address, browser or client application information, language preference, operating system and application version, device type and ID, and device model and manufacturer. This information may include User Personal information. 40 | 41 | The reason for this is to help us differentiate between real users and bots, so that we can filter them out and block them from sending a certain amount of GET requests. Some bots use very old version of browsers such as Firefox, Chrome & other Chromium browsers, others use special techniques to make themselves look like real users. We do our best to minimize mixups 42 | 43 | ## What information AuroraOSS does _not_ collect 44 | 45 | We do not and have no means of collecting “[Sensitive Personal Information](https://gdpr-info.eu/art-9-gdpr/)”, such as personal data revealing racial or ethnic origin, political opinions, religious or philosophical beliefs, or trade union membership, and the processing of genetic data, biometric data for the purpose of uniquely identifying a natural person, data concerning health or data concerning a natural person’s sex life or sexual orientation. 46 | 47 | ## How AuroraOSS uses your information 48 | 49 | We use your information for the following purposes: 50 | 51 | - We store IP addresses if our server deems the IP 'harmful', due to the fact that a few individuals spam (meaning sending requests every second) our servers with GET requests, which caused some complications in the past. 52 | - We use Usage Information and [Device Information](#device-information) to better understand how our Users use GitHub and to improve our Website and server stability. 53 | - We limit our use of your User Personal Information to the purposes listed in this Privacy Statement. If we need to use your User Personal Information for other purposes, we will ask your permission first. 54 | 55 | ## Our use of Cookies 56 | 57 | We do not require any cookies, which automatically excludes us from being able to store, process or sell your data using cookies. We do however, utilise [localStorage](https://javascript.info/localstorage) for the sole purpose of switching between Light and Dark themes. 58 | 59 | ## Changes to our Privacy Statement 60 | 61 | Although most changes are likely to be minor, AuroraOSS may change our Privacy Statement from time to time. We will provide notification to Users of material changes to this Privacy Statement through our Website at least 30 days prior to the change taking effect by posting a notice on our home page. We will also update the repository to this website, which tracks all changes to this policy. For other changes to this Privacy Statement, we encourage Users to watch or to check our repository frequently. 62 | 63 | ## License 64 | 65 | This Privacy Statement is licensed under this [Creative Commons Zero](https://creativecommons.org/publicdomain/zero/1.0/) license. For details, see our site-policy repository. 66 | 67 | ## Translations 68 | 69 | Below are translations of this document into other languages. In the event of any conflict, uncertainty, or apparent inconsistency between any of those versions and the English version, this English version is the controlling version. 70 | 71 | - Englisch: [Website Policy](/faq/site-policy/) 72 | - French: [Politique du site](/de/faq/site-policy/) 73 | - Spanish: [Política del sitio](/de/faq/site-policy/) 74 | - Portuguese: [Política do site](/de/faq/site-policy/) 75 | - Russian: [политика сайта](/de/faq/site-policy/) 76 | - Chinese: [网站政策](/de/faq/site-policy/) 77 | - Hindi: [वेबसाइट नीति](/de/faq/site-policy/) 78 | 79 | Please proceed to the [Contribution](/de/contribution/#translation) page for more info on translating this website. 80 | 81 | ## Contacting AuroraOSS 82 | 83 | Questions regarding AuroraOSS' Privacy Statement or information practices should be directed to our support information on the [contact page](/de/contact/). 84 | -------------------------------------------------------------------------------- /src/de/guides/anonymous-logins.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Anonymous Logins 3 | description: A short explanation on how Anonymous Logins work. 4 | lang: de 5 | meta: 6 | - property: og:title 7 | content: Anonymous Logins 8 | - property: og:description 9 | content: A short explanation on how Anonymous Logins work. 10 | - property: og:image 11 | content: /assets/undraw_authentication.png 12 | - property: og:image:alt 13 | content: Anonymous Logins Banner Image 14 | - property: og:url 15 | content: /de/guides/anonymous-logins 16 | - property: og:locale 17 | content: de 18 | - property: twitter:card 19 | content: summary_large_image 20 | sidebar: true 21 | --- 22 | 23 | # Anonymous Logins 24 | ![Anonymous Logins](/assets/undraw_authentication.svg) 25 | 26 | ## How does it work? 27 | 28 | **The Anonymous login feature is great for privacy enthusiasts; however, there are certain things you should know.** 29 | 30 | 1. **What is a Token Dispenser?** 31 | 32 | A token dispenser is a web client that has around 150 real google accounts (inclusive of all servers). It distributes the AuthToken[2] for anyone who makes a request to it in a defined format. 33 | 34 | So basically all dispensers have the email-password (now aas tokens) pairs on the server. When a user makes a request, the server logs in to google using provided dummy accounts, generates an authentication token and this token is given to the user. 35 | 36 | All the dispensers are configured to use dummy device profiles, default : Xiaomi Mi5. 37 | 38 | (Why Xiaomi ? Because I had this device when I first started android developement, nothing else. China has nothing to do with it. Chill !) 39 | 40 | 2. **What is an AuthToken?** 41 | 42 | In simple terms its a token that lets you access PlayStore service. 43 | 44 | There are other complementary tokens required to make the api work, but that's done via Aurora Store and not related to Dispensers, so I would prefer avoiding it. 45 | 46 | 3. **Why do Aurora Store always say "Session-expired"?** 47 | 48 | There are multiple things that may cause it: 49 | 50 | 1. Multiple users are logged in using same dummy account provide by the dispenser, in different geographic locations. 51 | 52 | 2. There is a limit for concurrent active login sessions, post that limit, Google invalidates all sessions. 53 | 54 | 3. Recently google started putting a "rate-limit" on the usage of api, so if it detects overuse of the api, it just invalidates the authentication token. 55 | 56 | How does Aurora reach the rate-limit ? The search logic I use now is just stupid greedy approach, but it works, so ! 57 | 58 | I will improve it and try to match how exactly Play Store does it. 59 | 60 | 4. Why am I not able to login anonymously [OR] I'm able to login on device A and not on device B ? 61 | 62 | Again there can be multiple reasons: 63 | 64 | 1. Network configuration, make sure Aurora Store has access to internet. 65 | 66 | 2. Network filter, make sure you haven't blacklisted "Cloud Flare" all the dispenser are behind Cloud Flare, so if its DNS is blocked, you cant reach dispensers. 67 | 68 | 3. Tor connections [OR] Orbot setup, again Cloud Flare has some weird issues with TOR setup, I'm looking into it. 69 | 70 | 5. **What all data is sent to Google if I'm logged in as Anonymous.** 71 | 72 | I won't lie, this is what and why I send these data to Google. 73 | 74 | a. Your complete build.prop 75 | 76 | Why ? Play Store is a chaos, the hierarchy of apis, abis, locale, geo so very complex in Android. A single app has multiple versions, for different sdk levels (K,L..O), architecture x86,x64,ARM,ARM64, then locales, then different OEM specific library support. These all together are used to make a decision as what exact app version Aurora Store should download. So its mandatory I cant avoid. However you may choose to spoof it with build prop of someone else, or with a device that has same configuration as yours. 77 | 78 | b. A list of your installed apps 79 | 80 | WTF ! Why ? 81 | 82 | Umm, quite obvious, if I need to download updates then I should tell Google that these are the apps I want to check updates for. Google's repo is very large, I can not afford to maintain a separate centralized server to maintain metadata. 83 | 84 | Recently I thought of an idea to tackle this other way, like when we send our app list, we would dope it with some random apps that we haven't even installed. Then check for updates and parse only the required app data. Smart ? No ! Google is way too smart. I'm open to discuss about it and may implement it, if it turns out to be useful. 85 | 86 | Join Aurora's Support Group on Telegram for more on this: [@AuroraSupport](tg://resolve?domain=AuroraSupport) 87 | 88 | Written by Rahul Patel, original article can be found [here](https://telegra.ph/Aurora-Store---Anonymous-Login-12-20-2). 89 | -------------------------------------------------------------------------------- /src/de/guides/roadmap.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Roadmap 3 | description: Timeline of Aurora Store. 4 | lang: de 5 | meta: 6 | - property: og:title 7 | content: Anonymous Logins 8 | - property: og:description 9 | content: Timeline of Aurora Apps. 10 | - property: og:image 11 | content: /assets/undraw_roadmap.png 12 | - property: og:image:alt 13 | content: Roadmap Banner Image 14 | - property: og:url 15 | content: /de/guides/roadmap 16 | - property: og:locale 17 | content: de 18 | - property: twitter:card 19 | content: summary_large_image 20 | sidebar: true 21 | --- 22 | 23 | # Roadmap 24 | 25 | ![Roadmap](/assets/undraw_roadmap.svg) 26 | 27 | The goal of Aurora Store is to provide users an alternative to the Google Play Store that works well, packed with important privacy features as well as stunning and pleasant-looking UI. Here is a list of the important stuff of what we've achieved and changed so far. 28 | 29 | Legend: **✅ Completed | ⏳ Work In Progress | ❓ Unknown Stage** 30 | 31 | ## Aurora Store 32 | 33 | The goal of Aurora Store is to provide users an alternative to Google Play Store - one that works well, is packed with important privacy features as well as having a stunning and pleasant-looking UI. Here is a list of the important stuff of what we've achieved and changed so far. 34 | 35 | ### version 4 36 | 37 | #### ✅ Adding session and native installer to Aurora Store 38 | 39 | With the arrival of Session installer, users are now able to install apps seamlessly if Aurora Store is installed as a system application while selecting this installation method. If Aurora Store is not a system app, it will act like the native package installer, but will merge split apks and apk bundles together into a single apk first. 40 | 41 | Native is the native package installer that Android comes with by default. This may help users with OEM roms like MIUI if the other installation methods do not work. Note that split and bundled apks will not work with this installation method. 42 | 43 | #### ✅ New UI 44 | 45 | Exciting new UI changes for the new version 😉 46 | 47 | #### ✅ Major Token Dispenser API changes and exclusive use for Aurora Store only! 48 | 49 | We have seen major issues while observing the main server, and it seems like it has been overloaded with high CPU usages during version 3 recently. Thus, the developer has been trying to counter this with a solution. 50 | 51 | After this build has been released, we will remove the dispenser for v3 completely, which is to help reduce the workload of the new server. The main dispenser server will also now be available for Aurora Store only. 52 | 53 | In addition to that, a rate-limiting function has been added. Spammers will be kept out from our server, which should help lower the chances of server downsides and decrease loading times. 54 | 55 | #### ✅ Add new device configurations for spoofing 56 | 57 | In this build, a few more device configs with newer versions of Android will be added for device spoofing, as some are rather outdated. This gives users the opportunity to install e.g. apps with features that are exclusively for Android 11, but not for your device. (Note that you have to have the same Android version for those features to work!) 58 | 59 | #### ✅ Support for Android 4.4+ (KitKat) 60 | 61 | Aurora Store now supports Android Kitkat! 62 | 63 | #### ⏳ Support for Android TV 64 | 65 | Android TV is on the todo list. 66 | 67 | #### ✅ Other new features! 68 | 69 | 1. You can browse streams similar to Play Store, i.e. For You, Editor's Choice (EC), Early Access (EA). EC & EA are not available on anonymous logins 70 | 2. App Library, so you can track your app install history. 71 | 3. App-on-Sale, uses a 3rd party API for index, but app data is fetched from Google's servers 72 | 4. A dedicated section for Games 73 | 5. A new improved App UI 74 | 6. A lot of under-the-hood improvements. 75 | 7. Rewritten in Kotlin 76 | 77 | #### ✅ Stuff that's changed 78 | 79 | Here are few things that will no longer be available or has changed: 80 | 81 | 1. Geo-spoof, would provide a companion app to facilitate the same, if required. 82 | 2. Favourite app, will add something named similar to WishList, limited to google login only. 83 | 3. Anonymous logins now use your device-config to create session, so your device-config is sent to my dispenser server. It may sound scary but it is not, here is a [sample](https://gitlab.com/AuroraOSS/gplayapi/-/blob/master/src/main/resources/op_8_pro.properties) of what I send to my dispenser in order to create a anonymous session. 84 | 85 | ### version 3 86 | 87 | #### ✅ Rewrite from scratch 88 | 89 | #### ✅ Add support for Aurora Services 90 | 91 | #### ✅ Add support for Split APKs 92 | 93 | #### ✅ Add in-app Download Manager 94 | 95 | #### ✅ New UI based on latest MD Guidelines 96 | 97 | #### ✅ Deploy dedicated token-dispenser 98 | 99 | #### ✅ Add Favourite Apps Manager 100 | 101 | #### ✅ Enforce proxy network on download requests 102 | 103 | #### ✅ Add support for AndroidTV 104 | 105 | #### ✅ Add translations 106 | 107 | #### ✅ Add option to use custom token dispensers (Settings → Network) 108 | 109 | #### ✅ Add option to install apps directly to work profile (only rooted users) 110 | 111 | ### version 2 112 | 113 | #### ✅ Add Device/Language/Country Spoof Option to allow accessing GeoRestricted Apps 114 | 115 | #### ✅ Add Filter to exclude Non-Market, F-Droid & Guardian Project Apps 116 | 117 | #### ✅ Refactor complete project to AndroidX 118 | -------------------------------------------------------------------------------- /src/de/guides/server-status.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Server status 3 | description: Server statuses of dispensers for Aurora Store. 4 | lang: de 5 | meta: 6 | - property: og:title 7 | content: Server status 8 | - property: og:description 9 | content: Server statuses of dispensers for Aurora Store. 10 | - property: og:image 11 | content: /assets/undraw_server_status.png 12 | - property: og:image:alt 13 | content: Server Status Banner Image 14 | - property: og:url 15 | content: /de/guides/server-status 16 | - property: og:locale 17 | content: de 18 | - property: twitter:card 19 | content: summary_large_image 20 | sidebar: true 21 | --- 22 | 23 | # Server status 24 | ![Server status](/assets/undraw_server_status.svg) 25 | 26 | See the current status of the token dispenser servers below: 27 | 28 | :::: el-tabs 29 | ::: el-tab-pane label="Official servers" 30 | 31 | ::: 32 | :::: 33 | 34 | A word from the Aurora Store team: Please do not spam our servers. If you do, we will block you _mercilessly_. 35 | 36 | ::: c-warning Recent News! 37 | With the release of Aurora Store v4, the server dispenser URL for v3 tokens is now obsolete. Please migrate to v4 or use your own Google account if you wish to still use v3. 38 | ::: 39 | 40 | See real-time status and history [here](https://stats.uptimerobot.com/D6QpBHB11l). 41 | 42 | -------------------------------------------------------------------------------- /src/de/guides/wiki-home.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Aurora Wiki 3 | description: Read the Docs for Aurora Apps. 4 | lang: de 5 | meta: 6 | - property: og:title 7 | content: Aurora Wiki 8 | - property: og:description 9 | content: Read the Docs for Aurora Apps. 10 | - property: og:image 11 | content: /assets/wiki_banner1200x680.png 12 | - property: og:image:alt 13 | content: Aurora Wiki Banner Image 14 | - property: og:url 15 | content: /de/guides/wiki-home 16 | - property: og:locale 17 | content: de 18 | - property: twitter:card 19 | content: summary_large_image 20 | sidebar: true 21 | --- 22 | 23 | # Welcome to the Aurora Wiki! 24 | 25 |

26 | 27 |

28 | 29 | --- 30 | 31 | ### Need some help? We've got your back! 32 | 33 | If you're a newcomer or have any questions, please read [FAQs](/de/faq/) before issuing problems on GitLab or asking for help in the Telegram support chat. 34 | 35 | If you're interested in the timeline and future development of Aurora apps, read the [Roadmap](/de/guides/roadmap/) page to know more! 36 | 37 | Other than that, indulge yourself with a good helping of docs! 38 | 39 | ## Table of Contents 40 | 41 | ### Aurora Store 42 | 43 | - [Troubleshooting](/de/guides/troubleshooting/) 44 | - [Server status](/de/guides/server-status/) 45 | - [Roadmap](/de/guides/roadmap/) 46 | - [Anonymous Logins](/de/guides/anonymous-logins/) 47 | 48 | ### Aurora Droid 49 | 50 | - N/A 51 | 52 | ### App Warden 53 | 54 | - N/A 55 | 56 | ### Aurora Wallpapers 57 | 58 | - N/A 59 | -------------------------------------------------------------------------------- /src/de/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | home: true 3 | meta: 4 | - name: keywords 5 | content: Official, Android apps, Homepage, App Store 6 | - property: og:title 7 | content: AuroraOSS 8 | - property: og:description 9 | content: Eine Organization mit dem Ziel Apps zu erstellen die einfach zu benuzten sind und schön aussehen. Aurora Apps Open-Source-Software. Von euch inspiriert. Für die Community gebaut. 10 | - property: og:image 11 | content: /assets/auroraoss_banner1200x680.png 12 | - property: og:image:alt 13 | content: AuroraOSS Banner Image 14 | - property: og:url 15 | content: /de/ 16 | - property: og:locale 17 | content: de 18 | - property: twitter:card 19 | content: summary_large_image 20 | lang: de 21 | heroImage: /icons/auroralogo.webp 22 | downloadText: Downloads 23 | downloadLink: /de/download/ 24 | faqText: FAQs 25 | faqLink: /de/faq/ 26 | tagline: Aurora Apps Open-Source-Software. Von euch inspiriert. Für die Community gebaut. 27 | features: 28 | - title: Design 29 | details: Aurora Apps werden mit Design als Hauptaspekt erstellt. Alle unsere Apps bieten eine einzigartige und saubere, frisch aussehende Benutzeroberfläche. Wir befolgen alle Designrichtlinien, auch wenn diejenigen, die Richtlinien erstellt haben, dies nicht tun. :P 30 | - title: Privatspäre 31 | details: Aurora Apps respektieren die Privatsphäre jedes Benutzers und sammeln keinerlei personenbezogene Daten. Keine unserer Apps enthält Telemetriedienste oder Anzeigen. Wir glauben an einen transparenten Rahmen. 32 | - title: Open Source 33 | details: Alle von Aurora OSS erstellten Apps werden unter der GNU General Public License (GPLv.3.0) veröffentlicht. Was wir hinter der schönen Benutzeroberfläche tun, ist nicht verborgen. Sie können unseren Code jederzeit überprüfen. Wir sind offen für Vorschläge und Pull-Requests sind immer willkommen! 34 | - title: Anpassbar 35 | details: Aurora Apps bieten eine hervorragende Anpassbarkeit, sodass Benutzer die App an ihre ästhetischen Anforderungen anpassen können. Wechseln Sie automatisch zwischen den UI Hell & Dunkel (& Schwarz), sodass alle Nachteulen nice blind werden. 36 | footer: MIT Licensed | Copyright © 2021-present Austin Hornhead 37 | --- 38 | -------------------------------------------------------------------------------- /src/download/AppWarden.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: DownloadPage 3 | title: App Warden 4 | description: An open source app utility manager for all your installed apps. 5 | lang: en-GB 6 | meta: 7 | - property: og:title 8 | content: App Warden 9 | - property: og:description 10 | content: An open source app utility manager for all your installed apps. 11 | - property: og:image 12 | content: /assets/storebanner1200x680.webp 13 | - property: og:image:alt 14 | content: App Warden Banner Image 15 | - property: og:url 16 | content: /download/AppWarden/ 17 | - property: og:locale 18 | content: en-GB 19 | - property: twitter:card 20 | content: summary_large_image 21 | sidebar: false 22 | --- 23 | 24 | # Aurora Store 25 | 26 | ## About 27 | 28 | App Warden is an app utility manager for all your installed apps. 29 | 30 | ## Screenshots 31 | 32 | 33 | 34 | ## Features: 35 | 36 | - Generates report for all trackers & loggers present in app installed on device. 37 | - Advance profile based de-bloater, allowing to disable/uninstall/hide junks. 38 | - **Nuke it!** - Disable all trackers across the whole device automatically. 39 | - Show trackers hidden in an app with version history, powered by Exodus Privacy. 40 | 41 | ## Credits 42 | 43 | - [whyorean](https://gitlab.com/whyorean/) (Rahul Patel) for making the app. 44 | 45 | ## Known Bugs 46 | 47 | ## Disclaimer 48 | 49 | The developer of this application is not responsible for getting your device bricked or modifications you do. You are using this service at your own risk, so please do not blame the dev. 50 | 51 | ## Support Group 52 | 53 |

54 | 55 | 56 | 57 |

-------------------------------------------------------------------------------- /src/download/AuroraDroid.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: DownloadPage 3 | title: Aurora Droid 4 | description: An open source F-Droid client with modern UI. 5 | lang: en-GB 6 | meta: 7 | - property: og:title 8 | content: Aurora Droid 9 | - property: og:description 10 | content: An open source F-Droid client with modern UI. 11 | - property: og:image 12 | content: /assets/storebanner1200x680.webp 13 | - property: og:image:alt 14 | content: Aurora Droid Banner Image 15 | - property: og:url 16 | content: /download/AuroraDroid/ 17 | - property: og:locale 18 | content: en-GB 19 | - property: twitter:card 20 | content: summary_large_image 21 | sidebar: false 22 | --- 23 | 24 | # Aurora Droid 25 | 26 | ## About 27 | 28 | Aurora Droid is a FOSS client for F-Droid. It's been redesigned to appeal users who are fed-up with the official F-Droid client, with user-friendly navigation and quick usability. 29 | 30 | ## Screenshots 31 | 32 | 33 | 34 | ## Features: 35 | 36 | - Easy repo management, with more than 20 repos available by default. 37 | - Beautiful UI based on latest Material Design guidelines. 38 | - A full featured download manager with parallel & sequential download support. 39 | 40 | ## Credits 41 | 42 | - [whyorean](https://gitlab.com/whyorean/) (Rahul Patel) for making the app. 43 | - [F-Droid Team?](https://github.com/F-Droid/) maybe. 44 | 45 | ## Known Bugs 46 | 47 | ## Disclaimer 48 | 49 | The developer of this application is not responsible for getting your device malware or anything affiliated with apps in the F-Droid Store except Aurora Apps by AuroraOSS. 50 | 51 | ## Support Group 52 | 53 |

54 | 55 | 56 | 57 |

-------------------------------------------------------------------------------- /src/download/AuroraStore/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: DownloadPage 3 | title: Aurora Store 4 | description: An open-source alternative Google Play Store frontend with privacy features and clean UI. 5 | lang: en-GB 6 | meta: 7 | - property: og:title 8 | content: Aurora Store 9 | - property: og:description 10 | content: An open-source alternative Google Play Store frontend with privacy features and clean UI. 11 | - property: og:image 12 | content: /assets/storebanner1200x680.webp 13 | - property: og:image:alt 14 | content: Aurora Store Banner Image 15 | - property: og:url 16 | content: /download/AuroraStore/ 17 | - property: og:locale 18 | content: en-GB 19 | - property: twitter:card 20 | content: summary_large_image 21 | sidebar: false 22 | --- 23 | 24 | # Aurora Store 25 | 26 | ## About 27 | 28 | Aurora Store is an open-source alternative Google Play Store frontend client with privacy and modern design in mind. Not only does Aurora Store download, update, and search for apps like the Play Store, it also empowers the user with useful features. 29 | 30 | ## Screenshots 31 | 32 | 33 | 34 | ## Features: 35 | 36 | - **Anonymous login**: Login anonymously so that you stay private. 37 | - **Google login**: access your paid apps and install beta apps. 38 | - **Device spoofing**: App not available for your device? Use available device configurations to spoof you device! 39 | - **Filter F-Droid app**: Don't want F-Droid apps to be in your update list? Use the filter to exclude them. 40 | - **Blacklist apps**: By blacklisting apps, Google will not know that the selected apps are installed on your device. 41 | 42 | ## Credits 43 | 44 | - [whyorean](https://gitlab.com/whyorean/) (Rahul Patel) for making the app. 45 | 46 | ## Known Bugs 47 | 48 | ::: guide Bugs 49 | - Root installation not working properly on Android 11 (R+) 50 | ::: 51 | 52 | ## Terms Of Service 53 | 54 | Every user is required to read and agree to the Terms of Service before being able to use Aurora Store. You can read the Terms Of Service [here](//download/AuroraStore/terms-of-service/). 55 | 56 | ## Policy 57 | 58 | Please read our [Policy](/download/AuroraStore/policy/) to know what we data we require & collect from you and what we send to Google. 59 | 60 | ## Disclaimer 61 | 62 | Please read our [Disclaimer](/download/AuroraStore/disclaimer/) to know why what you do using Aurora Store is up to you and not us. 63 | 64 | As per [**Google Play Terms of Service §4**](https://play.google.com/intl/en-us_us/about/play-terms/index.html), under "Restrictions" there are a number of things that could potentially be used against you for the deactivation of your personal Google account that you want to remain using. 65 | 66 | ## Support Group 67 | 68 |

69 | 70 | 71 | 72 |

73 | -------------------------------------------------------------------------------- /src/download/AuroraStore/disclaimer.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: DISCLAIMER 3 | description: Disclaimer for Aurora Store 4 | lang: en-GB 5 | meta: 6 | - property: og:title 7 | content: Disclaimer 8 | - property: og:description 9 | content: Disclaimer for Aurora Store 10 | - property: og:image 11 | content: /icons/disclaimer_icon.png 12 | - property: og:image:alt 13 | content: Aurora Store Disclaimer Banner Image 14 | - property: og:url 15 | content: /download/AuroraStore/disclaimer 16 | - property: og:locale 17 | content: en-GB 18 | - property: twitter:card 19 | content: summary 20 | sidebar: false 21 | --- 22 | 23 | # Disclaimer 24 | 25 | ### 1. Google Accounts. 26 | 27 | You hold yourself accountable if you are to use Aurora Store with your personal Google Account, which may cause your account to be blocked/blacklisted by Google. As per **Google Play's Terms Of Service §4 and §2**: 28 | 29 | #### §4 Rights and Restrictions 30 | 31 | > **Violation of License Terms.** If you violate any of the Content restriction provisions of the Terms, materially or repeatedly violate any of the other Terms or we are investigating you for suspected misconduct then Google may, without refund to you, terminate your access to Google Play, the Content or your Google Account and your rights under this licence will immediately terminate. We will notify you with the reason for our action unless we reasonably believe that to do so would cause Google or another person legal liability, would compromise an investigation, would compromise the operation of any Google products, services or systems, would cause harm to our users or would be in breach of the law or the direction of a legal enforcement authority. See Disabled Accounts in Section 2 for additional information. 32 | > 33 | > **Restrictions:** You may not: 34 | > 35 | > - display (in part or in whole) the Content as part of any public performance or display even if no fee is charged except (a) where such use would not constitute a copyright infringement or violate any other applicable right or (b) as specifically permitted and only in the exact manner provided. 36 | > - sell, rent, lease, redistribute, broadcast, transmit, communicate, modify, sublicense, transfer, assign any Content to any third party including with regard to any downloads of Content that you may obtain through Google Play except as specifically permitted and only in the exact manner provided. 37 | > - use Google Play or any Content in conjunction with any stream-ripping, stream capture or similar software to record or create a copy of any Content that is presented to you in streaming format. 38 | > - use Content as part of any service for sharing, lending or multi-person use, or for the purpose of any other institution, except as specifically permitted and only in the exact manner provided. 39 | > - attempt to, or assist, authorize or encourage others to circumvent, disable or defeat any of the security features or components that protect, obfuscate or otherwise restrict access to any Content or Google Play. 40 | > - remove any watermarks, labels or other legal or proprietary notices included in any Content, or attempt to modify any Content obtained through Google Play, including any modification for the purpose of disguising or changing any indications of the ownership or source of Content. 41 | > 42 | > **Multiple Accounts.** If you have multiple Google Accounts with different user names, in some cases you may transfer Content out of an account and into another account, provided you are the owner of each such account and provided Google has enabled a feature of the relevant service allowing such transfers. 43 | 44 | #### §2 Your Use of Google Play 45 | > **Disabled Accounts.** If Google disables access to your account in accordance with the Terms (for example if you materially or repeatedly violate the Terms), you may be prevented from accessing Google Play, your account details or any files or other Content that is stored with your account. See the Help Center for more information. If you are the family manager of a family on Google Play and Google disables access to your account, your family members may lose access to family features requiring a family group, such as a family payment method, family subscriptions, or Content shared by family members. If you are a family member of a family on Google Play and Google disables your account, your family members will lose access to Content you have shared with them. 46 | 47 | ### 2. Installing **Aurora Store** from third-party sources. 48 | 49 | You are to hold yourself responsible by installing **Aurora Store** from other sources other than our own, in which you do not blame us for malicious programs, device bricking or anything else. The following sources are the only official links we provide: 50 | - **F-Droid:** [https://f-droid.org/en/packages/com.aurora.store/](https://f-droid.org/en/packages/com.aurora.store/) 51 | - **AuroraOSS Website:** [https://auroraoss.com/download/](https://auroraoss.com/download/) 52 | - **Official Telegram Channel:** [https://t.me/AuroraOfficial](https://t.me/AuroraOfficial) 53 | - **GitLab:** [https://gitlab.com/AuroraOSS/AuroraStore/-/releases](https://gitlab.com/AuroraOSS/AuroraStore/-/releases) 54 | 55 | ### 3. Links in Aurora Store 56 | 57 | **AuroraOSS**, makes no claim or representation regarding, and accepts no responsibility for third party websites accessible by hyperlink from the Service or websites linking to the Service. When you leave the Service, you should be aware that these Terms and our policies no longer govern. The only links we provide are: 58 | 59 | - **Donation links** Bitcoin, Bitcoin Cash, Etherum, BHIM-UPI, PayPal & Liberapay links 60 | - **Repository sources** GitLab repository link 61 | - **xda-developers** Aurora Store xda-developers thread 62 | - **Telegram** Aurora Support group link 63 | - **F-Droid** Aurora Store in F-Droid repository link 64 | 65 | ### 4. Content 66 | 67 | We do not own any content within **Aurora Store**, all available content i.e. applications, information and links are provided "as is" directly from Google Play repositories/servers. For all content on **Aurora Store**, we don't review, verify or authenticate it, and it may include inaccuracies or false information. We make no representations, warranties, or guarantees relating to the quality, suitability, truth, accuracy or completeness of any content contained in the Service. You acknowledge sole responsibility for and assume all risk arising from your use of or reliance on any content. 68 | 69 | -------------------------------------------------------------------------------- /src/download/AuroraStore/policy.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: POLICY 3 | description: Policy for Aurora Store 4 | lang: en-GB 5 | meta: 6 | - property: og:title 7 | content: Privacy Policy 8 | - property: og:description 9 | content: Policy for Aurora Store 10 | - property: og:image 11 | content: /icons/policy_icon.png 12 | - property: og:image:alt 13 | content: Aurora Store Policy Banner Image 14 | - property: og:url 15 | content: /download/AuroraStore/policy 16 | - property: og:locale 17 | content: en-GB 18 | - property: twitter:card 19 | content: summary 20 | sidebar: false 21 | --- 22 | 23 | # Aurora Store Privacy Policy Last Updated: **01.03.2021** 24 | 25 | ## User data sent to Google by default 26 | 27 | The following data is mandatory to make the Service function, all of which Google needs for **Aurora Store** to be able to receive required data: 28 | 29 | - **IP Address** which is bound to network request 30 | - **Timezone, MCC & MNC\*** are stripped & replaced with a random constant 31 | - **BUILD_CONFIG** includes the app details - package name, version-name, version-code 32 | - **BUILD** includes your device details, see for more info 33 | 34 | If you choose to use your own account, the following are added to the above: 35 | 36 | - **Account details** for Google sign-in verification 37 | 38 | We do not store, process or sell any of the collected data above. The data is sent to and processed by Google's servers directly untouched. All accounts being used within **Aurora Store** are saved onto the device as AAS Tokens & email pair for account verification. **No passwords** are saved to Aurora Store. 39 | 40 | **\*MCC**: Mobile Country Code; **MNC**: Mobile Network Code. 41 | 42 | ## User data sent to our server by default 43 | 44 | The only data being sent to our server are **IP addresses**. This is to ensure the functionality and stability of our server, which detects the amount of GET requests from an IP address and if deemed them as spamming, will be banned from our server, otherwise rate-limited. Rate-limiting lasts for an hour. If you keep going over the 20 request per hour limit, an additional hour to the rate-limiting will be added for every additional 20 requests. So do yourself a favour and don't do it. 45 | 46 | ## Changes To This Privacy Policy 47 | 48 | We may update our Privacy Policy from time to time. You are thus advised to review this Privacy Policy periodically for any changes. Changes to this Privacy Policy are effective when they are posted on this page. 49 | 50 | ## Contact Us 51 | 52 | If you have any questions about this Privacy Policy, please contact us at **aurora.dev@gmail.com** or via our support groups on Telegram. 53 | -------------------------------------------------------------------------------- /src/download/AuroraStore/terms-of-service.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Terms Of Service 3 | description: Terms of Service for Aurora Store 4 | lang: en-GB 5 | meta: 6 | - property: og:title 7 | content: Terms of Service 8 | - property: og:description 9 | content: Terms of Service for Aurora Store 10 | - property: og:image 11 | content: /icons/tos_icon.png 12 | - property: og:image:alt 13 | content: Aurora Store TOS Banner Image 14 | - property: og:url 15 | content: /download/AuroraStore/terms-of-service 16 | - property: og:locale 17 | content: en-GB 18 | - property: twitter:card 19 | content: summary 20 | sidebar: false 21 | --- 22 | 23 | # **Aurora Store** TERMS OF SERVICE 24 | 25 | Last Updated: **01.03.2021** 26 | 27 | These terms of service ("Terms") apply to your access and use of **Aurora Store**. Please read them carefully. 28 | 29 | ## Accepting these Terms 30 | 31 | If you access or use the Service, it means you agree to be bound by all of the terms below. So, before you use the Service, please read all of the terms. If you don't agree to all of the terms below, please do not use the Service. Also, if a term does not make sense to you, please let us know by e-mailing [auroraoss.dev@gmail.com](mailto:auroraoss.dev@gmail.com). 32 | 33 | ## Changes to these Terms 34 | 35 | We reserve the right to modify these Terms at any time. For instance, we may need to change these Terms if we come out with a new feature or for some other reason. Whenever we make changes to these Terms, the changes are effective **01.03.2021** after we post such revised Terms (indicated by revising the date at the top of these Terms) or upon your acceptance if we provide a mechanism for your immediate acceptance of the revised Terms (such as a click-through confirmation or acceptance button). It is your responsibility to check **Aurora Store** for changes to these Terms. If you continue to use the Service after the revised Terms go into effect, then you have accepted the changes to these Terms. 36 | 37 | ## Privacy Policy 38 | 39 | We have a privacy policy covering the collection, use, and disclosure of user information, which can be found [here](/download/AuroraStore/policy/). 40 | 41 | ## Copyright Policy 42 | 43 | We take intellectual property rights seriously, and by using a copyright policy in accordance with the GNU GENERAL PUBLIC LICENSE Version 3, we have adopted a policy of terminating, in appropriate circumstances and, at our sole discretion, access to the service for users who are deemed to be repeat infringers. Persons who wish to fork the Aurora Store project or copy code from the repository MUST comply with the used license. The license in use can be found [here](https://www.gnu.org/licenses/gpl-3.0.en.html) 44 | 45 | ## Disclaimer 46 | 47 | We have a disclaimer covering the use of our Service and the content within **Aurora Store**, which can be found [here](/download/AuroraStore/disclaimer/). 48 | 49 | ## Third-Party Services 50 | 51 | We provide users with two major third party services. Your use of the Service may also include the use of applications that are developed or owned by a third party. Your use of such third party applications, websites, and services is governed by that party's own terms of service or privacy policies. We encourage you to read the terms and conditions and privacy policy of any third party application, website or service that you visit or use. 52 | 53 | ## Token Dispenser Server 54 | 55 | We provide users with the ability to use anonymous accounts within **Aurora Store**, provided from our server as tokens. Your use of the Service agrees to not affect our server in any way deemed harmful or with malicious intent. We may occasionally ask contributors to provide us with accounts. You hereby acknowledge that the accounts you make for **Aurora Store** to be given entire access to **AuroraOSS** and to be stored on our server. This does not apply to non-anonymous accounts. 56 | 57 | If there are anonymous accounts that somehow are able to gain access to paid apps, you MUST directly inform us with: 58 | - **Proof**, be it a a screen recording, screenshots or other image/video material, 59 | - **Email address** of the account, which can be located at the Accounts page on the sidebar as **Accounts**, 60 | - **Time & Date** of when you encountered the breach. 61 | You can either message admins of the Telegram support group, direct message [@whyorean](tg://resolve?domain=whyorean) or via [auroraoss.dev@gmail.com](mailto:auroraoss.dev@gmail.com). 62 | 63 | If we find accounts with a breach like this, we will either: 64 | - remove that account from the dispenser server or, 65 | - fix the breach and generate a new AAS token for that account or, 66 | - shut down the dispenser server with a notice on our website blog and Telegram channel, stating what the problem is. 67 | 68 | We do not allow or support piracy and do not tolerate users who abuse our Service. We are obligated to block users from accessing the accounts. Our server, our rules. 69 | 70 | ## **Aurora Store** Materials 71 | 72 | We put a lot of effort into creating the Service including, the logo and all designs, text, graphics, pictures, metadata, information and other content (excluding content within **Aurora Store**). This property is owned by us or our licensors and it is protected by open-source licenses. We grant you the right to use it. 73 | 74 | ## Unavoidable Legal Stuff 75 | 76 | THE SERVICE AND ANY OTHER SERVICE AND CONTENT INCLUDED ON OR OTHERWISE MADE AVAILABLE TO YOU THROUGH THE SERVICE ARE PROVIDED TO YOU ON AN AS IS OR AS AVAILABLE BASIS WITHOUT ANY REPRESENTATIONS OR WARRANTIES OF ANY KIND. WE DISCLAIM ANY AND ALL WARRANTIES AND REPRESENTATIONS (EXPRESS OR IMPLIED, ORAL OR WRITTEN) WITH RESPECT TO THE SERVICE AND CONTENT INCLUDED ON OR OTHERWISE MADE AVAILABLE TO YOU THROUGH THE SERVICE WHETHER ALLEGED TO ARISE BY OPERATION OF LAW, BY REASON OF CUSTOM OR USAGE IN THE TRADE, BY COURSE OF DEALING OR OTHERWISE. IN NO EVENT WILL **AURORA OSS** BE LIABLE TO YOU OR ANY THIRD PARTY FOR ANY SPECIAL, INDIRECT, INCIDENTAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES OF ANY KIND ARISING OUT OF OR IN CONNECTION WITH THE SERVICE OR ANY OTHER SERVICE AND/OR CONTENT INCLUDED ON OR OTHERWISE MADE AVAILABLE TO YOU THROUGH THE SERVICE, REGARDLESS OF THE FORM OF ACTION, WHETHER IN CONTRACT, TORT, STRICT LIABILITY OR OTHERWISE, EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES OR ARE AWARE OF THE POSSIBILITY OF SUCH DAMAGES. OUR TOTAL LIABILITY FOR ALL CAUSES OF ACTION AND UNDER ALL THEORIES OF LIABILITY WILL BE LIMITED TO THE AMOUNT YOU PAID TO **AURORA OSS**. THIS SECTION WILL BE GIVEN FULL EFFECT EVEN IF ANY REMEDY SPECIFIED IN THIS AGREEMENT IS DEEMED TO HAVE FAILED OF ITS ESSENTIAL PURPOSE. You agree to defend, indemnify and hold us harmless from and against any and all costs, damages, liabilities, and expenses (including attorneys' fees, costs, penalties, interest and disbursements) we incur in relation to, arising from, or for the purpose of avoiding, any claim or demand from a third party relating to your use of the Service or the use of the Service by any person using your account, including any claim that your use of the Service violates any applicable law or regulation, or the rights of any third party, and/or your violation of these Terms. ## Termination If you breach any of these Terms, we have the right to suspend or disable your access to or use of the Service. 77 | 78 | ## Entire Agreement 79 | 80 | These Terms constitute the entire agreement between you and **AuroraOSS** regarding the use of the Service, superseding any prior agreements between you and **AuroraOSS** relating to your use of the Service. 81 | 82 | ## Feedback 83 | 84 | Please let us know what you think of the Service, these Terms and, in general, **Aurora Store**. When you provide us with any feedback, comments or suggestions about the Service, these Terms and, in general, **Aurora Store**, you irrevocably assign to us all of your right, title and interest in and to your feedback, comments and suggestions. If you discover or suspect any Service security breaches, please let us know as soon as possible. 85 | 86 | ## Questions & Contact Information 87 | 88 | Questions or comments about the Service may be directed to us at the email address [auroraoss.dev@gmail.com](mailto:auroraoss.dev@gmail.com). -------------------------------------------------------------------------------- /src/download/AuroraWallpapers.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: DownloadPage 3 | title: Aurora Wallpapers 4 | description: Beautiful wallpapers readily available within your fingertips! 5 | lang: en-GB 6 | meta: 7 | - property: og:title 8 | content: Aurora Wallpapers 9 | - property: og:description 10 | content: Beautiful wallpapers readily available within your fingertips! 11 | - property: og:image 12 | content: /assets/storebanner1200x680.webp 13 | - property: og:image:alt 14 | content: Aurora Wallpapers Banner Image 15 | - property: og:url 16 | content: /download/AuroraWallpapers/ 17 | - property: og:locale 18 | content: en-GB 19 | - property: twitter:card 20 | content: summary_large_image 21 | sidebar: false 22 | --- 23 | 24 | # Aurora Store 25 | 26 | ## About 27 | 28 | App Warden is an app utility manager for all your installed apps. 29 | 30 | ## Screenshots 31 | 32 | 33 | 34 | ## Features: 35 | 36 | - Generates report for all trackers & loggers present in app installed on device. 37 | - Advance profile based de-bloater, allowing to disable/uninstall/hide junks. 38 | - **Nuke it!** - Disable all trackers across the whole device automatically. 39 | - Show trackers hidden in an app with version history, powered by Exodus Privacy. 40 | 41 | ## Credits 42 | 43 | - [whyorean](https://gitlab.com/whyorean/) (Rahul Patel) for making the app. 44 | 45 | ## Known Bugs 46 | 47 | ## Disclaimer 48 | 49 | The developer of this application is not responsible for getting your device bricked or modifications you do. You are using this service at your own risk, so please do not blame the dev. 50 | 51 | ## Support Group 52 | 53 |

54 | 55 | 56 | 57 |

-------------------------------------------------------------------------------- /src/download/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: Downloads 3 | title: Downloads 4 | metaTitle: Downloads 5 | description: Download the latest Aurora Apps. 6 | meta: 7 | - name: keywords 8 | content: Download, Official, Android app, App Store, APK 9 | lang: en-GB 10 | --- 11 | 12 | # Downloads 13 | 14 | Download our latest apps here. 15 | 16 | ::: c-tip Tip! 17 | To know more about our apps, click on the app titles! 18 | ::: 19 | 20 | ## [Aurora Store](/download/AuroraStore/) 21 | 22 | The latest stable version of **Aurora Store** was uploaded . 23 | 24 | 25 | 26 | 27 | 28 | ::: c-tip 29 | Older versions of **Aurora Store** (Stable & Nightly) can be found [here](https://files.auroraoss.com/AuroraStore/). 30 | ::: 31 | 32 | ## [Aurora Droid](/download/AuroraDroid/) 33 | 34 | The latest stable version of **Aurora Droid** was uploaded . 35 | 36 | 37 | 38 | 39 | 40 | ::: c-tip 41 | Older versions of **Aurora Droid** (Stable & Nightly) can be found [here](https://files.auroraoss.com/AuroraDroid/). 42 | ::: 43 | 44 | ## [App Warden](/download/AppWarden/) 45 | 46 | The latest version of **App Warden** was uploaded . 47 | 48 | 49 | 50 | 51 | 52 | ::: c-tip 53 | Older versions of **App Warden** can be found [here](https://files.auroraoss.com/AppWarden/Stable/). \ 54 | Scripts can be found [here](https://files.auroraoss.com/AppWarden/Scripts/) 55 | ::: 56 | 57 | ## [Aurora Wallpapers](/download/AuroraWallpapers/) 58 | 59 | The latest version of **Aurora Wallpapers** was uploaded . 60 | 61 | 62 | 63 | 64 | 65 | ::: c-tip 66 | Older versions of **Aurora Wallpapers** can be found [here](https://files.auroraoss.com/Wallpapers/). 67 | ::: 68 | -------------------------------------------------------------------------------- /src/faq/site-policy.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SITE-POLICY 3 | description: Privacy Policy for AuroraOSS.com 4 | lang: en-GB 5 | meta: 6 | - property: og:title 7 | content: Privacy Policy 8 | - property: og:description 9 | content: Privacy Policy for AuroraOSS.com 10 | - property: og:image 11 | content: /icons/policy_icon.png 12 | - property: og:image:alt 13 | content: AuroraOSS Policy Banner Image 14 | - property: og:url 15 | content: /faq/site-policy 16 | - property: og:locale 17 | content: en-GB 18 | - property: twitter:card 19 | content: summary 20 | published: March 9, 2021 21 | sidebar: false 22 | search: false 23 | --- 24 | 25 | # Privacy Statement for AuroraOSS.com 26 | 27 | Effective date: **{{ $frontmatter.published }}** 28 | 29 | [[toc]] 30 | 31 | ## What information AuroraOSS does collect 32 | 33 | "User Personal Information" is any information about one of our Users which could, alone or together with other information, personally identify them or otherwise be reasonably linked or connected with them. Information like your Internet protocol (IP) address is collected within the category “User Personal Information.” 34 | 35 | User Personal Information does not include aggregated, non-personally identifying information that does not identify a User or cannot otherwise be reasonably linked or connected with them. 36 | 37 | ### Device information 38 | 39 | We may collect certain information about your device, such as its IP address, browser or client application information, language preference, operating system and application version, device type and ID, and device model and manufacturer. This information may include User Personal information. 40 | 41 | The reason for this is to help us differentiate between real users and bots, so that we can filter them out and block them from sending a certain amount of GET requests. Some bots use very old version of browsers such as Firefox, Chrome & other Chromium browsers, others use special techniques to make themselves look like real users. We do our best to minimize mixups 42 | 43 | ## What information AuroraOSS does _not_ collect 44 | 45 | We do not and have no means of collecting “[Sensitive Personal Information](https://gdpr-info.eu/art-9-gdpr/)”, such as personal data revealing racial or ethnic origin, political opinions, religious or philosophical beliefs, or trade union membership, and the processing of genetic data, biometric data for the purpose of uniquely identifying a natural person, data concerning health or data concerning a natural person’s sex life or sexual orientation. 46 | 47 | ## How AuroraOSS uses your information 48 | 49 | We use your information for the following purposes: 50 | 51 | - We store IP addresses if our server deems the IP 'harmful', due to the fact that a few individuals spam (meaning sending requests every second) our servers with GET requests, which caused some complications in the past. 52 | - We use Usage Information and [Device Information](#device-information) to better understand how our Users use GitHub and to improve our Website and server stability. 53 | - We limit our use of your User Personal Information to the purposes listed in this Privacy Statement. If we need to use your User Personal Information for other purposes, we will ask your permission first. 54 | 55 | ## Our use of Cookies 56 | 57 | We do not require any cookies, which automatically excludes us from being able to store, process or sell your data using cookies. We do however, utilise [localStorage](https://javascript.info/localstorage) for the sole purpose of switching between Light and Dark themes. 58 | 59 | ## Changes to our Privacy Statement 60 | 61 | Although most changes are likely to be minor, AuroraOSS may change our Privacy Statement from time to time. We will provide notification to Users of material changes to this Privacy Statement through our Website at least 30 days prior to the change taking effect by posting a notice on our home page. We will also update the repository to this website, which tracks all changes to this policy. For other changes to this Privacy Statement, we encourage Users to watch or to check our repository frequently. 62 | 63 | ## License 64 | 65 | This Privacy Statement is licensed under this [Creative Commons Zero](https://creativecommons.org/publicdomain/zero/1.0/) license. For details, see our site-policy repository. 66 | 67 | ## Translations 68 | 69 | Below are translations of this document into other languages. In the event of any conflict, uncertainty, or apparent inconsistency between any of those versions and the English version, this English version is the controlling version. 70 | 71 | - German: [Webseite-Richtlinien](/de/faq/site-policy/) 72 | - French: [Politique du site](/faq/site-policy/) 73 | - Spanish: [Política del sitio](/faq/site-policy/) 74 | - Portuguese: [Política do site](/faq/site-policy/) 75 | - Russian: [политика сайта](/faq/site-policy/) 76 | - Chinese: [网站政策](/faq/site-policy/) 77 | - Hindi: [वेबसाइट नीति](/faq/site-policy/) 78 | 79 | Please proceed to the [Contribution](/contribution/#translation) page for more info on translating this website. 80 | 81 | ## Contacting AuroraOSS 82 | 83 | Questions regarding AuroraOSS' Privacy Statement or information practices should be directed to our support information on the [contact page](/contact/). 84 | -------------------------------------------------------------------------------- /src/guides/android-apps.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Android Apps 3 | description: Want to know more about android apps and how they get installed? This page might solve that curiosity of yours! 4 | lang: en-GB 5 | meta: 6 | - property: og:title 7 | content: Android Apps 8 | - property: og:description 9 | content: Want to know more about android apps and how they get installed? This page might solve that curiosity of yours! 10 | - property: og:image 11 | content: /assets/undraw_android.png 12 | - property: og:image:alt 13 | content: Android Banner Image 14 | - property: og:url 15 | content: /guides/system-app 16 | - property: og:locale 17 | content: en-GB 18 | - property: twitter:card 19 | content: summary_large_image 20 | sidebar: true 21 | --- 22 | 23 | # Android App Types 24 | 25 | As we all know, Android is influenced and maintained by Google. 26 | 27 | 28 | ## What is an APK? 29 | 30 | To understand the context of the following text under this section, you require some knowledge about APKs and how they function. 31 | 32 | APKs or .apk are Android App Packages, which include the logic, images, databases, language files, sound files, etc. are required to be able to install an app on your device. It's a compression package format specially designed for Android, just like `.zip` or `.tar.gz` for universal zip compressions. 33 | 34 | ## Android Universal App 35 | 36 | 37 | ## Android App Bundles (AAB) 38 | 39 | Just like APKs, AABs are a type of compression package which include the actual apk file. 40 | 41 | Hence the term "split apk". 42 | 43 | 44 | ### Aplication Binary Interface (ABI) 45 | 46 | The ABI instructs how the CPU interacts with the system at runtime, and this all depends on the CPU architecture e.g. arm64 or x86. This 47 | 48 | To know more on how ABIs work, read this [guide](https://developer.android.com/ndk/guides/abis). 49 | 50 | ### Localization resources (Languages) 51 | 52 | Localizing an application essentially means creating different string translations for each language the application should be in. When the application was shipped as a single APK using the old approach, it contained all localizations at once, even though there was hardly a need for that. App bundles optimize this process by delivering only the language resources that match the device’s system locales. However, if the user decides to change the system locale after the app is already installed, resources for missing languages will be automatically downloaded. For some applications, the localization case might go even further and include locale-specific videos or imagery. As a result, those applications will benefit even more from optimized bundle delivery. 53 | 54 | ### Screen density resources (DPI) 55 | 56 | An Android application should be able to run on a variety of different screen sizes and pixel densities. Android usually performs basic scaling and resizing to adapt a UI to different screens, but to ensure a better UX, additional work must be done. 57 | 58 | This usually includes the following: 59 | 60 | UI layouts depending on the screen configuration — for example, layouts specifically designed for watch, phone, tablet, or TV. 61 | 62 | Bitmaps to match each screen density. 63 | 64 | Icon drawables for each screen density if they are too complex for a mipmap drawable. 65 | 66 | Again, the older strategy with the single APK would’ve delivered all those resources at once, even though a device would not have had much use for most of them. But app bundles ensure that only those resources that correspond to a device’s screen size and density will be delivered. 67 | 68 | 69 | For more information about AABs, read the official guide on [Android Developers](https://developer.android.com/guide/app-bundle). 70 | 71 | ## Android Legacy Expansions (OBBs) 72 | 73 | 74 | ## Play Asset Delivery (PAD) 75 | 76 | 77 | 78 | 79 | 80 | We hope we did our best to break it down for you so that you have understood the fundamentals on how the Android app file packaging structure looks like and the . -------------------------------------------------------------------------------- /src/guides/anonymous-logins.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Anonymous Logins 3 | description: A short explanation on how Anonymous Logins work. 4 | lang: en-GB 5 | meta: 6 | - property: og:title 7 | content: Anonymous Logins 8 | - property: og:description 9 | content: A short explanation on how Anonymous Logins work. 10 | - property: og:image 11 | content: /assets/undraw_authentication.png 12 | - property: og:image:alt 13 | content: Anonymous Logins Banner Image 14 | - property: og:url 15 | content: /guides/anonymous-logins 16 | - property: og:locale 17 | content: en-GB 18 | - property: twitter:card 19 | content: summary_large_image 20 | sidebar: true 21 | --- 22 | 23 | # Anonymous Logins 24 | ![Anonymous Logins](/assets/undraw_authentication.svg) 25 | 26 | ## How does it work? 27 | 28 | **The Anonymous login feature is great for privacy enthusiasts; however, there are certain things you should know.** 29 | 30 | 1. **What is a Token Dispenser?** 31 | 32 | A token dispenser is a web client that has around 150 real google accounts (inclusive of all servers). It distributes the AuthToken[2] for anyone who makes a request to it in a defined format. 33 | 34 | So basically all dispensers have the email-password (now aas tokens) pairs on the server. When a user makes a request, the server logs in to google using provided dummy accounts, generates an authentication token and this token is given to the user. 35 | 36 | All the dispensers are configured to use dummy device profiles, default : Xiaomi Mi5. 37 | 38 | (Why Xiaomi ? Because I had this device when I first started android developement, nothing else. China has nothing to do with it. Chill !) 39 | 40 | 2. **What is an AuthToken?** 41 | 42 | In simple terms its a token that lets you access PlayStore service. 43 | 44 | There are other complementary tokens required to make the api work, but that's done via Aurora Store and not related to Dispensers, so I would prefer avoiding it. 45 | 46 | 3. **Why do Aurora Store always say "Session-expired"?** 47 | 48 | There are multiple things that may cause it: 49 | 50 | 1. Multiple users are logged in using same dummy account provide by the dispenser, in different geographic locations. 51 | 52 | 2. There is a limit for concurrent active login sessions, post that limit, Google invalidates all sessions. 53 | 54 | 3. Recently google started putting a "rate-limit" on the usage of api, so if it detects overuse of the api, it just invalidates the authentication token. 55 | 56 | How does Aurora reach the rate-limit ? The search logic I use now is just stupid greedy approach, but it works, so ! 57 | 58 | I will improve it and try to match how exactly Play Store does it. 59 | 60 | 4. Why am I not able to login anonymously [OR] I'm able to login on device A and not on device B ? 61 | 62 | Again there can be multiple reasons: 63 | 64 | 1. Network configuration, make sure Aurora Store has access to internet. 65 | 66 | 2. Network filter, make sure you haven't blacklisted "Cloud Flare" all the dispenser are behind Cloud Flare, so if its DNS is blocked, you cant reach dispensers. 67 | 68 | 3. Tor connections [OR] Orbot setup, again Cloud Flare has some weird issues with TOR setup, I'm looking into it. 69 | 70 | 5. **What all data is sent to Google if I'm logged in as Anonymous.** 71 | 72 | I won't lie, this is what and why I send these data to Google. 73 | 74 | a. Your complete build.prop 75 | 76 | Why ? Play Store is a chaos, the hierarchy of apis, abis, locale, geo so very complex in Android. A single app has multiple versions, for different sdk levels (K,L..O), architecture x86,x64,ARM,ARM64, then locales, then different OEM specific library support. These all together are used to make a decision as what exact app version Aurora Store should download. So its mandatory I cant avoid. However you may choose to spoof it with build prop of someone else, or with a device that has same configuration as yours. 77 | 78 | b. A list of your installed apps 79 | 80 | WTF ! Why ? 81 | 82 | Umm, quite obvious, if I need to download updates then I should tell Google that these are the apps I want to check updates for. Google's repo is very large, I can not afford to maintain a separate centralized server to maintain metadata. 83 | 84 | Recently I thought of an idea to tackle this other way, like when we send our app list, we would dope it with some random apps that we haven't even installed. Then check for updates and parse only the required app data. Smart ? No ! Google is way too smart. I'm open to discuss about it and may implement it, if it turns out to be useful. 85 | 86 | Join Aurora's Support Group on Telegram for more on this: [@AuroraSupport](tg://resolve?domain=AuroraSupport) 87 | 88 | Written by Rahul Patel, original article can be found [here](https://telegra.ph/Aurora-Store---Anonymous-Login-12-20-2). 89 | -------------------------------------------------------------------------------- /src/guides/roadmap.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Roadmap 3 | description: Timeline of Aurora Apps. 4 | lang: en-GB 5 | meta: 6 | - property: og:title 7 | content: Anonymous Logins 8 | - property: og:description 9 | content: Timeline of Aurora Apps. 10 | - property: og:image 11 | content: /assets/undraw_roadmap.png 12 | - property: og:image:alt 13 | content: Roadmap Banner Image 14 | - property: og:url 15 | content: /guides/roadmap 16 | - property: og:locale 17 | content: en-GB 18 | - property: twitter:card 19 | content: summary_large_image 20 | sidebar: true 21 | --- 22 | 23 | # Roadmap 24 | 25 | ![Roadmap](/assets/undraw_roadmap.svg) 26 | 27 | Legend: **✅ Completed | ⏳ Work In Progress | ❓ Unknown Stage** 28 | 29 | ## Aurora Store 30 | 31 | The goal of Aurora Store is to provide users an alternative to Google Play Store - one that works well, is packed with important privacy features as well as having a stunning and pleasant-looking UI. Here is a list of the important stuff of what we've achieved and changed so far. 32 | 33 | ### version 4 34 | 35 | #### ✅ Adding session and native installer to Aurora Store 36 | 37 | With the arrival of Session installer, users are now able to install apps seamlessly if Aurora Store is installed as a system application while selecting this installation method. If Aurora Store is not a system app, it will act like the native package installer, but will merge split apks and apk bundles together into a single apk first. 38 | 39 | Native is the native package installer that Android comes with by default. This may help users with OEM roms like MIUI if the other installation methods do not work. Note that split and bundled apks will not work with this installation method. 40 | 41 | #### ✅ New UI 42 | 43 | Exciting new UI changes for the new version 😉 44 | 45 | #### ✅ Major Token Dispenser API changes and exclusive use for Aurora Store only! 46 | 47 | We have seen major issues while observing the main server, and it seems like it has been overloaded with high CPU usages during version 3 recently. Thus, the developer has been trying to counter this with a solution. 48 | 49 | After this build has been released, we will remove the dispenser for v3 completely, which is to help reduce the workload of the new server. The main dispenser server will also now be available for Aurora Store only. 50 | 51 | In addition to that, a rate-limiting function has been added. Spammers will be kept out from our server, which should help lower the chances of server downsides and decrease loading times. 52 | 53 | #### ✅ Add new device configurations for spoofing 54 | 55 | In this build, a few more device configs with newer versions of Android will be added for device spoofing, as some are rather outdated. This gives users the opportunity to install e.g. apps with features that are exclusively for Android 11, but not for your device. (Note that you have to have the same Android version for those features to work!) 56 | 57 | #### ✅ Support for Android 4.4+ (KitKat) 58 | 59 | Aurora Store now supports Android Kitkat! 60 | 61 | #### ⏳ Support for Android TV 62 | 63 | Android TV is on the todo list. 64 | 65 | #### ✅ Other new features! 66 | 67 | 1. You can browse streams similar to Play Store, i.e. For You, Editor's Choice (EC), Early Access (EA). EC & EA are not available on anonymous logins 68 | 2. App Library, so you can track your app install history. 69 | 3. App-on-Sale, uses a 3rd party API for index, but app data is fetched from Google's servers 70 | 4. A dedicated section for Games 71 | 5. A new improved App UI 72 | 6. A lot of under-the-hood improvements. 73 | 7. Rewritten in Kotlin 74 | 75 | #### ✅ Stuff that's changed 76 | 77 | Here are few things that will no longer be available or has changed: 78 | 79 | 1. Geo-spoof, would provide a companion app to facilitate the same, if required. 80 | 2. Favourite app, will add something named similar to WishList, limited to google login only. 81 | 3. Anonymous logins now use your device-config to create session, so your device-config is sent to my dispenser server. It may sound scary but it is not, here is a [sample](https://gitlab.com/AuroraOSS/gplayapi/-/blob/master/src/main/resources/op_8_pro.properties) of what I send to my dispenser in order to create a anonymous session. 82 | 83 | ### version 3 84 | 85 | #### ✅ Rewrite from scratch 86 | 87 | #### ✅ Add support for Aurora Services 88 | 89 | #### ✅ Add support for Split APKs 90 | 91 | #### ✅ Add in-app Download Manager 92 | 93 | #### ✅ New UI based on latest MD Guidelines 94 | 95 | #### ✅ Deploy dedicated token-dispenser 96 | 97 | #### ✅ Add Favourite Apps Manager 98 | 99 | #### ✅ Enforce proxy network on download requests 100 | 101 | #### ✅ Add support for AndroidTV 102 | 103 | #### ✅ Add translations 104 | 105 | #### ✅ Add option to use custom token dispensers (Settings → Network) 106 | 107 | #### ✅ Add option to install apps directly to work profile (only rooted users) 108 | 109 | ### version 2 110 | 111 | #### ✅ Add Device/Language/Country Spoof Option to allow accessing GeoRestricted Apps 112 | 113 | #### ✅ Add Filter to exclude Non-Market, F-Droid & Guardian Project Apps 114 | 115 | #### ✅ Refactor complete project to AndroidX 116 | -------------------------------------------------------------------------------- /src/guides/server-status.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Server status 3 | description: Server statuses of dispensers for Aurora Store. 4 | lang: en-GB 5 | meta: 6 | - property: og:title 7 | content: Server status 8 | - property: og:description 9 | content: Server statuses of dispensers for Aurora Store. 10 | - property: og:image 11 | content: /assets/undraw_server_status.png 12 | - property: og:image:alt 13 | content: Server Status Banner Image 14 | - property: og:url 15 | content: /guides/server-status 16 | - property: og:locale 17 | content: en-GB 18 | - property: twitter:card 19 | content: summary_large_image 20 | sidebar: true 21 | --- 22 | 23 | # Server status 24 | ![Server status](/assets/undraw_server_status.svg) 25 | 26 | See the current status of the token dispenser servers below: 27 | 28 | :::: el-tabs 29 | ::: el-tab-pane label="Official servers" 30 | 31 | ::: 32 | :::: 33 | 34 | A word from the Aurora Store team: Please do not spam our servers. If you do, we will block you _mercilessly_. 35 | 36 | ::: c-warning Recent News! 37 | With the release of Aurora Store v4, the server dispenser URL for v3 tokens is now obsolete. Please migrate to v4 or use your own Google account if you wish to still use v3. 38 | ::: 39 | 40 | See real-time status and history [here](https://stats.uptimerobot.com/D6QpBHB11l). 41 | 42 | -------------------------------------------------------------------------------- /src/guides/wiki-home.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Aurora Wiki 3 | description: Read the Docs for Aurora Apps. 4 | lang: en-GB 5 | meta: 6 | - property: og:title 7 | content: Aurora Wiki 8 | - property: og:description 9 | content: Read the Docs for Aurora Apps. 10 | - property: og:image 11 | content: /assets/wiki_banner1200x680.png 12 | - property: og:image:alt 13 | content: Aurora Wiki Banner Image 14 | - property: og:url 15 | content: /guides/wiki-home 16 | - property: og:locale 17 | content: en-GB 18 | - property: twitter:card 19 | content: summary_large_image 20 | sidebar: true 21 | --- 22 | 23 | # Welcome to the Aurora Wiki! 24 | 25 |

26 | 27 |

28 | 29 | --- 30 | 31 | ### Need some help? We've got your back! 32 | 33 | If you're a newcomer or have any questions, please read [FAQs](/faq/) before issuing problems on GitLab or asking for help in the Telegram support chat. 34 | 35 | If you're interested in the timeline and future development of Aurora apps, read the [Roadmap](/guides/roadmap/) page to know more! 36 | 37 | Other than that, indulge yourself with a good helping of docs! 38 | 39 | ## Table of Contents 40 | 41 | ### Aurora Store 42 | 43 | - [Troubleshooting](/guides/troubleshooting/) 44 | - [Server status](/guides/server-status/) 45 | - [Roadmap](/guides/roadmap/) 46 | - [Anonymous Logins](/guides/anonymous-logins/) 47 | 48 | ### Aurora Droid 49 | 50 | - N/A 51 | 52 | ### App Warden 53 | 54 | - N/A 55 | 56 | ### Aurora Wallpapers 57 | 58 | - N/A 59 | -------------------------------------------------------------------------------- /src/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | home: true 3 | meta: 4 | - name: keywords 5 | content: Official, Android apps, Homepage, AuroraOSS 6 | - property: og:title 7 | content: AuroraOSS 8 | - property: og:description 9 | content: An organization that aims to build applications that are easy to use & beautiful to look at. Aurora Apps Open-Source Software. Inspired by you. Built for the community. 10 | - property: og:image 11 | content: /assets/auroraoss_banner1200x680.png 12 | - property: og:image:alt 13 | content: AuroraOSS Banner Image 14 | - property: og:url 15 | content: / 16 | - property: og:locale 17 | content: en-GB 18 | - property: twitter:card 19 | content: summary_large_image 20 | lang: en-GB 21 | heroImage: /icons/auroralogo.webp 22 | downloadText: Downloads 23 | downloadLink: /download/ 24 | faqText: FAQs 25 | faqLink: /faq/ 26 | tagline: Aurora Apps Open-Source Software. Inspired by you. Built for the community. 27 | features: 28 | - title: Design 29 | details: Aurora Apps are designed with aesthetics as the key aspect - all of our apps provide unique and clean, fresh-looking UI. We follow all the design guidelines, even if those who made the guidelines don't. :P 30 | - title: Privacy 31 | details: Aurora Apps respect every user's privacy and do not collect any sort of personal data. None of our apps include any telemetry services or ads - we believe in transparent framework. 32 | - title: Open Source 33 | details: "All apps made by Aurora OSS are released under GNU General Public License (GPLv.3.0). What we do behind the beautiful UI is not hidden: feel free to audit our code anyday, anytime. We are open to suggestions and pull requests are always welcome!" 34 | - title: Customizable 35 | details: Aurora Apps provide a variety of customizations, so that users can tweak the app to meet their personal aesthetic needs. Auto switch between Light & Dark (& Black) themes to make sure all nightowls don't get blinded. 36 | footer: MIT Licensed | Copyright © 2021-present Austin Hornhead 37 | --- 38 | Supported by 39 | 40 | [](https://fosshost.org/) --------------------------------------------------------------------------------