From f6412babbda5ea077b72e437fa9aeca188bc462b Mon Sep 17 00:00:00 2001 From: Nakul Jhunjhunwala Date: Tue, 9 Apr 2024 15:53:18 +0530 Subject: [PATCH] Update sample app for v4.3.3 --- README.md | 12 +++--------- package.json | 6 +++--- src/metaInfo.ts | 2 +- 3 files changed, 7 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 36735c0..2d4d776 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ # Vue Sample App by CometChat -This is a reference application showcasing the integration of [**CometChat's Vue UI Kit**](https://www.cometchat.com/docs/v4/vue-uikit/overview) within an Vue framework. It provides developers with examples of implementing real-time messaging and voice and video calling features in their own Vue-based applications. +This is a reference application showcasing the integration of [**CometChat's Vue UI Kit**](https://www.cometchat.com/docs/v4/vue-uikit/overview) within a Vue framework. It provides developers with examples of implementing real-time messaging and voice and video calling features in their own Vue-based applications. ## Prerequisites @@ -21,7 +21,7 @@ This is a reference application showcasing the integration of [**CometChat's Vue ## Installation 1. Clone the repository: ``` - git clone https://github.com/cometchat-pro/cometchat-sample-app-vue.git + git clone https://github.com/cometchat/cometchat-sample-app-vue.git ``` 2. Navigate to the cloned directory: ``` @@ -32,13 +32,7 @@ This is a reference application showcasing the integration of [**CometChat's Vue npm install ``` 4. Enter your CometChat _`App ID`_, _`Region`_, and _`Auth Key`_ in the [src/AppConstants.ts](https://github.com/cometchat/cometchat-sample-app-vue/blob/v4/src/AppConstants.ts) file: - ```typescript - export const AppConstants = { - APP_ID: "APP_ID", - REGION: "REGION", - AUTH_KEY: "AUTH_KEY", - }; - ``` + https://github.com/cometchat/cometchat-sample-app-vue/blob/11b9f3dbb3769f9a8f4e3a387c82f0ba778e9a46/src/AppConstants.ts#L1-L5 5. Run the project locally to see all CometChat features in action: ``` npm run serve diff --git a/package.json b/package.json index ce9b625..4cfaf55 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cometchat-chat-sample-app-vue", - "version": "4.3.2", + "version": "4.3.3", "license": "SEE LICENSE IN LICENSE.md", "private": true, "scripts": { @@ -9,8 +9,8 @@ "lint": "vue-cli-service lint" }, "dependencies": { - "@cometchat/chat-uikit-vue": "4.3.2", - "@cometchat/calls-sdk-javascript": "4.0.6", + "@cometchat/chat-uikit-vue": "4.3.3", + "@cometchat/calls-sdk-javascript": "4.0.7", "core-js": "^3.8.3", "file-loader": "^6.2.0", "vue": "^3.2.13" diff --git a/src/metaInfo.ts b/src/metaInfo.ts index e565fd4..444b281 100644 --- a/src/metaInfo.ts +++ b/src/metaInfo.ts @@ -1,6 +1,6 @@ export const metaInfo = { name: "cometchat-chat-sample-app-vue", - version: "4.3.2", + version: "4.3.3", type: "sample", platform: "Vue", };