react-native-acoustic-connect-beta 16.0.39 → 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
|
|
@@ -690,8 +691,12 @@ def getSlackReport(isRelease) {
|
|
|
690
691
|
populateSlackMessageGlobalVariables()
|
|
691
692
|
|
|
692
693
|
def releaseTitle = ""
|
|
694
|
+
def slackTitle = "Beta build"
|
|
695
|
+
def npmUrl = "https://www.npmjs.com/package/react-native-acoustic-connect-beta"
|
|
693
696
|
if (isRelease) {
|
|
694
697
|
releaseTitle = "********************Release********************\n"
|
|
698
|
+
slackTitle = "Release build"
|
|
699
|
+
npmUrl = "https://www.npmjs.com/package/react-native-acoustic-connect"
|
|
695
700
|
}
|
|
696
701
|
|
|
697
702
|
echo "currentBuild.result:${currentBuild.result}"
|
|
@@ -739,8 +744,8 @@ def getSlackReport(isRelease) {
|
|
|
739
744
|
short: true
|
|
740
745
|
],
|
|
741
746
|
[
|
|
742
|
-
title: "
|
|
743
|
-
value: "
|
|
747
|
+
title: "${slackTitle}",
|
|
748
|
+
value: "${npmUrl}",
|
|
744
749
|
short: false
|
|
745
750
|
],
|
|
746
751
|
[
|
|
@@ -797,8 +802,8 @@ def getSlackReport(isRelease) {
|
|
|
797
802
|
short: true
|
|
798
803
|
],
|
|
799
804
|
[
|
|
800
|
-
title: "
|
|
801
|
-
value: "
|
|
805
|
+
title: "${slackTitle}",
|
|
806
|
+
value: "${npmUrl}",
|
|
802
807
|
short: false
|
|
803
808
|
],
|
|
804
809
|
[
|
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",
|