Open
Description
Electron fiddle explicitly handles the minimum supported version of Electron.
export function getReleasedVersions(): Array<Version> {
// Don't support anything older than 0.30 (Aug 2015).
// The oldest version known to releases.json.org is 0.20,
// Pre-0.24.0 versions were technically 'atom-shell' and cannot
// be downloaded with @electron/get.
// TODO(dsanders11): upstream this logic to @electron/fiddle-core
return knownVersions.versions
.filter((ver) => !ver.version.startsWith('0.2'))
.map(({ version }) => ({ version }));
}
What we can do ?
- Update the BaseVersions.setVersions() class in the src/versions.ts by excluding
the older versions that are no longer supported or were part of the 'atom-shell'
Metadata
Metadata
Assignees
Labels
No labels