├── .gitignore ├── LICENSE.jsmn.txt ├── LICENSE.libmd5-rfc.txt ├── LICENSE.minizip.txt ├── LICENSE.txt ├── Makefile ├── Makefile.config ├── README.md ├── lumaupdater.cfg ├── meta ├── icon.png ├── jingle.wav ├── luma.cgfx └── src │ ├── COMMON.bmp │ ├── COMMON.psd │ ├── GLARE.bmp │ ├── GLARE.psd │ ├── LUMA.mtl │ ├── LUMA.obj │ ├── icon.psd │ ├── jingle.orig.wav │ ├── luma.merged.mtl │ ├── luma.merged.obj │ ├── luma.merged.wings │ └── luma.wings ├── rominfo.rsf └── source ├── 7z.h ├── 7z ├── 7z.h ├── 7zAlloc.c ├── 7zAlloc.h ├── 7zArcIn.c ├── 7zBuf.c ├── 7zBuf.h ├── 7zCrc.c ├── 7zCrc.h ├── 7zCrcOpt.c ├── 7zDec.c ├── 7zMemInStream.c ├── 7zMemInStream.h ├── 7zStream.c ├── 7zTypes.h ├── Bcj2.c ├── Bcj2.h ├── Bra.c ├── Bra.h ├── Bra86.c ├── Compiler.h ├── CpuArch.h ├── Delta.c ├── Delta.h ├── LzHash.h ├── Lzma2Dec.c ├── Lzma2Dec.h ├── LzmaDec.c ├── LzmaDec.h └── Precomp.h ├── archive.cpp ├── archive.h ├── arnutil.cpp ├── arnutil.h ├── autoupdate.cpp ├── autoupdate.h ├── certs ├── cybertrust.h └── digicert.h ├── config.cpp ├── config.h ├── console.cpp ├── console.h ├── http.cpp ├── http.h ├── jsmn.c ├── jsmn.h ├── libs.h ├── lumautils.cpp ├── lumautils.h ├── main.cpp ├── md5 ├── md5.c └── md5.h ├── minizip ├── crypt.h ├── ioapi.c ├── ioapi.h ├── ioapi_mem.c ├── ioapi_mem.h ├── unzip.c └── unzip.h ├── release.cpp ├── release.h ├── update.cpp ├── update.h ├── utils.cpp ├── utils.h ├── version.cpp └── version.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.jsmn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/LICENSE.jsmn.txt -------------------------------------------------------------------------------- /LICENSE.libmd5-rfc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/LICENSE.libmd5-rfc.txt -------------------------------------------------------------------------------- /LICENSE.minizip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/LICENSE.minizip.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/Makefile.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/README.md -------------------------------------------------------------------------------- /lumaupdater.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/lumaupdater.cfg -------------------------------------------------------------------------------- /meta/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/meta/icon.png -------------------------------------------------------------------------------- /meta/jingle.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/meta/jingle.wav -------------------------------------------------------------------------------- /meta/luma.cgfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/meta/luma.cgfx -------------------------------------------------------------------------------- /meta/src/COMMON.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/meta/src/COMMON.bmp -------------------------------------------------------------------------------- /meta/src/COMMON.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/meta/src/COMMON.psd -------------------------------------------------------------------------------- /meta/src/GLARE.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/meta/src/GLARE.bmp -------------------------------------------------------------------------------- /meta/src/GLARE.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/meta/src/GLARE.psd -------------------------------------------------------------------------------- /meta/src/LUMA.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/meta/src/LUMA.mtl -------------------------------------------------------------------------------- /meta/src/LUMA.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/meta/src/LUMA.obj -------------------------------------------------------------------------------- /meta/src/icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/meta/src/icon.psd -------------------------------------------------------------------------------- /meta/src/jingle.orig.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/meta/src/jingle.orig.wav -------------------------------------------------------------------------------- /meta/src/luma.merged.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/meta/src/luma.merged.mtl -------------------------------------------------------------------------------- /meta/src/luma.merged.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/meta/src/luma.merged.obj -------------------------------------------------------------------------------- /meta/src/luma.merged.wings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/meta/src/luma.merged.wings -------------------------------------------------------------------------------- /meta/src/luma.wings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/meta/src/luma.wings -------------------------------------------------------------------------------- /rominfo.rsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/rominfo.rsf -------------------------------------------------------------------------------- /source/7z.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | /* 7z includes */ 4 | -------------------------------------------------------------------------------- /source/7z/7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/7z/7z.h -------------------------------------------------------------------------------- /source/7z/7zAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/7z/7zAlloc.c -------------------------------------------------------------------------------- /source/7z/7zAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/7z/7zAlloc.h -------------------------------------------------------------------------------- /source/7z/7zArcIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/7z/7zArcIn.c -------------------------------------------------------------------------------- /source/7z/7zBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/7z/7zBuf.c -------------------------------------------------------------------------------- /source/7z/7zBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/7z/7zBuf.h -------------------------------------------------------------------------------- /source/7z/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/7z/7zCrc.c -------------------------------------------------------------------------------- /source/7z/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/7z/7zCrc.h -------------------------------------------------------------------------------- /source/7z/7zCrcOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/7z/7zCrcOpt.c -------------------------------------------------------------------------------- /source/7z/7zDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/7z/7zDec.c -------------------------------------------------------------------------------- /source/7z/7zMemInStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/7z/7zMemInStream.c -------------------------------------------------------------------------------- /source/7z/7zMemInStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/7z/7zMemInStream.h -------------------------------------------------------------------------------- /source/7z/7zStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/7z/7zStream.c -------------------------------------------------------------------------------- /source/7z/7zTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/7z/7zTypes.h -------------------------------------------------------------------------------- /source/7z/Bcj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/7z/Bcj2.c -------------------------------------------------------------------------------- /source/7z/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/7z/Bcj2.h -------------------------------------------------------------------------------- /source/7z/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/7z/Bra.c -------------------------------------------------------------------------------- /source/7z/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/7z/Bra.h -------------------------------------------------------------------------------- /source/7z/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/7z/Bra86.c -------------------------------------------------------------------------------- /source/7z/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/7z/Compiler.h -------------------------------------------------------------------------------- /source/7z/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/7z/CpuArch.h -------------------------------------------------------------------------------- /source/7z/Delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/7z/Delta.c -------------------------------------------------------------------------------- /source/7z/Delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/7z/Delta.h -------------------------------------------------------------------------------- /source/7z/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/7z/LzHash.h -------------------------------------------------------------------------------- /source/7z/Lzma2Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/7z/Lzma2Dec.c -------------------------------------------------------------------------------- /source/7z/Lzma2Dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/7z/Lzma2Dec.h -------------------------------------------------------------------------------- /source/7z/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/7z/LzmaDec.c -------------------------------------------------------------------------------- /source/7z/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/7z/LzmaDec.h -------------------------------------------------------------------------------- /source/7z/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/7z/Precomp.h -------------------------------------------------------------------------------- /source/archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/archive.cpp -------------------------------------------------------------------------------- /source/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/archive.h -------------------------------------------------------------------------------- /source/arnutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/arnutil.cpp -------------------------------------------------------------------------------- /source/arnutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/arnutil.h -------------------------------------------------------------------------------- /source/autoupdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/autoupdate.cpp -------------------------------------------------------------------------------- /source/autoupdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/autoupdate.h -------------------------------------------------------------------------------- /source/certs/cybertrust.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/certs/cybertrust.h -------------------------------------------------------------------------------- /source/certs/digicert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/certs/digicert.h -------------------------------------------------------------------------------- /source/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/config.cpp -------------------------------------------------------------------------------- /source/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/config.h -------------------------------------------------------------------------------- /source/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/console.cpp -------------------------------------------------------------------------------- /source/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/console.h -------------------------------------------------------------------------------- /source/http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/http.cpp -------------------------------------------------------------------------------- /source/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/http.h -------------------------------------------------------------------------------- /source/jsmn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/jsmn.c -------------------------------------------------------------------------------- /source/jsmn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/jsmn.h -------------------------------------------------------------------------------- /source/libs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/libs.h -------------------------------------------------------------------------------- /source/lumautils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/lumautils.cpp -------------------------------------------------------------------------------- /source/lumautils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/lumautils.h -------------------------------------------------------------------------------- /source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/main.cpp -------------------------------------------------------------------------------- /source/md5/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/md5/md5.c -------------------------------------------------------------------------------- /source/md5/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/md5/md5.h -------------------------------------------------------------------------------- /source/minizip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/minizip/crypt.h -------------------------------------------------------------------------------- /source/minizip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/minizip/ioapi.c -------------------------------------------------------------------------------- /source/minizip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/minizip/ioapi.h -------------------------------------------------------------------------------- /source/minizip/ioapi_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/minizip/ioapi_mem.c -------------------------------------------------------------------------------- /source/minizip/ioapi_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/minizip/ioapi_mem.h -------------------------------------------------------------------------------- /source/minizip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/minizip/unzip.c -------------------------------------------------------------------------------- /source/minizip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/minizip/unzip.h -------------------------------------------------------------------------------- /source/release.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/release.cpp -------------------------------------------------------------------------------- /source/release.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/release.h -------------------------------------------------------------------------------- /source/update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/update.cpp -------------------------------------------------------------------------------- /source/update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/update.h -------------------------------------------------------------------------------- /source/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/utils.cpp -------------------------------------------------------------------------------- /source/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/utils.h -------------------------------------------------------------------------------- /source/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/version.cpp -------------------------------------------------------------------------------- /source/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hamcha/lumaupdate/HEAD/source/version.h --------------------------------------------------------------------------------