├── .gitignore ├── .gitmodules ├── README.md ├── config.json.example ├── ipas └── .gitkeep ├── main.py └── templates ├── index.html ├── olderversions.html └── searchresults.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/IPADown-Public/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/IPADown-Public/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/IPADown-Public/HEAD/README.md -------------------------------------------------------------------------------- /config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/IPADown-Public/HEAD/config.json.example -------------------------------------------------------------------------------- /ipas/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/IPADown-Public/HEAD/main.py -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/IPADown-Public/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/olderversions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/IPADown-Public/HEAD/templates/olderversions.html -------------------------------------------------------------------------------- /templates/searchresults.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mineek/IPADown-Public/HEAD/templates/searchresults.html --------------------------------------------------------------------------------