Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
Merge pull request #24 from goosewobbler/0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
goosewobbler authored Dec 26, 2021
2 parents 1f5e533 + d012b16 commit a6f9c76
Show file tree
Hide file tree
Showing 15 changed files with 321 additions and 185 deletions.
31 changes: 31 additions & 0 deletions electron-builder.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
module.exports = {
asar: true,
appId: 'com.dj-helper.app',
copyright: `Copyright © ${new Date().getFullYear()} Goosewobbler`,
productName: 'DJ Helper',
artifactName: '${name}-${version}-${os}-${arch}.${ext}',
afterSign: './scripts/notarize.js',
files: ['bundle/**/*', 'build/**/*'],
mac: {
category: 'public.app-category.music',
icon: 'build/icon.icns',
hardenedRuntime: true,
entitlements: './build/entitlements.mac.plist',
entitlementsInherit: './build/entitlements.mac.plist',
},
win: {
target: 'nsis',
icon: 'build/icon.ico',
},
nsis: {
deleteAppDataOnUninstall: true,
},
linux: {
category: 'Audio',
icon: 'build/icon/',
desktop: {
StartupWMClass: 'dj helper',
},
target: ['AppImage'],
},
};
31 changes: 0 additions & 31 deletions electron-builder.json

This file was deleted.

9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dj-helper",
"description": "A tool for constructing DJ sets",
"version": "0.0.16",
"version": "0.1.0",
"author": "Sam Maister <[email protected]>",
"license": "AGPL-3.0-or-later",
"main": "./bundle/main.prod.js",
Expand All @@ -13,7 +13,7 @@
"init": "pnpm install",
"preinstall": "npx only-allow pnpm",
"check-types": "tsc --noEmit",
"clean": "cross-env rm -rf pnpm-lock.yaml ./node_modules ./bundle ./dist",
"clean": "cross-env rm -rf pnpm-lock.yaml ./node_modules ./bundle ./dist",
"clean:build": "cross-env rm -rf ./bundle ./dist",
"clean:bundle": "cross-env rm -rf ./bundle",
"dev": "pnpm clean:build && pnpm dev:bundle:main && pnpm dev:bundle:preload && cross-env pnpm dev:start-server",
Expand Down Expand Up @@ -62,6 +62,7 @@
"@babel/register": "^7.16.5",
"@goosewobbler/spectron": "^17.0.0-alpha3",
"@headlessui/react": "^1.4.2",
"@heroicons/react": "^1.0.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.4",
"@redux-offline/redux-offline": "^2.6.0",
"@reduxjs/toolkit": "^1.7.1",
Expand All @@ -72,7 +73,7 @@
"@testing-library/webdriverio": "^3.0.5",
"@types/jest": "^27.0.3",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.4",
"@types/node": "^17.0.5",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-redux": "^7.1.21",
Expand Down Expand Up @@ -110,7 +111,7 @@
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-jest-dom": "^3.9.2",
"eslint-plugin-jest-dom": "^3.9.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
Expand Down
Loading

0 comments on commit a6f9c76

Please sign in to comment.