-
-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pre-release-v6.0.1.5.1 Done #313
Merged
Merged
Conversation
This file contains 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
Updated the version of navigation-compose dependency to 2.8 .0-beta04 in the version catalog.
Increased versionCode to 81 and versionName to 6.0.1 .4.5.
- Migrating Kotlin to V2 - Compose Compiler migrated to V2
This commit introduces JetLime library to enhance the attendance calendar view. It replaces the previous custom implementation with JetLime' s `JetLimeColumn` and `JetLimeExtendedEvent` components, providing a more polished and interactive user experience. The commit also includes minor refactoring and adjustments to the layout and styling of the attendance calendar.
Increased versionCode to 82 and versionName to 6.0.1 .4.6.
chore: Suppress warnings from Android Gradle plugin This commit adds rules to the Proguard configuration files to suppress warnings generated by the Android Gradle plugin . These warnings are related to various libraries and components used in the project.
chore: Upgrade dependencies and migrate to Kotlin 2.0 This commit upgrades several dependencies, including: - AGP to 8.6. 0-rc01 - Coil to 2.7.0 - Coil Compose to 2.7.0 - Hilt to 2.52 - JetLime to 2.2.1 - Lottie Compose to 6.5.0 - Material 3 to 1.3.0-beta05 - Navigation Compose to 2.8.0-beta07 - Paging Compose to 3.3.2 - Paging Runtime Ktx to 3.3.2 It also migrates the project to Kotlin 2.0 and updates the compile and target SDK versions to 35. Additionally, the commit disables minification in release builds for chat, core, and syllabus modules to address potential issues.
This commit fixes an issue where toggling the checkbox in the attendance syllabus item did not update the attendance status. The `onClick` lambda is now invoked with the attendance model and the new checked state when the checkbox is toggled, ensuring that the attendance status is updated accordingly.
This commit adds a button to the attendance screen that allows users to navigate to the library screen. The button is only visible when the select window is not active. This provides a convenient way for users to access the library from the attendance screen.
This commit disables the drawer gesture for nested screens to prevent conflicts with their internal navigation. The drawer gesture is now only enabled for the following screens: - Home Screen - Course Screen - Attendance Screen
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.
Fix: Disable drawer gesture for nested screens
This commit disables the drawer gesture for nested screens to prevent conflicts with their internal navigation.
The drawer gesture is now
only enabled for the following screens:
Feat: Add library button to attendance screen
This commit adds a button to the attendance screen that allows users to navigate to the library screen.
The button
is only visible when the select window is not active.
This provides a convenient way for users to access the library from the attendance screen.
Fix: Toggle attendance status on checkbox click
This commit fixes an issue where toggling the checkbox in the attendance syllabus item did not update the attendance status.
The
onClick
lambda is now invoked with the attendance model and the new checked state when the checkbox is toggled, ensuring that the attendance status is updated accordingly.