diff --git a/docs/around_me/android/changelogs.md b/docs/around_me/android/changelogs.md index 43eecbca3..c236eb7bf 100644 --- a/docs/around_me/android/changelogs.md +++ b/docs/around_me/android/changelogs.md @@ -4,6 +4,7 @@ title: Around Me Android - Changelogs - Navitia SDK Docs # Around Me Android Changelogs +* [v2.13.4](releases/2.13.4/index.md) (_03 Feb 2025_) * [v2.13.3](releases/2.13.3/index.md) (_09 Jan 2025_) * [v2.13.2](releases/2.13.2/index.md) (_26 Dec 2024_) * [v2.13.1](releases/2.13.1/index.md) (_24 Dec 2024_) diff --git a/docs/around_me/android/index.md b/docs/around_me/android/index.md index 9211e8c0c..ad6f88efe 100644 --- a/docs/around_me/android/index.md +++ b/docs/around_me/android/index.md @@ -10,7 +10,7 @@ Add the following dependencies in the `build.gradle` file of your application: ```kotlin dependencies { - implementation("com.kisio.navitia.sdk.ui:aroundme:2.13.3") + implementation("com.kisio.navitia.sdk.ui:aroundme:2.13.4") } ``` diff --git a/docs/around_me/android/releases/2.13.4/index.md b/docs/around_me/android/releases/2.13.4/index.md new file mode 100644 index 000000000..8537857a9 --- /dev/null +++ b/docs/around_me/android/releases/2.13.4/index.md @@ -0,0 +1,15 @@ +--- +title: AroundMe Android 2.13.4 - Changelog - Navitia SDK Docs +--- + +# Around Me Android 2.13.4 Changelog + +

🗓 03 Feb 2025

+ +#### Fixes +- Do not show walking sections under 3 minutes in favorites journeys. +- Details bottomsheet not showing when selecting a POI. +- Do not show schedule options if not enable in configuration. + +#### Dependencies +- `com.kisio.navitia.sdk.engine:router` > `2.6.3` diff --git a/docs/around_me/ios/changelogs.md b/docs/around_me/ios/changelogs.md index f0ecbdb25..33a2bd9a4 100644 --- a/docs/around_me/ios/changelogs.md +++ b/docs/around_me/ios/changelogs.md @@ -4,6 +4,7 @@ title: Around Me iOS - Changelogs - Navitia SDK Docs # Around Me iOS Changelogs +* [v3.10.1](releases/3.10.1/index.md) (_04 Feb 2025_) * [v3.10.0](releases/3.10.0/index.md) (_02 Dec 2024_) * [v3.9.2](releases/3.9.2/index.md) (_19 Nov 2024_) * [v3.9.1](releases/3.9.1/index.md) (_07 Nov 2024_) diff --git a/docs/around_me/ios/index.md b/docs/around_me/ios/index.md index d1410d513..b1a95e8a9 100644 --- a/docs/around_me/ios/index.md +++ b/docs/around_me/ios/index.md @@ -13,7 +13,7 @@ source 'https://github.com/CocoaPods/Specs.git' # Default Cocoapods URL source 'https://github.com/hove-io/Podspecs.git' # Around Me podspec URL target 'YOUR_PROJECT_SCHEME' do - pod 'AroundMeSDK', '3.10.0' # Around Me Pod definition + pod 'AroundMeSDK', '3.10.1' # Around Me Pod definition end # Required for XCFramework diff --git a/docs/around_me/ios/releases/3.10.1/index.md b/docs/around_me/ios/releases/3.10.1/index.md new file mode 100644 index 000000000..72620d846 --- /dev/null +++ b/docs/around_me/ios/releases/3.10.1/index.md @@ -0,0 +1,17 @@ +--- +title: AroundMe iOS 3.10.1 - Changelog - Navitia SDK Docs +--- + +# AroundMe iOS 3.10.1 Changelog + +

🗓 04 Feb 2025

+ +#### Fixes +- Fix home and work shortcuts not sending navitia id to journey + +#### Compiler +- Swift `6.0.3` + +#### Dependencies +- `DesignEngine` -> `2.18.1` +- `RouterEngine` -> `1.5.4` \ No newline at end of file diff --git a/docs/bookmark/android/changelogs.md b/docs/bookmark/android/changelogs.md index dae8cb952..87a057d1a 100644 --- a/docs/bookmark/android/changelogs.md +++ b/docs/bookmark/android/changelogs.md @@ -4,6 +4,7 @@ title: Bookmark Android - Changelogs - Navitia SDK Docs # Bookmark Android Changelogs +* [v1.9.4](releases/1.9.4/index.md) (_03 Feb 2025_) * [v1.9.3](releases/1.9.3/index.md) (_08 Jan 2025_) * [v1.9.2](releases/1.9.2/index.md) (_24 Dec 2024_) * [v1.9.1](releases/1.9.1/index.md) (_02 Dec 2024_) diff --git a/docs/bookmark/android/index.md b/docs/bookmark/android/index.md index d13b521b7..05c52c460 100644 --- a/docs/bookmark/android/index.md +++ b/docs/bookmark/android/index.md @@ -10,7 +10,7 @@ Add the following dependencies in the `build.gradle` file of your application: ```kotlin dependencies { - implementation("com.kisio.navitia.sdk.ui:bookmark:1.9.3") + implementation("com.kisio.navitia.sdk.ui:bookmark:1.9.4") } ``` @@ -253,35 +253,32 @@ fun updateAddress(address: SharedData.AddressBookmark) :material-arrow-right: Update an existing favorite journey ```kotlin -fun updateJourney(travelId: String, additionalInformation: String) +fun updateJourney(journey: SharedData.JourneyBookmark) ``` | Param | Type | Description | | --- | --- | --- | -| `travelId` | `String` | Travel id of the favorite journey to update | -| `additionalInformation` | `String` | Extra data to update | +| `journey` | `SharedData.JourneyBookmark` | Favorite journey to update | :material-arrow-right: Update an existing favorite POI ```kotlin -fun updatePoi(id: String, additionalInformation: String) +fun updatePoi(poi: SharedData.PoiBookmark) ``` | Param | Type | Description | | --- | --- | --- | -| `id` | `String` | Id of the favorite POI to update | -| `additionalInformation` | `String` | Extra data to update | +| `poi` | `SharedData.PoiBookmark` | Favorite poi to update | :material-arrow-right: Update an existing favorite station ```kotlin -fun updateStation(id: String, additionalInformation: String) +fun updateStation(station: SharedData.StationBookmark) ``` | Param | Type | Description | | --- | --- | --- | -| `is` | `String` | Id of the favorite station to update | -| `additionalInformation` | `String` | Extra data to update | +| `station` | `SharedData.StationBookmark` | Favorite station to update |

Delete

@@ -332,6 +329,7 @@ fun deleteStation(stopAreaId: String, lineId: String) | Name | Required | Description | Type | | --- |:---:| --- | :---: | +| `databaseId` | :material-check: | Unique database id | `Long?` | | `id` | :material-check: | Unique address id | `String` | | `name` | :material-check: | Address name | `String` | | `houseNumber` | :material-check: | House number | `Int` | @@ -345,6 +343,7 @@ fun deleteStation(stopAreaId: String, lineId: String) | Name | Required | Description | Type | | --- |:---:| --- | :---: | +| `databaseId` | :material-check: | Unique database id | `Long?` | | `travelId` | :material-check: | Unique journey id | `String` | | `from` | :material-check: | Departure name | `String` | | `fromId` | :material-check: | Departure Navitia id | `String` | @@ -386,6 +385,7 @@ fun deleteStation(stopAreaId: String, lineId: String) | Name | Required | Description | Type | | --- |:---:| --- | :---: | +| `databaseId` | :material-check: | Unique database id | `Long?` | | `id` | :material-check: | Unique POI id | `String` | | `coords` | :material-check: | POI coordinates | `LatLng` | | `name` | :material-check: | POI name | `String` | @@ -399,6 +399,7 @@ fun deleteStation(stopAreaId: String, lineId: String) | Name | Required | Description | Type | | --- |:---:| --- | :---: | +| `databaseId` | :material-check: | Unique database id | `Long?` | | `stopAreaId` | :material-check: | Navitia stop area id | `String` | | `coords` | :material-check: | Station coordinates | `LatLng` | | `name` | :material-check: | Station name | `String` | diff --git a/docs/bookmark/android/releases/1.9.4/index.md b/docs/bookmark/android/releases/1.9.4/index.md new file mode 100644 index 000000000..2b92facc1 --- /dev/null +++ b/docs/bookmark/android/releases/1.9.4/index.md @@ -0,0 +1,14 @@ +--- +title: Bookmark Android 1.9.4 - Changelog - Navitia SDK Docs +--- + +# Bookmark Android 1.9.4 Changelog + +

🗓 03 Feb 2025

+ +#### Fixes +- Fix database id issue when updating favorites + +#### Dependencies +- `com.android.tools.build:gradle` > `8.7.3` +- `com.kisio.navitia.sdk.engine:router` > `2.6.3` diff --git a/docs/bookmark/ios/changelogs.md b/docs/bookmark/ios/changelogs.md index 1061e5f11..85b5aced4 100644 --- a/docs/bookmark/ios/changelogs.md +++ b/docs/bookmark/ios/changelogs.md @@ -4,6 +4,7 @@ title: Bookmark iOS - Changelogs - Navitia SDK Docs # Bookmark iOS Changelogs +* [v1.9.2](releases/1.9.2/index.md) (_04 Feb 2025_) * [v1.9.1](releases/1.9.1/index.md) (_09 Dec 2024_) * [v1.9.0](releases/1.9.0/index.md) (_02 Dec 2024_) * [v1.8.0](releases/1.8.0/index.md) (_30 Oct 2024_) diff --git a/docs/bookmark/ios/index.md b/docs/bookmark/ios/index.md index 3b7f6bb78..e5f19e549 100644 --- a/docs/bookmark/ios/index.md +++ b/docs/bookmark/ios/index.md @@ -13,7 +13,7 @@ source 'https://github.com/CocoaPods/Specs.git' # Default Cocoapods URL source 'https://github.com/hove-io/Podspecs.git' # Bookmark podspec URL target 'YOUR_PROJECT_SCHEME' do - pod 'BookmarkSDK', '1.9.1' # Bookmark Pod definition + pod 'BookmarkSDK', '1.9.2' # Bookmark Pod definition end # Required for XCFramework @@ -360,7 +360,8 @@ func deleteFavoriteStation(id: String) -> Bool | Name | Required | Description | Type | | --- |:---:| --- | :---: | -| `id` | :material-check: | Unique address id | `String` | +| `uuid` | :material-check: | Unique database address id | `String` | +| `navitiaId` | :material-check: | Unique navitia id | `String` | | `name` | :material-check: | Address name | `String` | | `houseNumber` | :material-check: | House number | `Int` | | `address` | :material-check: | Address label | `String` | @@ -373,7 +374,8 @@ func deleteFavoriteStation(id: String) -> Bool | Name | Required | Description | Type | | --- |:---:| --- | :---: | -| `id` | :material-check: | Unique journey id | `String` | +| `uuid` | :material-check: | Unique database journey id | `String` | +| `journeyId` | :material-check: | Unique journey id | `String` | | `fromName` | :material-check: | Departure name | `String` | | `fromId` | :material-check: | Departure Navitia id | `String` | | `toName` | :material-check: | Arrival name | `String` | @@ -400,7 +402,8 @@ func deleteFavoriteStation(id: String) -> Bool | Name | Required | Description | Type | | --- |:---:| --- | :---: | -| `id` | :material-check: | Unique POI id | `String` | +| `uuid` | :material-check: | Unique database POI id | `String` | +| `navitiaId` | :material-check: | Unique POI id | `String` | | `coords` | :material-check: | POI coordinates | `CLLocationCoordinate2D` | | `name` | :material-check: | POI name | `String` | | `address` | :material-check: | POI address | `String` | @@ -413,6 +416,7 @@ func deleteFavoriteStation(id: String) -> Bool | Name | Required | Description | Type | | --- |:---:| --- | :---: | +| `uuid` | :material-check: | Unique database station id | `String` | | `stopAreaId` | :material-check: | Navitia stop area id | `String` | | `coords` | :material-check: | Station coordinates | `CLLocationCoordinate2D` | | `name` | :material-check: | Station name | `String` | diff --git a/docs/bookmark/ios/releases/1.9.2/index.md b/docs/bookmark/ios/releases/1.9.2/index.md new file mode 100644 index 000000000..7d8678bca --- /dev/null +++ b/docs/bookmark/ios/releases/1.9.2/index.md @@ -0,0 +1,19 @@ +--- +title: Bookmark iOS 1.9.2 - Changelog - Navitia SDK Docs +--- + +# Bookmark iOS 1.9.2 Changelog + +

🗓 04 Feb 2025

+ +#### Tasks +- Add uuid to all bookmark models +- Rename id to navitia id for concerned models +- Handle update using uuid + +#### Compiler +- Swift `6.0.3` + +#### Dependencies +- `DesignEngine` -> `2.18.1` +- `RouterEngine` -> `1.5.4` diff --git a/docs/journey/android/changelogs.md b/docs/journey/android/changelogs.md index 08a9a3d01..066db977b 100644 --- a/docs/journey/android/changelogs.md +++ b/docs/journey/android/changelogs.md @@ -4,6 +4,7 @@ title: Journey Android - Changelogs - Navitia SDK Docs # Journey Android Changelogs +* [v5.17.3](releases/5.17.3/index.md) (_03 Feb 2025_) * [v5.17.2](releases/5.17.2/index.md) (_08 Jan 2024_) * [v5.17.1](releases/5.17.1/index.md) (_24 Dec 2024_) * [v5.17.0](releases/5.17.0/index.md) (_02 Dec 2024_) diff --git a/docs/journey/android/index.md b/docs/journey/android/index.md index aca262287..1f1c9f5c3 100644 --- a/docs/journey/android/index.md +++ b/docs/journey/android/index.md @@ -10,7 +10,7 @@ Add the following dependencies in the `build.gradle` file of your application: ```kotlin dependencies { - implementation("com.kisio.navitia.sdk.ui:journey:5.17.2") + implementation("com.kisio.navitia.sdk.ui:journey:5.17.3") } ``` diff --git a/docs/journey/android/releases/5.17.3/index.md b/docs/journey/android/releases/5.17.3/index.md new file mode 100644 index 000000000..cbb4a8862 --- /dev/null +++ b/docs/journey/android/releases/5.17.3/index.md @@ -0,0 +1,13 @@ +--- +title: Journey Android 5.17.3 - Changelog - Navitia SDK Docs +--- + +# Journey Android 5.17.3 Changelog + +

🗓 03 Feb 2025

+ +#### Fixes +- Fix address data in favorite poi + +#### Dependencies +- `com.kisio.navitia.sdk.engine:router` > `2.6.3` diff --git a/docs/journey/ios/changelogs.md b/docs/journey/ios/changelogs.md index dc142c368..d066bdfc7 100644 --- a/docs/journey/ios/changelogs.md +++ b/docs/journey/ios/changelogs.md @@ -4,6 +4,7 @@ title: Journey iOS - Changelogs - Navitia SDK Docs # Journey iOS Changelogs +* [v5.17.3](releases/5.17.3/index.md) (_04 Feb 2025_) * [v5.17.2](releases/5.17.2/index.md) (_23 Jan 2025_) * [v5.17.1](releases/5.17.1/index.md) (_08 Jan 2025_) * [v5.17.0](releases/5.17.0/index.md) (_02 Dec 2024_) diff --git a/docs/journey/ios/index.md b/docs/journey/ios/index.md index 55425814a..fbd1a0171 100644 --- a/docs/journey/ios/index.md +++ b/docs/journey/ios/index.md @@ -13,7 +13,7 @@ source 'https://github.com/CocoaPods/Specs.git' # Default Cocoapods URL source 'https://github.com/hove-io/Podspecs.git' # Journey podspec URL target 'YOUR_PROJECT_SCHEME' do - pod 'JourneySDK', '5.17.2' # Journey Pod definition + pod 'JourneySDK', '5.17.3' # Journey Pod definition end # Required for XCFramework diff --git a/docs/journey/ios/releases/5.17.3/index.md b/docs/journey/ios/releases/5.17.3/index.md new file mode 100644 index 000000000..88740e5e8 --- /dev/null +++ b/docs/journey/ios/releases/5.17.3/index.md @@ -0,0 +1,17 @@ +--- +title: Journey iOS 5.17.3 - Changelog - Navitia SDK Docs +--- + +# Journey iOS 5.17.3 Changelog + +

🗓 04 Feb 2025

+ +#### Fixes +- Fix car no park icon not showing for favorite journeys + +#### Compiler +- Swift `6.0.3` + +#### Dependencies +- `DesignEngine` -> `2.18.1` +- `RouterEngine` -> `1.5.4` diff --git a/docs/schedule/android/changelogs.md b/docs/schedule/android/changelogs.md index 6649bcde9..7179c442d 100644 --- a/docs/schedule/android/changelogs.md +++ b/docs/schedule/android/changelogs.md @@ -4,6 +4,7 @@ title: Schedule Android - Changelogs - Navitia SDK Docs # Schedule Android Changelogs +* [v2.9.3](releases/2.9.3/index.md) (_03 Feb 2025_) * [v2.9.2](releases/2.9.2/index.md) (_24 Dec 2024_) * [v2.9.1](releases/2.9.1/index.md) (_02 Dec 2024_) * [v2.9.0](releases/2.9.0/index.md) (_31 Oct 2024_) diff --git a/docs/schedule/android/index.md b/docs/schedule/android/index.md index cd414b783..02214ccb5 100644 --- a/docs/schedule/android/index.md +++ b/docs/schedule/android/index.md @@ -10,7 +10,7 @@ Add the following dependencies in the `build.gradle` file of your application: ```kotlin dependencies { - implementation("com.kisio.navitia.sdk.ui:schedule:2.9.2") + implementation("com.kisio.navitia.sdk.ui:schedule:2.9.3") } ``` diff --git a/docs/schedule/android/releases/2.9.3/index.md b/docs/schedule/android/releases/2.9.3/index.md new file mode 100644 index 000000000..33a1abaa6 --- /dev/null +++ b/docs/schedule/android/releases/2.9.3/index.md @@ -0,0 +1,11 @@ +--- +title: Schedule Android 2.9.3 - Changelog - Navitia SDK Docs +--- + +# Schedule Android 2.9.3 Changelog + +

🗓 03 Feb 2025

+ +#### Dependencies +- `com.android.tools.build:gradle` > `8.7.3` +- `com.kisio.navitia.sdk.engine:router` > `2.6.3` diff --git a/docs/schedule/ios/changelogs.md b/docs/schedule/ios/changelogs.md index f42c7f43e..d5d9e9b30 100644 --- a/docs/schedule/ios/changelogs.md +++ b/docs/schedule/ios/changelogs.md @@ -4,6 +4,7 @@ title: Schedule iOS - Changelogs - Navitia SDK Docs # Schedule iOS Changelogs +* [v3.10.1](releases/3.10.1/index.md) (_04 Feb 2025_) * [v3.10.0](releases/3.10.0/index.md) (_02 Dec 2024_) * [v3.9.1](releases/3.9.1/index.md) (_07 Nov 2024_) * [v3.9.0](releases/3.9.0/index.md) (_30 Oct 2024_) diff --git a/docs/schedule/ios/index.md b/docs/schedule/ios/index.md index c96edd052..d9c10282c 100644 --- a/docs/schedule/ios/index.md +++ b/docs/schedule/ios/index.md @@ -13,7 +13,7 @@ source 'https://github.com/CocoaPods/Specs.git' # Default Cocoapods URL source 'https://github.com/hove-io/Podspecs.git' # Schedule podspec URL target 'YOUR_PROJECT_SCHEME' do - pod 'ScheduleSDK', '3.10.0' # Schedule Pod definition + pod 'ScheduleSDK', '3.10.1' # Schedule Pod definition end # Required for XCFramework diff --git a/docs/schedule/ios/releases/3.10.1/index.md b/docs/schedule/ios/releases/3.10.1/index.md new file mode 100644 index 000000000..f08b34697 --- /dev/null +++ b/docs/schedule/ios/releases/3.10.1/index.md @@ -0,0 +1,18 @@ +--- +title: Schedule iOS 3.10.1 - Changelog - Navitia SDK Docs +--- + +# Schedule iOS 3.10.1 Changelog + +

🗓 04 Feb 2025

+ +#### Fixes +- Remove Navitia call when choosing to show next departures screen from favorites list +- Fix wrong line text color displayed + +#### Compiler +- Swift `6.0.3` + +#### Dependencies +- `DesignEngine` -> `2.18.1` +- `RouterEngine` -> `1.5.4` diff --git a/docs/traffic/android/changelogs.md b/docs/traffic/android/changelogs.md index c3de921ae..3544fa23d 100644 --- a/docs/traffic/android/changelogs.md +++ b/docs/traffic/android/changelogs.md @@ -4,6 +4,7 @@ title: Traffic Android - Changelogs - Navitia SDK Docs # Traffic Android Changelogs +* [v2.7.2](releases/2.7.2/index.md) (_03 Feb 2025_) * [v2.7.1](releases/2.7.1/index.md) (_24 Dec 2024_) * [v2.7.0](releases/2.7.0/index.md) (_02 Dec 2024_) * [v2.6.1](releases/2.6.1/index.md) (_31 Oct 2024_) diff --git a/docs/traffic/android/index.md b/docs/traffic/android/index.md index 6a2a898f7..3cf29b03c 100644 --- a/docs/traffic/android/index.md +++ b/docs/traffic/android/index.md @@ -10,7 +10,7 @@ Add the following dependencies in the `build.gradle` file of your application: ```kotlin dependencies { - implementation("com.kisio.navitia.sdk.ui:traffic:2.7.1") + implementation("com.kisio.navitia.sdk.ui:traffic:2.7.2") } ``` diff --git a/docs/traffic/android/releases/2.7.2/index.md b/docs/traffic/android/releases/2.7.2/index.md new file mode 100644 index 000000000..dfee8a3c7 --- /dev/null +++ b/docs/traffic/android/releases/2.7.2/index.md @@ -0,0 +1,10 @@ +--- +title: Traffic Android 2.7.2 - Changelog - Navitia SDK Docs +--- + +# Traffic Android 2.7.2 Changelog + +

🗓 03 Feb 2025

+ +#### Dependencies +- `com.kisio.navitia.sdk.engine:router` > `2.6.3` diff --git a/docs/traffic/ios/changelogs.md b/docs/traffic/ios/changelogs.md index 2d5487b20..5cae25333 100644 --- a/docs/traffic/ios/changelogs.md +++ b/docs/traffic/ios/changelogs.md @@ -4,6 +4,7 @@ title: Traffic iOS - Changelogs - Navitia SDK Docs # Traffic iOS Changelogs +* [v3.7.1](releases/3.7.1/index.md) (_04 Feb 2025_) * [v3.7.0](releases/3.7.0/index.md) (_02 Dec 2024_) * [v3.6.1](releases/3.6.1/index.md) (_30 Oct 2024_) * [v3.6.0](releases/3.6.0/index.md) (_17 Oct 2024_) diff --git a/docs/traffic/ios/index.md b/docs/traffic/ios/index.md index 67c8cae50..f0d9d9f49 100644 --- a/docs/traffic/ios/index.md +++ b/docs/traffic/ios/index.md @@ -13,7 +13,7 @@ source 'https://github.com/CocoaPods/Specs.git' # Default Cocoapods URL source 'https://github.com/hove-io/Podspecs.git' # Traffic podspec URL target 'YOUR_PROJECT_SCHEME' do - pod 'TrafficSDK', '3.7.0' # Traffic Pod definition + pod 'TrafficSDK', '3.7.1' # Traffic Pod definition end # Required for XCFramework diff --git a/docs/traffic/ios/releases/3.7.1/index.md b/docs/traffic/ios/releases/3.7.1/index.md new file mode 100644 index 000000000..008f269f9 --- /dev/null +++ b/docs/traffic/ios/releases/3.7.1/index.md @@ -0,0 +1,17 @@ +--- +title: Traffic iOS 3.7.1 - Changelog - Navitia SDK Docs +--- + +# Traffic iOS 3.7.1 Changelog + +

🗓 04 Feb 2025

+ +#### Tasks +- Update dependencies + +#### Compiler +- Swift `6.0.3` + +#### Dependencies +- `DesignEngine` -> `2.18.1` +- `RouterEngine` -> `1.5.4`