├── .editorconfig ├── LICENSE ├── README.md ├── insider ├── darwin │ ├── arm64 │ │ └── latest.json │ └── x64 │ │ └── latest.json ├── linux │ ├── arm64 │ │ └── latest.json │ ├── armhf │ │ └── latest.json │ ├── loong64 │ │ └── latest.json │ ├── ppc64le │ │ └── latest.json │ ├── riscv64 │ │ └── latest.json │ └── x64 │ │ └── latest.json └── win32 │ ├── arm64 │ ├── archive │ │ └── latest.json │ ├── system │ │ └── latest.json │ └── user │ │ └── latest.json │ ├── ia32 │ ├── archive │ │ └── latest.json │ ├── msi-updates-disabled │ │ └── latest.json │ ├── msi │ │ └── latest.json │ ├── system │ │ └── latest.json │ └── user │ │ └── latest.json │ └── x64 │ ├── archive │ └── latest.json │ ├── msi-updates-disabled │ └── latest.json │ ├── msi │ └── latest.json │ ├── system │ └── latest.json │ └── user │ └── latest.json ├── integrity.js ├── package.json └── stable ├── darwin ├── arm64 │ └── latest.json └── x64 │ └── latest.json ├── linux ├── arm │ └── latest.json ├── arm64 │ └── latest.json ├── armhf │ └── latest.json ├── ia32 │ └── latest.json ├── loong64 │ └── latest.json ├── ppc64le │ └── latest.json ├── riscv64 │ └── latest.json └── x64 │ └── latest.json └── win32 ├── arm64 ├── archive │ └── latest.json ├── system │ └── latest.json └── user │ └── latest.json ├── ia32 ├── archive │ └── latest.json ├── msi-updates-disabled │ └── latest.json ├── msi │ └── latest.json ├── system │ └── latest.json └── user │ └── latest.json └── x64 ├── archive └── latest.json ├── msi-updates-disabled └── latest.json ├── msi └── latest.json ├── system └── latest.json └── user └── latest.json /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 6 | tab_width = 2 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true 11 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 VSCodium 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # versions 2 | a repository for version json files used by the update service 3 | -------------------------------------------------------------------------------- /insider/darwin/arm64/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium-insiders/releases/download/1.101.03679-insider/VSCodium-darwin-arm64-1.101.03679-insider.zip", 3 | "name": "1.101.03679-insider", 4 | "version": "a6963c83caac2591a50490717f541edb7af29759", 5 | "productVersion": "1.101.3679.0-insider", 6 | "hash": "544aa25739c664a60cfc743358d940c5ab2e7229", 7 | "timestamp": "1748849634657", 8 | "sha256hash": "dc5d06b6e3365485f8e36bf26f883016b1a4387c88ee67595b5defcdbd9004cd" 9 | } 10 | -------------------------------------------------------------------------------- /insider/darwin/x64/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium-insiders/releases/download/1.101.03679-insider/VSCodium-darwin-x64-1.101.03679-insider.zip", 3 | "name": "1.101.03679-insider", 4 | "version": "a6963c83caac2591a50490717f541edb7af29759", 5 | "productVersion": "1.101.3679.0-insider", 6 | "hash": "32efd83ee3a1bca592fc2ac0ba2547861c1ebf88", 7 | "timestamp": "1748850732250", 8 | "sha256hash": "a9f7eb398bec7433ef01be11eeb1e6b04850e7a26563f103ad9992f48f53a7ac" 9 | } 10 | -------------------------------------------------------------------------------- /insider/linux/arm64/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium-insiders/releases/download/1.101.03679-insider/VSCodium-linux-arm64-1.101.03679-insider.tar.gz", 3 | "name": "1.101.03679-insider", 4 | "version": "a6963c83caac2591a50490717f541edb7af29759", 5 | "productVersion": "1.101.3679.0-insider", 6 | "hash": "186851aef42eb25cf3101bc4d7c375930c963938", 7 | "timestamp": "1748850377502", 8 | "sha256hash": "64c359d7b03232439507f893ec2f5059f3f9ce466a9537f3e30071c0d6d6d03f" 9 | } 10 | -------------------------------------------------------------------------------- /insider/linux/armhf/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium-insiders/releases/download/1.101.03679-insider/VSCodium-linux-armhf-1.101.03679-insider.tar.gz", 3 | "name": "1.101.03679-insider", 4 | "version": "a6963c83caac2591a50490717f541edb7af29759", 5 | "productVersion": "1.101.3679.0-insider", 6 | "hash": "48f4a775196d3641c4a6add5f4921a764830ab16", 7 | "timestamp": "1748850331771", 8 | "sha256hash": "a86f40c5a4d1e3cb5274aec9c2a494a1b392eb46833db8d6c63f7088bed96353" 9 | } 10 | -------------------------------------------------------------------------------- /insider/linux/loong64/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium-insiders/releases/download/1.100.03079-insider/VSCodium-linux-loong64-1.100.03079-insider.tar.gz", 3 | "name": "1.100.03079-insider", 4 | "version": "e3ca19959d693a5cf48c5ed746261533c1f4413a", 5 | "productVersion": "1.100.3079.0-insider", 6 | "hash": "d4aaeb511c7a41021686b987342763e6412b1ce8", 7 | "timestamp": "1746690064091", 8 | "sha256hash": "dfebadd6813c36f8947a5e5dee56a79fe2da1fe73a4481e07f692168f63a5b5c" 9 | } 10 | -------------------------------------------------------------------------------- /insider/linux/ppc64le/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium-insiders/releases/download/1.100.03079-insider/VSCodium-linux-ppc64le-1.100.03079-insider.tar.gz", 3 | "name": "1.100.03079-insider", 4 | "version": "e3ca19959d693a5cf48c5ed746261533c1f4413a", 5 | "productVersion": "1.100.3079.0-insider", 6 | "hash": "0919958ffb562951fd7ee1f7d5fad793620a5917", 7 | "timestamp": "1746690063609", 8 | "sha256hash": "3d2508e06dde079a9ae98823c4c18a98696f124bd0696e919f3296d3f2eb4070" 9 | } 10 | -------------------------------------------------------------------------------- /insider/linux/riscv64/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium-insiders/releases/download/1.101.03679-insider/VSCodium-linux-riscv64-1.101.03679-insider.tar.gz", 3 | "name": "1.101.03679-insider", 4 | "version": "a6963c83caac2591a50490717f541edb7af29759", 5 | "productVersion": "1.101.3679.0-insider", 6 | "hash": "4fe1ba94cb7075e2ba7331fd2f644851dfe681a0", 7 | "timestamp": "1748849940833", 8 | "sha256hash": "dda192464d261a84e1f630ef18ccc62158fc393366341c8898cc546f60bf4c16" 9 | } 10 | -------------------------------------------------------------------------------- /insider/linux/x64/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium-insiders/releases/download/1.101.03679-insider/VSCodium-linux-x64-1.101.03679-insider.tar.gz", 3 | "name": "1.101.03679-insider", 4 | "version": "a6963c83caac2591a50490717f541edb7af29759", 5 | "productVersion": "1.101.3679.0-insider", 6 | "hash": "f3bace9ff74017dacf789abe66332ccee9645cde", 7 | "timestamp": "1748850352995", 8 | "sha256hash": "b6f3059141cd49ee741d1f2d3eb40c63dda03f4a85dd2556c4a230c66f6c440a" 9 | } 10 | -------------------------------------------------------------------------------- /insider/win32/arm64/archive/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium-insiders/releases/download/1.101.03679-insider/VSCodium-win32-arm64-1.101.03679-insider.zip", 3 | "name": "1.101.03679-insider", 4 | "version": "a6963c83caac2591a50490717f541edb7af29759", 5 | "productVersion": "1.101.3679.0-insider", 6 | "hash": "12c29287fedd69793090d8684e724696fd17eddd", 7 | "timestamp": "1748852068397", 8 | "sha256hash": "49f1da88b639c86d116423b00f3bd5d7b3a42d0701a96bb93ada1723728dd69d" 9 | } 10 | -------------------------------------------------------------------------------- /insider/win32/arm64/system/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium-insiders/releases/download/1.101.03679-insider/VSCodiumSetup-arm64-1.101.03679-insider.exe", 3 | "name": "1.101.03679-insider", 4 | "version": "a6963c83caac2591a50490717f541edb7af29759", 5 | "productVersion": "1.101.3679.0-insider", 6 | "hash": "625afe7b64bc2336720bc788e8d0306ba3afcb45", 7 | "timestamp": "1748852067969", 8 | "sha256hash": "e86ef2b0a3ed70ad9f9f182206dd0ccf1882b89cf42a79a8b829b93698cd295e" 9 | } 10 | -------------------------------------------------------------------------------- /insider/win32/arm64/user/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium-insiders/releases/download/1.101.03679-insider/VSCodiumUserSetup-arm64-1.101.03679-insider.exe", 3 | "name": "1.101.03679-insider", 4 | "version": "a6963c83caac2591a50490717f541edb7af29759", 5 | "productVersion": "1.101.3679.0-insider", 6 | "hash": "606257d6399ecb603a7103510044415a3264d865", 7 | "timestamp": "1748852068172", 8 | "sha256hash": "2de4042e6f9594e44831962e5ded9feda829641bc30c946a3a6c7da4d9b34b9b" 9 | } 10 | -------------------------------------------------------------------------------- /insider/win32/ia32/archive/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium-insiders/releases/download/1.84.0.23283-insider/VSCodium-win32-ia32-1.84.0.23283-insider.zip", 3 | "name": "1.84.0.23283-insider", 4 | "version": "032b38229264250bcce623b6412a0bb7bd9b4052", 5 | "productVersion": "1.84.0.23283-insider", 6 | "hash": "d593f83ad3dfade3409fb562354f77e796a553bf", 7 | "timestamp": "1696927469043", 8 | "sha256hash": "4db3379d71d2889bee97bd9bad4a9a833096ecb6dd47b200223e381f08650109" 9 | } 10 | -------------------------------------------------------------------------------- /insider/win32/ia32/msi-updates-disabled/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium-insiders/releases/download/1.84.0.23283-insider/VSCodium-ia32-updates-disabled-1.84.0.23283-insider.msi", 3 | "name": "1.84.0.23283-insider", 4 | "version": "032b38229264250bcce623b6412a0bb7bd9b4052", 5 | "productVersion": "1.84.0.23283-insider", 6 | "hash": "2651f8c691f727167f5010a22870f46056a5a619", 7 | "timestamp": "1696927469589", 8 | "sha256hash": "1a2f8d0cff8e4f0a2c90134d02fead704a7f83d855929a603170c84e38050d85" 9 | } 10 | -------------------------------------------------------------------------------- /insider/win32/ia32/msi/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium-insiders/releases/download/1.84.0.23283-insider/VSCodium-ia32-1.84.0.23283-insider.msi", 3 | "name": "1.84.0.23283-insider", 4 | "version": "032b38229264250bcce623b6412a0bb7bd9b4052", 5 | "productVersion": "1.84.0.23283-insider", 6 | "hash": "93745bc6263289d44a4d34f5b13443f2f3d1492d", 7 | "timestamp": "1696927469315", 8 | "sha256hash": "8341fca7c57b3b0f3fca774267170cb8aadda5852890e2377b67111ae0c1c70f" 9 | } 10 | -------------------------------------------------------------------------------- /insider/win32/ia32/system/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium-insiders/releases/download/1.84.0.23283-insider/VSCodiumSetup-ia32-1.84.0.23283-insider.exe", 3 | "name": "1.84.0.23283-insider", 4 | "version": "032b38229264250bcce623b6412a0bb7bd9b4052", 5 | "productVersion": "1.84.0.23283-insider", 6 | "hash": "44f6ee0e949cfafa2ed16f38a8dc3c5e0fcf8cd9", 7 | "timestamp": "1696927468501", 8 | "sha256hash": "5ba807c0b67067104bb18ee962f608ef23303dd6c0e266068f76a3ecff416414" 9 | } 10 | -------------------------------------------------------------------------------- /insider/win32/ia32/user/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium-insiders/releases/download/1.84.0.23283-insider/VSCodiumUserSetup-ia32-1.84.0.23283-insider.exe", 3 | "name": "1.84.0.23283-insider", 4 | "version": "032b38229264250bcce623b6412a0bb7bd9b4052", 5 | "productVersion": "1.84.0.23283-insider", 6 | "hash": "3b163f6416350e2b7fed5af822ccdad749f74e8b", 7 | "timestamp": "1696927468760", 8 | "sha256hash": "30824f261cedcec5760e591d2e8342c0bf7f32abb4e4021e8f105d89ae4ded61" 9 | } 10 | -------------------------------------------------------------------------------- /insider/win32/x64/archive/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium-insiders/releases/download/1.101.03679-insider/VSCodium-win32-x64-1.101.03679-insider.zip", 3 | "name": "1.101.03679-insider", 4 | "version": "a6963c83caac2591a50490717f541edb7af29759", 5 | "productVersion": "1.101.3679.0-insider", 6 | "hash": "4ebc6dd396f563b3a42650a48c8b433401991d00", 7 | "timestamp": "1748852729733", 8 | "sha256hash": "38fefc81d84af6769031a973ddb547fe725c6a62e287781f58d872b1b7d8824f" 9 | } 10 | -------------------------------------------------------------------------------- /insider/win32/x64/msi-updates-disabled/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium-insiders/releases/download/1.101.03679-insider/VSCodium-x64-updates-disabled-1.101.03679-insider.msi", 3 | "name": "1.101.03679-insider", 4 | "version": "a6963c83caac2591a50490717f541edb7af29759", 5 | "productVersion": "1.101.3679.0-insider", 6 | "hash": "0b1c1bbe17407e3455088c342ae683a642f7e3bb", 7 | "timestamp": "1748852730207", 8 | "sha256hash": "af1ebdb8514d8e1e6cceefcaace196d816662bf391c46cb52382f81336ed998f" 9 | } 10 | -------------------------------------------------------------------------------- /insider/win32/x64/msi/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium-insiders/releases/download/1.101.03679-insider/VSCodium-x64-1.101.03679-insider.msi", 3 | "name": "1.101.03679-insider", 4 | "version": "a6963c83caac2591a50490717f541edb7af29759", 5 | "productVersion": "1.101.3679.0-insider", 6 | "hash": "ab9d19e8dc2bd0f5bbd6e884e7eeb4e55d446696", 7 | "timestamp": "1748852729967", 8 | "sha256hash": "fe0d74a85562d1d0094a61cc8b93ce9708b23fe413047ecb5bb0f25326587c2c" 9 | } 10 | -------------------------------------------------------------------------------- /insider/win32/x64/system/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium-insiders/releases/download/1.101.03679-insider/VSCodiumSetup-x64-1.101.03679-insider.exe", 3 | "name": "1.101.03679-insider", 4 | "version": "a6963c83caac2591a50490717f541edb7af29759", 5 | "productVersion": "1.101.3679.0-insider", 6 | "hash": "84d5f5c95d38de7d5ae6af08a9125c829b964a93", 7 | "timestamp": "1748852729264", 8 | "sha256hash": "1676a76dbe0f4f126dc9b4e05c83234797bef46b34b9ab47f69f69a5bd15af98" 9 | } 10 | -------------------------------------------------------------------------------- /insider/win32/x64/user/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium-insiders/releases/download/1.101.03679-insider/VSCodiumUserSetup-x64-1.101.03679-insider.exe", 3 | "name": "1.101.03679-insider", 4 | "version": "a6963c83caac2591a50490717f541edb7af29759", 5 | "productVersion": "1.101.3679.0-insider", 6 | "hash": "e56596a22b2f37cec92db17c13f954cd5aff6278", 7 | "timestamp": "1748852729499", 8 | "sha256hash": "be9e5d1540ca466ad88b4081d95dc468d67540e11dc5247041e95bdf932921b0" 9 | } 10 | -------------------------------------------------------------------------------- /integrity.js: -------------------------------------------------------------------------------- 1 | const crypto = require('crypto') 2 | const https = require('https') 3 | const cp = require('child_process') 4 | const fs = require('fs') 5 | 6 | const BASE='https://raw.githubusercontent.com/VSCodium/versions/master/' 7 | 8 | const TYPES = { 9 | win32Archive: 'win32/ia32/archive/', 10 | win64Archive: 'win32/x64/archive/', 11 | win32System: 'win32/ia32/system/', 12 | win64System: 'win32/x64/system/', 13 | win32User: 'win32/ia32/user/', 14 | win64User: 'win32/x64/user/', 15 | darwin: 'darwin/', 16 | linux32: 'linux/ia32/', 17 | linux64: 'linux/x64/' 18 | } 19 | 20 | const FILENAME = 'latest.json' 21 | 22 | function getSums (data) { 23 | let h = crypto.createHash('sha256') 24 | h.update(data) 25 | const sha256 = h.digest('hex') 26 | 27 | h = crypto.createHash('sha1') 28 | h.update(data) 29 | const sha1 = h.digest('hex') 30 | 31 | return { sha256, sha1 } 32 | } 33 | 34 | function getFile (url) { 35 | // the "easy way"; returns file buffer 36 | const filename = url.substring(url.lastIndexOf('/')+1) 37 | cp.execSync(`curl -Lso /tmp/${filename} ${url}`) 38 | const contents = fs.readFileSync(`/tmp/${filename}`) 39 | fs.unlinkSync(`/tmp/${filename}`) // delete tmp file 40 | return contents 41 | } 42 | 43 | function getJson (type) { 44 | return new Promise((resolve, reject) => { 45 | https.get(`${BASE}${type}${FILENAME}`, (res) => { 46 | const { statusCode } = res; 47 | if (statusCode > 200) { 48 | res.resume() 49 | reject(new Error(`could not get version json for ${type}`)) 50 | return 51 | } 52 | 53 | res.setEncoding('utf8') 54 | let rawData = '' 55 | res.on('data', (chunk) => { rawData += chunk }) 56 | res.on('end', () => { 57 | try { 58 | const parsedData = JSON.parse(rawData) 59 | resolve(parsedData) 60 | } catch (e) { 61 | reject(e) 62 | } 63 | }) 64 | }).on('error', (e) => { 65 | reject(e) 66 | }) 67 | }) 68 | } 69 | 70 | function compareSums (sums, json) { 71 | return sums.sha256 === json.sha256hash && sums.sha1 === json.hash 72 | } 73 | 74 | 75 | async function validateAssets (throwErrors = false) { 76 | const results = {} 77 | for (let type in TYPES) { 78 | console.log('Checking', type, '...') 79 | try { 80 | const json = await getJson(TYPES[type]) 81 | console.log('Got version JSON. Downloading asset ...') 82 | const file = await getFile(json.url) 83 | console.log('Downloaded asset. Computing sums ...') 84 | const sums = await getSums(file) 85 | const valid = compareSums(sums, json) 86 | if (!valid && throwErrors) throw new Error(`Invalid hashes for ${type} ${json.productVersion}`) 87 | results[type] = valid 88 | ? `Hashes match (${json.productVersion})` 89 | : `Invalid hashes (${json.productVersion}) - (want: ${sums.sha256}, got: ${json.sha256hash}), (want: ${sums.sha1}, got: ${json.hash})` 90 | console.log(results[type]) 91 | } catch (e) { 92 | if (throwErrors) throw e 93 | console.log('Encountered an error, skipping ...') 94 | results[type] = `Error: ${e.message}` 95 | } 96 | } 97 | console.log('Summary:') 98 | console.log(JSON.stringify(results, null, 4)) 99 | } 100 | 101 | validateAssets(process.argv[2] === 'test') 102 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vscodium-versions", 3 | "version": "0.0.1", 4 | "scripts": { 5 | "test": "node integrity.js test" 6 | }, 7 | "repository": { 8 | "type": "git", 9 | "url": "https://github.com/vscodium/versions" 10 | }, 11 | "author": { 12 | "name": "Peter Squicciarini", 13 | "email": "stripedpajamas273@gmail.com" 14 | } 15 | } -------------------------------------------------------------------------------- /stable/darwin/arm64/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium/releases/download/1.100.23258/VSCodium-darwin-arm64-1.100.23258.zip", 3 | "name": "1.100.23258", 4 | "version": "557d9224936804f4aeb93625d7a45c97113627e4", 5 | "productVersion": "1.100.23258.0", 6 | "hash": "2ff30717242bc396fd3649a7ba8b79bccfa52fdf", 7 | "timestamp": "1747333890676", 8 | "sha256hash": "08f3c8603c43885d3b49d45a39ed82a7c7e5e18bdb54f79a56aa1ba343d9cab6" 9 | } 10 | -------------------------------------------------------------------------------- /stable/darwin/x64/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium/releases/download/1.100.23258/VSCodium-darwin-x64-1.100.23258.zip", 3 | "name": "1.100.23258", 4 | "version": "557d9224936804f4aeb93625d7a45c97113627e4", 5 | "productVersion": "1.100.23258.0", 6 | "hash": "b6eb36a4ddd7e43c622cb667f87a9600a5b8f8da", 7 | "timestamp": "1747334922424", 8 | "sha256hash": "b7af16930a3aa7f4b48537fc06247de671c2e2a38b56d064534bb775ca3e8c47" 9 | } 10 | -------------------------------------------------------------------------------- /stable/linux/arm/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium/releases/download/1.49.3/VSCodium-linux-arm-1.49.3.tar.gz", 3 | "name": "1.49.3", 4 | "version": "2af051012b66169dde0c4dfae3f5ef48f787ff69", 5 | "productVersion": "1.49.3", 6 | "hash": "ec392b159f3ea19e9abff98e5360c094e64f88cd", 7 | "timestamp": "1602001632856", 8 | "sha256hash": "965942ffef07fe5a51837b5360bfa3c625dd53a1dec009a081f6e8f92fcb9178" 9 | } 10 | -------------------------------------------------------------------------------- /stable/linux/arm64/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium/releases/download/1.100.23258/VSCodium-linux-arm64-1.100.23258.tar.gz", 3 | "name": "1.100.23258", 4 | "version": "557d9224936804f4aeb93625d7a45c97113627e4", 5 | "productVersion": "1.100.23258.0", 6 | "hash": "e0fdc16217516ebea7a135e8a83194a5adf49670", 7 | "timestamp": "1747334631101", 8 | "sha256hash": "289ef8a9dd3139057d124a0875618b0abe7b65827d534176cf25bacbdcd6498e" 9 | } 10 | -------------------------------------------------------------------------------- /stable/linux/armhf/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium/releases/download/1.100.23258/VSCodium-linux-armhf-1.100.23258.tar.gz", 3 | "name": "1.100.23258", 4 | "version": "557d9224936804f4aeb93625d7a45c97113627e4", 5 | "productVersion": "1.100.23258.0", 6 | "hash": "847900f5ddb291ae1bdf50f3f8a3a9bb0a86fbe4", 7 | "timestamp": "1747334581840", 8 | "sha256hash": "a1bd97960bec93a285a3db2d966b864cf3d1c97429054002baae6ae3c85a1b1b" 9 | } 10 | -------------------------------------------------------------------------------- /stable/linux/ia32/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium/releases/download/1.35.1/VSCodium-linux-ia32-1.35.1.tar.gz", 3 | "name": "1.35.1", 4 | "version": "c7d83e57cd18f18026a8162d042843bda1bcf21f", 5 | "productVersion": "1.35.1", 6 | "hash": "2ec97396a64bef128bbd728e165239d9fac746cb", 7 | "timestamp": "1560422592384", 8 | "sha256hash": "4350073b44c334c0870bb3f8397153375504f61bb3f06a6897c3c0c3fa14a744" 9 | } 10 | -------------------------------------------------------------------------------- /stable/linux/loong64/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium/releases/download/1.100.23258/VSCodium-linux-loong64-1.100.23258.tar.gz", 3 | "name": "1.100.23258", 4 | "version": "557d9224936804f4aeb93625d7a45c97113627e4", 5 | "productVersion": "1.100.23258.0", 6 | "hash": "8db949dd5b207250f17630d3c58422976dc32e5e", 7 | "timestamp": "1747334191265", 8 | "sha256hash": "05b386b01b0a47ea295b83c4d078171452118c3b5c4e08d981c84df7a3de6660" 9 | } 10 | -------------------------------------------------------------------------------- /stable/linux/ppc64le/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium/releases/download/1.100.23258/VSCodium-linux-ppc64le-1.100.23258.tar.gz", 3 | "name": "1.100.23258", 4 | "version": "557d9224936804f4aeb93625d7a45c97113627e4", 5 | "productVersion": "1.100.23258.0", 6 | "hash": "5f4436798509b5188d43f18a1d97d7a433dfe7dc", 7 | "timestamp": "1747334202130", 8 | "sha256hash": "b159c816a4be6a49be7834bd3c72ca74de79aa8751b2d3aa562a4236b97eabf2" 9 | } 10 | -------------------------------------------------------------------------------- /stable/linux/riscv64/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium/releases/download/1.100.23258/VSCodium-linux-riscv64-1.100.23258.tar.gz", 3 | "name": "1.100.23258", 4 | "version": "557d9224936804f4aeb93625d7a45c97113627e4", 5 | "productVersion": "1.100.23258.0", 6 | "hash": "89776afbfa79265bf20841c83f744258281487ab", 7 | "timestamp": "1747334191269", 8 | "sha256hash": "2213f93fd195564843bb2496bc774134cae59bfb6ce3f08dfe4e71c63fae0ad1" 9 | } 10 | -------------------------------------------------------------------------------- /stable/linux/x64/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium/releases/download/1.100.23258/VSCodium-linux-x64-1.100.23258.tar.gz", 3 | "name": "1.100.23258", 4 | "version": "557d9224936804f4aeb93625d7a45c97113627e4", 5 | "productVersion": "1.100.23258.0", 6 | "hash": "735cd94da7218057244342dae2a890bf74ffa25a", 7 | "timestamp": "1747334578188", 8 | "sha256hash": "ebf1028106e5eebe0a23ae810293a28c874924fe27943120444d4910c25c4839" 9 | } 10 | -------------------------------------------------------------------------------- /stable/win32/arm64/archive/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium/releases/download/1.100.23258/VSCodium-win32-arm64-1.100.23258.zip", 3 | "name": "1.100.23258", 4 | "version": "557d9224936804f4aeb93625d7a45c97113627e4", 5 | "productVersion": "1.100.23258.0", 6 | "hash": "a9b56cca9329f9bd618a81718dd6c9f5805149bf", 7 | "timestamp": "1747393037248", 8 | "sha256hash": "a8cb6be684757a821eb339adb7506fc57ff78b5d0512c264925345a749115151" 9 | } 10 | -------------------------------------------------------------------------------- /stable/win32/arm64/system/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium/releases/download/1.100.23258/VSCodiumSetup-arm64-1.100.23258.exe", 3 | "name": "1.100.23258", 4 | "version": "557d9224936804f4aeb93625d7a45c97113627e4", 5 | "productVersion": "1.100.23258.0", 6 | "hash": "b95632380ebc7cac05c69ec9af849456f28e9db2", 7 | "timestamp": "1747393036806", 8 | "sha256hash": "f5680b6a04b7ad32a46a7b47a62cd4bdbbc334672b58973e107fe69ccfb1e413" 9 | } 10 | -------------------------------------------------------------------------------- /stable/win32/arm64/user/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium/releases/download/1.100.23258/VSCodiumUserSetup-arm64-1.100.23258.exe", 3 | "name": "1.100.23258", 4 | "version": "557d9224936804f4aeb93625d7a45c97113627e4", 5 | "productVersion": "1.100.23258.0", 6 | "hash": "be868c371e4cdc5ed408c80088c9236d501fdf44", 7 | "timestamp": "1747393037025", 8 | "sha256hash": "fdb6ad7e412861a0d4f1d56040a35ae61709c956b638480063682a30468c0388" 9 | } 10 | -------------------------------------------------------------------------------- /stable/win32/ia32/archive/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium/releases/download/1.83.1.23285/VSCodium-win32-ia32-1.83.1.23285.zip", 3 | "name": "1.83.1.23285", 4 | "version": "36d13de33ac0d6c684f10f99cff352e2f58228b3", 5 | "productVersion": "1.83.1.23285", 6 | "hash": "e91d50fc0aa1ddc6b1dc3bac3edf7dbf60b08093", 7 | "timestamp": "1697137328418", 8 | "sha256hash": "124633de279acbb18b0dbb826feab124b239ba774e2ea003ab1ddd41dfbebb9d" 9 | } 10 | -------------------------------------------------------------------------------- /stable/win32/ia32/msi-updates-disabled/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium/releases/download/1.83.1.23285/VSCodium-ia32-updates-disabled-1.83.1.23285.msi", 3 | "name": "1.83.1.23285", 4 | "version": "36d13de33ac0d6c684f10f99cff352e2f58228b3", 5 | "productVersion": "1.83.1.23285", 6 | "hash": "f9390b22cf3bc1dee4a89e7816092c4615f0746f", 7 | "timestamp": "1697137329152", 8 | "sha256hash": "462a1c7a98db7c242acdf6c47e96c3ffb1ee75c4ee151c2cbb7c4bf42b11527c" 9 | } 10 | -------------------------------------------------------------------------------- /stable/win32/ia32/msi/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium/releases/download/1.83.1.23285/VSCodium-ia32-1.83.1.23285.msi", 3 | "name": "1.83.1.23285", 4 | "version": "36d13de33ac0d6c684f10f99cff352e2f58228b3", 5 | "productVersion": "1.83.1.23285", 6 | "hash": "0d20d3960d2c18d2331aeb41c9b151095b159dec", 7 | "timestamp": "1697137328777", 8 | "sha256hash": "e6936901c28562d0913878c617f5e9a31c29d5ca6d9afe762e328b455c074eff" 9 | } 10 | -------------------------------------------------------------------------------- /stable/win32/ia32/system/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium/releases/download/1.83.1.23285/VSCodiumSetup-ia32-1.83.1.23285.exe", 3 | "name": "1.83.1.23285", 4 | "version": "36d13de33ac0d6c684f10f99cff352e2f58228b3", 5 | "productVersion": "1.83.1.23285", 6 | "hash": "3b66bd9c9f476d55419890ec83de20c1734596ee", 7 | "timestamp": "1697137327626", 8 | "sha256hash": "d052c44999f8fc139338d249dcc6c56e5126d17854d1c45f446a8405abc12d87" 9 | } 10 | -------------------------------------------------------------------------------- /stable/win32/ia32/user/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium/releases/download/1.83.1.23285/VSCodiumUserSetup-ia32-1.83.1.23285.exe", 3 | "name": "1.83.1.23285", 4 | "version": "36d13de33ac0d6c684f10f99cff352e2f58228b3", 5 | "productVersion": "1.83.1.23285", 6 | "hash": "676257dcf35efc8c56937715350d9f5e268b47e8", 7 | "timestamp": "1697137328011", 8 | "sha256hash": "5a042564114d08126e31c2b4744932d444d8b9273385e8113d07702d37061367" 9 | } 10 | -------------------------------------------------------------------------------- /stable/win32/x64/archive/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium/releases/download/1.100.23258/VSCodium-win32-x64-1.100.23258.zip", 3 | "name": "1.100.23258", 4 | "version": "557d9224936804f4aeb93625d7a45c97113627e4", 5 | "productVersion": "1.100.23258.0", 6 | "hash": "490b4cbc38d76d152216eaf8bba6fae76e6bd004", 7 | "timestamp": "1747393862876", 8 | "sha256hash": "468134b7c0a3067b33c44b9e2b39040e5f91fb36b74ca382e42beb9d319a8c63" 9 | } 10 | -------------------------------------------------------------------------------- /stable/win32/x64/msi-updates-disabled/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium/releases/download/1.100.23258/VSCodium-x64-updates-disabled-1.100.23258.msi", 3 | "name": "1.100.23258", 4 | "version": "557d9224936804f4aeb93625d7a45c97113627e4", 5 | "productVersion": "1.100.23258.0", 6 | "hash": "d350bce424c4f7c7f38a8c6ab1be4fb5f699872c", 7 | "timestamp": "1747393863319", 8 | "sha256hash": "585e63a987359de7fb89328f1128b5bc60c09590e99fbe5c986c560bccf0f028" 9 | } 10 | -------------------------------------------------------------------------------- /stable/win32/x64/msi/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium/releases/download/1.100.23258/VSCodium-x64-1.100.23258.msi", 3 | "name": "1.100.23258", 4 | "version": "557d9224936804f4aeb93625d7a45c97113627e4", 5 | "productVersion": "1.100.23258.0", 6 | "hash": "68a3762ecbcb676950ff9dadfaa5c8e06dcc5ddd", 7 | "timestamp": "1747393863116", 8 | "sha256hash": "568385095bc149f818bf859aae9e228a1aabe014d7d55b12c0da1a32cfddaec2" 9 | } 10 | -------------------------------------------------------------------------------- /stable/win32/x64/system/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium/releases/download/1.100.23258/VSCodiumSetup-x64-1.100.23258.exe", 3 | "name": "1.100.23258", 4 | "version": "557d9224936804f4aeb93625d7a45c97113627e4", 5 | "productVersion": "1.100.23258.0", 6 | "hash": "b291ba7a942b1a87b139d5b177d8c6417aac7556", 7 | "timestamp": "1747393862449", 8 | "sha256hash": "a58efd829108575cbee207b1da6d7255d1c6bcde4e1e591b4db5482a4c4bbfcd" 9 | } 10 | -------------------------------------------------------------------------------- /stable/win32/x64/user/latest.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "https://github.com/VSCodium/vscodium/releases/download/1.100.23258/VSCodiumUserSetup-x64-1.100.23258.exe", 3 | "name": "1.100.23258", 4 | "version": "557d9224936804f4aeb93625d7a45c97113627e4", 5 | "productVersion": "1.100.23258.0", 6 | "hash": "067240f32f84b3dc9b0e61392fc08ad6945d120d", 7 | "timestamp": "1747393862657", 8 | "sha256hash": "b494ac451dbb3e11ac977d155bffaad2e5e63ebce366b2e7ab2c48e1b63cf1b6" 9 | } 10 | --------------------------------------------------------------------------------