react-native-acoustic-connect-beta 16.0.40 → 16.0.41
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.
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"react": "18.2.0",
|
|
16
16
|
"react-dom": "18.2.0",
|
|
17
17
|
"react-native": "0.72.10",
|
|
18
|
-
"react-native-acoustic-connect-beta": "16.0.
|
|
18
|
+
"react-native-acoustic-connect-beta": "16.0.41",
|
|
19
19
|
"react-native-gesture-handler": "~2.12.0",
|
|
20
20
|
"react-native-keyboard-aware-scroll-view": "^0.9.5",
|
|
21
21
|
"react-native-reanimated": "~3.3.0",
|
package/Jenkinsfile
CHANGED
|
@@ -583,8 +583,9 @@ def gitPush(path, commitMsg, tagMsg, branch, commitMsg2) {
|
|
|
583
583
|
}
|
|
584
584
|
|
|
585
585
|
// "Update files for beta"
|
|
586
|
-
def updateDescription() {
|
|
587
|
-
def
|
|
586
|
+
def updateDescription(isBeta) {
|
|
587
|
+
def title = isBeta ? "Beta" : "Release"
|
|
588
|
+
def commitDesciptionTitle = "${title} ${name} Change Notes:"
|
|
588
589
|
commitDesciption = readFile "latestChanges"
|
|
589
590
|
commitDesciption = "${commitDesciptionTitle} \n" << commitDesciption
|
|
590
591
|
commitDesciption = commitDesciption.replaceAll("\"", "\'")
|
|
@@ -598,7 +599,7 @@ def publishBeta() {
|
|
|
598
599
|
runCMD('''cd \"''' + buildDir + '''\" && npm publish''')
|
|
599
600
|
}
|
|
600
601
|
|
|
601
|
-
updateDescription()
|
|
602
|
+
updateDescription(true)
|
|
602
603
|
def commitMsg = "Beta ${name} build: ${currentVersion}"
|
|
603
604
|
echo "push with:"
|
|
604
605
|
echo commitMsg
|
|
@@ -649,7 +650,7 @@ def publishRelease() {
|
|
|
649
650
|
runCMD('''cd \"''' + releaseDir + '''\" && npm publish''')
|
|
650
651
|
}
|
|
651
652
|
|
|
652
|
-
updateDescription()
|
|
653
|
+
updateDescription(false)
|
|
653
654
|
def commitMsg = "Release ${name} build: ${currentVersion}"
|
|
654
655
|
echo "push with:"
|
|
655
656
|
echo commitMsg
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"Connect": {
|
|
3
|
-
"AndroidVersion": "10.4.
|
|
3
|
+
"AndroidVersion": "10.4.22",
|
|
4
4
|
"AppKey": "b6c3709b7a4c479bb4b5a9fb8fec324c",
|
|
5
5
|
"KillSwitchUrl": "https://lib-us-2.brilliantcollector.com/collector/switch/b6c3709b7a4c479bb4b5a9fb8fec324c",
|
|
6
6
|
"PostMessageUrl": "https://lib-us-2.brilliantcollector.com/collector/collectorPost",
|