Please provide an AppImage for Linux. This will allow subordination to run on many Linux distributions at once. electron-builder has support for it, so should be really easy:
Edit package.json to use the latest electron-builder.
Edit package.json — add after "build": { ... }:
, "linux": {
"target": ["AppImage"]
},
Then, npm install or npm run dist or npm run dist -- --linux=AppImage if you want to explicitly set target and do not edit package.json.
Currently the application is not ready for running on Linux. It has no visual style for it and it doesn't use Linux-specific Electron calls. Maybe someday.
Please provide an AppImage for Linux. This will allow subordination to run on many Linux distributions at once.
electron-builder
has support for it, so should be really easy:Edit package.json to use the latest electron-builder.
Edit package.json — add after "build": { ... }:
Then,
npm install
ornpm run dist or npm run dist -- --linux=AppImage
if you want to explicitly set target and do not edit package.json.