Upgrade Electron to 39.2.7 to fix macOS Tahoe GPU performance regression (#931)

This commit is contained in:
Copilot
2025-12-20 03:06:22 +01:00
committed by GitHub
parent 91df6de4d4
commit 5a54ba4983
12 changed files with 52 additions and 42 deletions

View File

@@ -9,7 +9,7 @@ export default class ConfigStorage {
private file: string
private database: any
private rpc: Rpc
constructor(file: string, rpc: Rpc) {
this.file = file
this.rpc = rpc

View File

@@ -82,7 +82,7 @@ export class Base64Message {
let str: string = ''
buf.forEach(element => {
let hex = element.toString(16).toUpperCase()
const hex = element.toString(16).toUpperCase()
str += `0x${hex.length < 2 ? '0' + hex : hex} `
})
return str.trimRight()