From 9250e7786295c6ed3858a70c114190f4911fbaa8 Mon Sep 17 00:00:00 2001 From: Laurent Cozic Date: Mon, 13 May 2019 23:23:42 +0100 Subject: [PATCH] Added link to CLI changelog --- README.md | 3 ++- Tools/build-website.js | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b24851ca1..ebcf4252f 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,8 @@ The Web Clipper is a browser extension that allows you to save web pages and scr - About - - [Changelog](https://github.com/laurent22/joplin/blob/master/readme/changelog.md) + - [Changelog (Desktop App)](https://github.com/laurent22/joplin/blob/master/readme/changelog.md) + - [Changelog (CLI App)](https://github.com/laurent22/joplin/blob/master/readme/changelog_cli.md) - [Stats](https://github.com/laurent22/joplin/blob/master/readme/stats.md) - [Donate](https://github.com/laurent22/joplin/blob/master/readme/donate.md) diff --git a/Tools/build-website.js b/Tools/build-website.js index 83e4ec890..7daa31181 100644 --- a/Tools/build-website.js +++ b/Tools/build-website.js @@ -482,7 +482,8 @@ async function main() { renderMdToHtml(makeHomePageMd(), rootDir + '/docs/index.html', {}); - renderFileToHtml(rootDir + '/readme/changelog.md', rootDir + '/docs/changelog/index.html', { title: 'Changelog' }); + renderFileToHtml(rootDir + '/readme/changelog.md', rootDir + '/docs/changelog/index.html', { title: 'Changelog (Desktop App)' }); + renderFileToHtml(rootDir + '/readme/changelog_cli.md', rootDir + '/docs/changelog_cli/index.html', { title: 'Changelog (CLI App)' }); renderFileToHtml(rootDir + '/readme/clipper.md', rootDir + '/docs/clipper/index.html', { title: 'Web Clipper' }); renderFileToHtml(rootDir + '/readme/debugging.md', rootDir + '/docs/debugging/index.html', { title: 'Debugging' }); renderFileToHtml(rootDir + '/readme/desktop.md', rootDir + '/docs/desktop/index.html', { title: 'Desktop Application' });