@situm/cordova 3.4.2 → 3.4.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -2,12 +2,22 @@
2
2
  <h1 align="center">Situm Cordova Plugin</h1>
3
3
  </p>
4
4
 
5
- Situm Cordova Plugin is a set of utilities that allow any developer to build Cordova location based apps using Situm's indoor positioning system. Among many other capabilities, apps developed with Situm Cordova Plugin will be able to:
5
+ [Situm Wayfinding](https://situm.com/wayfinding) for Capacitor and Cordova. Integrate plug&play navigation experience with floorplans, POIs, routes and turn-by-turn directions in no time. With the power of [Situm](https://www.situm.com/).
6
6
 
7
- - Obtain information related to buildings where Situm's positioning system is already configured: floorplans, points of interest, geotriggered events, etc.
8
- - Retrieve the location of the smartphone inside these buildings (position, orientation, and floor where the smartphone is).
9
- - Compute a route from a point A (e.g. where the smartphone is) to a point B (e.g. any point of interest within the building).
10
- - Trigger notifications when the user enters a certain area.
7
+ This plugin has two parts:
8
+
9
+ - The base SDK, the building blocks that allow you to:
10
+
11
+ - obtain information related to buildings where Situm's positioning system is already configured: floorplans, points of interest, geotriggered events, etc.
12
+ - retrieve the location of the smartphone inside these buildings (position, orientation, and floor where the smartphone is).
13
+ - compute a route from a point A (e.g. where the smartphone is) to a point B (e.g. any point of interest within the building).
14
+ - trigger notifications when the user enters a certain area.
15
+
16
+ - A full featured and easy to integrate UI component (`<map-view>`) that allows you to:
17
+ - show your cartography on a map
18
+ - show the user location on the map
19
+ - calculate point-to-point wayfinging routes
20
+ - explore points of interest on your buildings on the map
11
21
 
12
22
  <div align="center" style="text-align:center">
13
23
 
@@ -90,6 +90,15 @@ jobs:
90
90
  MAPVIEWERDOMAIN: $(MAPVIEWERDOMAIN)
91
91
  BUILDNUMBER: $(BUILDNUMBER)
92
92
 
93
+ - ${{ if ne(variables['Build.Reason'],'manual') }}:
94
+ - template: azure-templates/teams-notifier.yml@sys_kubernetes_templates
95
+ parameters:
96
+ channelId: $(releasesMobileChannelId)
97
+ teamID: $(releasesMobileTeamId)
98
+ messageType: "error"
99
+ message: "Hey Team, 🚨 our <strong>Capacitor Android Example App auto build</strong> just took a dive off the high board and belly-flopped! 🚨 Let's put on our lifeguard hats and dive in for a rescue mission! 🚑 Time to debug and bring that pipeline back to smooth sailing! 🛠️⚓ Alert level: High! Let's fix it! 🚨"
100
+
101
+
93
102
  #===============================================================
94
103
  # Job for iOS app
95
104
  #===============================================================
@@ -145,3 +154,10 @@ jobs:
145
154
  BUILDINGID: $(BUILDINGID)
146
155
  BUILDNUMBER: $(BUILDNUMBER)
147
156
 
157
+ - ${{ if ne(variables['Build.Reason'],'manual') }}:
158
+ - template: azure-templates/teams-notifier.yml@sys_kubernetes_templates
159
+ parameters:
160
+ channelId: $(releasesMobileChannelId)
161
+ teamID: $(releasesMobileTeamId)
162
+ messageType: "error"
163
+ message: "Hey Team, 🚨 our <strong>Capacitor iOS Example App auto build</strong> just took a dive off the high board and belly-flopped! 🚨 Let's put on our lifeguard hats and dive in for a rescue mission! 🚑 Time to debug and bring that pipeline back to smooth sailing! 🛠️⚓ Alert level: High! Let's fix it! 🚨"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@situm/cordova",
3
- "version": "3.4.2",
4
- "description": "Set of utilities that allow any developer to build Cordova location based apps using Situm's indoor positioning system.",
3
+ "version": "3.4.3",
4
+ "description": "Situm Wayfinding for Capacitor and Cordova. Integrate plug&play indoor navigation experience with floorplans, POIs, routes and turn-by-turn directions in no time. With the power of Situm.",
5
5
  "private": false,
6
6
  "repository": "https://github.com/situmtech/cordova",
7
7
  "author": "Situm Technologies <mobile@situm.com>",
package/plugin.xml CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
4
4
  id="@situm/cordova"
5
- version="3.4.2">
5
+ version="3.4.3">
6
6
  <name>Situm Cordova plugin Official</name>
7
7
  <description>This is the stable branch.</description>
8
8
  <license>MIT</license>
@@ -44,7 +44,7 @@ dependencies {
44
44
  implementation ('com.googlecode.json-simple:json-simple:1.1.1'){
45
45
  exclude group: 'junit', module:'junit'
46
46
  }
47
- implementation ('es.situm:situm-sdk:3.11.2@aar') {
47
+ implementation ('es.situm:situm-sdk:3.12.0@aar') {
48
48
  transitive = true
49
49
  }
50
50
  implementation 'org.apache.cordova:framework:10.1.1'
@@ -12,7 +12,7 @@ allprojects {
12
12
 
13
13
  dependencies {
14
14
  implementation 'com.google.android.gms:play-services-location:16.0.0'
15
- implementation('es.situm:situm-sdk:3.11.2@aar') {
15
+ implementation('es.situm:situm-sdk:3.12.0@aar') {
16
16
  transitive = true
17
17
  }
18
18
  }