diff --git a/.github/workflows/publish-beta.yml b/.github/workflows/publish-beta.yml index cf7c2f08..e436ed42 100644 --- a/.github/workflows/publish-beta.yml +++ b/.github/workflows/publish-beta.yml @@ -76,6 +76,7 @@ jobs: with: artifacts: "./artifacts/*" name: ${{ env.VERSION_NUMBER }} + generateReleaseNotes: true prerelease: true tag: ${{ env.VERSION_NUMBER }} token: ${{ secrets.SIGNING_REPO_PAT }} diff --git a/android/app/build.gradle b/android/app/build.gradle index fa9426a8..8ce39067 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -92,8 +92,8 @@ android { applicationId "com.jellify" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 3 - versionName "0.10.87" + versionCode 5 + versionName "0.10.90" } signingConfigs { debug { diff --git a/components/Albums/component.tsx b/components/Albums/component.tsx index 090bdb61..b65042df 100644 --- a/components/Albums/component.tsx +++ b/components/Albums/component.tsx @@ -23,10 +23,12 @@ export default function Albums({ navigation, route }: AlbumsProps): React.JSX.El : fetchFavoriteAlbums(), }) - const { width } = useSafeAreaFrame() - return ( { navigation.navigate('Album', { album }) }} - width={width / 2.1} + size={'$14'} /> )} /> diff --git a/components/Artists/component.tsx b/components/Artists/component.tsx index 5baa81a2..b9619d1e 100644 --- a/components/Artists/component.tsx +++ b/components/Artists/component.tsx @@ -32,10 +32,12 @@ export default function Artists({ navigation, route }: ArtistsProps): React.JSX. queryFn: () => fetchFavoriteArtists(), }) - const { width } = useSafeAreaFrame() - return ( { navigation.navigate('Artist', { artist }) }} - width={width / 2.1} + size={'$14'} /> )} /> diff --git a/components/Playlists/component.tsx b/components/Playlists/component.tsx index f04425ba..604fc0ab 100644 --- a/components/Playlists/component.tsx +++ b/components/Playlists/component.tsx @@ -32,10 +32,12 @@ export default function FavoritePlaylists({ queryFn: () => fetchFavoritePlaylists(), }) - const { width } = useSafeAreaFrame() - return ( { navigation.navigate('Playlist', { playlist }) }} - width={width / 2.1} + size={'$14'} squared /> )} diff --git a/ios/Jellify.xcodeproj/project.pbxproj b/ios/Jellify.xcodeproj/project.pbxproj index d1321b39..e95c507a 100644 --- a/ios/Jellify.xcodeproj/project.pbxproj +++ b/ios/Jellify.xcodeproj/project.pbxproj @@ -718,7 +718,7 @@ CODE_SIGN_IDENTITY = "Apple Development: Jack Caulfield (66Z9J9NX2X)"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "Apple Development: Jack Caulfield (66Z9J9NX2X)"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 115; + CURRENT_PROJECT_VERSION = 117; DEVELOPMENT_TEAM = WAH9CZ8BPG; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = WAH9CZ8BPG; ENABLE_BITCODE = NO; @@ -728,7 +728,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 0.10.87; + MARKETING_VERSION = 0.10.90; NEW_SETTING = ""; OTHER_LDFLAGS = ( "$(inherited)", @@ -759,7 +759,7 @@ CODE_SIGN_IDENTITY = "Apple Development"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 115; + CURRENT_PROJECT_VERSION = 117; DEVELOPMENT_TEAM = WAH9CZ8BPG; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = WAH9CZ8BPG; INFOPLIST_FILE = Jellify/Info.plist; @@ -768,7 +768,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 0.10.87; + MARKETING_VERSION = 0.10.90; NEW_SETTING = ""; OTHER_LDFLAGS = ( "$(inherited)", diff --git a/package.json b/package.json index 3aa05620..abc03a10 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jellify", - "version": "0.10.87", + "version": "0.10.90", "private": true, "scripts": { "init": "npm i",