├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── .gitignore ├── README.md ├── README_CN.md └── arts ├── app_store.svg ├── benchmark_en_01.png ├── benchmark_zh_01.png ├── play_store.svg ├── products.webp ├── screenshot_en_01.png ├── screenshot_en_02.png ├── screenshot_en_03.png ├── screenshot_zh_01.png ├── screenshot_zh_02.png └── screenshot_zh_03.png /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqable/reqable-app/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqable/reqable-app/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqable/reqable-app/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqable/reqable-app/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqable/reqable-app/HEAD/README_CN.md -------------------------------------------------------------------------------- /arts/app_store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqable/reqable-app/HEAD/arts/app_store.svg -------------------------------------------------------------------------------- /arts/benchmark_en_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqable/reqable-app/HEAD/arts/benchmark_en_01.png -------------------------------------------------------------------------------- /arts/benchmark_zh_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqable/reqable-app/HEAD/arts/benchmark_zh_01.png -------------------------------------------------------------------------------- /arts/play_store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqable/reqable-app/HEAD/arts/play_store.svg -------------------------------------------------------------------------------- /arts/products.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqable/reqable-app/HEAD/arts/products.webp -------------------------------------------------------------------------------- /arts/screenshot_en_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqable/reqable-app/HEAD/arts/screenshot_en_01.png -------------------------------------------------------------------------------- /arts/screenshot_en_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqable/reqable-app/HEAD/arts/screenshot_en_02.png -------------------------------------------------------------------------------- /arts/screenshot_en_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqable/reqable-app/HEAD/arts/screenshot_en_03.png -------------------------------------------------------------------------------- /arts/screenshot_zh_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqable/reqable-app/HEAD/arts/screenshot_zh_01.png -------------------------------------------------------------------------------- /arts/screenshot_zh_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqable/reqable-app/HEAD/arts/screenshot_zh_02.png -------------------------------------------------------------------------------- /arts/screenshot_zh_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reqable/reqable-app/HEAD/arts/screenshot_zh_03.png --------------------------------------------------------------------------------