@chat21/chat21-ionic 3.0.61-rc18 → 3.0.61-rc19
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/CHANGELOG.md +3 -0
- package/deploy_pre.sh +4 -43
- package/deploy_prod.sh +7 -36
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# chat21-ionic ver 3.0
|
|
2
2
|
|
|
3
|
+
### 3.0.61-rc19
|
|
4
|
+
- Merge branch 'features/new-sidebar'
|
|
5
|
+
|
|
3
6
|
### 3.0.61-rc18
|
|
4
7
|
- Fix bugs: in the teammate settings drawer the logout button area is too large
|
|
5
8
|
- Fixed the bug: in the detail of the conversation the button messages are not aligned with the other messages
|
package/deploy_pre.sh
CHANGED
|
@@ -27,57 +27,18 @@ sed -i -e "s/$URL_VER/g" src/utils/constants.ts
|
|
|
27
27
|
|
|
28
28
|
ionic cordova platform add browser --save
|
|
29
29
|
#ionic cordova build browser --prod --release
|
|
30
|
-
|
|
31
|
-
|
|
30
|
+
ionic cordova build --env=pre browser #--prod --verbose
|
|
31
|
+
|
|
32
32
|
cp -p src/firebase-messaging-sw.js platforms/browser/www/
|
|
33
33
|
cp -p src/manifest.json platforms/browser/www/
|
|
34
34
|
cp -p src/chat-config.json platforms/browser/www/
|
|
35
35
|
|
|
36
|
-
|
|
37
|
-
######### chat-ionic5 - the good one - publish in pre
|
|
38
36
|
cd platforms/browser/www
|
|
39
37
|
aws s3 sync . s3://tiledesk-dashboard-pre/chat-ionic5/$version/
|
|
40
38
|
aws s3 sync . s3://tiledesk-dashboard-pre/chat-ionic5/
|
|
41
39
|
cd ../../../
|
|
42
40
|
|
|
43
|
-
aws cloudfront create-invalidation --distribution-id E2DTAKWHWQ7C3J --paths "/*"
|
|
41
|
+
#aws cloudfront create-invalidation --distribution-id E2DTAKWHWQ7C3J --paths "/*"
|
|
44
42
|
|
|
45
43
|
echo new version deployed on s3://tiledesk-dashboard-pre/chat-ionic5/$version/
|
|
46
|
-
echo available on https://s3.eu-west-1.amazonaws.com/tiledesk-dashboard-pre/chat-ionic5/$version/index.html
|
|
47
|
-
echo available on https://support-pre.tiledesk.com/chat-ionic5/$version/index.html
|
|
48
|
-
echo available on https://support-pre.tiledesk.com/chat-ionic5/index.html
|
|
49
|
-
|
|
50
|
-
######### chat-ionic5-panel - publish in pre with the projects right panel
|
|
51
|
-
# cd platforms/browser/www
|
|
52
|
-
# aws s3 sync . s3://tiledesk-dashboard-pre/chat-ionic5-panel/$version/
|
|
53
|
-
# aws s3 sync . s3://tiledesk-dashboard-pre/chat-ionic5-panel/
|
|
54
|
-
# cd ../../../
|
|
55
|
-
|
|
56
|
-
# aws cloudfront create-invalidation --distribution-id E2DTAKWHWQ7C3J --paths "/*"
|
|
57
|
-
|
|
58
|
-
# echo new version deployed on s3://tiledesk-dashboard-pre/chat-ionic5-panel/$version/
|
|
59
|
-
# echo available on https://s3.eu-west-1.amazonaws.com/tiledesk-dashboard-pre/chat-ionic5-panel/$version/index.html
|
|
60
|
-
# echo available on https://support-pre.tiledesk.com/chat-ionic5-panel/$version/index.html
|
|
61
|
-
# echo available on https://support-pre.tiledesk.com/chat-ionic5-panel/index.html
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
####### chat ionic MQTT in pre da aggiungere in deploy_pre.sh
|
|
65
|
-
# cd platforms/browser/www
|
|
66
|
-
# aws s3 sync . s3://tiledesk-dashboard-pre/native-mqtt/chat-ionic5/
|
|
67
|
-
# aws s3 sync . s3://tiledesk-dashboard-pre/native-mqtt/chat-ionic5/$version
|
|
68
|
-
# cd ../../../
|
|
69
|
-
# echo new version deployed on s3://tiledesk-dashboard-pre/native-mqtt/chat-ionic5/
|
|
70
|
-
# echo new version deployed on s3://tiledesk-dashboard-pre/native-mqtt/chat-ionic5/$version
|
|
71
|
-
# echo http://tiledesk-dashboard-pre.s3-eu-west-1.amazonaws.com/native-mqtt/chat-ionic5/index.html
|
|
72
|
-
# echo http://tiledesk-dashboard-pre.s3-eu-west-1.amazonaws.com/native-mqtt/chat-ionic5/$version/index.html
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
####### chat ionic FIREBASE in pre da aggiungere in deploy_pre.sh
|
|
76
|
-
# cd platforms/browser/www
|
|
77
|
-
# aws s3 sync . s3://tiledesk-dashboard-pre/chat5/
|
|
78
|
-
# aws s3 sync . s3://tiledesk-dashboard-pre/chat5/$version
|
|
79
|
-
# cd ../../../
|
|
80
|
-
# echo new version deployed on s3://tiledesk-dashboard-pre/chat5/$version
|
|
81
|
-
# echo new version deployed on s3://tiledesk-dashboard-pre/chat5/
|
|
82
|
-
# echo available on http://support-pre.tiledesk.com/chat5/index.html
|
|
83
|
-
# echo available on http://support-pre.tiledesk.com/chat5/$version/index.html
|
|
44
|
+
echo available on https://s3.eu-west-1.amazonaws.com/tiledesk-dashboard-pre/chat-ionic5/$version/index.html
|
package/deploy_prod.sh
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
npm version patch
|
|
2
2
|
version=`node -e 'console.log(require("./package.json").version)'`
|
|
3
3
|
echo "version $version"
|
|
4
4
|
|
|
@@ -12,51 +12,22 @@ echo 'URL_VER: ---->'$URL_VER
|
|
|
12
12
|
# npm publish
|
|
13
13
|
# fi
|
|
14
14
|
|
|
15
|
+
# sed -i -e "s/$start$ver.$build/$start$NEW_VER.$NEW_BUILD/g" src/utils/constants.ts
|
|
15
16
|
sed -i -e "s/$URL_VER/g" src/utils/constants.ts
|
|
16
|
-
|
|
17
17
|
ionic cordova platform add browser --save
|
|
18
18
|
#ionic cordova build --env=prod browser -- --base-href /www/ --prod
|
|
19
19
|
ionic cordova build --env=prod browser --prod
|
|
20
20
|
cp -p src/firebase-messaging-sw.js platforms/browser/www/
|
|
21
21
|
cp -p src/manifest.json platforms/browser/www/
|
|
22
22
|
cp -p src/chat-config.json platforms/browser/www/
|
|
23
|
-
cp -p config.xml platforms/browser/www/
|
|
24
|
-
|
|
25
23
|
|
|
26
|
-
###### CHAT in prod
|
|
27
24
|
cd platforms/browser/www
|
|
28
|
-
aws s3 sync . s3://tiledesk-dashboard/
|
|
29
|
-
aws s3 sync . s3://tiledesk-console/v2/chat
|
|
25
|
+
#aws s3 sync . s3://tiledesk-dashboard/chat/
|
|
26
|
+
aws s3 sync . s3://tiledesk-console/v2/chat-ionic5/
|
|
27
|
+
aws s3 sync . s3://tiledesk-console/v2/chat-ionic5/$version/
|
|
30
28
|
cd ../../../
|
|
31
29
|
# aws cloudfront create-invalidation --distribution-id E2DTAKWHWQ7C3J --paths "/*"
|
|
32
30
|
|
|
33
31
|
# echo new version deployed on s3://tiledesk-dashboard/chat/$NEW_BUILD/
|
|
34
|
-
echo new version deployed on s3://tiledesk-console/v2/chat/$version/
|
|
35
|
-
echo
|
|
36
|
-
echo available on https://console.tiledesk.com/v2/chat/$version/index.html
|
|
37
|
-
echo available on https://console.tiledesk.com/v2/chat/index.html
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
###### CHAT-IONIC5
|
|
41
|
-
# cd platforms/browser/www
|
|
42
|
-
# #aws s3 sync . s3://tiledesk-dashboard/chat/
|
|
43
|
-
# aws s3 sync . s3://tiledesk-console/v2/chat-ionic5/
|
|
44
|
-
# aws s3 sync . s3://tiledesk-console/v2/chat-ionic5/$version/
|
|
45
|
-
# cd ../../../
|
|
46
|
-
# # aws cloudfront create-invalidation --distribution-id E2DTAKWHWQ7C3J --paths "/*"
|
|
47
|
-
|
|
48
|
-
# # echo new version deployed on s3://tiledesk-dashboard/chat/$NEW_BUILD/
|
|
49
|
-
# echo new version deployed on s3://tiledesk-console/v2/chat-ionic5/$version/
|
|
50
|
-
# echo available on https://console.tiledesk.com/v2/chat-ionic5/$version/index.html
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
####### chat ionic FIREBASE in PROD IN SUBFOLDER
|
|
55
|
-
# cd platforms/browser/www
|
|
56
|
-
# aws s3 sync . s3://tiledesk-console/v2/chat5-dev/
|
|
57
|
-
# aws s3 sync . s3://tiledesk-console/v2/chat5-dev/$version
|
|
58
|
-
# cd ../../../
|
|
59
|
-
# echo new version deployed on s3://console.tiledesk.com/v2/chat5-dev/$version
|
|
60
|
-
# echo new version deployed on s3://console.tiledesk.com/v2/chat5-dev/
|
|
61
|
-
# echo available on http://console.tiledesk.com/v2/chat5-dev/index.html
|
|
62
|
-
# echo available on http://console.tiledesk.com/v2/chat5-dev/$version/index.html
|
|
32
|
+
echo new version deployed on s3://tiledesk-console/v2/chat-ionic5/$version/
|
|
33
|
+
echo available on https://console.tiledesk.com/v2/chat-ionic5/$version/index.html
|