Isso v0.8 Release Notes

Release Date: 2014-03-28 // about 10 years ago
    • ๐Ÿšš replace <textarea> with <div contentedtiable="true"> to remove the sluggish auto-resize on input feature. If you use a custom CSS, replace textarea with .textarea and also set white-space: pre.

    • โœ‚ remove superscript extension from Markdown defaults as it may lead to unexpected behavior for certain smileys such as "". To enable the extension, add

      [markup] options = superscript allowed-elements = sup

    to your configuration.

    • comment count requests are now bundled into a single POST request, but the old API is still there (deprecated though).

    • store session-key in database (once generated on database creation). That means links to activate, edit or delete comments are now always valid even when you restart Isso.

    Currently statically set session keys in [general] are automatically migrated into the database on startup and you will get a notice that you can remove this option.

    • ๐Ÿ›  fix undefined timestamp when client time differs for more than 1 second. The human-readable "time ago" deltas have been refined to match Moment.js_ behavior.

    • avatar colors and background can now be customized:

      • data-isso-avatar-bg="#f0f0f0" sets the background color
      • data-isso-avatar-fg="#9abf88 #5698c4 #e279a3 #9163b6 ..." sets possible avatar colors (up to 8 colors are possible).
    • ๐Ÿ†• new [markup] section to customize Misaka's Markdown generation (strikethrough, superscript and autolink enabled by default). Furthermore, you can now allow certain HTML elemenets and attributes in the generated output, e.g. to enable images, set

      [markup] allowed-elements = img allowed-attributes = src

    Check docs/configuration/server.rst for more details.

    • replace requirejs-domready with a (self-made) HTML5 idiom, #51

    ๐Ÿ“„ .. _Moment.js: http://momentjs.com/docs/#/displaying/fromnow/