Skip to content

Commit

Permalink
Version 0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tranxuanthang committed May 21, 2023
1 parent 1228810 commit 941a5c9
Show file tree
Hide file tree
Showing 37 changed files with 3,545 additions and 1,006 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: 'publish'
on:
push:
branches:
- release

jobs:
publish-tauri:
permissions:
contents: write
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-20.04, windows-latest]

runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: setup node
uses: actions/setup-node@v3
with:
node-version: 16
- 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: npm 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 }}
with:
tagName: __VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
releaseName: '__VERSION__'
releaseBody: 'See the assets to download this version and install.'
releaseDraft: true
prerelease: false
20 changes: 17 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,18 @@ LRCGET will scan every files in your chosen directory for music files, then and

## Screenshots

![01.png](screenshots/01.png)
![01.png](screenshots/01.png?1)

![02.png](screenshots/02.png)
![02.png](screenshots/02.png?1)

![03.png](screenshots/03.png?1)

![04.png](screenshots/04.png?1)

## Download

🎉 Newest version: v0.1.0

Visit the [release page](https://github.com/tranxuanthang/lrcget/releases).

OS Support:
Expand All @@ -20,10 +26,17 @@ OS Support:
- [ ] Linux (coming soon)
- [ ] macOS (coming soon)

## Donation

Toss a coin to your developer?

<a href="https://www.buymeacoffee.com/thangtran" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/default-orange.png" alt="Buy Me A Coffee" height="41" width="174"></a>

## TODO

- [x] Choose multiple directories
- [x] Support .ogg format
- [ ] Embedded lyrics option
- [ ] Choose multiple directories

## Development

Expand All @@ -32,6 +45,7 @@ LRCGET is made with [Tauri](https://tauri.app).
To start developing the application, you need to do the [prerequisites](https://tauri.app/v1/guides/getting-started/prerequisites) steps according to your operating system.

For example, you need the following components to start the development in Windows:

- Microsoft Visual Studio C++ Build Tools
- Rust 1.64.0 or higher
- NodeJS v16.18.0 or higher
Expand Down
Loading

0 comments on commit 941a5c9

Please sign in to comment.