├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── NEW_ADDITION_TO_LIST.yml └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── README.zh.md ├── assets └── logo.svg └── renovate.json /.gitattributes: -------------------------------------------------------------------------------- 1 | *.json linguist-language=Swift 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/awesome-swift-macos-apps/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/NEW_ADDITION_TO_LIST.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/awesome-swift-macos-apps/HEAD/.github/ISSUE_TEMPLATE/NEW_ADDITION_TO_LIST.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/awesome-swift-macos-apps/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/awesome-swift-macos-apps/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/awesome-swift-macos-apps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/awesome-swift-macos-apps/HEAD/README.md -------------------------------------------------------------------------------- /README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/awesome-swift-macos-apps/HEAD/README.zh.md -------------------------------------------------------------------------------- /assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/awesome-swift-macos-apps/HEAD/assets/logo.svg -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/awesome-swift-macos-apps/HEAD/renovate.json --------------------------------------------------------------------------------