Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add "Send files" to Readme #155

Merged
merged 9 commits into from
Dec 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .pubnub.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
---
name: pubnub-js-chat
version: v0.3.1
version: v0.4.0
scm: github.com/pubnub/js-chat
schema: 1
files:
- lib/dist/index.js
changelog:
- date: 2023-12-06
version: v0.4.0
changes:
- type: feature
text: "Add CryptoModule support."
- date: 2023-11-08
version: v0.3.1
changes:
Expand Down
2 changes: 1 addition & 1 deletion lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pubnub/chat",
"version": "0.3.1",
"version": "0.4.0",
"description": "PubNub JavaScript Chat SDK",
"author": "PubNub <[email protected]>",
"license": "SEE LICENSE IN LICENSE",
Expand Down
49 changes: 25 additions & 24 deletions samples/react-native-group-chat/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,21 @@ The app comes with a pre-defined UI to showcase what the final product might loo

This app is written using:

* [PubNub Chat SDK](https://github.com/pubnub/js-chat)
* [TypeScript](https://www.typescriptlang.org/) (v^5.1.3)
* [Expo](https://expo.dev/) (v~49.0.8)
* [React](https://legacy.reactjs.org/versions/) (v18.2.0)
* [React Native](https://reactnative.dev/) (v0.72.4)
- [PubNub Chat SDK](https://github.com/pubnub/js-chat)
- [TypeScript](https://www.typescriptlang.org/) (v^5.1.3)
- [Expo](https://expo.dev/) (v~49.0.8)
- [React](https://legacy.reactjs.org/versions/) (v18.2.0)
- [React Native](https://reactnative.dev/) (v0.72.4)

## Prerequisites

To run the React Native Group Chat app, make sure to have the following:

* [yarn](https://classic.yarnpkg.com/en/docs/install)(>=1.22.19)
* [Node.js](https://nodejs.org/en/download/)(>=18.10.0)
* [Xcode](https://developer.apple.com/xcode/)
* Code Editor (e.g. [Visual Studio Code](https://code.visualstudio.com/download))
* PubNub [Publish & Subscribe keys](https://www.pubnub.com/docs/basics/initialize-pubnub) that you can obtain from [Admin Portal](https://admin.pubnub.com/) after setting up an [account](https://www.pubnub.com/docs/setup/account-setup). You must enable **App Context** (with selected region, User Metadata Events, Channel Metadata Events, and Membership Metadata Events) and **Message Persistence** on your keyset to manage user and channel data in the app.
- [yarn](https://classic.yarnpkg.com/en/docs/install)(>=1.22.19)
- [Node.js](https://nodejs.org/en/download/)(>=18.10.0)
- [Xcode](https://developer.apple.com/xcode/)
- Code Editor (e.g. [Visual Studio Code](https://code.visualstudio.com/download))
- PubNub [Publish & Subscribe keys](https://www.pubnub.com/docs/basics/initialize-pubnub) that you can obtain from [Admin Portal](https://admin.pubnub.com/) after setting up an [account](https://www.pubnub.com/docs/setup/account-setup). You must enable **App Context** (with selected region, User Metadata Events, Channel Metadata Events, and Membership Metadata Events) and **Message Persistence** on your keyset to manage user and channel data in the app.

## Usage

Expand Down Expand Up @@ -85,28 +85,29 @@ The app showcases these PubNub features:

Channels:

* [Group channel creation](https://www.pubnub.com/docs/chat/chat-sdk/build/features/channels/create)
* [Channel references](https://www.pubnub.com/docs/chat/chat-sdk/build/features/channels/references)
* [Inviting](https://www.pubnub.com/docs/chat/chat-sdk/build/features/channels/invite) users to channels
* [Joining](https://www.pubnub.com/docs/chat/chat-sdk/build/features/channels/join) channels
- [Group channel creation](https://www.pubnub.com/docs/chat/chat-sdk/build/features/channels/create)
- [Channel references](https://www.pubnub.com/docs/chat/chat-sdk/build/features/channels/references)
- [Inviting](https://www.pubnub.com/docs/chat/chat-sdk/build/features/channels/invite) users to channels
- [Joining](https://www.pubnub.com/docs/chat/chat-sdk/build/features/channels/join) channels

Users:

* [User profile editing](https://www.pubnub.com/docs/chat/chat-sdk/build/features/users/updates)
* [User mentions](https://www.pubnub.com/docs/chat/chat-sdk/build/features/users/mentions)
* [Global (app) presence](https://www.pubnub.com/docs/chat/chat-sdk/build/features/users/presence#global-presence)
- [User profile editing](https://www.pubnub.com/docs/chat/chat-sdk/build/features/users/updates)
- [User mentions](https://www.pubnub.com/docs/chat/chat-sdk/build/features/users/mentions)
- [Global (app) presence](https://www.pubnub.com/docs/chat/chat-sdk/build/features/users/presence#global-presence)

Messages:

* [Sending and receiving](https://www.pubnub.com/docs/chat/chat-sdk/build/features/messages/send-receive) messages
* [Threads](https://www.pubnub.com/docs/chat/chat-sdk/build/features/messages/threads)
* [Unread messages](https://www.pubnub.com/docs/chat/chat-sdk/build/features/messages/unread)
* [Reactions](https://www.pubnub.com/docs/chat/chat-sdk/build/features/messages/reactions)
* [Quotes](https://www.pubnub.com/docs/chat/chat-sdk/build/features/messages/quotes)
* [Plain links](https://www.pubnub.com/docs/chat/chat-sdk/build/features/messages/links)
- [Sending and receiving](https://www.pubnub.com/docs/chat/chat-sdk/build/features/messages/send-receive) messages
- [Threads](https://www.pubnub.com/docs/chat/chat-sdk/build/features/messages/threads)
- [Unread messages](https://www.pubnub.com/docs/chat/chat-sdk/build/features/messages/unread)
- [Reactions](https://www.pubnub.com/docs/chat/chat-sdk/build/features/messages/reactions)
- [Quotes](https://www.pubnub.com/docs/chat/chat-sdk/build/features/messages/quotes)
- [Plain links](https://www.pubnub.com/docs/chat/chat-sdk/build/features/messages/links)
- [Send files](https://www.pubnub.com/docs/chat/chat-sdk/build/features/messages/files)

Other:

* [Typing indicator](https://www.pubnub.com/docs/chat/chat-sdk/build/features/typing-indicator)
- [Typing indicator](https://www.pubnub.com/docs/chat/chat-sdk/build/features/typing-indicator)

Still, these are only some of the features available in Chat SDK. For the complete overview, check [Chat SDK docs](https://www.pubnub.com/docs/chat/chat-sdk/overview).
Loading