mirror of
https://github.com/ivabus/lonelyradio
synced 2024-11-21 23:55:09 +03:00
Compare commits
2 commits
5794359202
...
60791dc292
Author | SHA1 | Date | |
---|---|---|---|
60791dc292 | |||
5d9179e5df |
2 changed files with 93 additions and 20 deletions
70
.github/workflows/release.yml
vendored
Normal file
70
.github/workflows/release.yml
vendored
Normal file
|
@ -0,0 +1,70 @@
|
||||||
|
name: Release
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- "[0-9]+.*"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
create-release:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: taiki-e/create-gh-release-action@v1
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
upload-assets:
|
||||||
|
needs: create-release
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
- target: aarch64-unknown-linux-musl
|
||||||
|
os: ubuntu-latest
|
||||||
|
- target: aarch64-apple-darwin
|
||||||
|
os: macos-latest
|
||||||
|
- target: x86_64-apple-darwin
|
||||||
|
os: macos-latest
|
||||||
|
- target: x86_64-unknown-linux-musl
|
||||||
|
os: ubuntu-latest
|
||||||
|
- target: x86_64-pc-windows-msvc
|
||||||
|
os: windows-latest
|
||||||
|
- target: aarch64-pc-windows-msvc
|
||||||
|
os: windows-latest
|
||||||
|
- target: riscv64gc-unknown-linux-gnu
|
||||||
|
os: ubuntu-latest
|
||||||
|
- target: armv7-unknown-linux-musleabihf
|
||||||
|
os: ubuntu-latest
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Install cross-compilation tools
|
||||||
|
uses: taiki-e/setup-cross-toolchain-action@v1
|
||||||
|
with:
|
||||||
|
target: ${{ matrix.target }}
|
||||||
|
if: startsWith(matrix.os, 'ubuntu')
|
||||||
|
- uses: taiki-e/upload-rust-binary-action@v1
|
||||||
|
with:
|
||||||
|
bin: lonelyradio
|
||||||
|
target: ${{ matrix.target }}
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
profile: distribute
|
||||||
|
- uses: taiki-e/upload-rust-binary-action@v1
|
||||||
|
with:
|
||||||
|
bin: monoclient
|
||||||
|
target: ${{ matrix.target }}
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
profile: distribute
|
||||||
|
manifest-path: monoclient/Cargo.toml
|
||||||
|
if: startsWith(matrix.os , 'ubuntu') == false
|
||||||
|
- uses: taiki-e/upload-rust-binary-action@v1
|
||||||
|
with:
|
||||||
|
bin: monoclient-s
|
||||||
|
target: ${{ matrix.target }}
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
profile: distribute
|
||||||
|
manifest-path: monoclient-s/Cargo.toml
|
||||||
|
if: startsWith(matrix.os , 'ubuntu') == false
|
|
@ -174,33 +174,36 @@ pub fn main() {
|
||||||
let addr = window.get_addr().to_string();
|
let addr = window.get_addr().to_string();
|
||||||
if addr.contains(':') {
|
if addr.contains(':') {
|
||||||
window.set_start_enabled(true);
|
window.set_start_enabled(true);
|
||||||
|
|
||||||
let playlists = match monolib::list_playlists(&window.get_addr()) {
|
|
||||||
Some(v) => [vec!["All tracks".to_string()], v].concat(),
|
|
||||||
None => vec!["All tracks".to_string()],
|
|
||||||
};
|
|
||||||
window.set_playlists(ModelRc::new(VecModel::from(
|
|
||||||
playlists.iter().map(SharedString::from).collect::<Vec<_>>(),
|
|
||||||
)));
|
|
||||||
} else {
|
} else {
|
||||||
window.set_start_enabled(false);
|
window.set_start_enabled(false);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
let window_weak = window.as_weak();
|
let window_weak = window.as_weak();
|
||||||
window.on_play(move || match monolib::get_state() {
|
window.on_play(move || {
|
||||||
State::NotStarted => start_playback(window_weak.clone()),
|
match monolib::get_state() {
|
||||||
State::Paused => {
|
State::NotStarted => start_playback(window_weak.clone()),
|
||||||
let window = window_weak.upgrade().unwrap();
|
State::Paused => {
|
||||||
window.set_paused(false);
|
let window = window_weak.upgrade().unwrap();
|
||||||
monolib::toggle();
|
window.set_paused(false);
|
||||||
}
|
monolib::toggle();
|
||||||
State::Resetting => {}
|
}
|
||||||
State::Playing => {
|
State::Resetting => {}
|
||||||
let window = window_weak.upgrade().unwrap();
|
State::Playing => {
|
||||||
window.set_paused(true);
|
let window = window_weak.upgrade().unwrap();
|
||||||
monolib::toggle()
|
window.set_paused(true);
|
||||||
|
monolib::toggle()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
let window = window_weak.upgrade().unwrap();
|
||||||
|
|
||||||
|
let playlists = match monolib::list_playlists(&window.get_addr()) {
|
||||||
|
Some(v) => [vec!["All tracks".to_string()], v].concat(),
|
||||||
|
None => vec!["All tracks".to_string()],
|
||||||
|
};
|
||||||
|
window.set_playlists(ModelRc::new(VecModel::from(
|
||||||
|
playlists.iter().map(SharedString::from).collect::<Vec<_>>(),
|
||||||
|
)));
|
||||||
});
|
});
|
||||||
|
|
||||||
let window_weak = window.as_weak();
|
let window_weak = window.as_weak();
|
||||||
|
|
Loading…
Reference in a new issue