Skip to content

Standardize logging constant naming to LOG_TAG across codebase#77

Merged
mmathieum merged 5 commits intomasterfrom
copilot/rename-tag-constants-to-log-tag
Mar 1, 2026
Merged

Standardize logging constant naming to LOG_TAG across codebase#77
mmathieum merged 5 commits intomasterfrom
copilot/rename-tag-constants-to-log-tag

Conversation

Copy link
Contributor

Copilot AI commented Mar 1, 2026

Standardizes logging constant naming by renaming TAG to LOG_TAG in Java files to match existing Kotlin convention.

Changes

  • Java files: Renamed TAGLOG_TAG in 7 files and updated all references

    • ThreadUtils.java, BundleUtils.java, StoreUtils.java, ServiceUpdate.java
    • JCDecauxBikeStationProvider.java
    • Inner classes: ServiceUpdateProviderContract.Filter, POIProvider.POIDbHelper
  • Kotlin files: Already using correct pattern, no changes needed

Pattern

Java:

private static final String LOG_TAG = ClassName.class.getSimpleName();

@Override
public String getLogTag() {
    return LOG_TAG;
}

Kotlin:

private val LOG_TAG: String = ClassName::class.java.simpleName

override fun getLogTag() = LOG_TAG

The explicit String type in Kotlin handles unspecified nullability from Java interop.


💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.

Copilot AI and others added 3 commits March 1, 2026 18:59
Co-authored-by: mmathieum <177998+mmathieum@users.noreply.github.com>
Co-authored-by: mmathieum <177998+mmathieum@users.noreply.github.com>
Co-authored-by: mmathieum <177998+mmathieum@users.noreply.github.com>
Copilot AI changed the title [WIP] Rename all TAG constants to LOG_TAG in Java and Kotlin files Standardize logging constant naming to LOG_TAG across codebase Mar 1, 2026
@mmathieum mmathieum marked this pull request as ready for review March 1, 2026 19:05
@mmathieum mmathieum merged commit 3f173ef into master Mar 1, 2026
4 checks passed
@mmathieum mmathieum deleted the copilot/rename-tag-constants-to-log-tag branch March 1, 2026 19:22
mmathieum added a commit to mtransitapps/ca-toronto-ttc-subway-android that referenced this pull request Mar 1, 2026
…er':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594
- commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592
- commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593
- commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591
- commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590
- commons: fix commit message
- commons: Fix local code change not commited if no submodule change
- commons: download.sh > print git status (debug)
- commons: Fix condition for MT download data step
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/mtransit-for-android that referenced this pull request Mar 1, 2026
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
mmathieum added a commit to mtransitapps/ca-toronto-ttc-light-rail-android that referenced this pull request Mar 1, 2026
…er':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594
- commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592
- commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593
- commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591
- commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590
- commons: fix commit message
- commons: Fix local code change not commited if no submodule change
- commons: download.sh > print git status (debug)
- commons: Fix condition for MT download data step
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
mmathieum added a commit to mtransitapps/ca-montreal-amt-train-android that referenced this pull request Mar 2, 2026
…er':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
montransit added a commit to mtransitapps/ca-vancouver-mobi-bike-android that referenced this pull request Mar 3, 2026
- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594
- commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592
- commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593
- commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591
- commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590
- commons: fix commit message
- commons: Fix local code change not commited if no submodule change
- commons: download.sh > print git status (debug)
- commons: Fix condition for MT download data step
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
montransit added a commit to mtransitapps/ca-quebec-a-velo-bike-android that referenced this pull request Mar 3, 2026
- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594
- commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592
- commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593
- commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591
- commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590
- commons: fix commit message
- commons: Fix local code change not commited if no submodule change
- commons: download.sh > print git status (debug)
- commons: Fix condition for MT download data step
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
montransit added a commit to mtransitapps/ca-red-deer-transit-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594
- commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592
- commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593
- commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591
- commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590
- commons: fix commit message
- commons: Fix local code change not commited if no submodule change
- commons: download.sh > print git status (debug)
- commons: Fix condition for MT download data step
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-niagara-falls-wego-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594
- commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592
- commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593
- commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591
- commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590
- commons: fix commit message
- commons: Fix local code change not commited if no submodule change
- commons: download.sh > print git status (debug)
- commons: Fix condition for MT download data step
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-niagara-falls-transit-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594
- commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592
- commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593
- commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591
- commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590
- commons: fix commit message
- commons: Fix local code change not commited if no submodule change
- commons: download.sh > print git status (debug)
- commons: Fix condition for MT download data step
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-sherbrooke-sts-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594
- commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592
- commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593
- commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591
- commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590
- commons: fix commit message
- commons: Fix local code change not commited if no submodule change
- commons: download.sh > print git status (debug)
- commons: Fix condition for MT download data step
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-chambly-richelieu-carignan-citcrc-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594
- commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592
- commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593
- commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591
- commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590
- commons: fix commit message
- commons: Fix local code change not commited if no submodule change
- commons: download.sh > print git status (debug)
- commons: Fix condition for MT download data step
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-south-okanagan-similkameen-transit-system-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
montransit added a commit to mtransitapps/ca-chilliwack-transit-system-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
montransit added a commit to mtransitapps/ca-prince-george-transit-system-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
montransit added a commit to mtransitapps/ca-west-kootenay-transit-system-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
montransit added a commit to mtransitapps/ca-london-transit-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594
- commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592
- commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593
- commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591
- commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590
- commons: fix commit message
- commons: Fix local code change not commited if no submodule change
- commons: download.sh > print git status (debug)
- commons: Fix condition for MT download data step
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/us-snohomish-county-community-transit-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
montransit added a commit to mtransitapps/ca-kingston-transit-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594
- commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592
- commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593
- commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591
- commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590
- commons: fix commit message
- commons: Fix local code change not commited if no submodule change
- commons: download.sh > print git status (debug)
- commons: Fix condition for MT download data step
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-richelieu-citvr-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594
- commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592
- commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593
- commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591
- commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590
- commons: fix commit message
- commons: Fix local code change not commited if no submodule change
- commons: download.sh > print git status (debug)
- commons: Fix condition for MT download data step
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-vancouver-translink-ferry-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
montransit added a commit to mtransitapps/ca-via-rail-train-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594
- commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592
- commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593
- commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591
- commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590
- commons: fix commit message
- commons: Fix local code change not commited if no submodule change
- commons: download.sh > print git status (debug)
- commons: Fix condition for MT download data step
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-ste-julie-omitsju-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594
- commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592
- commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593
- commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591
- commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590
- commons: fix commit message
- commons: Fix local code change not commited if no submodule change
- commons: download.sh > print git status (debug)
- commons: Fix condition for MT download data step
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-grande-prairie-transit-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594
- commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592
- commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593
- commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591
- commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590
- commons: fix commit message
- commons: Fix local code change not commited if no submodule change
- commons: download.sh > print git status (debug)
- commons: Fix condition for MT download data step
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-vernon-transit-system-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
montransit added a commit to mtransitapps/ca-toronto-share-bike-android that referenced this pull request Mar 3, 2026
- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594
- commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592
- commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593
- commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591
- commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590
- commons: fix commit message
- commons: Fix local code change not commited if no submodule change
- commons: download.sh > print git status (debug)
- commons: Fix condition for MT download data step
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
montransit added a commit to mtransitapps/ca-fort-st-john-transit-system-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
montransit added a commit to mtransitapps/ca-longueuil-rtl-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594
- commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592
- commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593
- commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591
- commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590
- commons: fix commit message
- commons: Fix local code change not commited if no submodule change
- commons: download.sh > print git status (debug)
- commons: Fix condition for MT download data step
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-brandon-transit-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594
- commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592
- commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593
- commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591
- commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590
- commons: fix commit message
- commons: Fix local code change not commited if no submodule change
- commons: download.sh > print git status (debug)
- commons: Fix condition for MT download data step
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/us-juneau-capital-transit-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594
- commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592
- commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593
- commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591
- commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590
- commons: fix commit message
- commons: Fix local code change not commited if no submodule change
- commons: download.sh > print git status (debug)
- commons: Fix condition for MT download data step
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-banff-roam-transit-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
montransit added a commit to mtransitapps/ca-vancouver-translink-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
montransit added a commit to mtransitapps/ca-levis-stl-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594
- commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592
- commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593
- commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591
- commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590
- commons: fix commit message
- commons: Fix local code change not commited if no submodule change
- commons: download.sh > print git status (debug)
- commons: Fix condition for MT download data step
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-brampton-transit-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594
- commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592
- commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593
- commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591
- commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590
- commons: fix commit message
- commons: Fix local code change not commited if no submodule change
- commons: download.sh > print git status (debug)
- commons: Fix condition for MT download data step
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-grand-river-transit-light-rail-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594
- commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592
- commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593
- commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591
- commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590
- commons: fix commit message
- commons: Fix local code change not commited if no submodule change
- commons: download.sh > print git status (debug)
- commons: Fix condition for MT download data step
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-montreal-rem-light-rail-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
montransit added a commit to mtransitapps/ca-niagara-region-transit-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594
- commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592
- commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593
- commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591
- commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590
- commons: fix commit message
- commons: Fix local code change not commited if no submodule change
- commons: download.sh > print git status (debug)
- commons: Fix condition for MT download data step
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-fredericton-transit-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
montransit added a commit to mtransitapps/ca-welland-transit-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594
- commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592
- commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593
- commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591
- commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590
- commons: fix commit message
- commons: Fix local code change not commited if no submodule change
- commons: download.sh > print git status (debug)
- commons: Fix condition for MT download data step
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-lethbridge-transit-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594
- commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592
- commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593
- commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591
- commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590
- commons: fix commit message
- commons: Fix local code change not commited if no submodule change
- commons: download.sh > print git status (debug)
- commons: Fix condition for MT download data step
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-burlington-transit-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594
- commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592
- commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593
- commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591
- commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590
- commons: fix commit message
- commons: Fix local code change not commited if no submodule change
- commons: download.sh > print git status (debug)
- commons: Fix condition for MT download data step
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-gatineau-sto-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
montransit added a commit to mtransitapps/ca-montreal-stm-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594
- commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592
- commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593
- commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591
- commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590
- commons: fix commit message
- commons: Fix local code change not commited if no submodule change
- commons: download.sh > print git status (debug)
- commons: Fix condition for MT download data step
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-oakville-transit-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
montransit added a commit to mtransitapps/ca-moncton-codiac-transpo-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
montransit added a commit to mtransitapps/ca-cranbrook-transit-system-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
montransit added a commit to mtransitapps/ca-thunder-bay-transit-bus-android that referenced this pull request Mar 3, 2026
…parser':

- commons: Update social media links in MTREADME.md.MT.sh
- commons: Play cleanup
- commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594
- commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592
- commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593
- commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591
- commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590
- commons: fix commit message
- commons: Fix local code change not commited if no submodule change
- commons: download.sh > print git status (debug)
- commons: Fix condition for MT download data step
- commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77
- commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78
- commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76
- commons-android: News providers > re-enable for main app mtransitapps/commons-android#75
- commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner`
- parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44
- parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants