Skip to content

Commit

Permalink
update: version and notes
Browse files Browse the repository at this point in the history
  • Loading branch information
DaKingKong committed Sep 27, 2024
1 parent d00a094 commit 0207e41
Show file tree
Hide file tree
Showing 8 changed files with 35 additions and 8 deletions.
4 changes: 4 additions & 0 deletions docs/developers/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ Click "Save."
!!! hint "What to do if saving options doesn't work"
If the option save failed, please try if you can manually open the manifest file from browser. Sometimes there's network policy that blocks web tunnel like ngrok.
Now, the extension is setup with a manifest that serves `testCRM`. From the manifest file we can tell that the variable `okatforms.testCRM.urlIdentifier` = "\*.labs.ringcentral.com/\*". Let's use https://unified-crm-extension.labs.ringcentral.com/is-alive as the test CRM homepage.
Open the extension on the page and login with your RingCentral account. Then you should be able to play with mock data and see how this extension works.
## Next step: edit your manifest file
!!! hint "Fork this repo and track changes better"
Expand Down
6 changes: 6 additions & 0 deletions docs/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release notes

## 1.0.9

- New: Call history page now has a search bar with filters
- New: Contact pop settings now support both inbound and outbound calls on different timings
- New: RingCentral team message is added as a new tab

## 1.0.8

- New: More historical call records can be viewed from call history page with 'Load more' button
Expand Down
2 changes: 1 addition & 1 deletion docs/users/settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ Then scroll down near to the bottom and click "Extension options" to open the di

The Unified CRM Chrome extension comes bundled with a number of CRM adapters that are ready-to-use. Developers and users alike can use advanced settings to load another third-party or alternative adapter.

To load a custom adapter, enter in the URL to the publicly accessible manifest.json file into the "Custom CRM config url" field.
To load a custom adapter, enter in the URL to the publicly accessible manifest.json file into the "Custom CRM manifest url" field.

<figure markdown>
![Custom CRM adapter](../img/custom-adapter.png){ style="max-width:400px" }
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rc-unified-crm-extension-server",
"version": "1.0.8",
"version": "1.0.9",
"description": "RingCentral Unified CRM Extension",
"main": "index.js",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion src/adapters/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -801,5 +801,5 @@
}
}
},
"version": "1.0.8"
"version": "1.0.9"
}
8 changes: 4 additions & 4 deletions src/adapters/testCRM/manifest.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"serverUrl": "https://xxxxx.ngrok.io",
"serverUrl": "https://xxxx.ngrok.app",
"redirectUri": "https://ringcentral.github.io/ringcentral-embeddable/redirect.html",
"author": {
"name": "Test Developer",
"websiteUrl": ""
},
"platforms": {
"testCRM": {
"logoUrl": "https://raw.githubusercontent.com/ringcentral/rc-unified-crm-extension/main/docs/img/CRMLogos/Pipedrive_logo.png",
"logoUrl": "https://avatars.githubusercontent.com/u/6549285?s=200&v=4",
"documentationUrl": "https://ringcentral.github.io/rc-unified-crm-extension",
"releaseNotesUrl": "https://ringcentral.github.io/rc-unified-crm-extension/release-notes/",
"getSupportUrl": "https://community.ringcentral.com/topic/new?fid=22",
"writeReviewUrl": "https://chromewebstore.google.com/detail/ringcentral-crm-extension/kkhkjhafgdlihndcbnebljipgkandkhh/reviews",
"urlIdentifier": "*developers.ringcentral.com*",
"urlIdentifier": "*.labs.ringcentral.com/*",
"name": "testCRM",
"displayName": "Test CRM",
"requestConfig": {
Expand Down Expand Up @@ -94,5 +94,5 @@
}
}
},
"version": "1.0.8"
"version": "1.0.9"
}
3 changes: 2 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ app.get('/is-alive', (req, res) => {
res.send(`OK`);
});
app.get('/serverVersionInfo', (req, res) => {
res.send({ version: process.env.VERSION });
const defaultCrmManifest = require('./adapters/manifest.json');
res.send({ version: defaultCrmManifest.version });
});

// Unique: Pipedrive
Expand Down
16 changes: 16 additions & 0 deletions src/releaseNotes.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
{
"1.0.9": {
"global": [
{
"type": "New",
"description": "- Call history page now has a search bar with filters"
},
{
"type": "New",
"description": "- Contact pop settings now support both inbound and outbound calls on different timings"
},
{
"type": "New",
"description": "- RingCentral team message is added as a new tab (might get delayed to show up)"
}
]
},
"1.0.8": {
"global": [
{
Expand Down

0 comments on commit 0207e41

Please sign in to comment.