Skip to content

Commit dfafb10

Browse files
committed
something
2 parents cca8a7f + b7eb835 commit dfafb10

24 files changed

+794
-554
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
# Changelog
22

3+
### 0.0.43 "The Wall" (25.03.2015 - 01.04.2015)
4+
* Created "develop" branch for git-flow
5+
* Fixed GREATEST and LEAST() bugs
6+
* Added flags {sourcefilename: "aaa", range:"B4"} to INTO XLSX() function
7+
* CREATE TABLE one(two,three) - without coulmn types
38

4-
### 0.0.42 "Robin" (17.03.2015 - ...03.2015)
9+
### 0.0.42 "Robin" (17.03.2015 - 25.03.2015)
510
* MAX() and MIN() math functions renamed to GREATEST() and LEAST()
611
* ORDER BY 2,1
712
* :: casting operator

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2014 Andrey Gershun ([email protected])
3+
Copyright (c) 2014-2015 Andrey Gershun ([email protected])
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

PEOPLE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ In English:
66
* ValueType [Pure JavaScript In-Memory Database](http://valuetype.wordpress.com/2014/11/07/pure-javascript-in-memory-database/)
77
* SlideShare [Alasql.js fast JavaScript in-memory SQL database](http://www.slideshare.net/AndreyGershun/alasqljsfast-javascript-inmemory-sql-database)
88
* SlideShare [SQL and NoSQL in Alasql database](http://www.slideshare.net/AndreyGershun/sql-and-nosql-in-alasql)
9+
* Glauco Custódio [Local Storage with AlaSQL in Cordova/Ionic Framework](http://blog.glaucocustodio.com/2015/03/30/local-storage-with-alasql-in-cordovaionic-framework/)
910

1011

1112
In Chinese

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Alasql.js - JavaScript SQL database library with support of localStorage, IndexedDB, and Excel
22

3-
Version: 0.0.42 "Robin" Date: March 25, 2015 [Change log](CHANGELOG.md), [Release plan](RELEASES.md)
3+
Version: 0.0.43 "The Wall" Date: April 1, 2015 [Change log](CHANGELOG.md), [Release plan](RELEASES.md)
44

55
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.
66

@@ -678,14 +678,13 @@ Alasql includess [FileSaver.js](https://github.com/eligrey/FileSaver.js/) librar
678678

679679
### Contributors
680680

681-
* Andrey Gershun
682-
* Mathias Rangel Wulff
683-
681+
* [Andrey Gershun](http://github.com/agershun)
682+
* [Mathias Rangel Wulff](https://github.com/mathiasrw)
683+
* [Aubert Grégoire](https://github.com/gregaubert)
684684

685685
### Credits
686686

687-
Many thanks to Zach Carter for [Jison](http://zaach.github.io/jison/) parser generator, to the author of FileSaver.js,
688-
Andrew Kent for his [SQL Parser](https://github.com/forward/sql-parser),
687+
Many thanks to Zach Carter for [Jison](http://zaach.github.io/jison/) parser generator, to the author of FileSaver.js, Andrew Kent for his [SQL Parser](https://github.com/forward/sql-parser),
689688
authors of [XLSX](https://github.com/SheetJS/js-xlsx) library,
690689
and other people for useful tools, which make our work much easier.
691690

alasql.js

Lines changed: 227 additions & 176 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

alasql.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

alasql.min.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

console/alasql.min.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/alasql.js

Lines changed: 227 additions & 176 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/alasql.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)