Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/around_me/android/changelogs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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_)
Expand Down
2 changes: 1 addition & 1 deletion docs/around_me/android/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
```

Expand Down
15 changes: 15 additions & 0 deletions docs/around_me/android/releases/2.13.4/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
title: AroundMe Android 2.13.4 - Changelog - Navitia SDK Docs
---

# Around Me Android 2.13.4 Changelog

<h2>🗓 03 Feb 2025</h2>

#### 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`
1 change: 1 addition & 0 deletions docs/around_me/ios/changelogs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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_)
Expand Down
2 changes: 1 addition & 1 deletion docs/around_me/ios/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
17 changes: 17 additions & 0 deletions docs/around_me/ios/releases/3.10.1/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
title: AroundMe iOS 3.10.1 - Changelog - Navitia SDK Docs
---

# AroundMe iOS 3.10.1 Changelog

<h2>🗓 04 Feb 2025</h2>

#### 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`
1 change: 1 addition & 0 deletions docs/bookmark/android/changelogs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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_)
Expand Down
21 changes: 11 additions & 10 deletions docs/bookmark/android/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
```

Expand Down Expand Up @@ -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 |

<h4>Delete</h4>

Expand Down Expand Up @@ -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` |
Expand All @@ -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` |
Expand Down Expand Up @@ -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` |
Expand All @@ -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` |
Expand Down
14 changes: 14 additions & 0 deletions docs/bookmark/android/releases/1.9.4/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
title: Bookmark Android 1.9.4 - Changelog - Navitia SDK Docs
---

# Bookmark Android 1.9.4 Changelog

<h2>🗓 03 Feb 2025</h2>

#### 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`
1 change: 1 addition & 0 deletions docs/bookmark/ios/changelogs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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_)
Expand Down
12 changes: 8 additions & 4 deletions docs/bookmark/ios/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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` |
Expand All @@ -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` |
Expand All @@ -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` |
Expand All @@ -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` |
Expand Down
19 changes: 19 additions & 0 deletions docs/bookmark/ios/releases/1.9.2/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
title: Bookmark iOS 1.9.2 - Changelog - Navitia SDK Docs
---

# Bookmark iOS 1.9.2 Changelog

<h2>🗓 04 Feb 2025</h2>

#### 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`
1 change: 1 addition & 0 deletions docs/journey/android/changelogs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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_)
Expand Down
2 changes: 1 addition & 1 deletion docs/journey/android/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
```

Expand Down
13 changes: 13 additions & 0 deletions docs/journey/android/releases/5.17.3/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
title: Journey Android 5.17.3 - Changelog - Navitia SDK Docs
---

# Journey Android 5.17.3 Changelog

<h2>🗓 03 Feb 2025</h2>

#### Fixes
- Fix address data in favorite poi

#### Dependencies
- `com.kisio.navitia.sdk.engine:router` > `2.6.3`
1 change: 1 addition & 0 deletions docs/journey/ios/changelogs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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_)
Expand Down
2 changes: 1 addition & 1 deletion docs/journey/ios/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
17 changes: 17 additions & 0 deletions docs/journey/ios/releases/5.17.3/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
title: Journey iOS 5.17.3 - Changelog - Navitia SDK Docs
---

# Journey iOS 5.17.3 Changelog

<h2>🗓 04 Feb 2025</h2>

#### 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`
1 change: 1 addition & 0 deletions docs/schedule/android/changelogs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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_)
Expand Down
2 changes: 1 addition & 1 deletion docs/schedule/android/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
```

Expand Down
11 changes: 11 additions & 0 deletions docs/schedule/android/releases/2.9.3/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
title: Schedule Android 2.9.3 - Changelog - Navitia SDK Docs
---

# Schedule Android 2.9.3 Changelog

<h2>🗓 03 Feb 2025</h2>

#### Dependencies
- `com.android.tools.build:gradle` > `8.7.3`
- `com.kisio.navitia.sdk.engine:router` > `2.6.3`
1 change: 1 addition & 0 deletions docs/schedule/ios/changelogs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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_)
Expand Down
2 changes: 1 addition & 1 deletion docs/schedule/ios/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
18 changes: 18 additions & 0 deletions docs/schedule/ios/releases/3.10.1/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
title: Schedule iOS 3.10.1 - Changelog - Navitia SDK Docs
---

# Schedule iOS 3.10.1 Changelog

<h2>🗓 04 Feb 2025</h2>

#### 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`
1 change: 1 addition & 0 deletions docs/traffic/android/changelogs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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_)
Expand Down
2 changes: 1 addition & 1 deletion docs/traffic/android/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
```

Expand Down
Loading