diff --git a/docs/release-notes.md b/docs/release-notes.md index eccf4d72..1330b3d4 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -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: + + ## 0.8.7 diff --git a/src/index.js b/src/index.js index 3badf889..c6ab1231 100644 --- a/src/index.js +++ b/src/index.js @@ -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; @@ -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) { diff --git a/src/releaseNotes.json b/src/releaseNotes.json new file mode 100644 index 00000000..334a4235 --- /dev/null +++ b/src/releaseNotes.json @@ -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/" + } + ] + } +} \ No newline at end of file