Skip to content

Commit

Permalink
Merge branch 'v0.22.59'
Browse files Browse the repository at this point in the history
  • Loading branch information
sereneblue committed Jun 24, 2024
2 parents fe166c5 + 8261734 commit d554e1b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/_locales/pt_BR/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@
"message": "Buscar regras"
},
"text-startupDelay": {
"message": "Startup delay (sec)"
"message": "Adiamento de inicialização (seg.)"
},
"text-timezone": {
"message": "Fuso horário"
Expand Down
6 changes: 3 additions & 3 deletions src/lib/profiles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ export interface ProfileListItem {
}

const BrowserVersions: any = {
edg: { desktop: '124.0.0.0', desktopChrome: '124.0.0.0', deprecated: '109.0.1518.55', deprecatedChrome: '109.0.0.0', android: '124.0.0.0', androidChrome: '124.0.0.0' },
edg: { desktop: '126.0.0.0', desktopChrome: '126.0.0.0', deprecated: '109.0.1518.55', deprecatedChrome: '109.0.0.0', android: '125.0.0.0', androidChrome: '125.0.0.0' },
esr: { desktop: '115' },
esr2: { desktop: '102' },
ff: { desktop: '126', mobile: '126' },
gcr: { desktop: '125.0.0.0', deprecated: '109.0.0.0', ios: '125.0.6422.51', android: '125.0.6422.53' },
ff: { desktop: '127', mobile: '127' },
gcr: { desktop: '126.0.0.0', deprecated: '109.0.0.0', ios: '126.0.6478.54', android: '126.0.6478.110' },
sf: { desktop: '17.4.1', ios1: '15.6', ios2: '16.5', ios3: '17.4.1' },
};

Expand Down
2 changes: 1 addition & 1 deletion src/lib/spoof/font.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export default {
// In Firefox, the fontFamily property is located here instead of CSSStyleDeclaration
Object.defineProperty(spoofContext.CSS2Properties.prototype, "fontFamily", {
set: function fontFamily(f) {
this["font-family"] = getWhitelistFonts(f);
this["font-family"] = f ? getWhitelistFonts(f) : f;
}
});
Expand Down

0 comments on commit d554e1b

Please sign in to comment.