Skip to content

Support for agency_owner file and improve fr files#594

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

Support for agency_owner file and improve fr files#594
mmathieum merged 3 commits intomasterfrom
mm/gen_fr_files_improvements

Conversation

@mmathieum
Copy link
Member

No description provided.

@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 enhances the dynamic content generation for Android app listings by adding support for an 'agency_owner' file, allowing for more customized descriptions. It also improves the robustness and accuracy of French language content generation by updating language detection logic and refining specific localized phrases and formatting.

Highlights

  • Agency Owner Support: Introduced functionality to read an 'agency_owner' configuration file and incorporate its content into generated full descriptions for both English and French listings.
  • Improved French Localization Logic: Refined the language support check in French listing and resource generation scripts to also consider the existence of the target directory, preventing unnecessary processing.
  • French Text Refinements: Updated the French full description generation to use 'autobus' instead of 'bus' for public transport type 3 and adjusted the formatting of the 'LOCATION_LABEL' string.
Changelog
  • shared-modules/app-android/src/main/play/listings/en-US/MTfull-description.txt.MT.sh
    • Added logic to read the 'agency_owner' file and store its content.
    • Integrated the 'AGENCY_OWNER_LONG' variable into the 'NOT_RELATED_WITH' string construction.
    • Adjusted the order of 'SOURCE_NAME' inclusion in the 'NOT_RELATED_WITH' string.
  • shared-modules/app-android/src/main/play/listings/fr-FR/MTfull-description.txt.MT.sh
    • Updated the French language support check to include a directory existence condition.
    • Added logic to read the 'agency_owner' file and store its content.
    • Modified the 'LOCATION_LABEL' format to enclose state and country in parentheses.
    • Integrated the 'AGENCY_OWNER_LONG' variable into the 'NOT_RELATED_WITH' string construction, using 'ou' for 'or'.
    • Adjusted the order of 'SOURCE_NAME' inclusion in the 'NOT_RELATED_WITH' string.
    • Changed the label for public transport type 3 from 'bus' to 'autobus'.
  • shared-modules/app-android/src/main/play/listings/fr-FR/MTshort-description.txt.MT.sh
    • Updated the French language support check to include a directory existence condition.
  • shared-modules/app-android/src/main/play/listings/fr-FR/MTtitle.txt.MT.sh
    • Updated the French language support check to include a directory existence condition.
  • shared-modules/app-android/src/main/res/values-fr/MTbike_station_strings.xml.MT.sh
    • Updated the French language support check to include a directory existence condition and reordered script initialization.
  • shared-modules/app-android/src/main/res/values-fr/MTstrings.xml.MT.sh
    • Updated the French language support check to include a directory existence condition and reordered script initialization.
Using Gemini Code Assist

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

Invoking Gemini

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

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

Customization

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

Limitations & Feedback

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

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

Footnotes

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

Copy link
Contributor

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 support for an optional agency_owner configuration file and improves French localization scripts. The changes restructure French language support checks across multiple scripts and add the new agency owner information to the "NOT_RELATED_WITH" disclaimers in app descriptions.

Changes:

  • Added support for optional config/agency_owner file to include agency owner names in app descriptions
  • Refactored French language support checks to occur after directory variable definitions
  • Changed French location label format from "au" to parentheses format: "City (State, Country)"
  • Updated French "bus" translation to "autobus" in type labels

Reviewed changes

Copilot reviewed 6 out of 6 changed files in this pull request and generated 9 comments.

Show a summary per file
File Description
shared-modules/app-android/src/main/res/values-fr/MTstrings.xml.MT.sh Moved French language check after directory definitions; contains syntax errors
shared-modules/app-android/src/main/res/values-fr/MTbike_station_strings.xml.MT.sh Moved French language check after directory definitions; contains syntax errors
shared-modules/app-android/src/main/play/listings/fr-FR/MTtitle.txt.MT.sh Moved French language check after directory definitions; contains syntax errors
shared-modules/app-android/src/main/play/listings/fr-FR/MTshort-description.txt.MT.sh Moved French language check after directory definitions; contains syntax errors
shared-modules/app-android/src/main/play/listings/fr-FR/MTfull-description.txt.MT.sh Added agency_owner support, reordered NOT_RELATED_WITH entries, improved French formatting; contains syntax errors
shared-modules/app-android/src/main/play/listings/en-US/MTfull-description.txt.MT.sh Added agency_owner support and reordered NOT_RELATED_WITH entries to prioritize source/owner over agency names

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

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 support for an optional agency_owner file and refines the generation of French (fr-FR) listing files. The changes include adding the agency_owner information to the full description and updating the logic for skipping French file generation. There are still some areas for improvement regarding code duplication and correctness of file system checks.

@mmathieum
Copy link
Member Author

/gemini review

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 support for an optional 'agency owner' field in the generated full descriptions for both English and French app listings. This involves reading the agency owner's name from a configuration file and incorporating it into the 'not related with' phrase, adjusting the order of elements in this phrase. Additionally, several French-specific generation scripts (MTfull-description.txt.MT.sh, MTshort-description.txt.MT.sh, MTtitle.txt.MT.sh, MTbike_station_strings.xml.MT.sh, MTstrings.xml.MT.sh) have been refactored to move and enhance the language support check, now also verifying the existence of the output directory. The French full description script also updates the formatting of the 'LOCATION_LABEL' and changes the translation for 'bus' to 'autobus'.

@mmathieum mmathieum merged commit 1a14f3c into master Feb 26, 2026
4 checks passed
@mmathieum mmathieum deleted the mm/gen_fr_files_improvements 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-williams-lake-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-west-coast-express-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-kamloops-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-south-okanagan-similkameen-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-ottawa-oc-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-chilliwack-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-st-albert-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-edmonton-ets-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-quebec-rtc-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-oakville-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-west-kootenay-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-vancouver-translink-ferry-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-kelowna-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-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
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