forked from AccelerationNet/wp-db-table-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ReleaseNotes.txt
45 lines (34 loc) · 1.61 KB
/
ReleaseNotes.txt
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
33
34
35
36
37
38
39
40
41
42
43
44
45
Version: 1.5 - 2015-09-15
* replace update & insert call backs and actions with dbte_save
that passes an argument array instead of list of arguments.
should hopefully make upgrading easier (updated example).
This also allows the callback to set the "id" of the argument
array (should be passed by ref) in case of insert.
* ajax_data: option makes the grid pull data using ajax instead of
inlining it. This might make the page appear more responsive if
the query takes forever. You are probably better off improving
your query.
* when calling save ajax, pass all query arguments for the current
page. Also set default values along the way
Version: 1.4.2 - 2015-08-17
* bug fixes: new rows were not updating their id
* saving now submits the currently active cell if there is one
Version: 1.4.1 - 2015-06-19
* added some missing files for translation
Version: 1.4 - 2015-06-18
* nikomuse provided i18n support
Version: 1.3.2 - 2015-03-30
* introduce action `db_table_editor_init`, for other plugins
to use
Version: 1.3.1 - 2015-03-30
* Introduce PhpSqlParser and use it instead of my
half-implemented index scanning, for inserting the where clause
Version: 1.3 - 2015-02-18 10:30
!! API CHANGE
* `update_cb`, `delete_cb`, and `dbte_row_updated` all accept ID
arguments -- TODO: perhaps these should accept keyword arg
arrays, to make it handle upgrades more gracefully?
Version: 1.2.8 - 2015-02-04 10:30
* better docs
* better examples
* dbte_row_inserted, dbte_row_updated, dbte_row_deleted actions