Skip to content

Commit

Permalink
updating fallback version (#2046)
Browse files Browse the repository at this point in the history
This PR updates the fallback version to 120.0.2210.181
  • Loading branch information
vidorteg committed Feb 29, 2024
1 parent 892368d commit 7c15926
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ export const SETTINGS_DEFAULT_ENTRY_POINT = 'index.html';
const WIN_APP_DATA = process.env.LOCALAPPDATA || '/';
const msEdgeBrowserMapping: Map<BrowserFlavor, IBrowserPath> = new Map<BrowserFlavor, IBrowserPath>();

// Current Revision: 108.0.1462.46
export const CDN_FALLBACK_REVISION = '@d29728ee681767b8b70995c207c659e2b46c2e92';
// Current Revision: 120.0.2210.181
export const CDN_FALLBACK_REVISION = '@6e7adbe405f69993cc1eb8c5dc9ea51868c4fb36';

/** Build-specified flags. */
declare const DEBUG: boolean;
Expand Down
4 changes: 2 additions & 2 deletions src/versionSocketConnection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ export interface BrowserVersionCdpResponse {
}
}

// Minimum supported version of Edge for source-mapped CSS mirroring
export const MIN_SUPPORTED_VERSION = '108.0.1462.46';
// Minimum supported version of Edge
export const MIN_SUPPORTED_VERSION = '120.0.2210.181';
export const MIN_SUPPORTED_REVISION = CDN_FALLBACK_REVISION;

export class BrowserVersionDetectionSocket extends EventEmitter {
Expand Down

0 comments on commit 7c15926

Please sign in to comment.