Compare commits

..

3 Commits

Author SHA1 Message Date
phoenix 7839c64561 Version bump (#48)
Reviewed-on: #48
Co-authored-by: phoenix <kundeng00@pm.me>
Co-committed-by: phoenix <kundeng00@pm.me>
2025-07-23 21:54:10 +00:00
phoenix 655d05dabb Coverart ignore data for json usage (#47)
Reviewed-on: #47
Co-authored-by: phoenix <kundeng00@pm.me>
Co-committed-by: phoenix <kundeng00@pm.me>
2025-07-14 23:57:00 +00:00
phoenix 7958b89abc Update readme (#46)
Reviewed-on: #46
Co-authored-by: phoenix <kundeng00@pm.me>
Co-committed-by: phoenix <kundeng00@pm.me>
2025-06-29 18:14:18 +00:00
3 changed files with 3 additions and 4 deletions
-4
View File
@@ -3,7 +3,6 @@ name: Release Tagging
on:
push:
branches:
- main
- devel
jobs:
@@ -50,6 +49,3 @@ jobs:
release_name: Release ${{ steps.version.outputs.project_tag_release }}
body: |
Release of version ${{ steps.version.outputs.project_tag_release }}
# draft: false
# prerelease: ${{ startsWith(github.ref, 'v') == false }} # prerelease if not a valid release tag
+2
View File
@@ -0,0 +1,2 @@
A library containing commonly used models and functions that is used throughout
icarus projects. This reduces the amount of duplicated code without a benefit.
+1
View File
@@ -7,6 +7,7 @@ pub struct CoverArt {
pub id: uuid::Uuid,
pub title: String,
pub path: String,
#[serde(skip)]
pub data: Vec<u8>,
}