eviltrout / kawaii

Kawaii is like a web frontend to script/console for your Rails apps, with nicely formatted output

commit  cb35980be33abf84e95d3faf1d21172d8948c1a7
tree    217f1ec83622f97ebeeefa9860830641269b1a1f
parent  51d3ad9101c51734b0d9a4a7bf1d2d2d1a3c863e
kawaii / CHANGELOG
100644 32 lines (24 sloc) 1.455 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
What's new in Kawaii?
 
November 7, 2008:
- Fixed: bug that prevented the 'Save Snippet' button from appearing on the initial tab
- Added ability to store snippets locally in an ActiveRecord model (KawaiiSnippet)
 
August 11, 2008:
 
- Client-side pagination is in place for the datatable, so you can return many results.
- Keyboard Shortcut: Ctrl-Enter to execute a query
- Strings are formatted better.
- Fixed: mysql defined prematurely (thanks http://github.com/oculardisaster)
 
August 5, 2008:
 
- Fixed bug with proxy queries not being rendered correctly
   e.g: User.find_by_name('robin').addresses didn't work before
- Added support for rendering Arrays of Hashes
- Added support for typing in SELECT SQL queries directly in the console and getting nice formatting!
   e.g: select * from users where name = 'robin'
   
   Kawaii does this by checking if the first thing you type in is 'select' with a 'from' later on.
   I don't think this should cause any collisions with actual ruby code, but let me know!
 
July 29, 2008:
 
- Moved around all sorts of files so that you can update Kawaii easier in the future. See README for upgrading instructions.
- Configuration is now in a YAML file
- Note about Prototype.js being required in the README
- If your YAML doesn't have the snippets enabled option, it doesn't barf if you don't have the aws-s3 gem installed.
- Added display support for Hash
- Added empty array fix (thanks http://github.com/wwood)