mirror of
https://github.com/litruv/AudioSort.git
synced 2026-07-24 18:56:01 +10:00
Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e3f4bfc7e2 | |||
| 4d3d616574 | |||
| 93d0da3496 | |||
| 761b1574e7 | |||
| 953c22bec3 | |||
| acf4b8d8b7 | |||
| fe38e7e8f2 | |||
| e16abd7370 | |||
| 9ade1cc7dd |
13
.github/workflows/build-all.yml
vendored
13
.github/workflows/build-all.yml
vendored
@@ -2,16 +2,13 @@ name: Build All Platforms
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [main]
|
|
||||||
tags:
|
tags:
|
||||||
- 'v*'
|
- 'v*'
|
||||||
pull_request:
|
|
||||||
branches: [main]
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-windows:
|
build-windows:
|
||||||
runs-on: windows-latest
|
runs-on: [self-hosted, windows]
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
@@ -26,6 +23,8 @@ jobs:
|
|||||||
|
|
||||||
- name: Build Windows
|
- name: Build Windows
|
||||||
run: npm run dist:win
|
run: npm run dist:win
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Upload Windows artifacts
|
- name: Upload Windows artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
@@ -34,7 +33,7 @@ jobs:
|
|||||||
path: release/*.exe
|
path: release/*.exe
|
||||||
|
|
||||||
build-linux:
|
build-linux:
|
||||||
runs-on: ubuntu-latest
|
runs-on: [self-hosted, linux]
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
@@ -49,6 +48,8 @@ jobs:
|
|||||||
|
|
||||||
- name: Build Linux
|
- name: Build Linux
|
||||||
run: npm run dist:linux
|
run: npm run dist:linux
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Upload Linux artifacts
|
- name: Upload Linux artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
@@ -58,7 +59,6 @@ jobs:
|
|||||||
release/*.AppImage
|
release/*.AppImage
|
||||||
release/*.deb
|
release/*.deb
|
||||||
release/*.rpm
|
release/*.rpm
|
||||||
release/*.snap
|
|
||||||
|
|
||||||
release:
|
release:
|
||||||
needs: [build-windows, build-linux]
|
needs: [build-windows, build-linux]
|
||||||
@@ -83,7 +83,6 @@ jobs:
|
|||||||
*.AppImage
|
*.AppImage
|
||||||
*.deb
|
*.deb
|
||||||
*.rpm
|
*.rpm
|
||||||
*.snap
|
|
||||||
draft: false
|
draft: false
|
||||||
prerelease: false
|
prerelease: false
|
||||||
env:
|
env:
|
||||||
|
|||||||
BIN
build/icon.png
Normal file
BIN
build/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 190 KiB |
20
package.json
20
package.json
@@ -2,7 +2,11 @@
|
|||||||
"name": "audio-sort",
|
"name": "audio-sort",
|
||||||
"version": "0.5.2",
|
"version": "0.5.2",
|
||||||
"description": "Electron audio sorting application with fuzzy search, tagging, library management, and advanced waveform editing with audio splitting capabilities for WAV files.",
|
"description": "Electron audio sorting application with fuzzy search, tagging, library management, and advanced waveform editing with audio splitting capabilities for WAV files.",
|
||||||
"author": "litruv",
|
"author": {
|
||||||
|
"name": "litruv",
|
||||||
|
"email": "litruv@example.com",
|
||||||
|
"url": "https://lit.ruv.wtf"
|
||||||
|
},
|
||||||
"main": "dist/main/main/index.js",
|
"main": "dist/main/main/index.js",
|
||||||
"type": "commonjs",
|
"type": "commonjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@@ -72,10 +76,9 @@
|
|||||||
"target": [
|
"target": [
|
||||||
"AppImage",
|
"AppImage",
|
||||||
"deb",
|
"deb",
|
||||||
"rpm",
|
"rpm"
|
||||||
"snap"
|
|
||||||
],
|
],
|
||||||
"icon": "build/icon.ico",
|
"icon": "build/icon.png",
|
||||||
"category": "AudioVideo",
|
"category": "AudioVideo",
|
||||||
"description": "Audio sorting and management application",
|
"description": "Audio sorting and management application",
|
||||||
"mimeTypes": [
|
"mimeTypes": [
|
||||||
@@ -83,15 +86,6 @@
|
|||||||
"audio/x-wav"
|
"audio/x-wav"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"snap": {
|
|
||||||
"summary": "Audio sorting and management application",
|
|
||||||
"plugs": [
|
|
||||||
"default",
|
|
||||||
"audio-playback",
|
|
||||||
"home",
|
|
||||||
"removable-media"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"extraResources": [
|
"extraResources": [
|
||||||
{
|
{
|
||||||
"from": "data/UCS.csv",
|
"from": "data/UCS.csv",
|
||||||
|
|||||||
Reference in New Issue
Block a user