Redesign PDF export navigation with dedicated screens#44
Merged
fkischewski99 merged 9 commits intomainfrom Mar 1, 2026
Merged
Conversation
Replaced top bar icon buttons with three prominent bottom buttons and added dedicated screens for each export type. Changes: - Removed 3 icon buttons from NewEventPage top bar (ShoppingCart, RestaurantMenu, Save/Share) - Updated bottom section with 3 navigation buttons: Einkaufsliste, Materialliste, Rezeptplan - Created new RecipePlanScreen with meal display grouped by date - Added PDF export buttons to top bar of all three list screens (Shopping, Material, Recipe Plan) - Extended action interfaces with ExportPdf actions - Updated ViewModels to inject PdfServiceModule and handle PDF export - Added RecipePlan route to navigation All list screens now follow consistent pattern: navigate to view, then export PDF from top bar action button. Fixes #42 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Resolved Firebase dependency issues and updated Android SDK versions to fix failing tests. Changes: - Upgraded gitlive firebase from 2.1.0 to 2.4.0 to resolve Firebase KTX dependency conflicts - Updated compileSdk from 35 to 36 to satisfy androidx.activity 1.11.0 requirements - Updated targetSdk from 35 to 36 - Added explicit Firebase dependencies in android block to ensure proper resolution with BOM Background: Firebase deprecated KTX modules starting with BOM v32.5.0 (April 2024). The gitlive 2.1.0 library was requesting firebase-auth-ktx and firebase-common-ktx which are no longer included in Firebase BOM 34.3.0. Upgrading to gitlive 2.4.0 resolves this issue as it no longer depends on deprecated KTX modules. Test Results: - Desktop tests: ✅ 41 tests passing - Android unit tests: ✅ All tests passing Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The Gradle cache was not being invalidated when libs.versions.toml changed, causing CI to use stale dependency versions. Added libs.versions.toml to the cache key hash to ensure dependencies are updated when version catalog changes. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Changes
UI/Navigation
Backend/Logic
EditShoppingListActionsandEditMaterialListActionswithExportPdfactionCategorizedShoppingListViewModelandMaterialListViewModelto injectPdfServiceModuleand handle PDF exportRoutes.RecipePlannavigation routeViewModelModulesTest plan
./gradlew :composeApp:desktopJar)Fixes #42
🤖 Generated with Claude Code