@chat21/chat21-ionic 3.0.61-rc18 → 3.0.61-rc21
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 +9 -0
- package/config.xml +0 -1
- package/deploy_pre.sh +17 -17
- package/package.json +1 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# chat21-ionic ver 3.0
|
|
2
2
|
|
|
3
|
+
### 3.0.61-rc21
|
|
4
|
+
- Removes cordova-plugin-device
|
|
5
|
+
|
|
6
|
+
### 3.0.61-rc20
|
|
7
|
+
- Updates dependencies
|
|
8
|
+
|
|
9
|
+
### 3.0.61-rc19
|
|
10
|
+
- Merge branch 'features/new-sidebar'
|
|
11
|
+
|
|
3
12
|
### 3.0.61-rc18
|
|
4
13
|
- Fix bugs: in the teammate settings drawer the logout button area is too large
|
|
5
14
|
- Fixed the bug: in the detail of the conversation the button messages are not aligned with the other messages
|
package/config.xml
CHANGED
|
@@ -106,7 +106,6 @@
|
|
|
106
106
|
<variable name="ANDROID_SUPPORT_VERSION" value="27.+" />
|
|
107
107
|
</plugin>
|
|
108
108
|
<plugin name="cordova-plugin-chooser" spec="^1.3.2" />
|
|
109
|
-
<plugin name="cordova-plugin-device" spec="^2.0.3" />
|
|
110
109
|
<plugin name="cordova-plugin-ionic-keyboard" spec="^2.2.0" />
|
|
111
110
|
<plugin name="cordova-plugin-ionic-webview" spec="^4.2.1">
|
|
112
111
|
<variable name="ANDROID_SUPPORT_ANNOTATIONS_VERSION" value="27.+" />
|
package/deploy_pre.sh
CHANGED
|
@@ -35,17 +35,17 @@ cp -p src/chat-config.json platforms/browser/www/
|
|
|
35
35
|
|
|
36
36
|
|
|
37
37
|
######### chat-ionic5 - the good one - publish in pre
|
|
38
|
-
cd platforms/browser/www
|
|
39
|
-
aws s3 sync . s3://tiledesk-dashboard-pre/chat-ionic5/$version/
|
|
40
|
-
aws s3 sync . s3://tiledesk-dashboard-pre/chat-ionic5/
|
|
41
|
-
cd ../../../
|
|
38
|
+
# cd platforms/browser/www
|
|
39
|
+
# aws s3 sync . s3://tiledesk-dashboard-pre/chat-ionic5/$version/
|
|
40
|
+
# aws s3 sync . s3://tiledesk-dashboard-pre/chat-ionic5/
|
|
41
|
+
# cd ../../../
|
|
42
42
|
|
|
43
|
-
aws cloudfront create-invalidation --distribution-id E2DTAKWHWQ7C3J --paths "/*"
|
|
43
|
+
# aws cloudfront create-invalidation --distribution-id E2DTAKWHWQ7C3J --paths "/*"
|
|
44
44
|
|
|
45
|
-
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
|
|
45
|
+
# 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
49
|
|
|
50
50
|
######### chat-ionic5-panel - publish in pre with the projects right panel
|
|
51
51
|
# cd platforms/browser/www
|
|
@@ -73,11 +73,11 @@ echo available on https://support-pre.tiledesk.com/chat-ionic5/index.html
|
|
|
73
73
|
|
|
74
74
|
|
|
75
75
|
####### chat ionic FIREBASE in pre da aggiungere in deploy_pre.sh
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
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
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chat21/chat21-ionic",
|
|
3
|
-
"version": "3.0.61-
|
|
3
|
+
"version": "3.0.61-rc21",
|
|
4
4
|
"author": "Tiledesk SRL",
|
|
5
5
|
"homepage": "https://tiledesk.com/",
|
|
6
6
|
"scripts": {
|
|
@@ -44,7 +44,6 @@
|
|
|
44
44
|
"cordova-browser": "^5.0.4",
|
|
45
45
|
"cordova-ios": "6.1.1",
|
|
46
46
|
"cordova-plugin-chooser": "^1.3.2",
|
|
47
|
-
"cordova-plugin-device": "^2.0.3",
|
|
48
47
|
"cordova-plugin-ionic-keyboard": "^2.2.0",
|
|
49
48
|
"cordova-plugin-ionic-webview": "^4.2.1",
|
|
50
49
|
"cordova-plugin-network-information": "^2.0.2",
|
|
@@ -97,7 +96,6 @@
|
|
|
97
96
|
"plugins": {
|
|
98
97
|
"cordova-plugin-whitelist": {},
|
|
99
98
|
"cordova-plugin-statusbar": {},
|
|
100
|
-
"cordova-plugin-device": {},
|
|
101
99
|
"cordova-plugin-splashscreen": {},
|
|
102
100
|
"cordova-plugin-ionic-webview": {
|
|
103
101
|
"ANDROID_SUPPORT_ANNOTATIONS_VERSION": "27.+"
|