Skip to content

Commit

Permalink
Merge pull request #2 from d43m0nhLInt3r/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
d43m0nhLInt3r authored Jul 28, 2020
2 parents e1d9557 + 5d81f62 commit 3009f57
Show file tree
Hide file tree
Showing 14 changed files with 2,268 additions and 48 deletions.
Binary file added build/icons/mac/icon.icns
Binary file not shown.
Binary file added build/icons/png/1024x1024.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added build/icons/png/128x128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added build/icons/png/16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added build/icons/png/24x24.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added build/icons/png/256x256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added build/icons/png/32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added build/icons/png/48x48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added build/icons/png/512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added build/icons/png/64x64.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added build/icons/win/icon.ico
Binary file not shown.
4 changes: 4 additions & 0 deletions main.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
const { app, BrowserWindow } = require("electron");
//const {autoUpdater} = require("electron-updater");

//autoUpdater.checkForUpdatesAndNotify()


function createWindow() {
// Create the browser window.
Expand Down
61 changes: 56 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,70 @@
{
"name": "PepegaBoard",
"name": "pepegaboard",
"version": "1.0.0",
"description": "An Open Source Pepega Board",
"main": "main.js",
"repository": "gituwu.com",
"author": "d43m0nhLInt3r",
"repository": "https://github.com/d43m0nhLInt3r/PepegaBoard",
"author": {"name": "d43m0nhLInt3r", "email": "lookat@my.repo" },
"license": "GPL-3.0",
"scripts": {
"start": "electron ."
"start": "electron .",
"build-deb-64": "electron-builder -l deb --x64 ",
"build-win-64": "electron-builder -w nsis --x64 ",
"build-mac-64": "electron-builder -m --x64 ",
"build-arch-pac": "electron-builder -l pacman --x64 ",
"build-linux-appimage": "electron-builder -l appimage --x64 "
},
"devDependencies": {
"electron": "^9.1.1"
"electron": "^9.1.1",
"electron-builder": "^22.8.0"
},
"dependencies": {
"bootstrap": "^4.5.0",
"electron-icon-maker": "^0.0.4",
"jquery": "^3.5.1"
},
"release": "build",
"build": {
"appId": "com.pepegaboard.app",
"asar": true,
"publish": [
{
"provider": "github",
"owner": "d43m0nhLInt3r",
"repo": "PepegaBoard"
}
],
"mac": {
"artifactName": "${name}-mac-${version}.${ext}",
"category": "public.app-category.utilities",
"darkModeSupport": true,
"icon": "build/icons/mac/icon.icns",
"target": [
"zip"
]
},
"win": {
"artifactName": "${name}-win-${version}.${ext}",
"publisherName": "d43m0nhLInt3r",
"icon": "build/icons/win/icon.ico",
"target": [
"nsis"
]
},
"nsis": {
"deleteAppDataOnUninstall": true,
"allowToChangeInstallationDirectory": true,
"oneClick": false,
"perMachine": false
},
"linux": {
"artifactName": "${name}-linux-${version}.${ext}",
"category": "Utility",
"target": [
"deb",
"pac"
],
"icon": "build/icons/png"
}
}
}
Loading

0 comments on commit 3009f57

Please sign in to comment.