Skip to content

Commit

Permalink
release note update
Browse files Browse the repository at this point in the history
  • Loading branch information
DaKingKong committed Jul 5, 2024
1 parent ee9cc63 commit 1d4d2c3
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 4 deletions.
9 changes: 5 additions & 4 deletions docs/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,18 @@
## 1.0.0

- New: Auto log with conflict resolver
- New: SMS messages are now logged as in conversations per day
- New: Manual refersh contact info with button
- New: Audio volume controls
- Better: SMS messages are now logged as in conversations per day
- Better: New UIs
- Fix: View fax
- Fix: Fax logging
- Fix: Fax view and logging
- Fix: Open contact page from call history now only opens selected one if there are multiple matched contacts
- Fix: Copy meeting info
- Remove: Auto log with countdown

Video demo: https://youtu.be/x1GDk0ncm9A
New features video demo:

<iframe src="https://www.youtube.com/embed/x1GDk0ncm9A" width="720" height="480" frameBorder="0" class="giphy-embed" allowFullScreen></iframe>

## 0.8.7

Expand Down
5 changes: 5 additions & 0 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ const jwt = require('./lib/jwt');
const logCore = require('./core/log');
const contactCore = require('./core/contact');
const authCore = require('./core/auth');
const releaseNotes = require('./releaseNotes.json');
const axios = require('axios');
const analytics = require('./lib/analytics');
let packageJson = null;
Expand Down Expand Up @@ -44,6 +45,10 @@ app.use(cors({
methods: ['GET', 'POST', 'PATCH']
}));

app.get('/releaseNotes', async function (req, res) {
res.json(releaseNotes);
})

app.get('/crmManifest', (req, res) => {
try {
if (!!!req.query.platformName) {
Expand Down
30 changes: 30 additions & 0 deletions src/releaseNotes.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"1.0.0": {
"global": [
{
"type": "New",
"description": "- Auto log with conflict resolver"
},
{
"type": "New",
"description": "- Manual refersh contact info with button"
},
{
"type": "New",
"description": "- Audio volume controls"
},
{
"type": "Better",
"description": "- SMS messages are now logged as in conversations per day"
},
{
"type": "Better",
"description": "- New UIs"
},
{
"type": "Full list and video demo",
"description": "https://ringcentral.github.io/rc-unified-crm-extension/release-notes/"
}
]
}
}

0 comments on commit 1d4d2c3

Please sign in to comment.