Kaydet (Commit) d8f91c0e authored tarafından Emincan Özcan's avatar Emincan Özcan

v0.3.2

üst fe1361aa
{ {
"name": "pardus-kataliz", "name": "pardus-kataliz",
"version": "0.3.1", "version": "0.3.2",
"author": "Emincan Ozcan <emincan@emincanozcan.com>", "author": "Emincan Ozcan <emincan@emincanozcan.com>",
"homepage": "https://github.com/emincanozcan/kataliz", "homepage": "https://github.com/emincanozcan/kataliz",
"private": true, "private": true,
......
...@@ -6,13 +6,13 @@ ...@@ -6,13 +6,13 @@
/> />
<div <div
v-if="IS_ELECTRON && installationOpen" v-if="IS_ELECTRON && installationOpen"
class="bg-gray-900 h-screen flex items-center justify-center" class="bg-gray-900 min-h-screen flex items-center justify-center"
> >
<Installation @close="onInstallationEnd" /> <Installation @close="onInstallationEnd" />
</div> </div>
<div <div
v-else-if="loading" v-else-if="loading"
class="bg-gray-900 h-screen flex items-center justify-center" class="bg-gray-900 min-h-screen flex items-center justify-center"
> >
<Loading loading-message="Uygulama Listesi Yükleniyor" /> <Loading loading-message="Uygulama Listesi Yükleniyor" />
</div> </div>
......
...@@ -6,7 +6,6 @@ import installExtension, { VUEJS_DEVTOOLS } from "electron-devtools-installer"; ...@@ -6,7 +6,6 @@ import installExtension, { VUEJS_DEVTOOLS } from "electron-devtools-installer";
import exportToFileListener from "./electron-listeners/exportToFileListener"; import exportToFileListener from "./electron-listeners/exportToFileListener";
import installListener from "./electron-listeners/installListener"; import installListener from "./electron-listeners/installListener";
console.log({ __dirname });
const isDevelopment = process.env.NODE_ENV !== "production"; const isDevelopment = process.env.NODE_ENV !== "production";
const path = require("path"); const path = require("path");
// Scheme must be registered before the app is ready // Scheme must be registered before the app is ready
...@@ -60,9 +59,7 @@ app.on("activate", () => { ...@@ -60,9 +59,7 @@ app.on("activate", () => {
if (BrowserWindow.getAllWindows().length === 0) createWindow(); if (BrowserWindow.getAllWindows().length === 0) createWindow();
}); });
app.commandLine.appendSwitch("force-color-profile", "srgb"); app.commandLine.appendSwitch("force-color-profile", "srgb");
// This method will be called when Electron has finished app.commandLine.appendSwitch("--no-sandbox");
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on("ready", async () => { app.on("ready", async () => {
if (isDevelopment && !process.env.IS_TEST) { if (isDevelopment && !process.env.IS_TEST) {
// Install Vue Devtools // Install Vue Devtools
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment