Skip to content

Commit

Permalink
Merge branch 'release/0.1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
agershun committed May 3, 2015
2 parents 2bdd72f + 1546ecb commit d38cade
Show file tree
Hide file tree
Showing 47 changed files with 2,831 additions and 542 deletions.
2 changes: 1 addition & 1 deletion .bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "alasql",
"description":"AlaSQL - JavaScript SQL database library",
"version": "0.0.51",
"version": "0.1.0",
"license": "MIT",
"keywords": [
"sql",
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

### 0.1.0 (aka 0.0.52) "Venice" (02.05.2015 - 03.05.2015)
* Added INFORMATION_SCHEMA from variable
* Fixed localstorage dropTable with AUTOCOMMIT OFF
* STD() function added, STDEV(),STEDEVP(),VAR(),VARP()
* DISTINCT and ALL with custom aggregators (like STD(DISTINCT a))
* UNION problem fixed
* IE9 - save plain text and XLX()

### 0.0.51 "Rimini" (23.04.2015 - 02.05.2015)
* alasql.options.modifier flag added
* alasql.options.columnlookup flag added
Expand Down
22 changes: 20 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# AlaSQL.js - JavaScript SQL database library with support of localStorage, IndexedDB, and Excel

Version: 0.0.51 "Rimini" Date: May 2, 2015 [Change log](CHANGELOG.md), [Release plan](RELEASES.md)
Version: 0.1.0 (aka 0.0.52) "Venice" Date: May 3, 2015 [Change log](CHANGELOG.md), [Release plan](RELEASES.md)

AlaSQL - '[à la SQL](http://en.wiktionary.org/wiki/%C3%A0_la)' - is a lightweight JavaScript SQL database designed to work in browser, Node.js, and Apache Cordova. It supports traditional SQL with some NoSQL functionality. Current version of AlaSQL can work in memory and use file, IndexedDB, and localStorage as a persistent storage.

Expand Down Expand Up @@ -29,7 +29,6 @@ Please use:
* [AlaSQL User Manual](http://www.slideshare.net/AndreyGershun/alasql-manual-141220-1)
* [AlaSQL Coockbok](https://github.com/agershun/alasql/wiki/Data-manipulation) - Q&A, examples
* [StackOverflow AlaSQL Q&A](http://stackoverflow.com/questions/tagged/alasql)
* [AlaSQL Issues](https://github.com/agershun/alasql/issues)

## Why AlaSQL?

Expand All @@ -50,6 +49,25 @@ Check AlaSQL vs other JavaScript SQL databases and data processing libraries:

## What is new?

### Version upgrade from 0.0.51 to 0.1.0

AlaSQL now is 6 month old and it can change minor release number from 0.0 to 0.1.

As we decided earlier, we will change version number to 0.1 after cleaning some
known bugs and problems (including [UNION CORRESPONDING](https://github.com/agershun/alasql/issues/75) issue and [IE9 file saving](https://github.com/agershun/alasql/issues/73)).

The plans and priorities for development from version 0.1 to 0.2 will be:
* Wiki documentation
* Fixing bugs and clean the code
* Add graph- and document- database paradigm functionality
* Prepare to convert AlaSQL to modular structure (AlaSQL2)

Other areas of future improvements (please add and vote for new features on [Feathub](http://feathub.com/agershun/alasql)):
* Better Apache Cordova and other mobile frameworks support
* Improve export to XLS and XLSX (adding colors and LibreOffice support)
* Support key-value external storages and NoSQL databases
* Add some missing SQL functionality (constraints, foreign keys, etc.)

### AlaSQL export to Excel with colors

Now AlaSQL can export data to XLS format with coloring cells
Expand Down
593 changes: 433 additions & 160 deletions alasql.js

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions console/alasql.min.js

Large diffs are not rendered by default.

593 changes: 433 additions & 160 deletions dist/alasql.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/alasql.js.map

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions dist/alasql.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions lib/base64/base64.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit d38cade

Please sign in to comment.