├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml └── workflows │ └── main.yml ├── .gitignore ├── Localizations ├── Base.lproj │ └── Localizable.strings ├── ar.lproj │ └── Localizable.strings ├── es.lproj │ └── Localizable.strings ├── fr.lproj │ └── Localizable.strings ├── pl.lproj │ └── Localizable.strings ├── ru.lproj │ └── Localizable.strings ├── tr.lproj │ └── Localizable.strings ├── vi.lproj │ └── Localizable.strings ├── zh-Hans.lproj │ └── Localizable.strings └── zh-Hant.lproj │ └── Localizable.strings ├── README.md └── Sileo ├── depiction.json ├── header.png ├── icon.png ├── screenshot1.jpg ├── screenshot2.jpg ├── screenshot3.jpg ├── screenshot4.jpg ├── screenshot5.jpg └── screenshot6.jpg /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Glow/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Glow/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Glow/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Glow/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Localizations/Base.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Glow/HEAD/Localizations/Base.lproj/Localizable.strings -------------------------------------------------------------------------------- /Localizations/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Glow/HEAD/Localizations/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /Localizations/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Glow/HEAD/Localizations/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /Localizations/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Glow/HEAD/Localizations/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Localizations/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Glow/HEAD/Localizations/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Localizations/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Glow/HEAD/Localizations/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Localizations/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Glow/HEAD/Localizations/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Localizations/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Glow/HEAD/Localizations/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Localizations/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Glow/HEAD/Localizations/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /Localizations/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Glow/HEAD/Localizations/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Glow/HEAD/README.md -------------------------------------------------------------------------------- /Sileo/depiction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Glow/HEAD/Sileo/depiction.json -------------------------------------------------------------------------------- /Sileo/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Glow/HEAD/Sileo/header.png -------------------------------------------------------------------------------- /Sileo/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Glow/HEAD/Sileo/icon.png -------------------------------------------------------------------------------- /Sileo/screenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Glow/HEAD/Sileo/screenshot1.jpg -------------------------------------------------------------------------------- /Sileo/screenshot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Glow/HEAD/Sileo/screenshot2.jpg -------------------------------------------------------------------------------- /Sileo/screenshot3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Glow/HEAD/Sileo/screenshot3.jpg -------------------------------------------------------------------------------- /Sileo/screenshot4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Glow/HEAD/Sileo/screenshot4.jpg -------------------------------------------------------------------------------- /Sileo/screenshot5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Glow/HEAD/Sileo/screenshot5.jpg -------------------------------------------------------------------------------- /Sileo/screenshot6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Glow/HEAD/Sileo/screenshot6.jpg --------------------------------------------------------------------------------