mirror of
https://github.com/ivabus/lonelyradio
synced 2024-11-22 16:15:10 +03:00
Compare commits
No commits in common. "60791dc2921a121c8f493504c3dec77da2d82724" and "57943592028fec394abe5dbf589bf141a5367ef4" have entirely different histories.
60791dc292
...
5794359202
2 changed files with 20 additions and 93 deletions
70
.github/workflows/release.yml
vendored
70
.github/workflows/release.yml
vendored
|
@ -1,70 +0,0 @@
|
||||||
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,14 +174,21 @@ 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 || {
|
window.on_play(move || match monolib::get_state() {
|
||||||
match monolib::get_state() {
|
|
||||||
State::NotStarted => start_playback(window_weak.clone()),
|
State::NotStarted => start_playback(window_weak.clone()),
|
||||||
State::Paused => {
|
State::Paused => {
|
||||||
let window = window_weak.upgrade().unwrap();
|
let window = window_weak.upgrade().unwrap();
|
||||||
|
@ -194,16 +201,6 @@ pub fn main() {
|
||||||
window.set_paused(true);
|
window.set_paused(true);
|
||||||
monolib::toggle()
|
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