├── .github ├── CODEOWNERS ├── FUNDING.yml ├── afa.png └── workflows │ ├── Update main file.yml │ ├── link count.yml │ └── renew-categories.yml ├── BAN_LIST.md ├── LICENSE ├── MOBILE.md ├── README.md ├── archived.md ├── code-of-conduct.md ├── contributing.md ├── filter ├── android-only.md ├── iOS-only.md ├── linux-only.md ├── macOS-only.md ├── open-source-mobile-only.md ├── open-source-only.md ├── recommended-mobile-only.md ├── recommended-only.md └── windows-only.md ├── how-to-contribute.md ├── index.js └── logo.svg /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axorax/awesome-free-apps/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: axorax 2 | -------------------------------------------------------------------------------- /.github/afa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axorax/awesome-free-apps/HEAD/.github/afa.png -------------------------------------------------------------------------------- /.github/workflows/Update main file.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axorax/awesome-free-apps/HEAD/.github/workflows/Update main file.yml -------------------------------------------------------------------------------- /.github/workflows/link count.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axorax/awesome-free-apps/HEAD/.github/workflows/link count.yml -------------------------------------------------------------------------------- /.github/workflows/renew-categories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axorax/awesome-free-apps/HEAD/.github/workflows/renew-categories.yml -------------------------------------------------------------------------------- /BAN_LIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axorax/awesome-free-apps/HEAD/BAN_LIST.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axorax/awesome-free-apps/HEAD/LICENSE -------------------------------------------------------------------------------- /MOBILE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axorax/awesome-free-apps/HEAD/MOBILE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axorax/awesome-free-apps/HEAD/README.md -------------------------------------------------------------------------------- /archived.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axorax/awesome-free-apps/HEAD/archived.md -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axorax/awesome-free-apps/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axorax/awesome-free-apps/HEAD/contributing.md -------------------------------------------------------------------------------- /filter/android-only.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axorax/awesome-free-apps/HEAD/filter/android-only.md -------------------------------------------------------------------------------- /filter/iOS-only.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axorax/awesome-free-apps/HEAD/filter/iOS-only.md -------------------------------------------------------------------------------- /filter/linux-only.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axorax/awesome-free-apps/HEAD/filter/linux-only.md -------------------------------------------------------------------------------- /filter/macOS-only.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axorax/awesome-free-apps/HEAD/filter/macOS-only.md -------------------------------------------------------------------------------- /filter/open-source-mobile-only.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axorax/awesome-free-apps/HEAD/filter/open-source-mobile-only.md -------------------------------------------------------------------------------- /filter/open-source-only.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axorax/awesome-free-apps/HEAD/filter/open-source-only.md -------------------------------------------------------------------------------- /filter/recommended-mobile-only.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axorax/awesome-free-apps/HEAD/filter/recommended-mobile-only.md -------------------------------------------------------------------------------- /filter/recommended-only.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axorax/awesome-free-apps/HEAD/filter/recommended-only.md -------------------------------------------------------------------------------- /filter/windows-only.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axorax/awesome-free-apps/HEAD/filter/windows-only.md -------------------------------------------------------------------------------- /how-to-contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axorax/awesome-free-apps/HEAD/how-to-contribute.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axorax/awesome-free-apps/HEAD/index.js -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axorax/awesome-free-apps/HEAD/logo.svg --------------------------------------------------------------------------------