Skip to content

Route config > add route_id_(previous|next)_char_configs, use_stop_id_hash_code & route_long_name_remove_route_id#41

Merged
mmathieum merged 3 commits intomasterfrom
mm/config_route_plus
Feb 26, 2026
Merged

Route config > add route_id_(previous|next)_char_configs, use_stop_id_hash_code & route_long_name_remove_route_id#41
mmathieum merged 3 commits intomasterfrom
mm/config_route_plus

Conversation

@mmathieum
Copy link
Member

No description provided.

…_id_hash_code` & `route_long_name_remove_route_id`
@mmathieum mmathieum self-assigned this Feb 26, 2026
@gemini-code-assist
Copy link
Contributor

Summary of Changes

Hello @mmathieum, 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 expands the RouteConfig with several new configuration parameters, providing greater control over how GTFS data is parsed and processed. These additions enable more sophisticated handling of route IDs, stop IDs, and route long names, allowing for better adaptation to various data formats and improving data quality by reducing redundancy and standardizing identifiers.

Highlights

  • Route ID Conversion Configuration: Introduced route_id_next_char_configs and route_id_previous_char_configs in RouteConfig to allow for converting route ID parts based on specific characters, enhancing flexibility in route ID parsing.
  • Stop ID Hashing Option: Added a use_stop_id_hash_code configuration option, enabling the use of a hash code derived from the stop ID string as the numerical stop ID, which can be useful for non-numeric stop IDs.
  • Route Long Name Cleaning: Implemented route_long_name_remove_route_id configuration to automatically remove the route ID from the route long name if they are identical, preventing redundancy in displayed names.
Changelog
  • src/main/java/org/mtransit/parser/DefaultAgencyTools.java
    • Implemented convertRouteIdNextChars and convertRouteIdPreviousChars to delegate to Configs.getRouteConfig() for route ID part conversion.
    • Added removeRouteIdFromRouteLongName method to check configuration for removing route ID from long names.
    • Modified getRouteLongName to apply the removeRouteIdFromRouteLongName logic, clearing the long name if it matches the route ID and the configuration is enabled.
    • Added useStopIdHashCode method to check configuration for using stop ID hash codes.
    • Updated getStopId to conditionally use Math.abs(gStopId.hashCode()) if useStopIdHashCode() is enabled, otherwise proceeding with existing logic.
  • src/main/java/org/mtransit/parser/config/gtfs/data/RouteConfig.kt
    • Added new properties routeIdNextCharConfigs and routeIdPreviousCharConfigs (lists of RouteIdCharToRouteIdPartConfig) for character-based route ID part conversion.
    • Added routeLongNameRemoveRouteId boolean property to control removal of route ID from route long name.
    • Added useStopIdHashCode boolean property to enable using hash codes for stop IDs.
    • Defined a new data class RouteIdCharToRouteIdPartConfig to represent character-to-route-ID-part mappings.
    • Implemented convertRouteIdNextChars and convertRouteIdPreviousChars functions to look up route ID parts based on provided characters in the new configuration lists.
  • src/main/java/org/mtransit/parser/gtfs/GAgencyTools.java
    • Added removeRouteIdFromRouteLongName() method to the GAgencyTools interface.
    • Added useStopIdHashCode() method to the GAgencyTools interface.
Activity
  • No human activity has been recorded on 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.

@mmathieum mmathieum marked this pull request as ready for review February 26, 2026 20:07
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 several new configuration options for route and stop processing: route_id_(previous|next)_char_configs, use_stop_id_hash_code, and route_long_name_remove_route_id. The changes are implemented across DefaultAgencyTools, RouteConfig, and the GAgencyTools interface.

While the implementation of most features looks good, I've found a critical issue in the implementation of use_stop_id_hash_code. Using String.hashCode() to generate stop IDs is unsafe due to the risk of hash collisions, which can lead to data corruption. Additionally, there's a bug in the usage of Math.abs() that can result in negative IDs. Please see my detailed comment on this.

Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

This PR adds three new configuration features to the GTFS parser for more flexible route and stop ID handling:

Changes:

  • Add route_id_next_char_configs and route_id_previous_char_configs for mapping route ID characters to numeric ID parts
  • Add route_long_name_remove_route_id flag to clear route long name when it equals the route ID
  • Add use_stop_id_hash_code flag to generate stop IDs from hash codes instead of parsing

Reviewed changes

Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.

File Description
src/main/java/org/mtransit/parser/gtfs/GAgencyTools.java Added interface methods removeRouteIdFromRouteLongName() and useStopIdHashCode()
src/main/java/org/mtransit/parser/config/gtfs/data/RouteConfig.kt Added config properties, RouteIdCharToRouteIdPartConfig data class, and helper methods for character-to-ID conversions
src/main/java/org/mtransit/parser/DefaultAgencyTools.java Implemented config delegation for new methods and updated getRouteLongName() and getStopId() to use new features

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@mmathieum mmathieum merged commit a0d6291 into master Feb 26, 2026
4 checks passed
@mmathieum mmathieum deleted the mm/config_route_plus branch February 26, 2026 20:42
montransit added a commit to mtransitapps/mtransit-for-android that referenced this pull request Feb 26, 2026
- commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
montransit added a commit to mtransitapps/fr-perpignan-sankeo-bus-android that referenced this pull request Feb 27, 2026
- commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594
- 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
montransit added a commit to mtransitapps/ca-cranbrook-transit-system-bus-android that referenced this pull request Feb 27, 2026
…parser':

- 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: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-fraser-valley-express-bus-android that referenced this pull request Feb 27, 2026
…parser':

- 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: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-strathcona-county-transit-bus-android that referenced this pull request Feb 27, 2026
…parser':

- 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: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-montreal-amt-train-android that referenced this pull request Feb 27, 2026
…parser':

- 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: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-vancouver-translink-bus-android that referenced this pull request Feb 27, 2026
…parser':

- 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: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-nanaimo-rdn-transit-system-bus-android that referenced this pull request Feb 27, 2026
…parser':

- 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: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-comox-valley-transit-system-bus-android that referenced this pull request Feb 27, 2026
…parser':

- 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: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-milton-transit-bus-android that referenced this pull request Feb 27, 2026
…parser':

- 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: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-squamish-transit-system-bus-android that referenced this pull request Feb 27, 2026
…parser':

- 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: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-vernon-transit-system-bus-android that referenced this pull request Feb 27, 2026
…parser':

- 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: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-edmonton-ets-train-android that referenced this pull request Feb 27, 2026
…parser':

- 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: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-vancouver-translink-train-android that referenced this pull request Feb 27, 2026
…parser':

- 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: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-prince-george-transit-system-bus-android that referenced this pull request Feb 27, 2026
…parser':

- 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: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-banff-roam-transit-bus-android that referenced this pull request Feb 27, 2026
- 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-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++
- 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
montransit added a commit to mtransitapps/us-clark-county-c-tran-bus-android that referenced this pull request Feb 27, 2026
…parser':

- 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: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-fort-st-john-transit-system-bus-android that referenced this pull request Feb 27, 2026
…parser':

- 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: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-whistler-transit-system-bus-android that referenced this pull request Feb 27, 2026
…parser':

- 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: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-dawson-creek-transit-system-bus-android that referenced this pull request Feb 27, 2026
…parser':

- 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: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-victoria-regional-transit-system-bus-android that referenced this pull request Feb 27, 2026
…parser':

- 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: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-cornwall-transit-bus-android that referenced this pull request Feb 27, 2026
…parser':

- 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: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-halifax-transit-ferry-android that referenced this pull request Feb 27, 2026
- 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-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++
- 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
montransit added a commit to mtransitapps/ca-powell-river-regional-transit-system-bus-android that referenced this pull request Feb 27, 2026
…parser':

- 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: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-sunshine-coast-regional-transit-system-bus-android that referenced this pull request Feb 27, 2026
…parser':

- 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: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-fredericton-transit-bus-android that referenced this pull request Feb 27, 2026
…parser':

- 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: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-montreal-rem-light-rail-android that referenced this pull request Feb 27, 2026
…parser':

- 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-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-campbell-river-transit-system-bus-android that referenced this pull request Feb 27, 2026
…parser':

- 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: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-halifax-transit-bus-android that referenced this pull request Feb 27, 2026
- 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-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++
- 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
montransit added a commit to mtransitapps/ca-ottawa-oc-transpo-train-android that referenced this pull request Feb 27, 2026
…parser':

- 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: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/us-snohomish-county-community-transit-bus-android that referenced this pull request Feb 27, 2026
…parser':

- 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: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-moncton-codiac-transpo-bus-android that referenced this pull request Feb 27, 2026
…parser':

- 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: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-cowichan-valley-transit-system-bus-android that referenced this pull request Feb 27, 2026
…parser':

- 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: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
montransit added a commit to mtransitapps/ca-gatineau-sto-bus-android that referenced this pull request Feb 27, 2026
…parser':

- 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: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69
- commons-android: Update SSL cert mtransitapps/commons-android#74
- commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71
- commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions
- commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures
- commons-android: Security provider > logs++
- commons-android: Security provider > logs++
- commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70
- commons-java: Clean utils > LC UP strings > use ignored words
- commons-java: Strings cleaner improvements
- parser: JSON config > add `use_route_long_name_for_route_short_name`
- parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41
- parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40
- parser: Allow ignore invalid times mtransitapps/parser#39
- parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
mmathieum added a commit to mtransitapps/ca-toronto-ttc-subway-android that referenced this pull request Mar 1, 2026
…er':

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

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

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

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants