├── .gitignore ├── LICENSE ├── README.md ├── main.js ├── package.json └── version.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffy/electron-updater-example/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffy/electron-updater-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffy/electron-updater-example/HEAD/README.md -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffy/electron-updater-example/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffy/electron-updater-example/HEAD/package.json -------------------------------------------------------------------------------- /version.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iffy/electron-updater-example/HEAD/version.html --------------------------------------------------------------------------------