Skip to content

JSON configs > add extended_target_route_type_id & stop_time_excludes#44

Merged
mmathieum merged 3 commits intomasterfrom
mm/json_config_improvments
Mar 2, 2026
Merged

JSON configs > add extended_target_route_type_id & stop_time_excludes#44
mmathieum merged 3 commits intomasterfrom
mm/json_config_improvments

Conversation

@mmathieum
Copy link
Member

No description provided.

@gemini-code-assist
Copy link
Contributor

Summary of Changes

Hello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request significantly enhances the GTFS parser's configuration flexibility by introducing new JSON-based options. It allows for the definition of an extended route type at the agency level and provides a robust mechanism to filter and exclude specific stop times based on configurable headsign patterns, leading to more precise data processing and improved control over GTFS data ingestion.

Highlights

  • Extended Target Route Type ID: Introduced an optional extended_target_route_type_id field in the AgencyConfig JSON, allowing agencies to specify an extended route type. This value is now accessible via DefaultAgencyTools.getAgencyExtendedRouteType().
  • Stop Time Exclusion Configuration: Added an optional stop_time_excludes field to the RouteConfig JSON. This field accepts a list of StopTimeFilter objects, enabling the exclusion of specific stop times based on their headsigns using regular expressions.
  • Flexible Stop Time Exclusion Logic: The DefaultAgencyTools.excludeStopTime() method was updated to first check for exclusions defined in the RouteConfig's stop_time_excludes before applying its default exclusion rules.
  • New StopTimeFilter Data Class: A new StopTimeFilter data class was added within RouteConfig.kt to define the structure for stop time exclusion rules, including a stop_time_headsign_regex and an ignore_case flag.
Changelog
  • src/main/java/org/mtransit/parser/DefaultAgencyTools.java
    • Updated getAgencyExtendedRouteType() to retrieve the extendedTargetRouteTypeId from Configs.getAgencyConfig().
    • Modified excludeStopTime() to first consult Configs.getRouteConfig().excludeStopTime() for exclusions before applying default logic.
  • src/main/java/org/mtransit/parser/config/gtfs/data/AgencyConfig.kt
    • Added extendedTargetRouteTypeId as an optional integer field, serialized as extended_target_route_type_id.
  • src/main/java/org/mtransit/parser/config/gtfs/data/RouteConfig.kt
    • Imported GStopTime.
    • Added stopTimeExcludes as an optional list of StopTimeFilter objects, serialized as stop_time_excludes.
    • Introduced StopTimeFilter data class with stopTimeHeadsignRegex and ignoreCase properties.
    • Implemented a lazy property _stopTimeExcludes to compile regex patterns from stopTimeExcludes.
    • Added excludeStopTime(GStopTime) method to evaluate stop time exclusions based on configured regex patterns.
Activity
  • No activity has been recorded for this pull request yet.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request introduces two new configuration options: extended_target_route_type_id for agency configuration and stop_time_excludes for route configuration. The changes correctly implement the logic to use these new settings.

My review includes a critical fix for a potential crash in AgencyConfig.kt due to an incorrect property declaration for an optional field. I've also suggested a refactoring in RouteConfig.kt to make the code more concise and idiomatic.

mmathieum and others added 2 commits March 1, 2026 17:14
…g.kt

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
@mmathieum mmathieum marked this pull request as ready for review March 2, 2026 13:14
@mmathieum mmathieum merged commit 2b7e158 into master Mar 2, 2026
4 checks passed
@mmathieum mmathieum deleted the mm/json_config_improvments branch March 2, 2026 13:15
montransit added a commit to mtransitapps/mtransit-for-android that referenced this pull request Mar 2, 2026
- commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22
- 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
mmathieum added a commit to mtransitapps/ca-toronto-ttc-light-rail-android that referenced this pull request Mar 2, 2026
- 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
mmathieum added a commit to mtransitapps/ca-toronto-ttc-subway-android that referenced this pull request Mar 2, 2026
- 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
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-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/ca-west-coast-express-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-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-mississauga-miway-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-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-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-st-catharines-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-kelowna-regional-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/us-everett-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-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-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-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-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-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
montransit added a commit to mtransitapps/ca-calgary-transit-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-sunshine-coast-regional-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/us-anchorage-people-mover-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-williams-lake-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-central-fraser-valley-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-regina-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-longview-rivercities-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.

1 participant