set default main

pull/5370/head
bunsenstraat 3 months ago
parent 64054bff59
commit 23865edda7
  1. 4
      apps/remixdesktop/src/main.ts
  2. 2
      apps/remixdesktop/src/tools/git.ts

@ -36,8 +36,8 @@ const windowSet = new Set<BrowserWindow>([]);
export const createWindow = async (dir?: string): Promise<void> => {
// Create the browser window.
const mainWindow = new BrowserWindow({
width: 1000,// (isE2E ? 3840 : screen.getPrimaryDisplay().size.width * 0.8),
height: 1000, //(isE2E ? 2160 : screen.getPrimaryDisplay().size.height * 0.8),
width: 1280,// (isE2E ? 3840 : screen.getPrimaryDisplay().size.width * 0.8),
height: 720, //(isE2E ? 2160 : screen.getPrimaryDisplay().size.height * 0.8),
frame: true,
webPreferences: {
preload: path.join(__dirname, 'preload.js')

@ -107,7 +107,7 @@ export const gitProxy = {
},
async init(path: string) {
await execAsync(`git init`, { cwd: path });
await execAsync(`git init --initial-branch=main`, { cwd: path });
},
async updateSubmodules(path: string) {

Loading…
Cancel
Save