├── README.md ├── currentversion.json └── currentversion_cnc.json /README.md: -------------------------------------------------------------------------------- 1 | This repository manages binary releases of [LightBurn](https://lightburnsoftware.com). 2 | 3 | Checkout the [Releases Page](https://github.com/LightBurnSoftware/deployment/releases) for downloads. 4 | 5 | -------------------------------------------------------------------------------- /currentversion.json: -------------------------------------------------------------------------------- 1 | { 2 | "macnew": { 3 | "date": 1656604521, 4 | "ver": "1.2.00", 5 | "file": "https://github.com/LightBurnSoftware/deployment/releases/download/1.2.00/LightBurn-Sur.V1.2.00.dmg" 6 | }, 7 | "win32": { 8 | "ver": "1.5.06", 9 | "file": "https://github.com/LightBurnSoftware/deployment/releases/download/1.5.06/LightBurn-32Bit-v1.5.06.exe", 10 | "date": 1710918006 11 | }, 12 | "win64": { 13 | "date": 1727186633, 14 | "ver": "1.7.08", 15 | "file": "https://release.lightburnsoftware.com/LightBurn/Release/LightBurn-v1.7.08/LightBurn-v1.7.08.exe" 16 | }, 17 | "unix64_app": { 18 | "date": 1727186633, 19 | "ver": "1.7.08", 20 | "file": "https://release.lightburnsoftware.com/LightBurn/Release/LightBurn-v1.7.08/LightBurn-Linux64-v1.7.08.AppImage" 21 | }, 22 | "unix64_zip": { 23 | "date": 1727186633, 24 | "ver": "1.7.08", 25 | "file": "https://release.lightburnsoftware.com/LightBurn/Release/LightBurn-v1.7.08/LightBurn-Linux64-v1.7.08.7z" 26 | }, 27 | "unix64": { 28 | "date": 1727186633, 29 | "ver": "1.7.08", 30 | "file": "https://release.lightburnsoftware.com/LightBurn/Release/LightBurn-v1.7.08/LightBurn-Linux64-v1.7.08.run" 31 | }, 32 | "mac": { 33 | "date": 1727186633, 34 | "ver": "1.7.08", 35 | "file": "https://release.lightburnsoftware.com/LightBurn/Release/LightBurn-v1.7.08/LightBurn.V1.7.08.dmg" 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /currentversion_cnc.json: -------------------------------------------------------------------------------- 1 | {} 2 | --------------------------------------------------------------------------------