Skip to content

Commit

Permalink
feat: 更新图标
Browse files Browse the repository at this point in the history
  • Loading branch information
QingXia-Ela committed Aug 14, 2024
1 parent 0811ed1 commit f30b170
Show file tree
Hide file tree
Showing 20 changed files with 4 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"editor.tabSize": 2,
"rust-analyzer.diagnostics.disabled": [
"unresolved-macro-call",
"unresolved-proc-macro"
"unresolved-proc-macro",
"dead_code"
],
"[mdx]": {
"editor.formatOnSave": false
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"build": "vite build",
"preview": "vite preview",
"start": "tauri dev",
"tauri": "tauri dev",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"build:types": "cd src-tauri && cargo test && cd ../bin && node move_types.cjs",
"lint": "npx prettier ./src --write",
Expand Down Expand Up @@ -90,4 +90,4 @@
"website-scraper": "^5.3.1",
"ws": "^8.13.0"
}
}
}
Binary file modified src-tauri/icons/128x128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src-tauri/icons/128x128@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src-tauri/icons/32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src-tauri/icons/Square107x107Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src-tauri/icons/Square142x142Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src-tauri/icons/Square150x150Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src-tauri/icons/Square284x284Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src-tauri/icons/Square30x30Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src-tauri/icons/Square310x310Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src-tauri/icons/Square44x44Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src-tauri/icons/Square71x71Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src-tauri/icons/Square89x89Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src-tauri/icons/StoreLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src-tauri/icons/icon.icns
Binary file not shown.
Binary file modified src-tauri/icons/icon.ico
Binary file not shown.
Binary file modified src-tauri/icons/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion src-tauri/src/global_enum/mod.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
// const SONGS_REGEX: &str = r"^/song/(\d+)$";
// const ALBUMS_REGEX: &str = r"^/album/(\d+)/data$";

#[derive(PartialEq, Eq)]
pub enum SirenApiPath {
/// Get all songs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,6 @@ impl CustomPlaylistManager {

/// Use new songs replace old songs.
#[deprecated = "This methods doesn't work correctly now and wait for fix. You can use update_songs instead."]
#[allow(dead_code)]
pub async fn update_songs(&self, playlist_id: String, new_songs: Vec<BriefSong>) {
match self.data.lock().await.get_mut(&playlist_id) {
Some(playlist) => {
Expand Down

0 comments on commit f30b170

Please sign in to comment.