@chat21/chat21-ionic 3.0.60-rc1 → 3.0.60-rc9
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 +39 -0
- package/LICENSE +661 -21
- package/deploy_pre.sh +45 -6
- package/deploy_prod.sh +34 -9
- package/env.sample +1 -1
- package/package.json +1 -1
- package/src/app/app.component.ts +45 -21
- package/src/app/app.module.ts +2 -2
- package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.ts +62 -36
- package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.ts +42 -13
- package/src/app/components/conversation-detail/message-text-area/message-text-area.component.html +13 -6
- package/src/app/components/conversation-detail/message-text-area/message-text-area.component.scss +38 -3
- package/src/app/components/conversation-detail/message-text-area/message-text-area.component.ts +8 -6
- package/src/app/components/image-viewer/image-viewer.component.scss +2 -2
- package/src/app/components/project-item/project-item.component.html +140 -118
- package/src/app/components/project-item/project-item.component.scss +167 -90
- package/src/app/components/project-item/project-item.component.ts +41 -20
- package/src/app/pages/conversation-detail/conversation-detail.module.ts +2 -1
- package/src/app/pages/conversation-detail/conversation-detail.page.html +36 -43
- package/src/app/pages/conversation-detail/conversation-detail.page.ts +199 -110
- package/src/app/pages/conversations-list/conversations-list.page.html +9 -5
- package/src/app/pages/conversations-list/conversations-list.page.scss +12 -1
- package/src/app/pages/conversations-list/conversations-list.page.ts +24 -6
- package/src/app/pages/unassigned-conversations/unassigned-conversations.page.html +16 -11
- package/src/app/pages/unassigned-conversations/unassigned-conversations.page.scss +157 -63
- package/src/app/pages/unassigned-conversations/unassigned-conversations.page.ts +51 -16
- package/src/app/services/app-config.ts +14 -14
- package/src/app/shared/shared.module.ts +6 -5
- package/src/assets/i18n/de.json +209 -0
- package/src/assets/i18n/en.json +24 -8
- package/src/assets/i18n/es.json +209 -0
- package/src/assets/i18n/fr.json +209 -0
- package/src/assets/i18n/it.json +42 -34
- package/src/assets/i18n/pt.json +209 -0
- package/src/assets/i18n/ru.json +209 -0
- package/src/assets/i18n/tr.json +209 -0
- package/src/assets/js/chat21client.js +16 -3
- package/src/chat-config-mqtt.json +2 -1
- package/src/chat-config-pre-test.json +2 -0
- package/src/chat-config-template.json +1 -0
- package/src/chat-config.json +1 -0
- package/src/chat21-core/providers/firebase/firebase-conversation-handler.ts +54 -43
- package/src/chat21-core/providers/firebase/firebase-conversations-handler.ts +23 -0
- package/src/chat21-core/providers/mqtt/mqtt-archivedconversations-handler.ts +1 -1
- package/src/chat21-core/utils/constants.ts +2 -0
- package/src/chat21-core/utils/utils.ts +12 -1
- package/src/global.scss +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,44 @@
|
|
|
1
1
|
# chat21-ionic ver 3.0
|
|
2
2
|
|
|
3
|
+
### 3.0.60-rc9
|
|
4
|
+
- Adds the message "All conversations served" in the conversation details section that appears when there are no active conversations
|
|
5
|
+
- 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
|
|
6
|
+
|
|
7
|
+
### 3.0.60-rc8
|
|
8
|
+
- Fixes the bug: "info" messages sent by "SYSTEM" are not translated
|
|
9
|
+
- Adds the Portuguese language
|
|
10
|
+
- Adds the French language
|
|
11
|
+
- Adds the Russian language
|
|
12
|
+
- Adds the Turkish language
|
|
13
|
+
|
|
14
|
+
### 3.0.60-rc7
|
|
15
|
+
- Adds German language
|
|
16
|
+
- 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)
|
|
17
|
+
- 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)
|
|
18
|
+
- Adds the ability to manage the visibility of canned responses in env.sample, chat-config-tempalte.json and chat-config.json
|
|
19
|
+
- 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
|
|
20
|
+
|
|
21
|
+
### 3.0.60-rc6
|
|
22
|
+
- Fixes the bug: push notifications are initialized even if the "pushEngine" configuration variable is set to "none"
|
|
23
|
+
- Adds spanish language
|
|
24
|
+
|
|
25
|
+
### 3.0.60-rc5
|
|
26
|
+
- 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)
|
|
27
|
+
- Add a tooltip on the switch button to change the available/unavailable status
|
|
28
|
+
- Adds a link to the to the new conversations at the icon that display the number of new conversations
|
|
29
|
+
|
|
30
|
+
### 3.0.60-rc4
|
|
31
|
+
- Translates the canned response displayed when there are not canned responses
|
|
32
|
+
|
|
33
|
+
### 3.0.60-rc3
|
|
34
|
+
- Enhances the item at the top of the conversation list that displays the number of new conversations of a selected project
|
|
35
|
+
- Fixes the bug: the loading spinner is sometimes not displayed when loading the list of unassigned conversations
|
|
36
|
+
- Displays as canned response "Test" when no canned responses are available
|
|
37
|
+
- Adds the cursor to the "Send message" textarea after the "Canned responses" button has been clicked
|
|
38
|
+
|
|
39
|
+
### 3.0.60-rc2
|
|
40
|
+
- Fixes the bug: in AppConfigProvider the "wsUrl" is incorrect (window.location.port is missing)
|
|
41
|
+
|
|
3
42
|
### 3.0.60-rc1
|
|
4
43
|
- 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
|
|
5
44
|
|