├── .gitignore ├── Localization ├── Base.lproj │ └── Localizable.strings ├── ar.lproj │ └── Localizable.strings ├── es.lproj │ └── Localizable.strings ├── ru.lproj │ └── Localizable.strings ├── vi.lproj │ └── Localizable.strings └── zh-Hans.lproj │ └── Localizable.strings ├── README.md └── Sileo ├── depiction.json ├── header.png ├── icon.png └── screenshot1.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Localization/Base.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/FastLock/HEAD/Localization/Base.lproj/Localizable.strings -------------------------------------------------------------------------------- /Localization/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/FastLock/HEAD/Localization/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /Localization/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/FastLock/HEAD/Localization/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /Localization/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/FastLock/HEAD/Localization/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Localization/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/FastLock/HEAD/Localization/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Localization/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/FastLock/HEAD/Localization/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/FastLock/HEAD/README.md -------------------------------------------------------------------------------- /Sileo/depiction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/FastLock/HEAD/Sileo/depiction.json -------------------------------------------------------------------------------- /Sileo/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/FastLock/HEAD/Sileo/header.png -------------------------------------------------------------------------------- /Sileo/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/FastLock/HEAD/Sileo/icon.png -------------------------------------------------------------------------------- /Sileo/screenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dayanch96/FastLock/HEAD/Sileo/screenshot1.jpg --------------------------------------------------------------------------------