All Versions
10
Latest Version
Avg Release Cycle
14 days
Latest Release
2943 days ago

Changelog History

  • v0.9.0 Changes

    March 29, 2016

    ๐Ÿ”„ Changes

    • #60 - Created a config service. Fairly minimal at the moment
    • #5 - Implemented new user registration
    • โšก๏ธ Updated to go-commonmark 0.25.2
    • ๐Ÿ›  Some minor bug fixes
  • v0.8.1 Changes

    March 20, 2016

    ๐Ÿ›  Fixes

    • ๐Ÿ›  Fixed a few JS memory leaks in the frontend
    • ๐Ÿ›  Fix for #55: Clear session cookie on expiration
    • A few layout tweaks
    • ๐Ÿ›  Some minor bug fixes
  • v0.8.0 Changes

    March 07, 2016

    ๐Ÿ”„ Changes

    • ๐Ÿ”Œ #52 - the editor preview pane now supports plugins
    • #43 - A 'file download' link button has been added to the editor
    • ๐Ÿ”Œ #42 - [Plugin API changes] A plugin select element has been added to the editor. Plugins can now provide a 'helper' dialog to insert a plugin div tag into a wiki page. This has required a few changes to the Plugin API.
  • v0.7.0 Changes

    February 24, 2016

    ๐Ÿ”„ Changes

    • [Major Change] Configuration has been completely reworked. Rather than each service having its own config.ini file, there is now ONE config file, residing in wikifeat/config, along with a wikifeat-config executable which loads the configuration into etcd. Wikifeat services now get most of their configuration from etcd.
    • [Major Change] Certain service instance-specific parameters (node name, port#, etc.) are now set via the command line, rather than the config. This should make wikifeat config/startup easier to 'script'.
    • ๐Ÿ”Œ [Plugin API change] - A bug in the plugin system necessitated a small API change. A plugin's start() function now is required to take a single parameter, which is a jquery $.Deferred object. The plugin must resolve this deferred object when it has completed its initialization. Wikifeat really needs to know a plugin is ready to be used before it tries to use it :)
    • ๐Ÿ›  Fix for #46: moment.js deprecation warning
    • ๐Ÿ›  Fix for #49: scroll to top of wiki page on load
  • v0.6.1 Changes

    February 09, 2016

    ๐Ÿ› Bug fixes:

    • A bug related to session timeouts in the auth service (very annoying)
    • ๐Ÿ’ป #48 User management UI bug.
  • v0.6.0 Changes

    February 07, 2016

    ๐Ÿ”„ Changes:

    • [Major Change]: A New Authentication service has been created. Sessions are now managed by the auth service, rather than delegating everything to CouchDB's session management functions. Authorization still makes use of CouchDB's role based per-database access features.
    • ๐Ÿšš [API change] Login and logout functions have been removed from the user service (moved to the auth service)
    • The new markdown editor has now been integrated into comments (the wmd editor is now fully excised)
    • ๐Ÿ›  Fixed a timestamp bug with comments
    • ๐Ÿ”„ Changed the executable names in the build. auth, wikis, users, notifications, frontend are now wikifeat-auth, wikifeat-wikis, wikifeat-users, wikifeat-notifications, and wikifeat-frontend. This makes it a little easier to identify wikifeat processes :)
    • #45 Wiki toolbar now hidden for guest users
    • ๐Ÿ›  Several minor fixes
  • v0.5.0 Changes

    January 24, 2016

    ๐Ÿ”„ Changes:

    • ๐Ÿ‘€ #6 Created a new editor for wikifeat (see Markette)
      • Editor has link and image insert dialogs
    • โ†” Integrated go-commonmark 0.24.1 and commonmark.js 0.24
    • [API] Minor addition. Added a Query parameter to /wikis/{wiki-id}/files. Adding ?type=image to the query string will return a list of image files belonging to the specified wiki (the default is to return a list of all files).
      • DB Update : Added a new query/view to the wiki ddoc in couchdb. There is an update script in scripts/db_update that will update your wiki databases.
  • v0.4.0-alpha Changes

    January 05, 2016

    ๐Ÿ”„ Changes:

    • ๐Ÿ‘ #39 - Support for internal links. Internal links to other wiki pages are now supported (i.e., will no longer refresh the page) if the links are in the form /wikis// note these are ids (uuids), not slugs. A new editor is planned to make inserting these internal links easier. You should probably just ignore this feature until then :)
    • โšก๏ธ #20 - Basic search for users in the admin user management menu is now supported. There is a new script in scripts/db_update that must be run to enable this.
    • โšก๏ธ Updated the markdown parser to Commonmark 0.23.0 (go-commonmark and commonmark.js)
    • ๐Ÿ”จ Much refactoring and bug fixing.

    Note: The index.html file was previously buried in the frontend/web_app directory structure. This was inconvenient as this file would need to be edited if you wanted to apply some customizations (logo, meta tags, etc.). This has been moved up to the frontend/ folder, in the form of an index.html.template file. This will need to be copied to index.html (in the same directory), then you can make edits to index.html. The config.py script performs this copy operation for you if you are doing a fresh install.

  • v0.3.0-alpha Changes

    December 15, 2015

    ๐Ÿ”„ Changes:

    Important : There have been API changes in this release (mostly cleanup of some inconsistent field names). There is a db_update script in scripts/db_update to apply the changes to the database.

    • #31 A new set of setup/install scripts have been written (in Python instead of bash script)
    • ๐Ÿ›  #38 Fixed: homePageId not being saved to wiki model on creation
    • ๐Ÿ›  #37 Fixed: Can't back out of web application
    • 0๏ธโƒฃ #36 Created a new default view if no home page is specified in the frontend config.ini
    • #32 Markdown editor box no longer resets when in preview mode
    • #34 Minor API inconsistencies cleaned up
  • v0.2.1-alpha Changes

    November 26, 2015

    ๐Ÿ”„ Changes:

    • ๐Ÿ› Bug fix: The web app deals much more nicely with the browser back button now.
    • ๐Ÿ› Bug fix: Guests should now see correct download links in the File manager view
    • ๐Ÿšš The 'View Raw' button has now been moved under the 'Page Tools' drop-down menu

    No database changes.