All Versions
9
Latest Version
Avg Release Cycle
65 days
Latest Release
3421 days ago

Changelog History

  • v0.2.3

    December 08, 2014
  • v0.2.2 Changes

    August 14, 2013

    ๐Ÿ†• New Features

    • โž• Added autogrow support, so the editor will get taller as you type (ticket #132) thanks @Gankro
    • 0๏ธโƒฃ You can now set the button bar to "show" (always on), "hide" (never show), and "auto" (default) (ticket #251) thanks @Gankro
    • ๐Ÿ‘ exportFile now supports a json export type (ticket #237) thanks @Gankro

    โšก๏ธ Updates and Major Bug Fixes

  • v0.2.1 Changes

    July 07, 2013

    ๐Ÿ†• New Features

    • There is now an autosave event so you can tell the difference between manual save()s and autosaves. It'll also only fire when the content has been changed since the last save. (ticket #233) thanks @Gankro
    • ๐Ÿ’ป There's now a focus() method which you can use to easily focus on the editor. It handles cross browser differences as well as figuring out what to focus on (editor or previewer). (ticket #223)
    • If you wanted to hide / disable the fullscreen and/or preview toggle buttons, now you can (ticket #214) thanks @dobozysaurus
    • There is now a reflow event you can hook into to know when reflow() has been called. (ticket #210)
    • You can now customize the text of the tooltips that show up when hovering the icons like Preview, Edit, and Fullscreen. Useful for i18n (ticket #156) thanks @cmtt
    • โฌ†๏ธ The default Markdown parser, Marked, was upgraded giving you support for GitHub flavored tables, strikethroughs and breaks. (ticket #197)
    • ๐Ÿ”€ Using the textarea option, you can now sync a textarea with the content of the editor. Useful for when you don't want to setup an AJAX form but want to use EE as a textarea replacement. (ticket #107) (ticket #140) (ticket #212)
    • ๐Ÿ‘ Firefox now uses native fullscreen, and EpicEditor also support W3C fullscreen standard (ticket #22) thanks @nkovacs

    โšก๏ธ Updates and Major Bug Fixes

    • ๐Ÿ›  Fix for Firefox returning  s in exported file contents in exportFile and getFiles. (ticket #204) thanks to @lamplightdev for the quick patch and @Gankro for the refactoring of getFiles and exportFile.
    • Theme paths with http or https now will ignore the basePath option so you link some themes to external CSS. (ticket #196)
    • ๐Ÿ›  Fixed preview content not being updated when autoSave is false. (ticket #195)
    • ๐Ÿ›  Fixed scrolling the whole web page when you clicked a hash link inside of EpicEditor in IE9 (ticket #165)
    • Cursor position is no longer lost when switching from preview to edit or vice versa in Firefox (ticket #139)
    • ๐Ÿ›  Fixed bug where, after doing the preview toggle keyboard shortcut in IE9, you'd lose focus on the editor (ticket #134)
    • ๐Ÿ›  Fixed IE9 fullscreen shortcut is triggering menu by changing the shortcut on windows to ctrl+alt+f (ticket #82)

    API Changes

    ๐Ÿš€ The only API change for this release is that the save event will no longer fire for autosaves. If you want to catch both you will need to listen for the autosave event as well as the save event now. Also note that save will fire for implicit manual saves such as open() or importFile().

    โšก๏ธ Behind-the-scenes Updates

    • โž• Added .editorconfig file to make it easy for developers to follow code style. (ticket #220) thanks @hongymagic
    • โž• Added jake watch which will automatically rebuild all the editor files if you modify src/* or if you edit the README.md, it'll run jake docs for you. (326539a)
  • v0.2.1.1 Changes

    July 07, 2013

    ๐Ÿš‘ Hotfixes

    • ๐Ÿ›  Fix for ร‚ for every space at reload (ticket #248)
  • v0.2.0 Changes

    July 07, 2013

    ๐Ÿ†• New Features

    • Complete Fullscreen API set. enterFullscreen() and exitFullscreen() methods and fullscreenenter and fullscreenexit events have been added (ticket #156) (ticket #146)
    • โž• Added boolean useNativeFullscreen option (ticket #146)
    • โž• Added is() method to get the state of the editor (ticket #88)
    • โž• Added reflow(['width'|'height']) method to automatically refit the editor in the parent (ticket #160)

    โšก๏ธ Updates and Major Bug Fixes

    • ๐Ÿ›  Fixed character encoding bug causing strange characters over the wire in Chrome (ticket #184)
    • ๐Ÿ›  Fixed Firefox losing space characters (ticket #178)
    • โœ‚ Removed alt+o key command because it was causing problems on non-western keyboards and replaced with a toggling alt+p. (ticket #144) thanks @jeffhill
    • Preview state is now retained when loading after unloading (ticket #161)
  • v0.1.1 Changes

    July 07, 2013

    ๐Ÿ†• New Features

    • getFiles() has been added allowing you to easily get all or one files in localStorage (ticket #85)
    • A boolean clientSideStorage option has been added. Setting it to false will make EpicEditor not save to localStorage (ticket #141)
    • ๐Ÿ‘ EpicEditor now supports fluid width containers and will resize horizontally on the fly. (ticket #129)

    โšก๏ธ Updates and Major Bug Fixes

    • ๐Ÿ›  Fix for EpicEditor not loading in IE9 when run on the local file system (ticket #137)
    • ๐Ÿ›  Fix for exportFile() and file.content to export spaces as spaces and not   characters (ticket #136)
    • ๐Ÿ›  Fix for update event firing before content was actually updated thus showing old content (ticket #135)
    • ๐Ÿ›  Fix for key shortcuts sometimes getting stuck and always firing and preventing you from typing certain characters (ticket #133) (ticket #127)
    • ๐Ÿ›  Fix for when clicking on the preview/edit buttons key shortcuts wouldn't work anymore until the editor was clicked again (ticket #125)
    • ๐Ÿ›  Fix for not being able to do fullscreen, close, fullscreen back to back in Firefox (ticket #121)
    • ๐Ÿ›  Fix for default file name becoming a stringified element object if there was no ID on the selected element (ticket #102)
    • ๐Ÿ›  Fixed anchor links opening in new tabs (ticket #96)
    • ๐Ÿ›  Fix for 2 <link> tags being loaded into the previewer iframe on load (ticket #78)
    • Safari now uses faux fullscreen (ticket #6)
  • v0.1.1.1 Changes

    July 07, 2013

    ๐Ÿš‘ Hotfixes

    • ๐Ÿ›  Fix for Firefox parsing HTML entities as literal HTML in the editor. (ticket #183)
  • v0.1.0 Changes

    July 07, 2013

    API Changes

    • import is now importFile and has more functionality.
    • exportHTML is now exportFile and has more functionality.
    • get is now getElement with more selectors and slightly modified existing ones.
    • ๐Ÿšš options is removed and moved as an object into the EpicEdior contructor.
    • โž• Added version to EpicEditor object to return the current EE version (i.e. EpicEditor.version)

    ๐Ÿ†• New Features

    • ๐Ÿ’ป Fullscreen in unsupported browsers (Firefox and IE9).
    • ๐Ÿ’พ Save via ctrl/cmd+s.
    • โšก๏ธ Full CRUD event support (create, read, update, and remove events to hook into with on()).
    • ๐Ÿ“œ Use any parser with the new parser option. Just return HTML from a function.

    โšก๏ธ Updates and Major Bug Fixes

    • EpicEditor gets a logo from @sebnitu.
    • ๐Ÿ‘ Complete IE9 support.
    • Theming has been completely redone. Instead of everything living in one document and conflicting with each other it will live in these multiple documents: base, editor, and preview.
    • ๐Ÿ†• New and much better Markdown parser Marked by @chjj. (EpicEditor's own README actually works in EpicEditor finally).
    • ๐Ÿ†• New icons with preview/edit specific icons (thanks @sebnitu).
    • ๐Ÿ‘ Better docs (thanks again @sebnitu).
    • โšก๏ธ Updated GitHub theme to match their current theme.
    • ๐Ÿ‘ Better interval cleanup on unload()ing

    โšก๏ธ Behind-the-scenes Updates

    • โœ… Full test coverage on every EpicEditor API method using foounit by @foobarfighter
    • ๐Ÿ“„ Docs are generated from the README
    • ๐Ÿ— Real builds from the /src directory
    • ๐Ÿ“œ Marked (Markdown parser) has been pulled out from the source and is a git submodule
  • v0.0.3 Changes

    July 07, 2013

    ๐Ÿš€ First public release of EpicEditor