From 1cdef424c916c8fc56cc83f16699868a2b9c5910 Mon Sep 17 00:00:00 2001 From: Joe Fiorini Date: Mon, 12 Jan 2015 22:04:04 -0500 Subject: [PATCH] Add 1.1.0 release to notes --- build/Main.js | 2 +- src/Partials/Releases.elm | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/build/Main.js b/build/Main.js index 1ad7c4e..fd679e0 100644 --- a/build/Main.js +++ b/build/Main.js @@ -16340,7 +16340,7 @@ Elm.Partials.Releases.make = function (_elm) { _P = _N.Ports.make(_elm), $moduleName = "Partials.Releases", $Markdown = Elm.Markdown.make(_elm); - var view = $Markdown.toHtml("\n\n## What\'s New\n\n### [1.0.0](https://github.com/joefiorini/flittal/releases/1.0.0)\n\nInitial release with ability to create a basic flow chart with rectangular shapes. Boxes can be manipulated in a variety of ways: move, resize, change their text, etc. See the Help link in the header for instructions and more information.\n\n#### Coming Soon\n\n- Undo\n- Give boards a title\n\n"); + var view = $Markdown.toHtml("\n\n## What\'s New\n\n### [1.1.0](https://github.com/joefiorini/flittal/releases/1.1.0)\n\nSecond release brings Undo/Redo functionality. Press `u` to undo an action and `ctrl+r` to redo it. I also fixed some bugs related to deleting multiple selections at once, and a bug around disconnecting boxes. I also added this \"What\'s New\" sidebar so you can keep track of recent changes.\n\n#### Coming Soon\n\n- Titles for boards\n\n### [1.0.0](https://github.com/joefiorini/flittal/releases/1.0.0)\n\nInitial release with ability to create a basic flow chart with rectangular shapes. Boxes can be manipulated in a variety of ways: move, resize, change their text, etc. See the Help link in the header for instructions and more information.\n\n#### Coming Soon\n\n- Undo\n- Give boards a title\n\n"); _elm.Partials.Releases.values = {_op: _op ,view: view}; return _elm.Partials.Releases.values; diff --git a/src/Partials/Releases.elm b/src/Partials/Releases.elm index 22f3e64..2b64b9e 100644 --- a/src/Partials/Releases.elm +++ b/src/Partials/Releases.elm @@ -7,6 +7,14 @@ view = ## What's New +### [1.1.0](https://github.com/joefiorini/flittal/releases/1.1.0) + +Second release brings Undo/Redo functionality. Press `u` to undo an action and `ctrl+r` to redo it. I also fixed some bugs related to deleting multiple selections at once, and a bug around disconnecting boxes. I also added this \"What's New\" sidebar so you can keep track of recent changes. + +#### Coming Soon + +- Titles for boards + ### [1.0.0](https://github.com/joefiorini/flittal/releases/1.0.0) Initial release with ability to create a basic flow chart with rectangular shapes. Boxes can be manipulated in a variety of ways: move, resize, change their text, etc. See the Help link in the header for instructions and more information.