Conversation
…_id_hash_code` & `route_long_name_remove_route_id`
Summary of ChangesHello @mmathieum, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request expands the Highlights
Changelog
Activity
Using Gemini Code AssistThe 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
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 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
|
There was a problem hiding this comment.
Code Review
This pull request introduces several new configuration options for route and stop processing: route_id_(previous|next)_char_configs, use_stop_id_hash_code, and route_long_name_remove_route_id. The changes are implemented across DefaultAgencyTools, RouteConfig, and the GAgencyTools interface.
While the implementation of most features looks good, I've found a critical issue in the implementation of use_stop_id_hash_code. Using String.hashCode() to generate stop IDs is unsafe due to the risk of hash collisions, which can lead to data corruption. Additionally, there's a bug in the usage of Math.abs() that can result in negative IDs. Please see my detailed comment on this.
There was a problem hiding this comment.
Pull request overview
This PR adds three new configuration features to the GTFS parser for more flexible route and stop ID handling:
Changes:
- Add
route_id_next_char_configsandroute_id_previous_char_configsfor mapping route ID characters to numeric ID parts - Add
route_long_name_remove_route_idflag to clear route long name when it equals the route ID - Add
use_stop_id_hash_codeflag to generate stop IDs from hash codes instead of parsing
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| src/main/java/org/mtransit/parser/gtfs/GAgencyTools.java | Added interface methods removeRouteIdFromRouteLongName() and useStopIdHashCode() |
| src/main/java/org/mtransit/parser/config/gtfs/data/RouteConfig.kt | Added config properties, RouteIdCharToRouteIdPartConfig data class, and helper methods for character-to-ID conversions |
| src/main/java/org/mtransit/parser/DefaultAgencyTools.java | Implemented config delegation for new methods and updated getRouteLongName() and getStopId() to use new features |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- 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
- 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
…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
…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
…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
…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
…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
…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
…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
…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
…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
…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
…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
…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
…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
- 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
…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
…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
…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
…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
…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
…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
- 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
…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
…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
…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
…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
…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
- 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
…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
…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
…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
…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
…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
…er': - commons: Update social media links in MTREADME.md.MT.sh - commons: Play cleanup - commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594 - commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592 - commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593 - commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591 - commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590 - commons: fix commit message - commons: Fix local code change not commited if no submodule change - commons: download.sh > print git status (debug) - commons: Fix condition for MT download data step - commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77 - commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78 - commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76 - commons-android: News providers > re-enable for main app mtransitapps/commons-android#75 - commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69 - commons-android: Update SSL cert mtransitapps/commons-android#74 - commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71 - commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions - commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures - commons-android: Security provider > logs++ - commons-android: Security provider > logs++ - commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70 - commons-java: Clean utils > LC UP strings > use ignored words - commons-java: Strings cleaner improvements - parser: JSON config > add `use_route_long_name_for_route_short_name` - parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41 - parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40 - parser: Allow ignore invalid times mtransitapps/parser#39 - parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
…er': - commons: Update social media links in MTREADME.md.MT.sh - commons: Play cleanup - commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594 - commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592 - commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593 - commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591 - commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590 - commons: fix commit message - commons: Fix local code change not commited if no submodule change - commons: download.sh > print git status (debug) - commons: Fix condition for MT download data step - commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77 - commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78 - commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76 - commons-android: News providers > re-enable for main app mtransitapps/commons-android#75 - commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69 - commons-android: Update SSL cert mtransitapps/commons-android#74 - commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71 - commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions - commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures - commons-android: Security provider > logs++ - commons-android: Security provider > logs++ - commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70 - commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22 - commons-java: Clean utils > LC UP strings > use ignored words - commons-java: Strings cleaner improvements - parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43 - parser: JSON config > add `use_route_long_name_for_route_short_name` - parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41 - parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40 - parser: Allow ignore invalid times mtransitapps/parser#39 - parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
…parser': - commons: Update social media links in MTREADME.md.MT.sh - commons: Play cleanup - commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594 - commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592 - commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593 - commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591 - commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590 - commons: fix commit message - commons: Fix local code change not commited if no submodule change - commons: download.sh > print git status (debug) - commons: Fix condition for MT download data step - commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77 - commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78 - commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76 - commons-android: News providers > re-enable for main app mtransitapps/commons-android#75 - commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69 - commons-android: Update SSL cert mtransitapps/commons-android#74 - commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71 - commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions - commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures - commons-android: Security provider > logs++ - commons-android: Security provider > logs++ - commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70 - commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22 - commons-java: Clean utils > LC UP strings > use ignored words - commons-java: Strings cleaner improvements - parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner` - parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44 - parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43 - parser: JSON config > add `use_route_long_name_for_route_short_name` - parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41 - parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40 - parser: Allow ignore invalid times mtransitapps/parser#39 - parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
…parser': - commons: Update social media links in MTREADME.md.MT.sh - commons: Play cleanup - commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594 - commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592 - commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593 - commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591 - commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590 - commons: fix commit message - commons: Fix local code change not commited if no submodule change - commons: download.sh > print git status (debug) - commons: Fix condition for MT download data step - commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77 - commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78 - commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76 - commons-android: News providers > re-enable for main app mtransitapps/commons-android#75 - commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69 - commons-android: Update SSL cert mtransitapps/commons-android#74 - commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71 - commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions - commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures - commons-android: Security provider > logs++ - commons-android: Security provider > logs++ - commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70 - commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22 - commons-java: Clean utils > LC UP strings > use ignored words - commons-java: Strings cleaner improvements - parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner` - parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44 - parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43 - parser: JSON config > add `use_route_long_name_for_route_short_name` - parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41 - parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40 - parser: Allow ignore invalid times mtransitapps/parser#39 - parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
…parser': - commons: Update social media links in MTREADME.md.MT.sh - commons: Play cleanup - commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594 - commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592 - commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593 - commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591 - commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590 - commons: fix commit message - commons: Fix local code change not commited if no submodule change - commons: download.sh > print git status (debug) - commons: Fix condition for MT download data step - commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77 - commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78 - commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76 - commons-android: News providers > re-enable for main app mtransitapps/commons-android#75 - commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69 - commons-android: Update SSL cert mtransitapps/commons-android#74 - commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71 - commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions - commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures - commons-android: Security provider > logs++ - commons-android: Security provider > logs++ - commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70 - commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22 - commons-java: Clean utils > LC UP strings > use ignored words - commons-java: Strings cleaner improvements - parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner` - parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44 - parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43 - parser: JSON config > add `use_route_long_name_for_route_short_name` - parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41 - parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40 - parser: Allow ignore invalid times mtransitapps/parser#39 - parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
…parser': - commons: Update social media links in MTREADME.md.MT.sh - commons: Play cleanup - commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594 - commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592 - commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593 - commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591 - commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590 - commons: fix commit message - commons: Fix local code change not commited if no submodule change - commons: download.sh > print git status (debug) - commons: Fix condition for MT download data step - commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77 - commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78 - commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76 - commons-android: News providers > re-enable for main app mtransitapps/commons-android#75 - commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69 - commons-android: Update SSL cert mtransitapps/commons-android#74 - commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71 - commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions - commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures - commons-android: Security provider > logs++ - commons-android: Security provider > logs++ - commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70 - commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22 - commons-java: Clean utils > LC UP strings > use ignored words - commons-java: Strings cleaner improvements - parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner` - parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44 - parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43 - parser: JSON config > add `use_route_long_name_for_route_short_name` - parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41 - parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40 - parser: Allow ignore invalid times mtransitapps/parser#39 - parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
…parser': - commons: Update social media links in MTREADME.md.MT.sh - commons: Play cleanup - commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594 - commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592 - commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593 - commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591 - commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590 - commons: fix commit message - commons: Fix local code change not commited if no submodule change - commons: download.sh > print git status (debug) - commons: Fix condition for MT download data step - commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77 - commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78 - commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76 - commons-android: News providers > re-enable for main app mtransitapps/commons-android#75 - commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69 - commons-android: Update SSL cert mtransitapps/commons-android#74 - commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71 - commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions - commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures - commons-android: Security provider > logs++ - commons-android: Security provider > logs++ - commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70 - commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22 - commons-java: Clean utils > LC UP strings > use ignored words - commons-java: Strings cleaner improvements - parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner` - parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44 - parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43 - parser: JSON config > add `use_route_long_name_for_route_short_name` - parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41 - parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40 - parser: Allow ignore invalid times mtransitapps/parser#39 - parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
…parser': - commons: Update social media links in MTREADME.md.MT.sh - commons: Play cleanup - commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594 - commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592 - commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593 - commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591 - commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590 - commons: fix commit message - commons: Fix local code change not commited if no submodule change - commons: download.sh > print git status (debug) - commons: Fix condition for MT download data step - commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77 - commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78 - commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76 - commons-android: News providers > re-enable for main app mtransitapps/commons-android#75 - commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69 - commons-android: Update SSL cert mtransitapps/commons-android#74 - commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71 - commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions - commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures - commons-android: Security provider > logs++ - commons-android: Security provider > logs++ - commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70 - commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22 - commons-java: Clean utils > LC UP strings > use ignored words - commons-java: Strings cleaner improvements - parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner` - parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44 - parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43 - parser: JSON config > add `use_route_long_name_for_route_short_name` - parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41 - parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40 - parser: Allow ignore invalid times mtransitapps/parser#39 - parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
…parser': - commons: Update social media links in MTREADME.md.MT.sh - commons: Play cleanup - commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594 - commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592 - commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593 - commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591 - commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590 - commons: fix commit message - commons: Fix local code change not commited if no submodule change - commons: download.sh > print git status (debug) - commons: Fix condition for MT download data step - commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77 - commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78 - commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76 - commons-android: News providers > re-enable for main app mtransitapps/commons-android#75 - commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69 - commons-android: Update SSL cert mtransitapps/commons-android#74 - commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71 - commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions - commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures - commons-android: Security provider > logs++ - commons-android: Security provider > logs++ - commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70 - commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22 - commons-java: Clean utils > LC UP strings > use ignored words - commons-java: Strings cleaner improvements - parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner` - parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44 - parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43 - parser: JSON config > add `use_route_long_name_for_route_short_name` - parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41 - parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40 - parser: Allow ignore invalid times mtransitapps/parser#39 - parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
…parser': - commons: Update social media links in MTREADME.md.MT.sh - commons: Play cleanup - commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594 - commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592 - commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593 - commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591 - commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590 - commons: fix commit message - commons: Fix local code change not commited if no submodule change - commons: download.sh > print git status (debug) - commons: Fix condition for MT download data step - commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77 - commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78 - commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76 - commons-android: News providers > re-enable for main app mtransitapps/commons-android#75 - commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69 - commons-android: Update SSL cert mtransitapps/commons-android#74 - commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71 - commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions - commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures - commons-android: Security provider > logs++ - commons-android: Security provider > logs++ - commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70 - commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22 - commons-java: Clean utils > LC UP strings > use ignored words - commons-java: Strings cleaner improvements - parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner` - parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44 - parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43 - parser: JSON config > add `use_route_long_name_for_route_short_name` - parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41 - parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40 - parser: Allow ignore invalid times mtransitapps/parser#39 - parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
…parser': - commons: Update social media links in MTREADME.md.MT.sh - commons: Play cleanup - commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594 - commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592 - commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593 - commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591 - commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590 - commons: fix commit message - commons: Fix local code change not commited if no submodule change - commons: download.sh > print git status (debug) - commons: Fix condition for MT download data step - commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77 - commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78 - commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76 - commons-android: News providers > re-enable for main app mtransitapps/commons-android#75 - commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69 - commons-android: Update SSL cert mtransitapps/commons-android#74 - commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71 - commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions - commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures - commons-android: Security provider > logs++ - commons-android: Security provider > logs++ - commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70 - commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22 - commons-java: Clean utils > LC UP strings > use ignored words - commons-java: Strings cleaner improvements - parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner` - parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44 - parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43 - parser: JSON config > add `use_route_long_name_for_route_short_name` - parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41 - parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40 - parser: Allow ignore invalid times mtransitapps/parser#39 - parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
…parser': - commons: Update social media links in MTREADME.md.MT.sh - commons: Play cleanup - commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594 - commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592 - commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593 - commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591 - commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590 - commons: fix commit message - commons: Fix local code change not commited if no submodule change - commons: download.sh > print git status (debug) - commons: Fix condition for MT download data step - commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77 - commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78 - commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76 - commons-android: News providers > re-enable for main app mtransitapps/commons-android#75 - commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69 - commons-android: Update SSL cert mtransitapps/commons-android#74 - commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71 - commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions - commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures - commons-android: Security provider > logs++ - commons-android: Security provider > logs++ - commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70 - commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22 - commons-java: Clean utils > LC UP strings > use ignored words - commons-java: Strings cleaner improvements - parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner` - parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44 - parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43 - parser: JSON config > add `use_route_long_name_for_route_short_name` - parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41 - parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40 - parser: Allow ignore invalid times mtransitapps/parser#39 - parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
…parser': - commons: Update social media links in MTREADME.md.MT.sh - commons: Play cleanup - commons: Support for `agency_owner` file and improve `fr` files mtransitapps/commons#594 - commons: Build(deps): Bump the di group with 2 updates mtransitapps/commons#592 - commons: Build(deps): Bump hilt from 2.59.1 to 2.59.2 mtransitapps/commons#593 - commons: Build(deps): Bump com.google.maps.android:android-maps-utils from 4.0.0 to 4.1.0 in the maps group mtransitapps/commons#591 - commons: Build(deps): Bump actions/upload-artifact from 4 to 6 in /shared-overwrite/.github/workflows in the gh-actions group across 1 directory mtransitapps/commons#590 - commons: fix commit message - commons: Fix local code change not commited if no submodule change - commons: download.sh > print git status (debug) - commons: Fix condition for MT download data step - commons-android: Standardize logging constant naming to LOG_TAG across codebase mtransitapps/commons-android#77 - commons-android: Remove useless fasterxml proguard rules mtransitapps/commons-android#78 - commons-android: Store links > tries to open overlay (no working) mtransitapps/commons-android#76 - commons-android: News providers > re-enable for main app mtransitapps/commons-android#75 - commons-android: Vehicle location report timestamp instant / countdown duration mtransitapps/commons-android#69 - commons-android: Update SSL cert mtransitapps/commons-android#74 - commons-android: CI > update SSL cert frequently mtransitapps/commons-android#71 - commons-android: Network security > add Mozilla CAs to increase compat w/ old Android versions - commons-android: NextBus/GTFS-RT > SSL issue > better logs and store last try to avoid consecutives failures - commons-android: Security provider > logs++ - commons-android: Security provider > logs++ - commons-android: GTFS RT Vehicle location > can target agency only #TransitWindsor mtransitapps/commons-android#70 - commons-java: Strings cleaner > remove Line/Station auto mtransitapps/commons-java#22 - commons-java: Clean utils > LC UP strings > use ignored words - commons-java: Strings cleaner improvements - parser: JSON config > add `stop_headsign_remove_route_long_name_cleaner` - parser: JSON configs > add `extended_target_route_type_id` & `stop_time_excludes` mtransitapps/parser#44 - parser: JSON configs > add `stop_name_cleaners`, `(exclude|keep)_routes` & compat w/ mtransitapps/commons-java#22 mtransitapps/parser#43 - parser: JSON config > add `use_route_long_name_for_route_short_name` - parser: Route config > add `route_id_(previous|next)_char_configs`, `use_stop_id_hash_code` & `route_long_name_remove_route_id` mtransitapps/parser#41 - parser: Config > + `stop_code_prepend_if_missing`, `direction_types`, `direction_headsign_remove_route_[short_name/desc]` mtransitapps/parser#40 - parser: Allow ignore invalid times mtransitapps/parser#39 - parser: GTFS configs > + string/word UPPER CASE (&ignored words), trip excludes by head-sign & fix empty generated string resource mtransitapps/parser#38
No description provided.