Skip to content

Commit bef10f0

Browse files
authored
Merge pull request #199 from hove-io/hotfix/04-02-2025
hotfix/04 02 2025
2 parents f8a1c96 + 2b9fd2f commit bef10f0

File tree

30 files changed

+188
-22
lines changed

30 files changed

+188
-22
lines changed

docs/around_me/android/changelogs.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ title: Around Me Android - Changelogs - Navitia SDK Docs
44

55
# Around Me Android Changelogs
66

7+
* [v2.13.4](releases/2.13.4/index.md) (_03 Feb 2025_)
78
* [v2.13.3](releases/2.13.3/index.md) (_09 Jan 2025_)
89
* [v2.13.2](releases/2.13.2/index.md) (_26 Dec 2024_)
910
* [v2.13.1](releases/2.13.1/index.md) (_24 Dec 2024_)

docs/around_me/android/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Add the following dependencies in the `build.gradle` file of your application:
1010

1111
```kotlin
1212
dependencies {
13-
implementation("com.kisio.navitia.sdk.ui:aroundme:2.13.3")
13+
implementation("com.kisio.navitia.sdk.ui:aroundme:2.13.4")
1414
}
1515
```
1616

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
title: AroundMe Android 2.13.4 - Changelog - Navitia SDK Docs
3+
---
4+
5+
# Around Me Android 2.13.4 Changelog
6+
7+
<h2>🗓 03 Feb 2025</h2>
8+
9+
#### Fixes
10+
- Do not show walking sections under 3 minutes in favorites journeys.
11+
- Details bottomsheet not showing when selecting a POI.
12+
- Do not show schedule options if not enable in configuration.
13+
14+
#### Dependencies
15+
- `com.kisio.navitia.sdk.engine:router` > `2.6.3`

docs/around_me/ios/changelogs.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ title: Around Me iOS - Changelogs - Navitia SDK Docs
44

55
# Around Me iOS Changelogs
66

7+
* [v3.10.1](releases/3.10.1/index.md) (_04 Feb 2025_)
78
* [v3.10.0](releases/3.10.0/index.md) (_02 Dec 2024_)
89
* [v3.9.2](releases/3.9.2/index.md) (_19 Nov 2024_)
910
* [v3.9.1](releases/3.9.1/index.md) (_07 Nov 2024_)

docs/around_me/ios/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ source 'https://github.com/CocoaPods/Specs.git' # Default Cocoapods URL
1313
source 'https://github.com/hove-io/Podspecs.git' # Around Me podspec URL
1414

1515
target 'YOUR_PROJECT_SCHEME' do
16-
pod 'AroundMeSDK', '3.10.0' # Around Me Pod definition
16+
pod 'AroundMeSDK', '3.10.1' # Around Me Pod definition
1717
end
1818

1919
# Required for XCFramework
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
title: AroundMe iOS 3.10.1 - Changelog - Navitia SDK Docs
3+
---
4+
5+
# AroundMe iOS 3.10.1 Changelog
6+
7+
<h2>🗓 04 Feb 2025</h2>
8+
9+
#### Fixes
10+
- Fix home and work shortcuts not sending navitia id to journey
11+
12+
#### Compiler
13+
- Swift `6.0.3`
14+
15+
#### Dependencies
16+
- `DesignEngine` -> `2.18.1`
17+
- `RouterEngine` -> `1.5.4`

docs/bookmark/android/changelogs.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ title: Bookmark Android - Changelogs - Navitia SDK Docs
44

55
# Bookmark Android Changelogs
66

7+
* [v1.9.4](releases/1.9.4/index.md) (_03 Feb 2025_)
78
* [v1.9.3](releases/1.9.3/index.md) (_08 Jan 2025_)
89
* [v1.9.2](releases/1.9.2/index.md) (_24 Dec 2024_)
910
* [v1.9.1](releases/1.9.1/index.md) (_02 Dec 2024_)

docs/bookmark/android/index.md

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Add the following dependencies in the `build.gradle` file of your application:
1010

1111
```kotlin
1212
dependencies {
13-
implementation("com.kisio.navitia.sdk.ui:bookmark:1.9.3")
13+
implementation("com.kisio.navitia.sdk.ui:bookmark:1.9.4")
1414
}
1515
```
1616

@@ -253,35 +253,32 @@ fun updateAddress(address: SharedData.AddressBookmark)
253253
:material-arrow-right: Update an existing favorite journey
254254

255255
```kotlin
256-
fun updateJourney(travelId: String, additionalInformation: String)
256+
fun updateJourney(journey: SharedData.JourneyBookmark)
257257
```
258258

259259
| Param | Type | Description |
260260
| --- | --- | --- |
261-
| `travelId` | `String` | Travel id of the favorite journey to update |
262-
| `additionalInformation` | `String` | Extra data to update |
261+
| `journey` | `SharedData.JourneyBookmark` | Favorite journey to update |
263262

264263
:material-arrow-right: Update an existing favorite POI
265264

266265
```kotlin
267-
fun updatePoi(id: String, additionalInformation: String)
266+
fun updatePoi(poi: SharedData.PoiBookmark)
268267
```
269268

270269
| Param | Type | Description |
271270
| --- | --- | --- |
272-
| `id` | `String` | Id of the favorite POI to update |
273-
| `additionalInformation` | `String` | Extra data to update |
271+
| `poi` | `SharedData.PoiBookmark` | Favorite poi to update |
274272

275273
:material-arrow-right: Update an existing favorite station
276274

277275
```kotlin
278-
fun updateStation(id: String, additionalInformation: String)
276+
fun updateStation(station: SharedData.StationBookmark)
279277
```
280278

281279
| Param | Type | Description |
282280
| --- | --- | --- |
283-
| `is` | `String` | Id of the favorite station to update |
284-
| `additionalInformation` | `String` | Extra data to update |
281+
| `station` | `SharedData.StationBookmark` | Favorite station to update |
285282

286283
<h4>Delete</h4>
287284

@@ -332,6 +329,7 @@ fun deleteStation(stopAreaId: String, lineId: String)
332329

333330
| Name | Required | Description | Type |
334331
| --- |:---:| --- | :---: |
332+
| `databaseId` | :material-check: | Unique database id | `Long?` |
335333
| `id` | :material-check: | Unique address id | `String` |
336334
| `name` | :material-check: | Address name | `String` |
337335
| `houseNumber` | :material-check: | House number | `Int` |
@@ -345,6 +343,7 @@ fun deleteStation(stopAreaId: String, lineId: String)
345343

346344
| Name | Required | Description | Type |
347345
| --- |:---:| --- | :---: |
346+
| `databaseId` | :material-check: | Unique database id | `Long?` |
348347
| `travelId` | :material-check: | Unique journey id | `String` |
349348
| `from` | :material-check: | Departure name | `String` |
350349
| `fromId` | :material-check: | Departure Navitia id | `String` |
@@ -386,6 +385,7 @@ fun deleteStation(stopAreaId: String, lineId: String)
386385

387386
| Name | Required | Description | Type |
388387
| --- |:---:| --- | :---: |
388+
| `databaseId` | :material-check: | Unique database id | `Long?` |
389389
| `id` | :material-check: | Unique POI id | `String` |
390390
| `coords` | :material-check: | POI coordinates | `LatLng` |
391391
| `name` | :material-check: | POI name | `String` |
@@ -399,6 +399,7 @@ fun deleteStation(stopAreaId: String, lineId: String)
399399

400400
| Name | Required | Description | Type |
401401
| --- |:---:| --- | :---: |
402+
| `databaseId` | :material-check: | Unique database id | `Long?` |
402403
| `stopAreaId` | :material-check: | Navitia stop area id | `String` |
403404
| `coords` | :material-check: | Station coordinates | `LatLng` |
404405
| `name` | :material-check: | Station name | `String` |
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
title: Bookmark Android 1.9.4 - Changelog - Navitia SDK Docs
3+
---
4+
5+
# Bookmark Android 1.9.4 Changelog
6+
7+
<h2>🗓 03 Feb 2025</h2>
8+
9+
#### Fixes
10+
- Fix database id issue when updating favorites
11+
12+
#### Dependencies
13+
- `com.android.tools.build:gradle` > `8.7.3`
14+
- `com.kisio.navitia.sdk.engine:router` > `2.6.3`

docs/bookmark/ios/changelogs.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ title: Bookmark iOS - Changelogs - Navitia SDK Docs
44

55
# Bookmark iOS Changelogs
66

7+
* [v1.9.2](releases/1.9.2/index.md) (_04 Feb 2025_)
78
* [v1.9.1](releases/1.9.1/index.md) (_09 Dec 2024_)
89
* [v1.9.0](releases/1.9.0/index.md) (_02 Dec 2024_)
910
* [v1.8.0](releases/1.8.0/index.md) (_30 Oct 2024_)

docs/bookmark/ios/index.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ source 'https://github.com/CocoaPods/Specs.git' # Default Cocoapods URL
1313
source 'https://github.com/hove-io/Podspecs.git' # Bookmark podspec URL
1414

1515
target 'YOUR_PROJECT_SCHEME' do
16-
pod 'BookmarkSDK', '1.9.1' # Bookmark Pod definition
16+
pod 'BookmarkSDK', '1.9.2' # Bookmark Pod definition
1717
end
1818

1919
# Required for XCFramework
@@ -360,7 +360,8 @@ func deleteFavoriteStation(id: String) -> Bool
360360

361361
| Name | Required | Description | Type |
362362
| --- |:---:| --- | :---: |
363-
| `id` | :material-check: | Unique address id | `String` |
363+
| `uuid` | :material-check: | Unique database address id | `String` |
364+
| `navitiaId` | :material-check: | Unique navitia id | `String` |
364365
| `name` | :material-check: | Address name | `String` |
365366
| `houseNumber` | :material-check: | House number | `Int` |
366367
| `address` | :material-check: | Address label | `String` |
@@ -373,7 +374,8 @@ func deleteFavoriteStation(id: String) -> Bool
373374

374375
| Name | Required | Description | Type |
375376
| --- |:---:| --- | :---: |
376-
| `id` | :material-check: | Unique journey id | `String` |
377+
| `uuid` | :material-check: | Unique database journey id | `String` |
378+
| `journeyId` | :material-check: | Unique journey id | `String` |
377379
| `fromName` | :material-check: | Departure name | `String` |
378380
| `fromId` | :material-check: | Departure Navitia id | `String` |
379381
| `toName` | :material-check: | Arrival name | `String` |
@@ -400,7 +402,8 @@ func deleteFavoriteStation(id: String) -> Bool
400402

401403
| Name | Required | Description | Type |
402404
| --- |:---:| --- | :---: |
403-
| `id` | :material-check: | Unique POI id | `String` |
405+
| `uuid` | :material-check: | Unique database POI id | `String` |
406+
| `navitiaId` | :material-check: | Unique POI id | `String` |
404407
| `coords` | :material-check: | POI coordinates | `CLLocationCoordinate2D` |
405408
| `name` | :material-check: | POI name | `String` |
406409
| `address` | :material-check: | POI address | `String` |
@@ -413,6 +416,7 @@ func deleteFavoriteStation(id: String) -> Bool
413416

414417
| Name | Required | Description | Type |
415418
| --- |:---:| --- | :---: |
419+
| `uuid` | :material-check: | Unique database station id | `String` |
416420
| `stopAreaId` | :material-check: | Navitia stop area id | `String` |
417421
| `coords` | :material-check: | Station coordinates | `CLLocationCoordinate2D` |
418422
| `name` | :material-check: | Station name | `String` |
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: Bookmark iOS 1.9.2 - Changelog - Navitia SDK Docs
3+
---
4+
5+
# Bookmark iOS 1.9.2 Changelog
6+
7+
<h2>🗓 04 Feb 2025</h2>
8+
9+
#### Tasks
10+
- Add uuid to all bookmark models
11+
- Rename id to navitia id for concerned models
12+
- Handle update using uuid
13+
14+
#### Compiler
15+
- Swift `6.0.3`
16+
17+
#### Dependencies
18+
- `DesignEngine` -> `2.18.1`
19+
- `RouterEngine` -> `1.5.4`

docs/journey/android/changelogs.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ title: Journey Android - Changelogs - Navitia SDK Docs
44

55
# Journey Android Changelogs
66

7+
* [v5.17.3](releases/5.17.3/index.md) (_03 Feb 2025_)
78
* [v5.17.2](releases/5.17.2/index.md) (_08 Jan 2024_)
89
* [v5.17.1](releases/5.17.1/index.md) (_24 Dec 2024_)
910
* [v5.17.0](releases/5.17.0/index.md) (_02 Dec 2024_)

docs/journey/android/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Add the following dependencies in the `build.gradle` file of your application:
1010

1111
```kotlin
1212
dependencies {
13-
implementation("com.kisio.navitia.sdk.ui:journey:5.17.2")
13+
implementation("com.kisio.navitia.sdk.ui:journey:5.17.3")
1414
}
1515
```
1616

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: Journey Android 5.17.3 - Changelog - Navitia SDK Docs
3+
---
4+
5+
# Journey Android 5.17.3 Changelog
6+
7+
<h2>🗓 03 Feb 2025</h2>
8+
9+
#### Fixes
10+
- Fix address data in favorite poi
11+
12+
#### Dependencies
13+
- `com.kisio.navitia.sdk.engine:router` > `2.6.3`

docs/journey/ios/changelogs.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ title: Journey iOS - Changelogs - Navitia SDK Docs
44

55
# Journey iOS Changelogs
66

7+
* [v5.17.3](releases/5.17.3/index.md) (_04 Feb 2025_)
78
* [v5.17.2](releases/5.17.2/index.md) (_23 Jan 2025_)
89
* [v5.17.1](releases/5.17.1/index.md) (_08 Jan 2025_)
910
* [v5.17.0](releases/5.17.0/index.md) (_02 Dec 2024_)

docs/journey/ios/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ source 'https://github.com/CocoaPods/Specs.git' # Default Cocoapods URL
1313
source 'https://github.com/hove-io/Podspecs.git' # Journey podspec URL
1414

1515
target 'YOUR_PROJECT_SCHEME' do
16-
pod 'JourneySDK', '5.17.2' # Journey Pod definition
16+
pod 'JourneySDK', '5.17.3' # Journey Pod definition
1717
end
1818

1919
# Required for XCFramework
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
title: Journey iOS 5.17.3 - Changelog - Navitia SDK Docs
3+
---
4+
5+
# Journey iOS 5.17.3 Changelog
6+
7+
<h2>🗓 04 Feb 2025</h2>
8+
9+
#### Fixes
10+
- Fix car no park icon not showing for favorite journeys
11+
12+
#### Compiler
13+
- Swift `6.0.3`
14+
15+
#### Dependencies
16+
- `DesignEngine` -> `2.18.1`
17+
- `RouterEngine` -> `1.5.4`

docs/schedule/android/changelogs.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ title: Schedule Android - Changelogs - Navitia SDK Docs
44

55
# Schedule Android Changelogs
66

7+
* [v2.9.3](releases/2.9.3/index.md) (_03 Feb 2025_)
78
* [v2.9.2](releases/2.9.2/index.md) (_24 Dec 2024_)
89
* [v2.9.1](releases/2.9.1/index.md) (_02 Dec 2024_)
910
* [v2.9.0](releases/2.9.0/index.md) (_31 Oct 2024_)

docs/schedule/android/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Add the following dependencies in the `build.gradle` file of your application:
1010

1111
```kotlin
1212
dependencies {
13-
implementation("com.kisio.navitia.sdk.ui:schedule:2.9.2")
13+
implementation("com.kisio.navitia.sdk.ui:schedule:2.9.3")
1414
}
1515
```
1616

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
title: Schedule Android 2.9.3 - Changelog - Navitia SDK Docs
3+
---
4+
5+
# Schedule Android 2.9.3 Changelog
6+
7+
<h2>🗓 03 Feb 2025</h2>
8+
9+
#### Dependencies
10+
- `com.android.tools.build:gradle` > `8.7.3`
11+
- `com.kisio.navitia.sdk.engine:router` > `2.6.3`

docs/schedule/ios/changelogs.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ title: Schedule iOS - Changelogs - Navitia SDK Docs
44

55
# Schedule iOS Changelogs
66

7+
* [v3.10.1](releases/3.10.1/index.md) (_04 Feb 2025_)
78
* [v3.10.0](releases/3.10.0/index.md) (_02 Dec 2024_)
89
* [v3.9.1](releases/3.9.1/index.md) (_07 Nov 2024_)
910
* [v3.9.0](releases/3.9.0/index.md) (_30 Oct 2024_)

docs/schedule/ios/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ source 'https://github.com/CocoaPods/Specs.git' # Default Cocoapods URL
1313
source 'https://github.com/hove-io/Podspecs.git' # Schedule podspec URL
1414

1515
target 'YOUR_PROJECT_SCHEME' do
16-
pod 'ScheduleSDK', '3.10.0' # Schedule Pod definition
16+
pod 'ScheduleSDK', '3.10.1' # Schedule Pod definition
1717
end
1818

1919
# Required for XCFramework
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
title: Schedule iOS 3.10.1 - Changelog - Navitia SDK Docs
3+
---
4+
5+
# Schedule iOS 3.10.1 Changelog
6+
7+
<h2>🗓 04 Feb 2025</h2>
8+
9+
#### Fixes
10+
- Remove Navitia call when choosing to show next departures screen from favorites list
11+
- Fix wrong line text color displayed
12+
13+
#### Compiler
14+
- Swift `6.0.3`
15+
16+
#### Dependencies
17+
- `DesignEngine` -> `2.18.1`
18+
- `RouterEngine` -> `1.5.4`

docs/traffic/android/changelogs.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ title: Traffic Android - Changelogs - Navitia SDK Docs
44

55
# Traffic Android Changelogs
66

7+
* [v2.7.2](releases/2.7.2/index.md) (_03 Feb 2025_)
78
* [v2.7.1](releases/2.7.1/index.md) (_24 Dec 2024_)
89
* [v2.7.0](releases/2.7.0/index.md) (_02 Dec 2024_)
910
* [v2.6.1](releases/2.6.1/index.md) (_31 Oct 2024_)

docs/traffic/android/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Add the following dependencies in the `build.gradle` file of your application:
1010

1111
```kotlin
1212
dependencies {
13-
implementation("com.kisio.navitia.sdk.ui:traffic:2.7.1")
13+
implementation("com.kisio.navitia.sdk.ui:traffic:2.7.2")
1414
}
1515
```
1616

0 commit comments

Comments
 (0)