mirror of
https://github.com/dbgate/dbgate
synced 2024-11-07 20:26:23 +00:00
simplified linux icon
This commit is contained in:
parent
3f858cae68
commit
a80c680914
@ -1,6 +1,5 @@
|
|||||||
const electron = require('electron');
|
const electron = require('electron');
|
||||||
const os = require('os');
|
const os = require('os');
|
||||||
const fs = require('fs');
|
|
||||||
const { Menu } = require('electron');
|
const { Menu } = require('electron');
|
||||||
const { fork } = require('child_process');
|
const { fork } = require('child_process');
|
||||||
const { autoUpdater } = require('electron-updater');
|
const { autoUpdater } = require('electron-updater');
|
||||||
@ -25,18 +24,6 @@ let splashWindow;
|
|||||||
log.transports.file.level = 'debug';
|
log.transports.file.level = 'debug';
|
||||||
autoUpdater.logger = log;
|
autoUpdater.logger = log;
|
||||||
|
|
||||||
function datadir() {
|
|
||||||
const dir = path.join(os.homedir(), 'dbgate-data');
|
|
||||||
if (!fs.existsSync(dir)) {
|
|
||||||
try {
|
|
||||||
fs.mkdirSync(dir);
|
|
||||||
} catch (err) {
|
|
||||||
console.error(`Error creating ${dir} directory`, err);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return dir;
|
|
||||||
}
|
|
||||||
|
|
||||||
function hideSplash() {
|
function hideSplash() {
|
||||||
if (splashWindow) {
|
if (splashWindow) {
|
||||||
splashWindow.destroy();
|
splashWindow.destroy();
|
||||||
@ -164,9 +151,7 @@ function createWindow() {
|
|||||||
});
|
});
|
||||||
mainWindow.loadURL(startUrl);
|
mainWindow.loadURL(startUrl);
|
||||||
if (os.platform() == 'linux') {
|
if (os.platform() == 'linux') {
|
||||||
const iconFile = path.join(datadir(), 'dbgate-icon.png');
|
mainWindow.setIcon(path.resolve(__dirname, '../icon.png'));
|
||||||
fs.copyFileSync(path.resolve(__dirname, '../icon.png'), iconFile);
|
|
||||||
mainWindow.setIcon(iconFile);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -12,11 +12,7 @@ const ensureDirectory = (dir, clean) => {
|
|||||||
}
|
}
|
||||||
if (!fs.existsSync(dir)) {
|
if (!fs.existsSync(dir)) {
|
||||||
console.log(`Creating directory ${dir}`);
|
console.log(`Creating directory ${dir}`);
|
||||||
try {
|
fs.mkdirSync(dir);
|
||||||
fs.mkdirSync(dir);
|
|
||||||
} catch (err) {
|
|
||||||
console.error(`Error creating ${dir} directory`, err);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
createDirectories[dir] = true;
|
createDirectories[dir] = true;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user