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.5.0
- Added `Pick History` feature.
- Added `Favorites filter` on history screen.
- Added `Clear all` on history screen.

## 1.4.1
- Prevented film repetition on reroll.
- Hide `Reroll button` for one results.
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ RandomBoxd is a **Compose Multiplatform** project designed to fetch a random mov
- 🏷️ Stores and displays previously entered UserNames locally via **Room**, shown as tappable tags for quick reuse or deletion.
- ∩∪ **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.

## 🧙‍♂️ Watch the Magic

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.4.1"
versionCode = 20
versionName = "1.5.0"
versionCode = 21
minSdk =
libs.versions.android.minSdk
.get()
Expand Down
Loading