Skip to content

Change log

Mikael Luxwarp Carlsson edited this page Sep 2, 2019 · 12 revisions

v1.0.0

Fixes

  • Update of links to codeiolo.org instead of luxwarp.info.

Changes

  • Code is now styled with eslint and prettier.

Version: 0.2.2

Changes:

  • lociDB database folder is now saved at users default appData folder instead of the application root folder.
  • You can also decide you self where to store it and what name it should have. See wiki usage
  • Fix of some typos and styling.

Remember that you need to move your current table files from old location to the new one if you are changing the destination in your code.

I am sorry for this massive change but it is for the better in the long run!

Version 0.2.1

Changes:

  • All code is now styled as standardJS.
  • Updated links in files to my new website https://luxwarp.info.
  • Change of license to ISC instead of MIT.
  • Fix of some typos and comments.

v0.2.0

Added:

  • countRows() - This will return how many rows there is in a table. Returns false if no table exist or is empty.

Fix:

  • get() returns false if table dont exist or is empty.
  • getRows() returns false if no matching is found.
  • listTables() returns false if no tables are found.
  • dropRows() returns false if table dont exist.
  • dropTable() returns false if table dont exist.
  • dropAll() returns false if no tables exist.
  • Typo in readme.md.

v0.1.6

  • Fixed typo in readme.md.

v0.1.5

Fix:

  • Some minor changes in syntax.
  • Fix of typo in readme.md

v0.1.4

Added:

  • dropTable() - Lets you drop/delete a specific table if it exists.
  • dropRows() - Lets you drop/delete all rows in a table that matches a key and value.

Fix

  • Typo in readme.md
  • Added link to change log in readme.md.

v0.1.3

Bugfix:

  • Fixed typo in file readme.md

v0.1.2

Added:

  • getRows() function to get all rows in a table that matches a key and a value. See wiki