@chat21/chat21-ionic 3.0.5-8.1 → 3.0.6-2.1
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 +300 -0
- package/LICENSE +661 -21
- package/README.md +21 -0
- package/angular.json +4 -0
- package/config.xml +6 -7
- package/deploy_pre.sh +44 -5
- package/deploy_prod.sh +36 -7
- package/env.sample +7 -3
- package/package.json +12 -8
- package/resources/{Android → android}/icon/drawable-hdpi-icon.png +0 -0
- package/resources/{Android → android}/icon/drawable-ldpi-icon.png +0 -0
- package/resources/{Android → android}/icon/drawable-mdpi-icon.png +0 -0
- package/resources/{Android → android}/icon/drawable-xhdpi-icon.png +0 -0
- package/resources/{Android → android}/icon/drawable-xxhdpi-icon.png +0 -0
- package/resources/{Android → android}/icon/drawable-xxxhdpi-icon.png +0 -0
- package/resources/{Android → android}/icon.png +0 -0
- package/resources/android/splash/drawable-land-hdpi-screen.png +0 -0
- package/resources/android/splash/drawable-land-ldpi-screen.png +0 -0
- package/resources/android/splash/drawable-land-mdpi-screen.png +0 -0
- package/resources/android/splash/drawable-land-xhdpi-screen.png +0 -0
- package/resources/android/splash/drawable-land-xxhdpi-screen.png +0 -0
- package/resources/android/splash/drawable-land-xxxhdpi-screen.png +0 -0
- package/resources/android/splash/drawable-port-hdpi-screen.png +0 -0
- package/resources/android/splash/drawable-port-ldpi-screen.png +0 -0
- package/resources/android/splash/drawable-port-mdpi-screen.png +0 -0
- package/resources/android/splash/drawable-port-xhdpi-screen.png +0 -0
- package/resources/android/splash/drawable-port-xxhdpi-screen.png +0 -0
- package/resources/android/splash/drawable-port-xxxhdpi-screen.png +0 -0
- package/resources/android/splash.png +0 -0
- package/src/app/app-routing.module.ts +36 -17
- package/src/app/app.component.html +18 -5
- package/src/app/app.component.scss +27 -5
- package/src/app/app.component.ts +526 -175
- package/src/app/app.module.ts +29 -12
- package/src/app/chatlib/conversation-detail/conversation-content/conversation-content.component.html +1 -1
- package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.html +35 -24
- package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.scss +166 -50
- package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.ts +113 -18
- package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.html +23 -33
- package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.scss +19 -7
- package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.ts +73 -7
- package/src/app/chatlib/conversation-detail/message/image/image.component.html +7 -6
- package/src/app/chatlib/conversation-detail/message/image/image.component.ts +20 -1
- package/src/app/chatlib/conversation-detail/message/message-attachment/message-attachment.component.scss +1 -1
- package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.html +46 -11
- package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.scss +8 -144
- package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.ts +149 -32
- package/src/app/chatlib/list-conversations-component/list-conversations/list-conversations.component.html +1 -1
- package/src/app/chatlib/list-conversations-component/list-conversations/list-conversations.component.ts +13 -10
- package/src/app/components/authentication/login/login.component.html +10 -10
- package/src/app/components/authentication/login/login.component.ts +2 -1
- package/src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.ts +1 -1
- package/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.ts +1 -1
- package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.html +45 -39
- package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.scss +19 -1
- package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.ts +160 -54
- package/src/app/components/conversation-detail/message-text-area/message-text-area.component.html +101 -38
- package/src/app/components/conversation-detail/message-text-area/message-text-area.component.scss +95 -19
- package/src/app/components/conversation-detail/message-text-area/message-text-area.component.ts +209 -98
- package/src/app/components/ddp-header/ddp-header.component.html +20 -6
- package/src/app/components/ddp-header/ddp-header.component.scss +4 -0
- package/src/app/components/ddp-header/ddp-header.component.ts +107 -11
- package/src/app/components/image-viewer/image-viewer.component.html +23 -0
- package/src/app/components/image-viewer/image-viewer.component.scss +107 -0
- package/src/app/components/image-viewer/image-viewer.component.spec.ts +24 -0
- package/src/app/components/image-viewer/image-viewer.component.ts +38 -0
- package/src/app/components/project-item/project-item.component.html +170 -0
- package/src/app/components/project-item/project-item.component.scss +751 -0
- package/src/app/components/project-item/project-item.component.spec.ts +24 -0
- package/src/app/components/project-item/project-item.component.ts +384 -0
- package/src/app/components/sidebar/sidebar.component.html +275 -0
- package/src/app/components/sidebar/sidebar.component.scss +79 -0
- package/src/app/components/sidebar/sidebar.component.spec.ts +24 -0
- package/src/app/components/sidebar/sidebar.component.ts +541 -0
- package/src/app/components/sidebar-user-details/sidebar-user-details.component.html +121 -0
- package/src/app/components/sidebar-user-details/sidebar-user-details.component.scss +343 -0
- package/src/app/components/sidebar-user-details/sidebar-user-details.component.spec.ts +24 -0
- package/src/app/components/sidebar-user-details/sidebar-user-details.component.ts +502 -0
- package/src/app/components/utils/avatar-profile/avatar-profile.component.html +7 -0
- package/src/app/components/utils/avatar-profile/avatar-profile.component.ts +22 -5
- package/src/app/pages/authentication/login/login.page.html +1 -2
- package/src/app/pages/authentication/login/login.page.ts +1 -1
- package/src/app/pages/conversation-detail/conversation-detail.module.ts +9 -2
- package/src/app/pages/conversation-detail/conversation-detail.page.html +55 -49
- package/src/app/pages/conversation-detail/conversation-detail.page.scss +28 -0
- package/src/app/pages/conversation-detail/conversation-detail.page.ts +1285 -688
- package/src/app/pages/conversations-list/conversations-list.module.ts +2 -1
- package/src/app/pages/conversations-list/conversations-list.page.html +55 -21
- package/src/app/pages/conversations-list/conversations-list.page.scss +309 -127
- package/src/app/pages/conversations-list/conversations-list.page.ts +833 -358
- package/src/app/pages/create-canned-response/create-canned-response-routing.module.ts +17 -0
- package/src/app/pages/create-canned-response/create-canned-response.module.ts +30 -0
- package/src/app/pages/create-canned-response/create-canned-response.page.html +150 -0
- package/src/app/pages/create-canned-response/create-canned-response.page.scss +55 -0
- package/src/app/pages/create-canned-response/create-canned-response.page.spec.ts +24 -0
- package/src/app/pages/create-canned-response/create-canned-response.page.ts +319 -0
- package/src/app/pages/create-requester/create-requester-routing.module.ts +17 -0
- package/src/app/pages/create-requester/create-requester.module.ts +28 -0
- package/src/app/pages/create-requester/create-requester.page.html +67 -0
- package/src/app/pages/create-requester/create-requester.page.scss +30 -0
- package/src/app/pages/create-requester/create-requester.page.spec.ts +24 -0
- package/src/app/pages/create-requester/create-requester.page.ts +138 -0
- package/src/app/pages/create-ticket/create-ticket-routing.module.ts +17 -0
- package/src/app/pages/create-ticket/create-ticket.module.ts +28 -0
- package/src/app/pages/create-ticket/create-ticket.page.html +171 -0
- package/src/app/pages/create-ticket/create-ticket.page.scss +52 -0
- package/src/app/pages/create-ticket/create-ticket.page.spec.ts +24 -0
- package/src/app/pages/create-ticket/create-ticket.page.ts +432 -0
- package/src/app/pages/loader-preview/loader-preview.page.ts +226 -166
- package/src/app/pages/profile-info/profile-info.page.html +4 -4
- package/src/app/pages/profile-info/profile-info.page.scss +13 -2
- package/src/app/pages/profile-info/profile-info.page.ts +23 -21
- package/src/app/pages/unassigned-conversations/unassigned-conversations-routing.module.ts +17 -0
- package/src/app/pages/unassigned-conversations/unassigned-conversations.module.ts +22 -0
- package/src/app/pages/unassigned-conversations/unassigned-conversations.page.html +27 -0
- package/src/app/pages/unassigned-conversations/unassigned-conversations.page.scss +173 -0
- package/src/app/pages/unassigned-conversations/unassigned-conversations.page.spec.ts +24 -0
- package/src/app/pages/unassigned-conversations/unassigned-conversations.page.ts +151 -0
- package/src/app/services/app-config.ts +77 -5
- package/src/app/services/nav-proxy.service.ts +1 -1
- package/src/app/services/tiledesk/tiledesk.service.ts +231 -1
- package/src/app/services/websocket/websocket-js.ts +560 -0
- package/src/app/services/websocket/websocket.service.spec.ts +12 -0
- package/src/app/services/websocket/websocket.service.ts +292 -0
- package/src/app/shared/shared.module.ts +28 -8
- package/src/app/utils/scrollbar-theme.directive.ts +58 -24
- package/src/assets/i18n/de.json +265 -0
- package/src/assets/i18n/en.json +89 -7
- package/src/assets/i18n/es.json +265 -0
- package/src/assets/i18n/fr.json +265 -0
- package/src/assets/i18n/it.json +108 -34
- package/src/assets/i18n/pt.json +265 -0
- package/src/assets/i18n/ru.json +265 -0
- package/src/assets/i18n/sr.json +265 -0
- package/src/assets/i18n/tr.json +265 -0
- package/src/assets/images/default-avatar-x-select.png +0 -0
- package/src/assets/images/language_flag/ar.png +0 -0
- package/src/assets/images/language_flag/bg.png +0 -0
- package/src/assets/images/language_flag/ca.png +0 -0
- package/src/assets/images/language_flag/cs.png +0 -0
- package/src/assets/images/language_flag/da.png +0 -0
- package/src/assets/images/language_flag/de.png +0 -0
- package/src/assets/images/language_flag/el.png +0 -0
- package/src/assets/images/language_flag/en.png +0 -0
- package/src/assets/images/language_flag/es.png +0 -0
- package/src/assets/images/language_flag/fa.png +0 -0
- package/src/assets/images/language_flag/fi.png +0 -0
- package/src/assets/images/language_flag/fr.png +0 -0
- package/src/assets/images/language_flag/he.png +0 -0
- package/src/assets/images/language_flag/hi.png +0 -0
- package/src/assets/images/language_flag/hr.png +0 -0
- package/src/assets/images/language_flag/hu.png +0 -0
- package/src/assets/images/language_flag/id.png +0 -0
- package/src/assets/images/language_flag/it.png +0 -0
- package/src/assets/images/language_flag/ja.png +0 -0
- package/src/assets/images/language_flag/ko.png +0 -0
- package/src/assets/images/language_flag/ml-IN.png +0 -0
- package/src/assets/images/language_flag/ne-NP.png +0 -0
- package/src/assets/images/language_flag/nl.png +0 -0
- package/src/assets/images/language_flag/no.png +0 -0
- package/src/assets/images/language_flag/pl.png +0 -0
- package/src/assets/images/language_flag/pt-BR.png +0 -0
- package/src/assets/images/language_flag/pt.png +0 -0
- package/src/assets/images/language_flag/ro.png +0 -0
- package/src/assets/images/language_flag/ru.png +0 -0
- package/src/assets/images/language_flag/sk.png +0 -0
- package/src/assets/images/language_flag/sl.png +0 -0
- package/src/assets/images/language_flag/sr.png +0 -0
- package/src/assets/images/language_flag/sv-SE.png +0 -0
- package/src/assets/images/language_flag/ta.png +0 -0
- package/src/assets/images/language_flag/th.png +0 -0
- package/src/assets/images/language_flag/tr.png +0 -0
- package/src/assets/images/language_flag/uk.png +0 -0
- package/src/assets/images/language_flag/vi.png +0 -0
- package/src/assets/images/language_flag/zh-CN.png +0 -0
- package/src/assets/images/language_flag/zh-TW.png +0 -0
- package/src/assets/images/no_image_user.png +0 -0
- package/src/assets/images/priority_icons/high.svg +3 -0
- package/src/assets/images/priority_icons/high_v2.svg +14 -0
- package/src/assets/images/priority_icons/low.svg +10 -0
- package/src/assets/images/priority_icons/low_v2.svg +14 -0
- package/src/assets/images/priority_icons/medium.svg +16 -0
- package/src/assets/images/priority_icons/medium_v2.svg +11 -0
- package/src/assets/images/priority_icons/urgent.svg +4 -0
- package/src/assets/images/priority_icons/urgent_v2.svg +16 -0
- package/src/assets/js/chat21client.js +159 -84
- package/src/assets/logo.png +0 -0
- package/src/assets/tiledesk-solo-logo.png +0 -0
- package/src/assets/transparent.png +0 -0
- package/src/chat-config-mqtt.json +27 -17
- package/src/chat-config-pre-test.json +6 -2
- package/src/chat-config-template.json +8 -1
- package/src/chat-config.json +8 -1
- package/src/chat21-core/providers/chat-manager.ts +3 -3
- package/src/chat21-core/providers/firebase/firebase-archivedconversations-handler.ts +2 -2
- package/src/chat21-core/providers/firebase/firebase-auth-service.ts +6 -6
- package/src/chat21-core/providers/firebase/firebase-conversation-handler.ts +61 -45
- package/src/chat21-core/providers/firebase/firebase-conversations-handler.ts +24 -1
- package/src/chat21-core/providers/firebase/firebase-notifications.ts +32 -24
- package/src/chat21-core/providers/firebase/firebase-presence.service.ts +2 -2
- package/src/chat21-core/providers/firebase/firebase-typing.service.ts +1 -1
- package/src/chat21-core/providers/firebase/firebase-upload.service.ts +1 -1
- package/src/chat21-core/providers/mqtt/mqtt-archivedconversations-handler.ts +1 -1
- package/src/chat21-core/providers/mqtt/mqtt-conversation-handler.ts +3 -5
- package/src/chat21-core/providers/mqtt/mqtt-conversations-handler.ts +13 -5
- package/src/chat21-core/providers/mqtt/mqtt-notifications.ts +101 -11
- package/src/chat21-core/providers/tiledesk/tiledesk-auth.service.ts +13 -4
- package/src/chat21-core/utils/constants.ts +8 -1
- package/src/chat21-core/utils/utils-message.ts +21 -2
- package/src/chat21-core/utils/utils.ts +13 -2
- package/src/firebase-messaging-sw-template.js +1 -1
- package/src/global.scss +408 -2
- package/src/index.html +7 -0
- package/publish_pre.sh +0 -33
- package/publish_prod.sh +0 -33
- package/resources/Android/splash/drawable-land-hdpi-screen.png +0 -0
- package/resources/Android/splash/drawable-land-ldpi-screen.png +0 -0
- package/resources/Android/splash/drawable-land-mdpi-screen.png +0 -0
- package/resources/Android/splash/drawable-land-xhdpi-screen.png +0 -0
- package/resources/Android/splash/drawable-land-xxhdpi-screen.png +0 -0
- package/resources/Android/splash/drawable-land-xxxhdpi-screen.png +0 -0
- package/resources/Android/splash/drawable-port-hdpi-screen.png +0 -0
- package/resources/Android/splash/drawable-port-ldpi-screen.png +0 -0
- package/resources/Android/splash/drawable-port-mdpi-screen.png +0 -0
- package/resources/Android/splash/drawable-port-xhdpi-screen.png +0 -0
- package/resources/Android/splash/drawable-port-xxhdpi-screen.png +0 -0
- package/resources/Android/splash/drawable-port-xxxhdpi-screen.png +0 -0
- package/resources/Android/splash.png +0 -0
- package/src/assets/images/tiledesk_logo_50x50.png +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,305 @@
|
|
|
1
1
|
# chat21-ionic ver 3.0
|
|
2
2
|
|
|
3
|
+
### 3.0.62.1
|
|
4
|
+
- Allows agents to use the "Monitor" page
|
|
5
|
+
|
|
6
|
+
### 3.0.62
|
|
7
|
+
- Deploys in production
|
|
8
|
+
|
|
9
|
+
### 3.0.62-rc2
|
|
10
|
+
- Fixed bug: in the teammate drawer if the full name is too long it overlaps the email
|
|
11
|
+
- Fixed bug: in the teammate drawer if the email is too long it exceeds the width of the drawer
|
|
12
|
+
|
|
13
|
+
### 3.0.62-rc1
|
|
14
|
+
- Change the URL of the environment variable "dashboardUrl" from absolute to relative
|
|
15
|
+
|
|
16
|
+
### 3.0.61
|
|
17
|
+
- Deploys in production
|
|
18
|
+
|
|
19
|
+
### 3.0.61-rc26
|
|
20
|
+
- Fixes the bug: the conversation detail is not opened if the URL contains round brackets
|
|
21
|
+
|
|
22
|
+
### 3.0.61-rc25
|
|
23
|
+
- Handles the case that in the storage the value of the "last_project" key is undefined
|
|
24
|
+
|
|
25
|
+
### 3.0.61-rc24
|
|
26
|
+
- Handles the "writeToButton" and the 'archivedButton' environment variables if are returned as a string
|
|
27
|
+
- Adds the "authPersistence" key in the chat-config-template.json, chat-config.json and env.sample files
|
|
28
|
+
|
|
29
|
+
### 3.0.61-rc23
|
|
30
|
+
- Handles the "supportMode" environment variable if returned as a string (fixes the Docker image bugs: part of the conversation details go under the sidebar in mobile mode, the "add message as canned response" button is not displayed)
|
|
31
|
+
- Fixes the position of the emoji selection window pop up when the canned responses button is not visible
|
|
32
|
+
|
|
33
|
+
### 3.0.61-rc22
|
|
34
|
+
- Minor improvements
|
|
35
|
+
|
|
36
|
+
### 3.0.61-rc21
|
|
37
|
+
- Removes cordova-plugin-device
|
|
38
|
+
|
|
39
|
+
### 3.0.61-rc20
|
|
40
|
+
- Updates dependencies
|
|
41
|
+
|
|
42
|
+
### 3.0.61-rc19
|
|
43
|
+
- Merge branch 'features/new-sidebar'
|
|
44
|
+
|
|
45
|
+
### 3.0.61-rc18
|
|
46
|
+
- Fix bugs: in the teammate settings drawer the logout button area is too large
|
|
47
|
+
- Fixed the bug: in the detail of the conversation the button messages are not aligned with the other messages
|
|
48
|
+
|
|
49
|
+
### 3.0.61-rc16
|
|
50
|
+
- Does not allow teammates with agent role to access the "settings sidebar"
|
|
51
|
+
|
|
52
|
+
### 3.0.61-rc15
|
|
53
|
+
- Increase the size of the emoji and remove the background color when it is sent or received without text
|
|
54
|
+
- Adds the ability to open sidebar menu items in a new tab by combining left mouse button + CMD keyboard key
|
|
55
|
+
|
|
56
|
+
### 3.0.61-rc14
|
|
57
|
+
- Fixes the bug: the page to which the sidebar Settings menu item redirects is not correct for team members with agent role
|
|
58
|
+
- Fixes the bug: right clicking on the sidebar menu items doesn't show the context menu
|
|
59
|
+
|
|
60
|
+
### 3.0.61-rc12
|
|
61
|
+
- Improves the alignment of left sidebar menu item icons
|
|
62
|
+
- Adds the ability to add a message as a canned response
|
|
63
|
+
- Hides the "Open canned responses" button if the "supportMode" environment variable is set to false
|
|
64
|
+
- Fixes the bug: "Settings" menu item in the left sidebar redirects to the "Canned responses" page instead of the "Widget" page
|
|
65
|
+
- Adds the ability to add a new canned response
|
|
66
|
+
- Fixes the bug: "Resolve conversation" from conversation detail header doesn't work on mobile
|
|
67
|
+
- Adds the ability to insert emoji in the message text
|
|
68
|
+
- Fixes the bug: on iOS mobile devices in the conversation detail the requester's avatar is not vertically aligned
|
|
69
|
+
- Fixes the bug: on mobile devices in the "info profile" modal window the version number is not visible because it is on a white background
|
|
70
|
+
- Fixes the bug: in the "Create canned response" modal window the "Add personalisation" menu does not always work
|
|
71
|
+
- Adds the chat version number to the teammate details drawer
|
|
72
|
+
- Makes the right sidebar "Settings" menu item visible to teammates with agent role
|
|
73
|
+
|
|
74
|
+
### 3.0.61-rc11
|
|
75
|
+
- Fixed the bug: the "Resolve" button is displayed in the header of the details of the archived conversations
|
|
76
|
+
- Fixed the bug: in the header of the conversation detail the "Resolve" button remains active even after resolving the conversation
|
|
77
|
+
- Adds the ability to create a ticket
|
|
78
|
+
- Adds tooltips to the buttons available in the header of the conversation list
|
|
79
|
+
- Change the text of the "Conversations" menu item in the left sidebar to "Monitor"
|
|
80
|
+
|
|
81
|
+
### 3.0.61-rc10
|
|
82
|
+
- Fixes the bug: the Analytics icon of the left sidebar is not displayed
|
|
83
|
+
|
|
84
|
+
### 3.0.61-rc9
|
|
85
|
+
- Fixes the bug: the Apps icon of the left sidebar is not displayed
|
|
86
|
+
|
|
87
|
+
### 3.0.61-rc8
|
|
88
|
+
- Changes the icon of the "Conversations" menu item to the left sidebar
|
|
89
|
+
- Adds Serbian language
|
|
90
|
+
|
|
91
|
+
### 3.0.61-rc7
|
|
92
|
+
- Fixes the bug: while loading the app, the conversation list changes size and becomes wider
|
|
93
|
+
- Changes the style of the left sidebar
|
|
94
|
+
- Display in the "user data drawer" an avatar constructed with the initials of the logged in teammate if his profile picture is not available
|
|
95
|
+
|
|
96
|
+
### 3.0.61-rc6
|
|
97
|
+
- Enhances the style of the sidebar tooltips
|
|
98
|
+
- Fixed bug: for direct conversations opening the "info sidebar" by clicking on the teammate avatar available in the conversation detail header does not work correctly
|
|
99
|
+
- Fixes the bug: not all chat strings are translated into the browser language or into the selected language
|
|
100
|
+
- Fixes the bug: Email is broken on dashes in user details sidebar
|
|
101
|
+
- Displays an alert when a teammate archives a conversation from a project they are no longer a part of
|
|
102
|
+
- Disable the "send message" textarea when a teammate replies to a support conversation of a project he is no longer a part of
|
|
103
|
+
- Adds, when an image is pasted in the "send message" text area, the text of the text area as a caption of the image preview modal window
|
|
104
|
+
- Adds, when an image is uploaded, the text of the "send message" text area as a caption of the image preview modal window
|
|
105
|
+
|
|
106
|
+
### 3.0.61-rc5
|
|
107
|
+
- Fixes the bug: on mobile devices the chat content is shifted to the right
|
|
108
|
+
- Adds the ability to open and close the "user detail sidebar" by clicking on the avatar of the logged teammate present on the sidebar
|
|
109
|
+
- Fixes the bug: canned responses remain visible even if, after making a filter, the backslash is deleted
|
|
110
|
+
- Prevents the "open canned responses" button from inserting a backslash if another one exists before
|
|
111
|
+
- Hides the badge that displays the number of unassigned conversations if there are none
|
|
112
|
+
- Improves custom scrollbar displayed in the sidebar and in user detail sidebar
|
|
113
|
+
- Adds custom scrollbars to the conversation list and to the conversation detail
|
|
114
|
+
|
|
115
|
+
### 3.0.61-rc4
|
|
116
|
+
- Hides the item showing unassigned conversations in the list of archived conversations
|
|
117
|
+
- Adds in the list of conversations to the "archive" button the tooltip "Resolve" if the conversation is of type "support" and the tooltip "Archive" if the conversation is of type "direct" or "group"
|
|
118
|
+
- Changes all occurrences of the "teammatesButton" environment variable to "writeToButton"
|
|
119
|
+
- Fixes the bug: if the sidebar is visible and the window width is less than 768px, the content of the conversation detail is not completely visible
|
|
120
|
+
- Moves for conversations of type "support" the "Resolve conversation" button from the dropdown menu to the header of the conversation detail
|
|
121
|
+
|
|
122
|
+
### 3.0.61-rc3
|
|
123
|
+
- Replaces console.log with custom loggers
|
|
124
|
+
- Fixes the bug: the info support sidebar is no more displayed
|
|
125
|
+
|
|
126
|
+
### 3.0.61-rc2
|
|
127
|
+
- Fixes the bug: Profile picture in the sidebar does not update when logged in with another user after logging out
|
|
128
|
+
- Bug Fix: in the "info-profile" page avoid the "uid of undefined" error
|
|
129
|
+
- Adds the "user details" sidebar
|
|
130
|
+
- Adds the languages flags images
|
|
131
|
+
- Allows to close the "user details" sidebar by clicking outside it
|
|
132
|
+
- Adds the tooltips to the links of the sidebar
|
|
133
|
+
- Hides the sidebar when the teammate logs out, if the app is on a mobile device and if the environment variable "supportMode" is set to false
|
|
134
|
+
- Hides in the item showing unassigned conversations the button to pin a project if the app is not on a mobile device
|
|
135
|
+
- Gets in the sidebar the feature tokens from the environment variables
|
|
136
|
+
- Install the "Roboto" font
|
|
137
|
+
- Changes font priority in global.scss: replace "Helvetica Neue" font with "Roboto" font
|
|
138
|
+
- Imports the "Poppins" font family into index.html
|
|
139
|
+
- Adds the "Resolve" tooltip to the "archive" button available in the conversation list
|
|
140
|
+
- Displays the "Resolved Conversations" button and the "Teammates" button in the header of the conversation list based on how the "teammatesButton" and "archivedButton" environment variables are set
|
|
141
|
+
- Adds "teammatesButton" and "archivedButton" variables to the environments
|
|
142
|
+
- Adds the "TEAMMATES_BUTTON" and the "ARCHIVED_BUTTON" variables to the env.sample file
|
|
143
|
+
- Adds the "teammatesButton" and the "archivedButton" variables to the "chat-config-template.json" file and to "the chat-config.json" file
|
|
144
|
+
- Updates the section "Configuration" of the "README.md" file with the new variables "teammatesButton" and the "archivedButton"
|
|
145
|
+
|
|
146
|
+
### 3.0.61-rc1
|
|
147
|
+
- Adds a sidebar that allows navigation to the dashboard
|
|
148
|
+
|
|
149
|
+
### 3.0.60
|
|
150
|
+
- Deploys in production
|
|
151
|
+
|
|
152
|
+
### 3.0.60-rc9
|
|
153
|
+
- Adds the message "All conversations served" in the conversation details section that appears when there are no active conversations
|
|
154
|
+
- Fixes the bug: in the item that displays the number of unassigned conversations the button "fix a project" does not go to the right in mobile mode
|
|
155
|
+
|
|
156
|
+
### 3.0.60-rc8
|
|
157
|
+
- Fixes the bug: "info" messages sent by "SYSTEM" are not translated
|
|
158
|
+
- Adds the Portuguese language
|
|
159
|
+
- Adds the French language
|
|
160
|
+
- Adds the Russian language
|
|
161
|
+
- Adds the Turkish language
|
|
162
|
+
|
|
163
|
+
### 3.0.60-rc7
|
|
164
|
+
- Adds German language
|
|
165
|
+
- Adds a method that translates chat texts based on the language of the browser settings if no preferred language is selected in the dashboard or based on the preferred language (ignoring the browser language)
|
|
166
|
+
- Manages the language used for translations from the "moment" library based on the language of the browser settings if no preferred language has been selected in the dashboard or on the preferred language selected (ignoring the browser language)
|
|
167
|
+
- Adds the ability to manage the visibility of canned responses in env.sample, chat-config-tempalte.json and chat-config.json
|
|
168
|
+
- Fixes the bug: in the 'item' that displays the pinned project and the number of the not assigned conversions the tooltip is not correctly displayed
|
|
169
|
+
|
|
170
|
+
### 3.0.60-rc6
|
|
171
|
+
- Fixes the bug: push notifications are initialized even if the "pushEngine" configuration variable is set to "none"
|
|
172
|
+
- Adds spanish language
|
|
173
|
+
|
|
174
|
+
### 3.0.60-rc5
|
|
175
|
+
- Change the icon and link of the "pin button" in the item at the top of the conversation list (now opens the list of projects and not the list of new conversations)
|
|
176
|
+
- Add a tooltip on the switch button to change the available/unavailable status
|
|
177
|
+
- Adds a link to the to the new conversations at the icon that display the number of new conversations
|
|
178
|
+
|
|
179
|
+
### 3.0.60-rc4
|
|
180
|
+
- Translates the canned response displayed when there are not canned responses
|
|
181
|
+
|
|
182
|
+
### 3.0.60-rc3
|
|
183
|
+
- Enhances the item at the top of the conversation list that displays the number of new conversations of a selected project
|
|
184
|
+
- Fixes the bug: the loading spinner is sometimes not displayed when loading the list of unassigned conversations
|
|
185
|
+
- Displays as canned response "Test" when no canned responses are available
|
|
186
|
+
- Adds the cursor to the "Send message" textarea after the "Canned responses" button has been clicked
|
|
187
|
+
|
|
188
|
+
### 3.0.60-rc2
|
|
189
|
+
- Fixes the bug: in AppConfigProvider the "wsUrl" is incorrect (window.location.port is missing)
|
|
190
|
+
|
|
191
|
+
### 3.0.60-rc1
|
|
192
|
+
- Adds the ability to view canned responses by clicking on the button with the "flash" icon located to the left of the "Enter a message" text area
|
|
193
|
+
|
|
194
|
+
### 3.0.59.2
|
|
195
|
+
- Fixes the bug: when the agent refreshes the chat page and the chat is in mobile mode, the badge with the number of unassigned conversations does not work
|
|
196
|
+
|
|
197
|
+
### 3.0.59.1
|
|
198
|
+
- Fixes the bug: "Unable to read uid of undefined" error occurs when agent logs out
|
|
199
|
+
- Fixes the bug: When the agent logs into the chat and the chat is in mobile mode, no conversations are displayed
|
|
200
|
+
- Fixes the bug: the websocket is initialized even if the supportMode property is set to false
|
|
201
|
+
- Fixes the bug: when the agent refreshes the chat page and the chat is in mobile mode, the badge with the number of unassigned conversations does not work
|
|
202
|
+
|
|
203
|
+
### 3.0.59
|
|
204
|
+
- Deploys in production
|
|
205
|
+
|
|
206
|
+
### 3.0.59-rc23
|
|
207
|
+
- Fixes the bug: the badge indicating the number of unassigned conversations does not update correctly when the project is changed
|
|
208
|
+
- Changes the code that prevent the chat from opening in a new browser tab if the chat tab is already open
|
|
209
|
+
- Publish conversations returned by subscription to websocket conversations > "on data" callback
|
|
210
|
+
|
|
211
|
+
### 3.0.59-rc22
|
|
212
|
+
- Minor improvements
|
|
213
|
+
|
|
214
|
+
### 3.0.59-rc21
|
|
215
|
+
- chat21client.js -> v0.1.9
|
|
216
|
+
|
|
217
|
+
### 3.0.59-rc20
|
|
218
|
+
- Improves the transition from "mobile" to "desktop" mode and vice versa by not reloading the app
|
|
219
|
+
|
|
220
|
+
### 3.0.59-rc19
|
|
221
|
+
- Fixes the bug: when the chat is in "mobile" mode and from the dashboard the agent clicks on "Open chat" for a specific conversation the "back" button of the chat does not return to the list of conversations
|
|
222
|
+
- Fixes the bug: when the chat is in "mobile" mode and from the dashboard the agent clicks on "Open chat" for a specific conversation the chat does not display the details of the conversation
|
|
223
|
+
|
|
224
|
+
### 3.0.59-rc18
|
|
225
|
+
- Improves the "app-config" service
|
|
226
|
+
|
|
227
|
+
### 3.0.59-rc16
|
|
228
|
+
- Changes in config.xml the value of the "SplashScreen"
|
|
229
|
+
- Improves the method to avoid page reloading when an agent clicks the "Open Chat" button of the dashboard on the realtime and non-real time conversation list page and on the conversation detail page
|
|
230
|
+
- Modifies the "app-config" service by adding the ability to pass relative URLs to the websocket
|
|
231
|
+
- Adds "wsUrlRel" property to env.sample, chat-config-template.json and chat-config.json
|
|
232
|
+
- Adds a check in the "websocket-js.ts" service on the existence of the "ws" property of the "WebSocketJs" class before accessing the property "readyState"
|
|
233
|
+
|
|
234
|
+
### 3.0.59-rc15
|
|
235
|
+
- Implements a method in app.components that counts and stores the number of open Chat tabs
|
|
236
|
+
- Implements a method on the conversation list page that prevents a new chat tab from opening when the agent clicks "Open Chat" from the dashboard
|
|
237
|
+
|
|
238
|
+
### 3.0.59-rc14
|
|
239
|
+
- Fixes the bug: the sound that warns that a new conversation has been received does not work
|
|
240
|
+
|
|
241
|
+
### 3.0.59-rc12
|
|
242
|
+
- Fixes the bug: Cannot read properties of undefined (reading 'get') when "translationMap" in not yet defined
|
|
243
|
+
- Fixes the bug: when the log out is performed, the item with the number of new conversations remains visible in the left side panel of the conversations list
|
|
244
|
+
|
|
245
|
+
### 3.0.59-rc11
|
|
246
|
+
- Fixed bug: the item in the left side panel showing the number of new conversations is not displayed if there are no conversations
|
|
247
|
+
- Removes the "last_project" object and the "contacts" object on logout from local storage
|
|
248
|
+
|
|
249
|
+
### 3.0.59-rc10
|
|
250
|
+
- Changes in config.xml the site URL of the author
|
|
251
|
+
- Changes the splash screen images
|
|
252
|
+
- Adds the "browser" platform configuration in config.xml
|
|
253
|
+
- Initialize in app.module.ts firebase to handle push notifications if chatEngine is "mqtt"
|
|
254
|
+
|
|
255
|
+
### 3.0.59-rc9
|
|
256
|
+
- Changes in the archived conversations the date format if the browser language is English
|
|
257
|
+
- Displays the button to open the contact list for direct conversations and the entry at the top of the conversation list showing the number of unassigned conversations for a selected project if the "supportMode" configuration property is set to true
|
|
258
|
+
- Adds a style rule on the unassigned conversations page that changes the background of the "ion-content" if the project list is displayed in the iframe
|
|
259
|
+
- Adds "supportMode" property to env.sample, chat-config-template.json and chat-config.json
|
|
260
|
+
|
|
261
|
+
### 3.0.59-rc8
|
|
262
|
+
- Changes the title of the modal window showing unassigned conversations from "Unassigned Conversations" to "New Conversations"
|
|
263
|
+
- Fixes the bug: if the "chatEngine" property value is set to "mqtt" the login modal window does not disappear even if the agent is logged in
|
|
264
|
+
- Fixed the value of the configuration property "dashboardUrl"
|
|
265
|
+
|
|
266
|
+
### 3.0.59-rc7
|
|
267
|
+
- Fixes the bug "Cannot read properties of undefined (reading 'get')" in component template showing the number of new conversations
|
|
268
|
+
- Fixes the bug: the value of the "supportMode" property is passed hard-coded
|
|
269
|
+
|
|
270
|
+
### 3.0.59-rc6
|
|
271
|
+
- Outsources the websocket URL to environments
|
|
272
|
+
- Improves the graphic of the element, positioned at the top of the conversation list, which displays the number of new conversations
|
|
273
|
+
- Adds "wsUrl" property to env.sample, chat-config-template.json and chat-config.json
|
|
274
|
+
- Updates environments with "wsUrl" property
|
|
275
|
+
|
|
276
|
+
### 3.0.59-rc5
|
|
277
|
+
- Display a "toast message" of success after that the agent has joined to an unassigned conversation and other minor improvements
|
|
278
|
+
|
|
279
|
+
### 3.0.59-rc4
|
|
280
|
+
- Adds an item to the top of the conversation list that shows the number of unassigned conversations for a selected project
|
|
281
|
+
- Adds the ability, by clicking on the element that displays the number of unassigned conversations, to view the unassigned conversations and to join to them or archive them
|
|
282
|
+
|
|
283
|
+
### 3.0.59-rc3
|
|
284
|
+
- Improves the method that allows to chain multiple canned responses
|
|
285
|
+
|
|
286
|
+
### 3.0.59-rc2
|
|
287
|
+
- Fixes the bug: on small windows, images and iframes are not the same size as the bubble message that contains them
|
|
288
|
+
- Adds in the "bubble-message" component a check if the metadata is an object before calling the getMetadataSize() method
|
|
289
|
+
- Hides the "canned responses" if there are whitespace after the forward slash "/" or if there are no whitespace before the forward slash "/"
|
|
290
|
+
- Fixes the bug: if the "canned responses" are selected with the mouse, the "send message" text area does not have focus
|
|
291
|
+
- Adds the image viewer and the ability to download an image from it
|
|
292
|
+
- Fixes the position of the "archive" button when the app runs on mobile devices
|
|
293
|
+
- Updates Android splash screen .png image
|
|
294
|
+
|
|
295
|
+
### 3.0.59-rc1
|
|
296
|
+
- Fixes the bug: the "send message" button remains in the "disabled" state even if it is active
|
|
297
|
+
- Changes the format of the date displayed in the message tooltips
|
|
298
|
+
- Fixes the bug: the sender's avatar is not always displayed in the messages header
|
|
299
|
+
- Fixes the bug: the sender's name is not always displayed in the messages header
|
|
300
|
+
- Fixes the bug: in the avatar-profile component the properties 'avatarUrl', 'color' and 'avatar' are private and accessible only within the class
|
|
301
|
+
- Fixes the bug: on ios platforms the back button in the conversation details header overlaps the avatar
|
|
302
|
+
|
|
3
303
|
### 3.0.58.1
|
|
4
304
|
- Fix the bug: if the "chatEngine" property value is set to "mqtt "the login modal window does not disappear even if the agent is logged in
|
|
5
305
|
|