├── .github ├── FUNDING.yml └── workflows │ └── main.yml ├── .gitignore ├── Localizations ├── Base.lproj │ ├── Localizable.strings │ └── LocalizableAr.strings ├── es.lproj │ ├── Localizable.strings │ └── LocalizableAr.strings ├── fr.lproj │ ├── Localizable.strings │ └── LocalizableAr.strings ├── pl.lproj │ ├── Localizable.strings │ └── LocalizableAr.strings ├── ru.lproj │ ├── Localizable.strings │ └── LocalizableAr.strings ├── tr.lproj │ ├── Localizable.strings │ └── LocalizableAr.strings ├── vi.lproj │ ├── Localizable.strings │ └── LocalizableAr.strings ├── zh-Hans.lproj │ ├── Localizable.strings │ └── LocalizableAr.strings └── zh-Hant.lproj │ ├── Localizable.strings │ └── LocalizableAr.strings ├── README.md └── Sileo ├── depiction.json ├── header.png ├── icon.png ├── screenshot1.jpg ├── screenshot2.jpg └── screenshot3.jpg /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Flow/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Flow/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Localizations/Base.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Flow/HEAD/Localizations/Base.lproj/Localizable.strings -------------------------------------------------------------------------------- /Localizations/Base.lproj/LocalizableAr.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Flow/HEAD/Localizations/Base.lproj/LocalizableAr.strings -------------------------------------------------------------------------------- /Localizations/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Flow/HEAD/Localizations/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /Localizations/es.lproj/LocalizableAr.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Flow/HEAD/Localizations/es.lproj/LocalizableAr.strings -------------------------------------------------------------------------------- /Localizations/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Flow/HEAD/Localizations/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Localizations/fr.lproj/LocalizableAr.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Flow/HEAD/Localizations/fr.lproj/LocalizableAr.strings -------------------------------------------------------------------------------- /Localizations/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Flow/HEAD/Localizations/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Localizations/pl.lproj/LocalizableAr.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Flow/HEAD/Localizations/pl.lproj/LocalizableAr.strings -------------------------------------------------------------------------------- /Localizations/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Flow/HEAD/Localizations/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Localizations/ru.lproj/LocalizableAr.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Flow/HEAD/Localizations/ru.lproj/LocalizableAr.strings -------------------------------------------------------------------------------- /Localizations/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Flow/HEAD/Localizations/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Localizations/tr.lproj/LocalizableAr.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Flow/HEAD/Localizations/tr.lproj/LocalizableAr.strings -------------------------------------------------------------------------------- /Localizations/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Flow/HEAD/Localizations/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Localizations/vi.lproj/LocalizableAr.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Flow/HEAD/Localizations/vi.lproj/LocalizableAr.strings -------------------------------------------------------------------------------- /Localizations/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Flow/HEAD/Localizations/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /Localizations/zh-Hans.lproj/LocalizableAr.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Flow/HEAD/Localizations/zh-Hans.lproj/LocalizableAr.strings -------------------------------------------------------------------------------- /Localizations/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Flow/HEAD/Localizations/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /Localizations/zh-Hant.lproj/LocalizableAr.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Flow/HEAD/Localizations/zh-Hant.lproj/LocalizableAr.strings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Flow/HEAD/README.md -------------------------------------------------------------------------------- /Sileo/depiction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Flow/HEAD/Sileo/depiction.json -------------------------------------------------------------------------------- /Sileo/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Flow/HEAD/Sileo/header.png -------------------------------------------------------------------------------- /Sileo/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Flow/HEAD/Sileo/icon.png -------------------------------------------------------------------------------- /Sileo/screenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Flow/HEAD/Sileo/screenshot1.jpg -------------------------------------------------------------------------------- /Sileo/screenshot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Flow/HEAD/Sileo/screenshot2.jpg -------------------------------------------------------------------------------- /Sileo/screenshot3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/Flow/HEAD/Sileo/screenshot3.jpg --------------------------------------------------------------------------------