├── .clang-format ├── .github └── FUNDING.yml ├── .gitignore ├── COPYING ├── README.md ├── marketplace.json ├── src ├── impl │ ├── appcastparser.cpp │ ├── appcastparser.h │ ├── checker.cpp │ ├── checker.h │ ├── defaultupdater.cpp │ ├── defaultupdater.h │ ├── dialog.cpp │ ├── dialog.h │ ├── downloader.cpp │ ├── downloader.h │ ├── installer.h │ ├── openinstaller.cpp │ ├── openinstaller.h │ ├── parser.h │ ├── runinstaller.cpp │ ├── runinstaller.h │ ├── simplexmlparser.cpp │ └── simplexmlparser.h ├── sparkle │ ├── sparkleupdater.h │ └── sparkleupdater.mm ├── updater.cpp └── updater.h ├── updater.pri └── updater.pro /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviotordini/updater/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviotordini/updater/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | .vscode 4 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviotordini/updater/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviotordini/updater/HEAD/README.md -------------------------------------------------------------------------------- /marketplace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviotordini/updater/HEAD/marketplace.json -------------------------------------------------------------------------------- /src/impl/appcastparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviotordini/updater/HEAD/src/impl/appcastparser.cpp -------------------------------------------------------------------------------- /src/impl/appcastparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviotordini/updater/HEAD/src/impl/appcastparser.h -------------------------------------------------------------------------------- /src/impl/checker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviotordini/updater/HEAD/src/impl/checker.cpp -------------------------------------------------------------------------------- /src/impl/checker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviotordini/updater/HEAD/src/impl/checker.h -------------------------------------------------------------------------------- /src/impl/defaultupdater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviotordini/updater/HEAD/src/impl/defaultupdater.cpp -------------------------------------------------------------------------------- /src/impl/defaultupdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviotordini/updater/HEAD/src/impl/defaultupdater.h -------------------------------------------------------------------------------- /src/impl/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviotordini/updater/HEAD/src/impl/dialog.cpp -------------------------------------------------------------------------------- /src/impl/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviotordini/updater/HEAD/src/impl/dialog.h -------------------------------------------------------------------------------- /src/impl/downloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviotordini/updater/HEAD/src/impl/downloader.cpp -------------------------------------------------------------------------------- /src/impl/downloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviotordini/updater/HEAD/src/impl/downloader.h -------------------------------------------------------------------------------- /src/impl/installer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviotordini/updater/HEAD/src/impl/installer.h -------------------------------------------------------------------------------- /src/impl/openinstaller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviotordini/updater/HEAD/src/impl/openinstaller.cpp -------------------------------------------------------------------------------- /src/impl/openinstaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviotordini/updater/HEAD/src/impl/openinstaller.h -------------------------------------------------------------------------------- /src/impl/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviotordini/updater/HEAD/src/impl/parser.h -------------------------------------------------------------------------------- /src/impl/runinstaller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviotordini/updater/HEAD/src/impl/runinstaller.cpp -------------------------------------------------------------------------------- /src/impl/runinstaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviotordini/updater/HEAD/src/impl/runinstaller.h -------------------------------------------------------------------------------- /src/impl/simplexmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviotordini/updater/HEAD/src/impl/simplexmlparser.cpp -------------------------------------------------------------------------------- /src/impl/simplexmlparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviotordini/updater/HEAD/src/impl/simplexmlparser.h -------------------------------------------------------------------------------- /src/sparkle/sparkleupdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviotordini/updater/HEAD/src/sparkle/sparkleupdater.h -------------------------------------------------------------------------------- /src/sparkle/sparkleupdater.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviotordini/updater/HEAD/src/sparkle/sparkleupdater.mm -------------------------------------------------------------------------------- /src/updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviotordini/updater/HEAD/src/updater.cpp -------------------------------------------------------------------------------- /src/updater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviotordini/updater/HEAD/src/updater.h -------------------------------------------------------------------------------- /updater.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviotordini/updater/HEAD/updater.pri -------------------------------------------------------------------------------- /updater.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = lib 2 | include(updater.pri) 3 | --------------------------------------------------------------------------------