├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── COPYING (curl License) ├── LICENSE ├── Makefile ├── README.md ├── icon.jpg ├── include └── main.h └── source ├── checkForUpdates.c ├── downloadWebVerList.c ├── freeList.c ├── getCartVerListCount.c ├── handleVerList.c ├── initCartVerList.c ├── initExtVerList.c ├── initLists.c ├── initLocalVerList.c ├── initLogging.c ├── main.c ├── updateMeta.c └── updateStoredCartVerList.c /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/16BitWonder/NX-Update-Checker/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/16BitWonder/NX-Update-Checker/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING (curl License): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/16BitWonder/NX-Update-Checker/HEAD/COPYING (curl License) -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/16BitWonder/NX-Update-Checker/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/16BitWonder/NX-Update-Checker/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/16BitWonder/NX-Update-Checker/HEAD/README.md -------------------------------------------------------------------------------- /icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/16BitWonder/NX-Update-Checker/HEAD/icon.jpg -------------------------------------------------------------------------------- /include/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/16BitWonder/NX-Update-Checker/HEAD/include/main.h -------------------------------------------------------------------------------- /source/checkForUpdates.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/16BitWonder/NX-Update-Checker/HEAD/source/checkForUpdates.c -------------------------------------------------------------------------------- /source/downloadWebVerList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/16BitWonder/NX-Update-Checker/HEAD/source/downloadWebVerList.c -------------------------------------------------------------------------------- /source/freeList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/16BitWonder/NX-Update-Checker/HEAD/source/freeList.c -------------------------------------------------------------------------------- /source/getCartVerListCount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/16BitWonder/NX-Update-Checker/HEAD/source/getCartVerListCount.c -------------------------------------------------------------------------------- /source/handleVerList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/16BitWonder/NX-Update-Checker/HEAD/source/handleVerList.c -------------------------------------------------------------------------------- /source/initCartVerList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/16BitWonder/NX-Update-Checker/HEAD/source/initCartVerList.c -------------------------------------------------------------------------------- /source/initExtVerList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/16BitWonder/NX-Update-Checker/HEAD/source/initExtVerList.c -------------------------------------------------------------------------------- /source/initLists.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/16BitWonder/NX-Update-Checker/HEAD/source/initLists.c -------------------------------------------------------------------------------- /source/initLocalVerList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/16BitWonder/NX-Update-Checker/HEAD/source/initLocalVerList.c -------------------------------------------------------------------------------- /source/initLogging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/16BitWonder/NX-Update-Checker/HEAD/source/initLogging.c -------------------------------------------------------------------------------- /source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/16BitWonder/NX-Update-Checker/HEAD/source/main.c -------------------------------------------------------------------------------- /source/updateMeta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/16BitWonder/NX-Update-Checker/HEAD/source/updateMeta.c -------------------------------------------------------------------------------- /source/updateStoredCartVerList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/16BitWonder/NX-Update-Checker/HEAD/source/updateStoredCartVerList.c --------------------------------------------------------------------------------