clevic 0.7.0 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +12 -999
- data/Manifest.txt +1 -0
- data/README.txt +13 -10
- data/Rakefile +4 -3
- data/TODO +28 -13
- data/bin/clevic +64 -11
- data/config/hoe.rb +1 -1
- data/lib/clevic/browser.rb +86 -116
- data/lib/clevic/cache_table.rb +14 -4
- data/lib/clevic/db_options.rb +13 -8
- data/lib/clevic/delegates.rb +3 -1
- data/lib/clevic/extensions.rb +16 -0
- data/lib/clevic/field.rb +13 -3
- data/lib/clevic/field_builder.rb +42 -0
- data/lib/clevic/model_builder.rb +285 -92
- data/lib/clevic/record.rb +45 -2
- data/lib/clevic/table_model.rb +137 -40
- data/lib/clevic/table_view.rb +345 -150
- data/lib/clevic/ui/browser.ui +18 -73
- data/lib/clevic/ui/browser_ui.rb +57 -99
- data/lib/clevic/ui/search_dialog_ui.rb +51 -50
- data/lib/clevic/version.rb +1 -1
- data/models/accounts_models.rb +21 -26
- data/models/minimal_models.rb +2 -0
- data/models/times_models.rb +78 -79
- data/models/times_sqlite_models.rb +8 -8
- data/models/values_models.rb +7 -6
- data/website/index.html +24 -27
- metadata +4 -3
data/History.txt
CHANGED
@@ -1,999 +1,12 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
tabs in that order. Group models under one Rake namespace.
|
14
|
-
|
15
|
-
2008-07-25 11:35 panic
|
16
|
-
|
17
|
-
* website/index.html, website/index.txt,
|
18
|
-
website/template.html.erb:
|
19
|
-
more documentation
|
20
|
-
|
21
|
-
2008-07-25 11:22 panic
|
22
|
-
|
23
|
-
* TODO:
|
24
|
-
rearrange TODO
|
25
|
-
|
26
|
-
2008-07-25 11:17 panic
|
27
|
-
|
28
|
-
* History.txt, Manifest.txt, README.txt, Rakefile, script/console:
|
29
|
-
update packaging
|
30
|
-
|
31
|
-
2008-07-24 21:09 panic
|
32
|
-
|
33
|
-
* accounts_models.rb, minimal_models.rb, models,
|
34
|
-
models/accounts_models.rb, models/minimal_models.rb,
|
35
|
-
models/times_models.rb, models/times_sqlite_models.rb,
|
36
|
-
models/values_models.rb, times_models.rb, times_sqlite_model.rb,
|
37
|
-
values_models.rb:
|
38
|
-
move model definition files to their own directory
|
39
|
-
|
40
|
-
2008-07-24 21:07 panic
|
41
|
-
|
42
|
-
* TODO, accounts_models.rb, times_models.rb, website/index.html:
|
43
|
-
notes and comments
|
44
|
-
|
45
|
-
2008-07-24 21:03 panic
|
46
|
-
|
47
|
-
* sql/accounts.sql, sql/times.sql:
|
48
|
-
remove panic
|
49
|
-
|
50
|
-
2008-07-24 21:00 panic
|
51
|
-
|
52
|
-
* Rakefile, accounts_models.rb, bin/clevic, lib/clevic.rb,
|
53
|
-
lib/clevic/browser.rb, lib/clevic/db_options.rb,
|
54
|
-
lib/clevic/item_delegate.rb, lib/clevic/record.rb,
|
55
|
-
lib/clevic/table_model.rb, minimal_models.rb, times_models.rb,
|
56
|
-
times_sqlite_model.rb, values_models.rb:
|
57
|
-
Inherit models from Clevic::Record. Allow for minimal model
|
58
|
-
definitions.
|
59
|
-
|
60
|
-
2008-07-24 19:03 panic
|
61
|
-
|
62
|
-
* TODO, accounts_models.rb, bin/clevic, lib/clevic/cache_table.rb,
|
63
|
-
lib/clevic/db_options.rb, lib/clevic/item_delegate.rb,
|
64
|
-
lib/clevic/table_model.rb, lib/clevic/table_view.rb,
|
65
|
-
times_models.rb, times_sqlite_model.rb:
|
66
|
-
make sure current record is saved when tab loses focus
|
67
|
-
|
68
|
-
2008-07-24 15:59 panic
|
69
|
-
|
70
|
-
* TODO, lib/clevic/field.rb, lib/clevic/table_view.rb:
|
71
|
-
don't allow filtering on virtual fields
|
72
|
-
|
73
|
-
2008-07-24 13:54 panic
|
74
|
-
|
75
|
-
* lib/clevic/extensions.rb, lib/clevic/model_builder.rb,
|
76
|
-
lib/clevic/table_model.rb, lib/clevic/ui/browser.ui:
|
77
|
-
UI and code tweaks
|
78
|
-
|
79
|
-
2008-07-24 13:38 panic
|
80
|
-
|
81
|
-
* TODO, accounts_models.rb, lib/clevic/field.rb,
|
82
|
-
lib/clevic/model_builder.rb, lib/clevic/table_model.rb,
|
83
|
-
times_models.rb, times_sqlite_model.rb:
|
84
|
-
Allow display of related fields as read-only. New read-only
|
85
|
-
attribute for fields. Distinct now default sorts by frequency.
|
86
|
-
All field types can now use a Proc for :display.
|
87
|
-
|
88
|
-
2008-07-24 11:35 panic
|
89
|
-
|
90
|
-
* accounts_models.rb, lib/clevic/field.rb,
|
91
|
-
lib/clevic/model_builder.rb, times_models.rb,
|
92
|
-
times_sqlite_model.rb:
|
93
|
-
fix some issue with display of relational fields
|
94
|
-
|
95
|
-
2008-07-24 10:50 panic
|
96
|
-
|
97
|
-
* lib/clevic/delegates.rb:
|
98
|
-
check before doing true/false gsub
|
99
|
-
|
100
|
-
2008-07-24 10:44 panic
|
101
|
-
|
102
|
-
* TODO, accounts_models.rb, lib/clevic/cache_table.rb,
|
103
|
-
lib/clevic/delegates.rb, lib/clevic/extensions.rb,
|
104
|
-
lib/clevic/field.rb, lib/clevic/model_builder.rb,
|
105
|
-
lib/clevic/table_model.rb, lib/clevic/version.rb,
|
106
|
-
times_models.rb, times_sqlite_model.rb:
|
107
|
-
allow for blocks to format relational delegates
|
108
|
-
|
109
|
-
2008-07-23 09:46 panic
|
110
|
-
|
111
|
-
* Rakefile, TODO, accounts_models.rb, lib/clevic/db_options.rb,
|
112
|
-
times_models.rb, values_models.rb:
|
113
|
-
remove username. Do clobber list.
|
114
|
-
|
115
|
-
2008-07-21 18:12 panic
|
116
|
-
|
117
|
-
* TODO:
|
118
|
-
update todo
|
119
|
-
|
120
|
-
2008-07-17 18:41 panic
|
121
|
-
|
122
|
-
* Rakefile, TODO, bin/clevic, config/hoe.rb,
|
123
|
-
lib/clevic/cache_table.rb, lib/clevic/db_options.rb,
|
124
|
-
lib/clevic/table_model.rb, lib/clevic/version.rb:
|
125
|
-
fix search with sqlite
|
126
|
-
|
127
|
-
2008-07-17 16:50 panic
|
128
|
-
|
129
|
-
* TODO, lib/clevic/db_options.rb, lib/clevic/delegates.rb,
|
130
|
-
lib/clevic/field.rb, lib/clevic/item_delegate.rb, sql/times.sql,
|
131
|
-
sql/times_sqlite.sql, times_models.rb, times_sqlite_model.rb:
|
132
|
-
check that it works with sqlite
|
133
|
-
|
134
|
-
2008-07-17 11:15 panic
|
135
|
-
|
136
|
-
* accounts_models.rb:
|
137
|
-
really fix use of test database
|
138
|
-
|
139
|
-
2008-07-17 10:48 panic
|
140
|
-
|
141
|
-
* Manifest.txt:
|
142
|
-
add necessary generated files to Manifest
|
143
|
-
|
144
|
-
2008-07-07 20:42 panic
|
145
|
-
|
146
|
-
* Manifest.txt, website/javascripts/rounded_corners_lite.inc.js:
|
147
|
-
fix manifest
|
148
|
-
|
149
|
-
2008-07-07 20:39 panic
|
150
|
-
|
151
|
-
* INSTALL, Rakefile, accounts_models.rb, bin/clevic,
|
152
|
-
config/jamis.rb, lib/clevic.rb, lib/clevic/cache_table.rb,
|
153
|
-
lib/clevic/db_options.rb, lib/clevic/version.rb, template,
|
154
|
-
times_models.rb, values_models.rb:
|
155
|
-
new DbOptions class. Move jamis.rb into config.
|
156
|
-
|
157
|
-
2008-07-07 19:39 panic
|
158
|
-
|
159
|
-
* README.txt, Rakefile, accounts_models.rb, config, config/hoe.rb,
|
160
|
-
config/requirements.rb, lib/clevic/version.rb, script,
|
161
|
-
script/console, script/destroy, script/generate,
|
162
|
-
script/txt2html, tasks, tasks/website.rake, values_models.rb,
|
163
|
-
website, website/index.html, website/index.txt,
|
164
|
-
website/javascripts,
|
165
|
-
website/javascripts/rounded_corners_lite.inc.js,
|
166
|
-
website/screenshot.png, website/stylesheets,
|
167
|
-
website/stylesheets/screen.css, website/template.html.erb:
|
168
|
-
pull in rubigen scripts and things from another project
|
169
|
-
|
170
|
-
2008-07-05 20:53 panic
|
171
|
-
|
172
|
-
* README.txt:
|
173
|
-
update README slightly
|
174
|
-
|
175
|
-
2008-07-04 20:16 panic
|
176
|
-
|
177
|
-
* History.txt, Manifest.txt, README.txt, Rakefile, TODO,
|
178
|
-
bin/clevic, lib/clevic/db_options.rb,
|
179
|
-
lib/clevic/model_builder.rb, lib/clevic/version.rb, template,
|
180
|
-
template/jamis.rb:
|
181
|
-
improve docs and comments. Do gem dependencies.
|
182
|
-
|
183
|
-
2008-06-26 14:56 panic
|
184
|
-
|
185
|
-
* README.txt:
|
186
|
-
readme comments
|
187
|
-
|
188
|
-
2008-06-26 14:54 panic
|
189
|
-
|
190
|
-
* accounts_models.rb, times_models.rb:
|
191
|
-
comments for people looking at code
|
192
|
-
|
193
|
-
2008-06-26 14:47 panic
|
194
|
-
|
195
|
-
* bin/clevic, lib/clevic/db_options.rb, lib/clevic/delegates.rb,
|
196
|
-
lib/clevic/field.rb:
|
197
|
-
do verbose flag. Move some debugging output around. Start of fix
|
198
|
-
for float samples
|
199
|
-
|
200
|
-
2008-06-26 14:38 panic
|
201
|
-
|
202
|
-
* Manifest.txt, TODO, lib/clevic/browser.rb,
|
203
|
-
lib/clevic/search_dialog.rb, lib/clevic/ui/browser.ui,
|
204
|
-
lib/clevic/ui/icon.png, lib/clevic/ui/icons.qrc:
|
205
|
-
make use of icon for main window
|
206
|
-
|
207
|
-
2008-06-26 13:42 panic
|
208
|
-
|
209
|
-
* lib/clevic/browser.rb, lib/clevic/ui/browser.ui:
|
210
|
-
improve tables_tab
|
211
|
-
|
212
|
-
2008-06-26 12:36 panic
|
213
|
-
|
214
|
-
* TODO, accounts_models.rb, lib/clevic/delegates.rb,
|
215
|
-
lib/clevic/version.rb, times_models.rb:
|
216
|
-
sort distinct delegate options by frequency if specified
|
217
|
-
|
218
|
-
2008-06-23 19:56 panic
|
219
|
-
|
220
|
-
* Manifest.txt, TODO, lib/clevic/extensions.rb,
|
221
|
-
lib/clevic/field.rb, lib/clevic/search_dialog.rb,
|
222
|
-
lib/clevic/ui/browser.ui:
|
223
|
-
fix gem install and note some todos
|
224
|
-
|
225
|
-
2008-05-26 19:37 panic
|
226
|
-
|
227
|
-
* TODO, lib/clevic/table_view.rb:
|
228
|
-
fix multi-selection ctrl-del
|
229
|
-
|
230
|
-
2008-05-26 19:26 panic
|
231
|
-
|
232
|
-
* TODO, accounts_models.rb, lib/clevic/extensions.rb,
|
233
|
-
lib/clevic/field.rb, lib/clevic/table_model.rb,
|
234
|
-
lib/clevic/table_view.rb:
|
235
|
-
fix a silly typo
|
236
|
-
|
237
|
-
2008-05-24 19:22 panic
|
238
|
-
|
239
|
-
* bin/clevic, lib/clevic/field.rb, lib/clevic/model_builder.rb,
|
240
|
-
lib/clevic/table_model.rb:
|
241
|
-
fix pasting of relational attributes
|
242
|
-
|
243
|
-
2008-05-24 18:54 panic
|
244
|
-
|
245
|
-
* TODO, lib/clevic/qt_extensions.rb, lib/clevic/qt_flags.rb,
|
246
|
-
lib/clevic/table_model.rb, lib/clevic/table_view.rb:
|
247
|
-
move dependencies to qtext gem
|
248
|
-
|
249
|
-
2008-05-23 09:58 panic
|
250
|
-
|
251
|
-
* lib/clevic/extensions.rb, lib/clevic/qt_extensions.rb:
|
252
|
-
split extensions into clevic-specific and qt-generic
|
253
|
-
|
254
|
-
2008-05-21 12:51 panic
|
255
|
-
|
256
|
-
* bin/import-times, times_models.rb:
|
257
|
-
Project to look up latest invoice. Import times from yml file.
|
258
|
-
|
259
|
-
2008-05-21 08:36 panic
|
260
|
-
|
261
|
-
* TODO, lib/clevic/delegates.rb:
|
262
|
-
make sure the current item appears in combo box
|
263
|
-
|
264
|
-
2008-04-18 19:57 panic
|
265
|
-
|
266
|
-
* bin/clevic:
|
267
|
-
-h already used for help, so use -H for host
|
268
|
-
|
269
|
-
2008-04-18 19:56 panic
|
270
|
-
|
271
|
-
* lib/clevic/ui/browser.ui:
|
272
|
-
make view dump Ctrl-Shift-D
|
273
|
-
* lib/clevic/db_options.rb:
|
274
|
-
add workaround to Date class
|
275
|
-
* lib/clevic/field.rb:
|
276
|
-
remove workaround
|
277
|
-
|
278
|
-
2008-04-18 19:24 panic
|
279
|
-
|
280
|
-
* INSTALL, README.txt, lib/clevic/field.rb:
|
281
|
-
the Date#freeze workaround
|
282
|
-
|
283
|
-
2008-04-17 20:56 panic
|
284
|
-
|
285
|
-
* TODO:
|
286
|
-
resolve conflict
|
287
|
-
|
288
|
-
2008-04-17 20:45 panic
|
289
|
-
|
290
|
-
* TODO, lib/clevic/table_view.rb:
|
291
|
-
delete multiple cells
|
292
|
-
|
293
|
-
2008-04-16 21:46 panic
|
294
|
-
|
295
|
-
* TODO, lib/clevic/delegates.rb, lib/clevic/table_model.rb:
|
296
|
-
tooltip for empty relational fieldsS
|
297
|
-
|
298
|
-
2008-04-16 20:41 panic
|
299
|
-
|
300
|
-
* TODO, accounts_models.rb, lib/clevic/field.rb,
|
301
|
-
lib/clevic/model_builder.rb, lib/clevic/table_model.rb,
|
302
|
-
times_models.rb:
|
303
|
-
Tooltips for column headers. Update builder syntax docs.
|
304
|
-
|
305
|
-
2008-04-16 20:26 panic
|
306
|
-
|
307
|
-
* lib/clevic/extensions.rb, lib/clevic/model_builder.rb,
|
308
|
-
lib/clevic/model_column.rb:
|
309
|
-
clean up some warnings and old debug code
|
310
|
-
|
311
|
-
2008-04-16 20:23 panic
|
312
|
-
|
313
|
-
* accounts_models.rb, lib/clevic/model_builder.rb,
|
314
|
-
lib/clevic/table_view.rb, times_models.rb:
|
315
|
-
Simplify ui definition syntax. Get rid of current_item.
|
316
|
-
|
317
|
-
2008-04-15 20:25 panic
|
318
|
-
|
319
|
-
* TODO, lib/clevic/browser.rb, lib/clevic/ui/browser.ui:
|
320
|
-
refresh table from db. Mostly just minor renaming.
|
321
|
-
|
322
|
-
2008-04-15 20:06 panic
|
323
|
-
|
324
|
-
* TODO, lib/clevic/table_view.rb:
|
325
|
-
use ModelIndex#attribute_value to simplify code, and allow for
|
326
|
-
columns to be moved. Notes and rearrangements in TODO
|
327
|
-
|
328
|
-
2008-04-15 10:58 panic
|
329
|
-
|
330
|
-
* TODO, env.sh, lib/clevic/item_delegate.rb:
|
331
|
-
Fix issue with Calendar opening when it shouldn't. Notes and
|
332
|
-
todos.
|
333
|
-
|
334
|
-
2008-04-14 19:55 panic
|
335
|
-
|
336
|
-
* lib/clevic/item_delegate.rb:
|
337
|
-
oops, forgot to add this
|
338
|
-
|
339
|
-
2008-04-14 14:11 panic
|
340
|
-
|
341
|
-
* TODO:
|
342
|
-
notes
|
343
|
-
* Rakefile, TODO, lib/clevic/delegates.rb,
|
344
|
-
lib/clevic/model_builder.rb, times_models.rb:
|
345
|
-
fix restricted combo editing and completion. Groundwork for
|
346
|
-
calendar edits and things like that.
|
347
|
-
|
348
|
-
2008-04-13 13:54 panic
|
349
|
-
|
350
|
-
* TODO:
|
351
|
-
remove old todos. Rearrange current ones.
|
352
|
-
|
353
|
-
2008-04-12 20:49 panic
|
354
|
-
|
355
|
-
* TODO, bin/clevic, lib/clevic/browser.rb,
|
356
|
-
lib/clevic/cache_table.rb, lib/clevic/delegates.rb,
|
357
|
-
lib/clevic/model_builder.rb, lib/clevic/table_view.rb,
|
358
|
-
lib/clevic/ui/browser.ui, sql/add_activities_id.sql,
|
359
|
-
times_models.rb:
|
360
|
-
combo fields that have no values in the combo just use a text
|
361
|
-
field, or not editable for restricted
|
362
|
-
|
363
|
-
2008-04-12 20:47 panic
|
364
|
-
|
365
|
-
* Rakefile:
|
366
|
-
fix namespace usages
|
367
|
-
|
368
|
-
2008-04-10 20:43 panic
|
369
|
-
|
370
|
-
* Manifest.txt, Rakefile, TODO, accounts_models.rb, bin/clevic,
|
371
|
-
lib/clevic/ui/browser.ui, times_models.rb:
|
372
|
-
Futzing with rake tasks to make things easier. Use title in
|
373
|
-
window so I know what db is used, and default to test dbs.
|
374
|
-
|
375
|
-
2008-04-10 11:08 panic
|
376
|
-
|
377
|
-
* TODO:
|
378
|
-
notes
|
379
|
-
|
380
|
-
2008-04-10 11:04 panic
|
381
|
-
|
382
|
-
* TODO, lib/clevic/browser.rb, lib/clevic/search_dialog.rb:
|
383
|
-
Set search text to current cell
|
384
|
-
|
385
|
-
2008-04-10 10:56 panic
|
386
|
-
|
387
|
-
* accounts_models.rb, bin/clevic, lib/clevic.rb, times_models.rb:
|
388
|
-
use Clevic module for view and model classes. More qt flags.
|
389
|
-
|
390
|
-
2008-04-10 10:54 panic
|
391
|
-
|
392
|
-
* lib/clevic/browser.rb, lib/clevic/delegates.rb,
|
393
|
-
lib/clevic/entry_builder.rb, lib/clevic/entry_table_model.rb,
|
394
|
-
lib/clevic/entry_table_view.rb, lib/clevic/model_builder.rb,
|
395
|
-
lib/clevic/qt_flags.rb, lib/clevic/table_model.rb,
|
396
|
-
lib/clevic/table_view.rb, lib/clevic/version.rb:
|
397
|
-
use Clevic module for view and model classes. More qt flags.
|
398
|
-
|
399
|
-
2008-04-10 10:05 panic
|
400
|
-
|
401
|
-
* lib/clevic/entry_table_model.rb, lib/clevic/field.rb:
|
402
|
-
Clean up case statements. Move alignment out of EntryTableModel
|
403
|
-
and into Field.
|
404
|
-
|
405
|
-
2008-04-09 23:44 panic
|
406
|
-
|
407
|
-
* lib/clevic/entry_builder.rb, lib/clevic/entry_table_model.rb,
|
408
|
-
lib/clevic/entry_table_view.rb, lib/clevic/extensions.rb,
|
409
|
-
lib/clevic/field.rb, lib/clevic/qt_flags.rb, times_models.rb:
|
410
|
-
Do column auto-sizing based on the data. Move Clevic::Field into
|
411
|
-
its own file.
|
412
|
-
|
413
|
-
2008-04-08 20:21 panic
|
414
|
-
|
415
|
-
* TODO:
|
416
|
-
issues from testing with Michelle on windows
|
417
|
-
|
418
|
-
2008-04-08 05:33 panic
|
419
|
-
|
420
|
-
* README.txt, TODO, bin/clevic:
|
421
|
-
notes and docs
|
422
|
-
* accounts_models.rb, times_models.rb:
|
423
|
-
more restricted and distinct
|
424
|
-
|
425
|
-
2008-04-07 14:28 panic
|
426
|
-
|
427
|
-
* lib/clevic.rb:
|
428
|
-
remove versin from clevic.rb
|
429
|
-
|
430
|
-
2008-04-07 14:19 panic
|
431
|
-
|
432
|
-
* Manifest.txt, README.txt, Rakefile, lib/clevic.rb,
|
433
|
-
lib/clevic/version.rb:
|
434
|
-
add more missing files to manifest. Create a version file so
|
435
|
-
Rakefile doesn't keep changing. Change licence to GPL. Add
|
436
|
-
THANKS section.
|
437
|
-
|
438
|
-
2008-04-07 13:23 panic
|
439
|
-
|
440
|
-
* Manifest.txt, Rakefile, TODO, lib/clevic/browser.rb,
|
441
|
-
lib/clevic/search_dialog.rb, lib/clevic/ui, ui:
|
442
|
-
move ui files under the lib directory. Decrease version number
|
443
|
-
because it
|
444
|
-
's nowhere near release. Clean up Rakefile.
|
445
|
-
|
446
|
-
2008-04-07 13:21 panic
|
447
|
-
|
448
|
-
* sql/accounts.sql, sql/times.sql:
|
449
|
-
remove plperl references
|
450
|
-
|
451
|
-
2008-04-05 11:34 panic
|
452
|
-
|
453
|
-
* Rakefile, TODO, lib/clevic/db_options.rb,
|
454
|
-
lib/clevic/entry_table_model.rb:
|
455
|
-
Better debugging. Deal with empty RUBYLIB.
|
456
|
-
|
457
|
-
2008-04-02 21:42 panic
|
458
|
-
|
459
|
-
* lib/clevic/browser.rb:
|
460
|
-
busy cursor on find_next
|
461
|
-
|
462
|
-
2008-04-02 21:35 panic
|
463
|
-
|
464
|
-
* TODO, bin/clevic, lib/clevic/browser.rb,
|
465
|
-
lib/clevic/entry_table_view.rb, lib/clevic/extensions.rb:
|
466
|
-
make sure records are saved on app exit
|
467
|
-
|
468
|
-
2008-04-02 12:01 panic
|
469
|
-
|
470
|
-
* TODO:
|
471
|
-
notes
|
472
|
-
|
473
|
-
2008-04-01 06:47 panic
|
474
|
-
|
475
|
-
* TODO, lib/clevic/cache_table.rb,
|
476
|
-
lib/clevic/entry_table_model.rb, lib/clevic/entry_table_view.rb,
|
477
|
-
ui/browser.ui:
|
478
|
-
turn ui table headers off, quote fields
|
479
|
-
|
480
|
-
2008-03-31 11:05 panic
|
481
|
-
|
482
|
-
* lib/clevic/browser.rb, lib/clevic/cache_table.rb,
|
483
|
-
lib/clevic/entry_table_model.rb, lib/clevic/entry_table_view.rb,
|
484
|
-
lib/clevic/extensions.rb, lib/clevic/search_dialog.rb,
|
485
|
-
ui/browser.ui:
|
486
|
-
fix search sql. Search backwards and forwards. Find Next menu
|
487
|
-
item.
|
488
|
-
|
489
|
-
2008-03-31 06:02 panic
|
490
|
-
|
491
|
-
* lib/clevic/cache_table.rb, lib/clevic/entry_table_model.rb,
|
492
|
-
lib/clevic/entry_table_view.rb, lib/clevic/search_dialog.rb,
|
493
|
-
ui/search_dialog.ui:
|
494
|
-
start on backwards and forwards searching. But there
|
495
|
-
's and issue with multiple field searching using and.
|
496
|
-
|
497
|
-
2008-03-31 06:00 panic
|
498
|
-
|
499
|
-
* Rakefile:
|
500
|
-
add times and accounts irb tasks
|
501
|
-
|
502
|
-
2008-03-29 22:47 panic
|
503
|
-
|
504
|
-
* lib/clevic/browser.rb, lib/clevic/cache_table.rb,
|
505
|
-
lib/clevic/entry_table_model.rb, lib/clevic/entry_table_view.rb,
|
506
|
-
lib/clevic/extensions.rb, lib/clevic/search_dialog.rb,
|
507
|
-
ui/search_dialog.ui:
|
508
|
-
search dialog partly working
|
509
|
-
|
510
|
-
2008-03-29 17:46 panic
|
511
|
-
|
512
|
-
* TODO:
|
513
|
-
notes
|
514
|
-
|
515
|
-
2008-03-29 17:37 panic
|
516
|
-
|
517
|
-
* lib/clevic/cache_table.rb, lib/clevic/entry_builder.rb,
|
518
|
-
lib/clevic/entry_table_model.rb, lib/clevic/entry_table_view.rb,
|
519
|
-
lib/clevic/extensions.rb, lib/clevic/qt_flags.rb:
|
520
|
-
Qt constant cleanups. better EntryTableModel.data. Do preload of
|
521
|
-
10 rows at a time. Make sure index_for_entity doesn't preload
|
522
|
-
10. Wait cursor.
|
523
|
-
|
524
|
-
2008-03-29 09:28 panic
|
525
|
-
|
526
|
-
* lib/clevic/entry_table_model.rb, lib/clevic/extensions.rb:
|
527
|
-
comments and formatting
|
528
|
-
|
529
|
-
2008-03-29 09:12 panic
|
530
|
-
|
531
|
-
* lib/clevic/entry_table_view.rb:
|
532
|
-
comments
|
533
|
-
|
534
|
-
2008-03-29 09:03 panic
|
535
|
-
|
536
|
-
* Rakefile:
|
537
|
-
remove old lines
|
538
|
-
|
539
|
-
2008-03-29 08:45 panic
|
540
|
-
|
541
|
-
* TODO, lib/clevic/browser.rb, lib/clevic/entry_builder.rb,
|
542
|
-
lib/clevic/entry_table_view.rb:
|
543
|
-
move filtering to EntryTableView. Do visual indication of
|
544
|
-
filtering
|
545
|
-
* accounts.odb:
|
546
|
-
move odb file
|
547
|
-
|
548
|
-
2008-03-29 08:44 panic
|
549
|
-
|
550
|
-
* sql/accounts.odb:
|
551
|
-
move odb file
|
552
|
-
|
553
|
-
2008-03-29 08:43 panic
|
554
|
-
|
555
|
-
* accounts_models.rb, bin/clevic, times_models.rb:
|
556
|
-
futzing with lib path
|
557
|
-
|
558
|
-
2008-03-29 08:42 panic
|
559
|
-
|
560
|
-
* ui/browser.ui:
|
561
|
-
better size
|
562
|
-
* Rakefile:
|
563
|
-
add run and irb tasks
|
564
|
-
|
565
|
-
2008-03-27 20:52 panic
|
566
|
-
|
567
|
-
* ., Rakefile, lib/clevic/browser.rb, lib/clevic/cache_table.rb,
|
568
|
-
lib/clevic/db_options.rb, lib/clevic/entry_table_model.rb,
|
569
|
-
lib/clevic/entry_table_view.rb, times_models.rb, ui/icon.png,
|
570
|
-
ui/icons.qrc, ui/search_dialog.ui:
|
571
|
-
add icon resource. attempt on canFetchMore.
|
572
|
-
|
573
|
-
2008-03-27 12:10 panic
|
574
|
-
|
575
|
-
* Rakefile:
|
576
|
-
take out old debug lines
|
577
|
-
|
578
|
-
2008-03-27 09:26 panic
|
579
|
-
|
580
|
-
* README.txt, Rakefile, TODO, lib/clevic.rb:
|
581
|
-
documentation. Add lib/clevic.rb
|
582
|
-
|
583
|
-
2008-03-26 21:07 panic
|
584
|
-
|
585
|
-
* README.txt:
|
586
|
-
more docs
|
587
|
-
|
588
|
-
2008-03-26 21:00 panic
|
589
|
-
|
590
|
-
* History.txt, README.txt, Rakefile, accounts_models.rb,
|
591
|
-
bin/clevic, lib/clevic/browser.rb, lib/clevic/cache_table.rb,
|
592
|
-
lib/clevic/db_options.rb, lib/clevic/delegates.rb,
|
593
|
-
lib/clevic/entry_builder.rb, lib/clevic/entry_table_model.rb,
|
594
|
-
lib/clevic/model_column.rb, times_models.rb:
|
595
|
-
documentation
|
596
|
-
|
597
|
-
2008-03-26 14:22 panic
|
598
|
-
|
599
|
-
* Manifest.txt, README.txt, TODO, accounts_models.rb,
|
600
|
-
lib/clevic/delegates.rb, times_models.rb:
|
601
|
-
documentation. Move db options to model defn files
|
602
|
-
|
603
|
-
2008-03-26 13:31 panic
|
604
|
-
|
605
|
-
* accounts_models.rb, lib/clevic/browser.rb,
|
606
|
-
lib/clevic/cache_table.rb, lib/clevic/entry_table_model.rb,
|
607
|
-
times_models.rb:
|
608
|
-
single-selection filtering working
|
609
|
-
|
610
|
-
2008-03-26 09:43 panic
|
611
|
-
|
612
|
-
* TODO, lib/clevic/browser.rb, lib/clevic/cache_table.rb,
|
613
|
-
lib/clevic/entry_table_model.rb, lib/clevic/entry_table_view.rb:
|
614
|
-
search mostly working. Filtering half done
|
615
|
-
|
616
|
-
2008-03-26 09:41 panic
|
617
|
-
|
618
|
-
* lib/clevic/search_dialog.rb:
|
619
|
-
search dialog
|
620
|
-
|
621
|
-
2008-03-26 09:40 panic
|
622
|
-
|
623
|
-
* bin/clevic, lib/clevic/db_options.rb:
|
624
|
-
move db options to a separate file to make irb easier
|
625
|
-
|
626
|
-
2008-03-26 09:39 panic
|
627
|
-
|
628
|
-
* accounts_models.rb:
|
629
|
-
fix require
|
630
|
-
* Rakefile, ui/browser.ui, ui/search_dialog.ui:
|
631
|
-
add search dialog
|
632
|
-
|
633
|
-
2008-03-26 09:38 panic
|
634
|
-
|
635
|
-
* lib/clevic/model_column.rb:
|
636
|
-
keep association metadata
|
637
|
-
|
638
|
-
2008-03-26 09:09 panic
|
639
|
-
|
640
|
-
* lib/clevic/extensions.rb:
|
641
|
-
improve some inspects. Add a dump for ModelIndex
|
642
|
-
|
643
|
-
2008-03-24 17:08 panic
|
644
|
-
|
645
|
-
* bin/clevic, lib/clevic/browser.rb:
|
646
|
-
take out test for single model
|
647
|
-
|
648
|
-
2008-03-24 17:07 panic
|
649
|
-
|
650
|
-
* TODO, accounts_models.rb, bin/clevic, lib/clevic/browser.rb,
|
651
|
-
ui/browser.ui:
|
652
|
-
fix focus buglets. Ctrl-Tab to move tabs
|
653
|
-
|
654
|
-
2008-03-23 04:18 panic
|
655
|
-
|
656
|
-
* Manifest.txt, Rakefile, bin/clevic, lib/clevic/cache_table.rb,
|
657
|
-
lib/clevic/entry_builder.rb, lib/clevic/entry_table_model.rb,
|
658
|
-
lib/clevic/entry_table_view.rb, ui/browser.ui:
|
659
|
-
filter by current selection. Remove dependence on collection[0]
|
660
|
-
for model_class retrieval
|
661
|
-
|
662
|
-
2008-03-20 08:24 panic
|
663
|
-
|
664
|
-
* bin/clevic, lib/clevic/entry_builder.rb,
|
665
|
-
lib/clevic/entry_table_model.rb, lib/clevic/entry_table_view.rb,
|
666
|
-
times_models.rb:
|
667
|
-
make requires use library directories
|
668
|
-
|
669
|
-
2008-03-20 08:19 panic
|
670
|
-
|
671
|
-
* ., active_record, bin, bin/clevic, cache_table.rb, clevic,
|
672
|
-
delegates.rb, entry_builder.rb, entry_table_model.rb,
|
673
|
-
entry_table_view.rb, extensions.rb, lib, lib/active_record,
|
674
|
-
lib/clevic, lib/clevic/cache_table.rb, lib/clevic/delegates.rb,
|
675
|
-
lib/clevic/entry_builder.rb, lib/clevic/entry_table_model.rb,
|
676
|
-
lib/clevic/entry_table_view.rb, lib/clevic/extensions.rb:
|
677
|
-
conform to Hoe directories
|
678
|
-
|
679
|
-
2008-03-20 08:17 panic
|
680
|
-
|
681
|
-
* History.txt, Manifest.txt, README.txt, Rakefile,
|
682
|
-
sql/accounts.sql, sql/times.sql:
|
683
|
-
first with Hoe
|
684
|
-
|
685
|
-
2008-03-18 15:45 panic
|
686
|
-
|
687
|
-
* TODO, accounts_models.rb, entry_table_view.rb:
|
688
|
-
allow Ctrl-Return to create new row
|
689
|
-
|
690
|
-
2008-03-18 11:25 panic
|
691
|
-
|
692
|
-
* accounts_models.rb, delegates.rb, entry_table_model.rb,
|
693
|
-
entry_table_view.rb, extensions.rb:
|
694
|
-
make CombeDelegate#setModelData common. use full_edit instead of
|
695
|
-
open.
|
696
|
-
|
697
|
-
2008-03-18 08:53 panic
|
698
|
-
|
699
|
-
* entry_table_view.rb:
|
700
|
-
create set_current_unless_override
|
701
|
-
|
702
|
-
2008-03-18 08:46 panic
|
703
|
-
|
704
|
-
* accounts_models.rb, clevic, delegates.rb, entry_table_model.rb,
|
705
|
-
entry_table_view.rb, times_models.rb:
|
706
|
-
fix delegate editing and cursor movement
|
707
|
-
|
708
|
-
2008-03-17 15:34 panic
|
709
|
-
|
710
|
-
* accounts_models.rb, entry_table_model.rb, entry_table_view.rb:
|
711
|
-
send data_changed to entity models
|
712
|
-
|
713
|
-
2008-03-17 12:28 panic
|
714
|
-
|
715
|
-
* clevic, entry_table_model.rb, extensions.rb:
|
716
|
-
attempts to fix reloading:
|
717
|
-
|
718
|
-
2008-03-17 12:03 panic
|
719
|
-
|
720
|
-
* cache_table.rb, entry_builder.rb, entry_table_model.rb,
|
721
|
-
times_models.rb:
|
722
|
-
improvements in caching and fetching from DB only when necessary
|
723
|
-
|
724
|
-
2008-03-16 09:25 panic
|
725
|
-
|
726
|
-
* entry_builder.rb:
|
727
|
-
remove debugging puts
|
728
|
-
|
729
|
-
2008-03-15 08:54 panic
|
730
|
-
|
731
|
-
* accounts_models.rb, cache_table.rb, clevic, entry_table_view.rb,
|
732
|
-
extensions.rb, times_models.rb, ui/browser.ui:
|
733
|
-
use triggered instead of activated. Exception handling for calls
|
734
|
-
to UI model definitions. Try to activate debugger.
|
735
|
-
|
736
|
-
2008-03-13 12:26 panic
|
737
|
-
|
738
|
-
* TODO, delegates.rb:
|
739
|
-
update for ruby-pg
|
740
|
-
|
741
|
-
2008-03-11 19:50 panic
|
742
|
-
|
743
|
-
* entry_builder.rb, entry_table_view.rb, times_models.rb:
|
744
|
-
add some times-capture specific code
|
745
|
-
|
746
|
-
2008-03-09 19:22 panic
|
747
|
-
|
748
|
-
* accounts_models.rb, clevic, entry_table_view.rb, ui/browser.ui:
|
749
|
-
add clever debit & credit completion
|
750
|
-
|
751
|
-
2008-03-09 13:19 panic
|
752
|
-
|
753
|
-
* clevic:
|
754
|
-
make it executable
|
755
|
-
|
756
|
-
2008-03-09 13:15 panic
|
757
|
-
|
758
|
-
* browser.rb, clevic:
|
759
|
-
rename main file
|
760
|
-
|
761
|
-
2008-03-09 13:12 panic
|
762
|
-
|
763
|
-
* ., times:
|
764
|
-
rename project
|
765
|
-
|
766
|
-
2008-03-02 21:35 panic
|
767
|
-
|
768
|
-
* times/entry_table_model.rb, times/entry_table_view.rb:
|
769
|
-
start abstracting model_class from collection[0]
|
770
|
-
|
771
|
-
2008-03-02 21:20 panic
|
772
|
-
|
773
|
-
* times/accounts_models.rb, times/browser.rb:
|
774
|
-
add some samples for accounts. Allow model order to be specified.
|
775
|
-
|
776
|
-
2008-03-02 21:09 panic
|
777
|
-
|
778
|
-
* times/TODO, times/accounts_models.rb, times/cache_table.rb,
|
779
|
-
times/entry_builder.rb, times/entry_table_model.rb,
|
780
|
-
times/entry_table_view.rb, times/extensions.rb:
|
781
|
-
Add lazy model instance fetching. Do a faster fix for row sizes
|
782
|
-
|
783
|
-
2008-03-02 15:08 panic
|
784
|
-
|
785
|
-
* times/accounts_models.rb, times/browser.rb,
|
786
|
-
times/entry_table_model.rb:
|
787
|
-
add the values table to accounts. Various other comments.
|
788
|
-
|
789
|
-
2008-03-02 12:55 panic
|
790
|
-
|
791
|
-
* times/accounts_models.rb, times/delegates.rb,
|
792
|
-
times/entry_builder.rb:
|
793
|
-
comments for builder methods. Allow conditions for
|
794
|
-
DistinctDelegate
|
795
|
-
|
796
|
-
2008-03-02 12:37 panic
|
797
|
-
|
798
|
-
* times/accounts_models.rb, times/delegates.rb,
|
799
|
-
times/entry_builder.rb, times/entry_table_model.rb:
|
800
|
-
allow format and alignment to be specified in the ui table
|
801
|
-
definition. Improve formatting code. Add a Restricted field type.
|
802
|
-
|
803
|
-
2008-03-01 16:15 panic
|
804
|
-
|
805
|
-
* times/TODO, times/accounts_models.rb, times/times_models.rb:
|
806
|
-
fix some orderings
|
807
|
-
|
808
|
-
2008-03-01 16:02 panic
|
809
|
-
|
810
|
-
* times/accounts_models.rb, times/browser.rb,
|
811
|
-
times/times_models.rb:
|
812
|
-
check for :database in options. remove references to old Tables
|
813
|
-
idea.
|
814
|
-
|
815
|
-
2008-03-01 15:57 panic
|
816
|
-
|
817
|
-
* times/accounts, times/accounts_models.rb, times/browser.rb,
|
818
|
-
times/entry_builder.rb, times/times, times/times_models.rb:
|
819
|
-
browser now uses command line parameter to get ui table
|
820
|
-
definitions and db connections
|
821
|
-
|
822
|
-
2008-02-28 18:47 panic
|
823
|
-
|
824
|
-
* times/browser.rb, times/entry_table_model.rb,
|
825
|
-
times/ui/browser.ui:
|
826
|
-
remove puts output. Make sure initial designer tab is empty, and
|
827
|
-
is cleared when table tabs are added
|
828
|
-
|
829
|
-
2008-02-28 18:40 panic
|
830
|
-
|
831
|
-
* times/Rakefile, times/dir.rb, times/ui:
|
832
|
-
do Rakefile for invoking rbuic4
|
833
|
-
|
834
|
-
2008-02-28 18:12 panic
|
835
|
-
|
836
|
-
* times/accounts_models.rb, times/browser.rb,
|
837
|
-
times/entry_builder.rb, times/entry_table_model.rb,
|
838
|
-
times/entry_table_view.rb, times/reports, times/reports/invoice,
|
839
|
-
times/sql, times/sql/invoice.view.sql,
|
840
|
-
times/sql/nice_entries.view.sql, times/times, times/times.ui,
|
841
|
-
times/ui, times/ui/browser.ui:
|
842
|
-
get elementary tabbed tables working
|
843
|
-
|
844
|
-
2008-02-14 11:54 panic
|
845
|
-
|
846
|
-
* times/times:
|
847
|
-
specify table name on command line
|
848
|
-
|
849
|
-
2008-01-15 07:19 panic
|
850
|
-
|
851
|
-
* times/accounts, times/times:
|
852
|
-
allow host to be specified
|
853
|
-
|
854
|
-
2007-11-29 12:57 panic
|
855
|
-
|
856
|
-
* times/accounts, times/accounts.odb, times/accounts_models.rb:
|
857
|
-
allow editing of accounts table. Copy accounts.odb here
|
858
|
-
|
859
|
-
2007-09-13 06:04 panic
|
860
|
-
|
861
|
-
* times/accounts, times/accounts_models.rb, times/times:
|
862
|
-
allow use of db to be specified on command line
|
863
|
-
|
864
|
-
2007-09-05 15:53 panic
|
865
|
-
|
866
|
-
* times/times:
|
867
|
-
make coding a bit neater
|
868
|
-
|
869
|
-
2007-09-05 15:45 panic
|
870
|
-
|
871
|
-
* times/delegates.rb, times/entry_builder.rb,
|
872
|
-
times/entry_table_model.rb, times/entry_table_view.rb,
|
873
|
-
times/extensions.rb:
|
874
|
-
paste of rows working
|
875
|
-
|
876
|
-
2007-09-04 11:52 panic
|
877
|
-
|
878
|
-
* times/accounts_models.rb, times/entry_table_model.rb:
|
879
|
-
change to test db. Allow entry of a single digit in a date field
|
880
|
-
and it will fill in the month from the previous row
|
881
|
-
|
882
|
-
2007-09-04 11:39 panic
|
883
|
-
|
884
|
-
* times/accounts_models.rb, times/entry_table_view.rb,
|
885
|
-
times/times:
|
886
|
-
don't show two tables. renames. Use live db for accounts
|
887
|
-
|
888
|
-
2007-09-04 06:34 panic
|
889
|
-
|
890
|
-
* times/accounts, times/entry_builder.rb,
|
891
|
-
times/entry_table_model.rb, times/entry_table_view.rb,
|
892
|
-
times/extensions.rb, times/times:
|
893
|
-
neaten up requires, and have a look at 2 windows where one goes
|
894
|
-
blank
|
895
|
-
|
896
|
-
2007-09-03 22:07 panic
|
897
|
-
|
898
|
-
* times/entry_table_model.rb:
|
899
|
-
other small tweaks
|
900
|
-
|
901
|
-
2007-09-03 22:00 panic
|
902
|
-
|
903
|
-
* times/accounts, times/entry_table_model.rb, times/times:
|
904
|
-
fix number alignment
|
905
|
-
|
906
|
-
2007-09-03 21:24 panic
|
907
|
-
|
908
|
-
* times/accounts, times/accounts_models.rb, times/delegates.rb,
|
909
|
-
times/entry_builder.rb, times/entry_table_model.rb,
|
910
|
-
times/entry_table_view.rb, times/times:
|
911
|
-
add entry builder and make accounts and times work with it
|
912
|
-
|
913
|
-
2007-09-03 15:28 panic
|
914
|
-
|
915
|
-
* times/accounts, times/entry_table_view.rb:
|
916
|
-
do column sizing
|
917
|
-
|
918
|
-
2007-09-03 11:52 panic
|
919
|
-
|
920
|
-
* times/accounts, times/delegates.rb, times/entry_table_view.rb:
|
921
|
-
show popup on f4
|
922
|
-
|
923
|
-
2007-09-03 11:21 panic
|
924
|
-
|
925
|
-
* times/accounts, times/accounts_models.rb, times/delegates.rb,
|
926
|
-
times/entry_table_model.rb, times/entry_table_view.rb,
|
927
|
-
times/extensions.rb:
|
928
|
-
fix completion handling
|
929
|
-
|
930
|
-
2007-09-03 06:15 panic
|
931
|
-
|
932
|
-
* times/TODO, times/accounts, times/entry_table_model.rb,
|
933
|
-
times/entry_table_view.rb, times/extensions.rb, times/models.rb,
|
934
|
-
times/times, times/times.rb:
|
935
|
-
move times-specific code to its own file
|
936
|
-
|
937
|
-
2007-09-02 18:05 panic
|
938
|
-
|
939
|
-
* times/TODO, times/entry_table_model.rb, times/extensions.rb:
|
940
|
-
weirdness with can't convert frozen object with Date. Fix sql
|
941
|
-
updates
|
942
|
-
|
943
|
-
2007-09-02 16:52 panic
|
944
|
-
|
945
|
-
* times/TODO, times/delegates.rb, times/entry_table_model.rb,
|
946
|
-
times/entry_table_view.rb:
|
947
|
-
better error handling
|
948
|
-
|
949
|
-
2007-08-31 15:11 panic
|
950
|
-
|
951
|
-
* times/TODO, times/delegates.rb, times/extensions.rb,
|
952
|
-
times/models.rb, times/times.rb:
|
953
|
-
allow nil values in combo box fields
|
954
|
-
|
955
|
-
2007-08-30 21:58 panic
|
956
|
-
|
957
|
-
* times/TODO, times/delegates.rb, times/entry_table_view.rb,
|
958
|
-
times/times.rb:
|
959
|
-
do completion for select distinct
|
960
|
-
|
961
|
-
2007-08-30 21:03 panic
|
962
|
-
|
963
|
-
* times/log:
|
964
|
-
remove file
|
965
|
-
|
966
|
-
2007-08-30 21:01 panic
|
967
|
-
|
968
|
-
* times/delegates.rb, times/entry_table_model.rb:
|
969
|
-
remove cruft
|
970
|
-
|
971
|
-
2007-08-30 20:55 panic
|
972
|
-
|
973
|
-
* times/active_table_model.rb, times/entry_table_model.rb,
|
974
|
-
times/times.rb, times/times_qt.rb:
|
975
|
-
rename to EntryTableModel. Remove old files
|
976
|
-
|
977
|
-
2007-08-30 20:50 panic
|
978
|
-
|
979
|
-
* times/active_table_model.rb, times/delegates.rb,
|
980
|
-
times/entry_table_view.rb, times/extensions.rb, times/times.rb:
|
981
|
-
lots of neatening up code and putting the access methods into
|
982
|
-
ModelIndex
|
983
|
-
|
984
|
-
2007-08-30 19:33 panic
|
985
|
-
|
986
|
-
* times/TODO, times/active_table_model.rb, times/delegates.rb,
|
987
|
-
times/entry_table_view.rb, times/extensions.rb, times/times.rb:
|
988
|
-
Create EntryDelegate, although it's not really used. Make sure
|
989
|
-
boolean fields get checkboxes.
|
990
|
-
|
991
|
-
2007-08-29 11:25 panic
|
992
|
-
|
993
|
-
* times, times/TODO, times/active_record,
|
994
|
-
times/active_record/dirty.rb, times/active_table_model.rb,
|
995
|
-
times/delegates.rb, times/dir.rb, times/entry_table_view.rb,
|
996
|
-
times/extensions.rb, times/log, times/models.rb, times/times.rb,
|
997
|
-
times/times.ui, times/times_qt.rb:
|
998
|
-
initial import
|
999
|
-
|
1
|
+
== 0.8.0
|
2
|
+
* Big improvements to the way the UI is defined in Entity classes.
|
3
|
+
* Show Entity-specific menus, both in the menu bar and as a right-click.
|
4
|
+
* Point it at a Rails project and see the models in a GUI. This
|
5
|
+
has been tested on only one fairly complex Rails project, so feedback
|
6
|
+
would be useful.
|
7
|
+
|
8
|
+
== 0.7.1
|
9
|
+
* Minimal model definitions inheriting from Clevic::Record
|
10
|
+
|
11
|
+
== 0.7.0
|
12
|
+
* Erm, stuff.
|