├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── README-CN.md ├── README.md ├── index.js ├── package.json ├── updater.cs └── updater.exe /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yansenlei/electron-asar-hot-updater/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yansenlei/electron-asar-hot-updater/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yansenlei/electron-asar-hot-updater/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yansenlei/electron-asar-hot-updater/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yansenlei/electron-asar-hot-updater/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yansenlei/electron-asar-hot-updater/HEAD/LICENSE -------------------------------------------------------------------------------- /README-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yansenlei/electron-asar-hot-updater/HEAD/README-CN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yansenlei/electron-asar-hot-updater/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yansenlei/electron-asar-hot-updater/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yansenlei/electron-asar-hot-updater/HEAD/package.json -------------------------------------------------------------------------------- /updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yansenlei/electron-asar-hot-updater/HEAD/updater.cs -------------------------------------------------------------------------------- /updater.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yansenlei/electron-asar-hot-updater/HEAD/updater.exe --------------------------------------------------------------------------------