-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
43 changed files
with
4,081 additions
and
8,800 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/* eslint-env node */ | ||
module.exports = { | ||
extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"], | ||
parser: "@typescript-eslint/parser", | ||
plugins: ["@typescript-eslint"], | ||
root: true, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: 'Tauri build check' | ||
on: [push] | ||
|
||
jobs: | ||
test-tauri: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
platform: [macos-latest, ubuntu-20.04, windows-latest] | ||
|
||
runs-on: ${{ matrix.platform }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: setup node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
- name: install Rust stable | ||
uses: dtolnay/rust-toolchain@stable | ||
- name: install dependencies (ubuntu only) | ||
if: matrix.platform == 'ubuntu-20.04' | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf | ||
- name: install frontend dependencies | ||
run: yarn install # change this to npm or pnpm depending on which one you use | ||
- uses: tauri-apps/tauri-action@v0 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
node_modules | ||
node_modules | ||
.parcel-cache |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,51 @@ | ||
{ | ||
"name": "webamp-desktop", | ||
"version": "0.3.0", | ||
"version": "0.4.0", | ||
"description": "Desktop version of Winamp 2.9 reimplementation in HTML5 and JS", | ||
"main": "main.js", | ||
"type": "module", | ||
"scripts": { | ||
"start": "yarn run build && electron .", | ||
"build": "yarn run copy && parcel build ./src/index.html", | ||
"watch": "yarn run copy && parcel watch ./src/index.html", | ||
"serve": "yarn run copy && parcel ./src/index.html", | ||
"copy": "cp -r ./bundled/* ./dist", | ||
"build": "yarn run copy && yarn build:src", | ||
"build:src": "npx parcel build --public-url ./ ./src/index.html", | ||
"watch": "npx parcel watch --public-url ./ --hmr-hostname 127.0.0.1 --hmr-port 54439 ./src/index.html", | ||
"test": "jest", | ||
"electron": "./node_modules/.bin/electron .", | ||
"start": "yarn run build && electron .", | ||
"test": "jest", | ||
"pack": "yarn run pack:win && yarn run pack:linux && yarn run pack:mac", | ||
"pack:win": "build -w --x64", | ||
"pack:linux": "build -l --x64", | ||
"pack:mac": "build -m --x64", | ||
"pack": "yarn run pack:win && yarn run pack:linux && yarn run pack:mac", | ||
"dist": "yarn run build && build --x64" | ||
}, | ||
"homepage": "https://github.com/durasj/webamp-desktop", | ||
"homepage": "https://desktop.webamp.org", | ||
"repository": "https://github.com/durasj/webamp-desktop", | ||
"author": "Jakub Duras <[email protected]>", | ||
"license": "MIT", | ||
"dependencies": { | ||
"electron-is-dev": "^1.0.1", | ||
"electron-log": "^3.0.1", | ||
"electron-updater": "^4.0.6", | ||
"html-to-text": "^4.0.0", | ||
"@tauri-apps/api": "^1.5.1", | ||
"html-to-text": "^9.0.5", | ||
"left-clicky": "0.1.1", | ||
"mime-types": "^2.1.22" | ||
"mime-types": "^2.1.35" | ||
}, | ||
"devDependencies": { | ||
"@types/jest": "^24.0.11", | ||
"@types/node": "^10.14.1", | ||
"@types/webdriverio": "^4.13.3", | ||
"electron": "^4.1.0", | ||
"electron-builder": "^20.39.0", | ||
"electron-debug": "^2.1.0", | ||
"eslint": "^5.15.2", | ||
"jest": "^24.5.0", | ||
"parcel-bundler": "^1.12.2", | ||
"spectron": "^5.0.0", | ||
"ts-jest": "^24.0.0", | ||
"tslint": "^5.14.0", | ||
"typescript": "^3.2.4", | ||
"webamp": "^1.3.0" | ||
"@tauri-apps/cli": "^1.5.6", | ||
"@types/jest": "^29.5.7", | ||
"@types/node": "^20.8.10", | ||
"@typescript-eslint/eslint-plugin": "^6.9.1", | ||
"@typescript-eslint/parser": "^6.9.1", | ||
"eslint": "^8.53.0", | ||
"jest": "^29.7.0", | ||
"parcel": "^2.10.2", | ||
"prettier": "^3.0.3", | ||
"ts-jest": "^29.1.1", | ||
"typescript": "^5.2.2", | ||
"webamp": "^1.5.0" | ||
}, | ||
"browserslist": [ | ||
"Chrome 69" | ||
], | ||
"browserslist": ["Chrome 97", "Safari 13"], | ||
"build": { | ||
"appId": "me.duras.webamp-desktop", | ||
"productName": "Webamp desktop", | ||
"copyright": "Copyright © 2018 Jakub Ďuraš", | ||
"productName": "Webamp Desktop", | ||
"copyright": "Copyright © 2018 Jakub Duras", | ||
"files": [ | ||
"!.*${/*}", | ||
"!src/*.*", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Generated by Cargo | ||
# will have compiled files and executables | ||
/target/ |
Oops, something went wrong.