diff --git a/.gitignore b/.gitignore index b5c96ef8..5d844852 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,5 @@ coverage node_modules dist out -.DS_Store \ No newline at end of file +.DS_Store +.wakatime-project \ No newline at end of file diff --git a/README.md b/README.md index 377c0954..dbbcbcd4 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ +![logo](screens/yarle-logo.png) # yarle: Yet Another Rope Ladder from Evernote @@ -18,11 +19,12 @@ A tool that converts enex note(s) into Markdown format in order to let you escap ## Installation - - [install Node.js](https://nodejs.org/en/download/). Please use Node 10.18.1 because of 3rd party dependencies rebuild problems. + 0. [Install Node.js](https://nodejs.org/en/download/). - - clone or download this repo - - npm i - - npm run build + 1. Clone or download this repo. + 2. Open a terminal and navigate to the root folder of the repo. + 3. Type `npm i`, it installs the dependencies. + 4. Type `npm run build` to build the package. ## Usage: @@ -61,6 +63,17 @@ Those markdown notes that contains external resources such pictures or files, ar ## Release notes +### Version 2.9.0 + +- NodeJs version limitation resolved. +- Feature requested in [Issue#39](https://github.com/akosbalasko/yarle/issues/39) implemented: the conversion returns the number of the failed notes if any. +- Logo added to readme. +- Previously if unit tests were executed in timezone differs from Western Europe, they were failed. It's fixed now. +- Bug reported in [Issue#39](https://github.com/akosbalasko/yarle/issues/39) fixed. +- Action added to test Yarle in different Node versions. + +Special thanks to [Rodrigo Vieira](https://github.com/rodbv) for the contribution! + ### Version 2.8.0 - New command-line argument introduced : `--outputFormat`. Its optional, one possible value is `ObsidianMD` that configures Yarle to generate internal file links and highlights in Obsidian-style. diff --git a/package.json b/package.json index 1a71b99f..1f8f7383 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "yarle-evernote-to-md", - "version": "2.8.0", + "version": "2.9.0", "description": "Yet Another Rope Ladder from Evernote", "keywords": [ "evernote", diff --git a/screens/yarle-logo.png b/screens/yarle-logo.png new file mode 100644 index 00000000..55cd88ae Binary files /dev/null and b/screens/yarle-logo.png differ