Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# CHANGELOG

## 1.6.0
- Added `Share pick as image` feature.
- Share any pick as a branded card with poster, title, year and the Google Play badge.
- Share from the random pick screen and from the history screen.

## 1.5.0
- Added `Pick History` feature.
- Added `Favorites filter` on history screen.
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ RandomBoxd is a **Compose Multiplatform** project designed to fetch a random mov
- ∩∪ **Intersection & Union** → Combine multiple users' watchlists and pick a random movie either from their **shared movies** (Intersection) or from the **merged pool** (Union).
- 🎭 **Genre Filters** → Narrow results to one or more genres at once. Works in both single-user and multi-user modes.
- 🕘 **Pick History** → Every pick is saved locally, so you can review past rolls, filter by favorites, and clear the list anytime.
- 📤 **Share as Image** → Turn any pick into a branded share card with the poster, title and year, ready to post on social media. Available from the pick screen and the history screen.

## 🧙‍♂️ Watch the Magic

Expand Down Expand Up @@ -133,6 +134,15 @@ Select one or more genres and the app will only consider movies that match your

Works seamlessly with both **single-user** and **multi-user** (Intersection & Union) modes.

## 📤 Share a Pick as an Image
RandomBoxd lets you turn any random pick into a **branded share card** you can post on social media.
The card includes the poster, title, year and the RandomBoxd branding with a Google Play badge.

- **From the pick screen** → tap the **Share** button next to Reroll.
- **From the history screen** → tap the **Share** icon below the favorite button on any pick.

A preview lets you review the card before sharing it through the system share sheet.

## 🚀 Getting Started
1. Clone the repository:
```sh
Expand Down
4 changes: 2 additions & 2 deletions composeApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ android {

defaultConfig {
applicationId = "com.nacchofer31.randomboxd"
versionName = "1.5.0"
versionCode = 21
versionName = "1.6.0"
versionCode = 22
minSdk =
libs.versions.android.minSdk
.get()
Expand Down
Loading