Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: commons-app/apps-android-commons
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.6.1
Choose a base ref
...
head repository: commons-app/apps-android-commons
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v6.0.0-beta
Choose a head ref
  • 17 commits
  • 151 files changed
  • 8 contributors

Commits on Jul 28, 2025

  1. Configuration menu
    Copy the full SHA
    929711d View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2025

  1. Configuration menu
    Copy the full SHA
    869371b View commit details
    Browse the repository at this point in the history
  2. Convert bookmarks package to kotlin (#6387)

    * Convert BookmarkItemsController to kotlin
    
    * Split BookmarkItemsDao apart and converted to Kotlin
    
    * Convert and cleanup content providers
    
    * Convert BookmarkItemsFragment to kotlin
    
    * Convert BookmarkPicturesFragment to kotlin
    
    * Convert BookmarkPicturesDao to kotlin and share some useful DB methods
    
    * Convert BookmarkPicturesController to kotlin
    
    * Convert BookmarkFragment to kotlin
    
    * Convert BookmarksPagerAdapter to kotlin
    
    * Convert BookmarkListRootFragment to kotlin
    psh authored Jul 31, 2025
    Configuration menu
    Copy the full SHA
    8de5730 View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2025

  1. Configuration menu
    Copy the full SHA
    516039c View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2025

  1. Convert explore package to kotlin (#6389)

    * Convert WikidataItemDetailsActivity to kotlin
    
    * Convert RecentSearchesDao to kotlin
    
    * Convert RecentSearchesFragment to kotlin
    
    * Convert ExploreListRootFragment to kotlin
    
    * Convert the ParentViewPager to kotlin
    
    * Convert ExploreMapRootFragment to kotlin
    
    * Convert SearchActivity to kotlin
    
    * Convert ExploreFragment to kotlin
    
    * Convert ExploreMapCalls and ExploreMapContract to kotlin
    
    * Convert ExploreMapController to kotlin
    
    * Convert the map presenter to kotlin
    
    * Convert the ExploreMapFragment to kotlin
    
    * Fix import issue
    psh authored Aug 4, 2025
    Configuration menu
    Copy the full SHA
    6f36cae View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6dcce45 View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2025

  1. Support both "label" and "itemLabel" for NearbyResultItem mapping (#6386

    )
    
    * Support both label and itemLabel for robust NearbyResultItem mapping.
    
    * fix code style
    
    * Add getOriginalLabel() for Wikidata edits to avoid fallback issues with itemLabel
    
    * Fix Wikidata edit failure by resetting hasInvalidLocation flag on upload confirmation
    
    ---------
    
    Co-authored-by: Sonal Yadav <sonalyadav@Sonals-MacBook-Air.local>
    sonalyadav1 and Sonal Yadav authored Aug 5, 2025
    Configuration menu
    Copy the full SHA
    ffb9af1 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2025

  1. Configuration menu
    Copy the full SHA
    d0e95bc View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2025

  1. Configuration menu
    Copy the full SHA
    5201af7 View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2025

  1. Configuration menu
    Copy the full SHA
    1d7d280 View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2025

  1. Configuration menu
    Copy the full SHA
    5bdfbf5 View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2025

  1. Configuration menu
    Copy the full SHA
    5a6b3cb View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2025

  1. 6357: Fix java.lang.SecurityException for multi-uploads (#6402)

    * Fix java.lang.SecurityException for ACTION_OPEN_DOCUMENT
    
    * Handle SecurityException in case of multi-upload
    
    * Remove unused import
    
    * Clean up code
    
    * Clean up code
    
    * Handle SecurityException for other upload methods
    
    * Release persisted URI permissions for successful uploads
    
    * Remove persistable permission for custom picker as it's not required
    
    * Remove persistable permission for in-app camera as it's not required
    RitikaPahwa4444 authored Aug 19, 2025
    Configuration menu
    Copy the full SHA
    a892aa6 View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2025

  1. Configuration menu
    Copy the full SHA
    b8a5583 View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2025

  1. Bump target sdk to API 35 and make the app UI compatible with edge to…

    … edge (#6393)
    
    * chore: upgrade target SDK and refactor function signatures to resolve build issues
    
    * chore: bump android gradle plugin version
    
    * chore(ui): add extension functions for applying edge to edge insets
    
    * fix: apply system bar top and bottom insets for edge to edge
    
    * fix: force edge to edge for backward compatibility and consistent UI
    
    * fix: apply top bar insets as padding and make the status bar color white
    
    Since the toolbars have primary color as bg, we should make the status bar white
    
    * chore: bump robolectric version for API 35 compatibility
    
    * fix: preserve existing margins when adding new insets
    
    * feat(customselector): improve RecyclerView edge-to-edge inset handling
    
    It allows the last item to sits above the navigation bar while preserving edge-to-edge appearance.
    
    * feat(notification): improve RecyclerView edge-to-edge insets handling
    
    Also, refactor LocationPicker and DescriptionEdit activities to use extension functions and reduce duplication
    
    * fix(quiz): enable and handle edge-to-edge insets and status icon colors
    
    * fix: bottom insets not dispatched on all API versions consistently
    
    Upgraded core-ktx version installCompatInsetsDispatch wasn't available on current version
    
    * fix: return fallback value when versionName is null
    
    Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
    
    * fix: resolve compilation errors
    
    * docs: add KDoc for edge-to-edge insets utility functions
    
    * fix(SearchActivity): apply insets for system bars
    
    * fix(util): add utility function to handle keyboard insets with animation
    
    * fix(upload): handle keyboard insets for upload media detail card view
    
    * fix(login): hadle IME insets and make edge-to-edge backward compatible
    
    ---------
    
    Co-authored-by: Ritika Pahwa <83745993+RitikaPahwa4444@users.noreply.github.com>
    Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
    3 people authored Aug 23, 2025
    Configuration menu
    Copy the full SHA
    718c466 View commit details
    Browse the repository at this point in the history
  2. fix: use context instead of requireContext() for backward compatibili…

    …ty (#6403)
    
    It fixes crash when opening certain screens like Contribution Details, Bookmark, etc. on lower Android versions
    
    Co-authored-by: Ritika Pahwa <83745993+RitikaPahwa4444@users.noreply.github.com>
    rohit9625 and RitikaPahwa4444 authored Aug 23, 2025
    Configuration menu
    Copy the full SHA
    4f3f7b9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f810a2d View commit details
    Browse the repository at this point in the history
Loading