-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathNEWS
2565 lines (2179 loc) · 93.2 KB
/
NEWS
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1.26.0 (stable):
* Reports: Fix a crash introduced in 1.25.4.
(Murray Cumming)
1.25.6 (unstable):
* Backup/Restore: Use libarchive instead of calling the tar shell command.
This should be slightly more robust and safe, though we were already
correctly escaping and quoting the shell commands.
(Murray Cumming)
* Avoid an infinite loop when document loading fails.
(Murray Cumming)
1.25.5 (unstable):
* Check that we have the pg_config utility.
(Murray Cumming)
* Add some tests.
(Murray Cumming)
* Slight improvements to the libglom API.
(Murray Cumming)
1.25.4 (unstable):
* Fix a crash when switching between Data and Find mode.
(Murray Cumming)
* Fix some widget expansion in the UI.
(Murray Cumming)
* Formatting: Do not allow a 0 line-height for multiline text.
(Murray Cumming)
* Added some more tests.
(Murray Cumming
* Some code cleanup.
(Murray Cumming)
1.25.3 (unstable):
* Make menu item accelerators work again.
(Murray Cumming)
* Field Definition: Move Default formatting into a separate window.
(Murray Cumming)
* Find (broken after the port to GAction):
- Really stop when cancelling after none found.
- Show only the found records.
- Update the menu item state.
(Murray Cumming)
* Adjust dialog widget spacing to be more GNOME HIG-compliant.
(Murray Cumming)
* Rearrange some dialogs to make them less tall, to (almost)
fit in small screens.
(Murray Cumming)
* Replace (deprecated) GtkTable with GtkGrid.
(Murray Cumming)
* Replace our custom GtkNotebook with GtkStack.
(Murray Cumming)
Build:
* Bundle .glade files, (most) icons, and example files into the Glom
executable using GResource, instead of installing them.
(Murray Cumming)
* Bundle the XSLT file into the libglom library instead of installing
(Murray Cumming)
* Port from gnome-doc-utils to yelp-tool.
(Murray Cumming)
* Fixes for clang compiler and scan-build analyzer warnings.
(Murray Cumming)
* AppData file: Actually use translations.
(Murray Cumming)
1.25.2 (unstable):
Build:
* Fix the build with --enable-warnings=fatal,
by replacing all uses of GtkUIManager and GtkAction with
GtkBuilder, GAction and GMenu.
(Accelerators, such as Ctrl-Q are currently not working.)
(Murray Cumming)
* Replace depreacted GtkHBox and GtkVBox with GtkBox in Glade files.
(This can cause strange layout issues, but I think I caught them all.)
(Murray Cumming)
1.25.1 (unstable):
* Startup: Do not crash when reporting check problems.
(Murray Cumming) Bug #680411 (Bjørn Lie, Dominique Leuenberger)
* Initial dialog:
* Fix crash with latest libxml.
(Murray Cumming)
* Fix the notebook vertical expansion with latest GTK+.
(Murray Cumming)
* Avoid a crash at shutdown.
(Murray Cumming)
* Add an AppData file for "GNOME Software".
(Murray Cumming)
* Remove the recent files menu items in the File menu,
because GtkRecentAction has been deprecated without replacement.
(Murray Cumming)
* Avoid the glib warning about adding interfaces after class initialization.
(And therefore require a recent glibmm.)
(Murray Cumming)
* Fix the build and tests with python 3.
You'll need to do something like this:
export PYTHON=python3.3
(do this before starting jhbuild, if you are using jhbuild).
configure --with-boost-python=boost_python-mt-py33
(or autogen.sh if building from git.)
You will also need to have built pygobject with Python3 support.
(Murray Cumming)
* Avoid deprecated Gtk::Stock* API.
(Murray Cumming)
1.24.0 (stable):
* Document format: table node: Remove superfluous parent_table
attribute.
* libglom: Various minor code cleanups.
1.23.4 (unstable):
* Fix the build with --enable-warnings=fatal.
Do not use ev_view_set_loading() because it is deprecated.
* Fix the build on Ubuntu Raring.
It puts libpython2.7 in /usr/lib/i386-linux-gnu/ .
* Reduce the libgda dependency version again.
1.23.3 (unstable):
* Added an --enable-mysql configure option.
When enabled, this adds a PostgreSQL/MySQL choice in the UI,
as with the existing --enable-sqlite configure option.
The MySQL support is very experimental and unsupported.
It might be removed later if nobody chooses to work on it.
* libglom: Added a dependency on libgda-mysql-5.0, because
libglom always supports all backends regardless of the build
option.
* Tests:
- Simplify the code a litte.
- Test the use of a relationship to get data.
- Add a test that uses an example with text primary keys.
1.23.2 (unstable):
* Tests:
- Use the locally-built glom.
- Use the locally-built python module.
* Examples: Remove unused list_related_* layouts.
1.23.1 (unstable):
* Document:
- Save static image data as a child text node, not an attribute.
- Save image data (example data or static images) in base64 format,
instead of the GDA format.
(Murray Cumming)
* Export to po files:
- Also export static text items, and print layouts.
- Avoid duplicates.
(Murray Cumming)
* Examples: Add a static image item to the Project Manager example.
This is just so that the feature gets some testing.
(Murray Cumming)
* Tests: Add new tests using GdkPixbufLoader to check that we can interpret
image data as an image.
(Murray Cumming)
1.22.1 (stable):
* Self hosting:
- Do not allow ident authorization.
We use trust instead when not sharing.
- Only allow attempts from localhost when not shared.
(Murray Cumming)
* Film Manager example: Correct the Contacts reports.
(Murray Cumming)
Build:
* Add the --enable-ui-tests configure option.
This lets package builders (debian and Ubuntu, for instance)
run make check as a sanity check.
* Windows build: Fix some typos.
(Murray Cumming) Bug #674009 (alien)
* OpenBSD: std:cerr needs <iostream>.
(Antoine Jacoutot) Bug #673914
1.22.0 (stable):
libglom:
* Field: Remove get_holder().
* ConnectionPool: create_database(): Take a progress slot.
Build:
* Windows build fixes.
(Murray Cumming, alien)
* Fix some warnings found by scan-build.
(Murray Cumming)
1.21.8 (unstable):
* Fix the build with the latest gtkmm, with --enable-warnings=fatal.
* Dialog_Import_CSV_Progress: Fix an important typo.
* Tests: Set LC_TIME too.
* Improve the command-line parse/print locale warnings.
1.21.7 (unstable):
* Build: Fix some warnings from clang++.
* libglom: Remove some deprecated methods.
* libglom: LayoutItem_GroupBy: Add get and set methods for members.
1.21.6 (unstable):
* Make auto-increment fields work even if they are not primary keys.
(Murray Cumming) Bug #661702
* Do not hide the database structure if the user does not have view rights,
and prevent SQL errors in that case.
(Murray Cumming) Bug #669299
* Allow printing of print layouts from the List view too, to avoid confusion.
(Murray Cumming) Bug #670462 (alien)
* Print Layout: Avoid sometimes over-scaled images.
(Murray Cumming) Bug #668901 (alien)
* Users/Groups:
- Example files: Really load the table privileges.
- Really prevent changing to developer mode for non-developers.
Bug #669043 (alien)
- Allow user and group names to have spaces and other special characters.
Bug #669012 (alien)
- Limit user and group name lengths because PostgreSQL seems to have an
(undocumented) limit.
- Warn if we cannot get the list of users. Bug #669178 (alien)
- Add tests.
(Murray Cumming)
* Button scripts: Check and warn about pygtk2 instead of crashing.
(Murray Cumming) Bug #669196 (alien) and ##661766 (Andre Klapper) .
* ReportBuilder:
- Make summary fields work again.
- Add error checking.
(Murray Cumming) Bug #669281 (alien)
* Database Preferences: Really store the organization name in the database.
(Murray Cumming) Bug #668836 (alien)
* Field Formatting: Related Choices: Default to showing the primary key
(Murray Cumming) Bug #668759#c21 (alien)
* Choices: Allow the field to be be other than the primary key and do not
crash if it is not, or if it is hidden.
(Murray Cumming) Bug #668759 (alien).
* Document: Avoid accumulating old nodes in the XML.
(Murray Cumming)
* Examples: Remove empty group in the Lesson Planner example file.
(Ben Konrath) Bug #671263
* libglom: Glom::Utils::get_find_where_clause_quick(): Handle an empty value properly.
(Murray Cumming)
* Use Gtk::Application and Gtk::ApplicationWindow instead of Gtk::Main.
So far this does not change anything whatosever for the user,
though --help now doesn't list all options by default.
(Murray Cumming)
* Windows build fixes (not complete).
(Murray Cumming) Bug ##671120 (alien), Bug #670903 (alien)
1.21.5 (unstable):
* Depend on libgda 5.0.3 because we need the GdaNumeric corrections.
This avoids errors when creating from examples, when using a
non-English locale. This fixes bug #668346 (Janne)
1.21.4 (unstable):
* libglom: Use std::vector instead of std::list, for consistency.
* Translations:
- Allow the database title to be translated.
- Default to en rather than en_US for the original locale.
1.21.3 (unstable):
* libglom: TranslatableItem: Require the caller to provide the locale to
get_title() instead of calling the static set_current_locale() method
(now removed). This allows Online Glom to use translations, and it is
generally good to avoid the static data.
1.21.2 (unstable):
* Field choices:
- Allow custom (not related) choices to be translated,
with only the original text being stored in the database.
This only happens when the choices are restricted, at least for now.
- Use the appropriate type of data for choices. rather than, for instance,
forcing German users to see (and store) 1.99 EUR instead of 1,99 EUR.
* Translations:
- Offer non-country locales, such as de, instead of only de_DE, de_AT, etc.
- Default to the first locale in the list, instead of none.
* Added command-line utilities to help with translation via po files:
glom_export_po, glom_import_po, glom_export_po_all.
* Build: Added several more tests, including tests of the translation system
and of the iso-codes XML files parsing.
1.21.1 (unstable):
* Details: Foreign key ID fields: Add a New button next to
the existing Find button.
* Related Choices: Allow the user to specify a sort order.
* libglom:
- Make libglom 1.22 parallel installable with glom 1.20.
- Document: Added get_translation_available_locales().
- Field: Remove unused get_gda_holder_string().
- Remove unused get_sql_format() methods.
- DbUtils:: Added get_fields_for_table(),
get_fields_for_table_one_field(), get_lookup_fields(), and
get_lookup_value()
- LayoutGroup:
- Add a
remove_field(parent_table_name, table_name, field_name)
method overload, deprecating the existing method overloads.
- Deprecate the old has_field() method and do not use it.
- Remove unused parameternamegenerator.[h|cc] source files.
* Build:
- Avoid deprecated glibmm API
(Murray Cumming)
1.20.4 (stable):
* Details: Really make non-editable multiline text fields non-editable.
(Murray Cumming)
* Edit menu: Make the Cut/Copy/Paste menus actually work.
(David King, Murray Cumming) Bug #518315 (Göran)
* Choices: Make sure related choices are sorted (by ID).
The sort order can be specified in Glom 1.21/22.
* libglom: Document_XML: Remove an unimplemented method.
Bug #666744 (yselkowitz)
1.20.3 (stable):
* Details: ID Find button: Really show the quick find feature.
* List: Really store data when the primary key is not auto-incremented.
* Add the glom_test_connection command-line tool.
* Film Manager example: Use English for Day/Night choices.
1.20.2 (stable):
* Correct parsing of quotes in example data.
* ComboBoxes: Work around GtkComboBoxText bug #612396.
This fixes the Users/Groups dialogs and the Script Library dialog.
* libglom: DbUtils::recreate_database_from_document():
Create groups and set table privileges too.
* More tests.
1.20.1 (stable):
* Avoid some unnecessary stdout warnings.
* Tests:
- Added several more tests and improved existing tests.
- Added gcov/lcov to generate test code coverage reports in HTML.
(make gcov)
* libglom:
- LayoutGroup: Added a remove_field(parent_table_name, table_name, field_name)
method overload.
- LayoutGroup: Added a has_field(parent_table_name, table_name, field_name)
method overload.
- Added DbUtils::set_fake_connection().
This is the master branch. See also the glom-1-20 branch.
2011-11-21 Murray Cumming <[email protected]>
libglom: Added DbUtils::set_fake_connection().
* glom/libglom/db_utils.[h|cc]: Added DbUtils::set_fake_connection()
because ConnectionPool is not public API.
* tests/test_fake_connection.cc: Use this function instead of using
ConnectionPool's API.
1.20.0 (stable):
Major changes since 1.18:
* Simplified main window.
* Glom can now store and display PDFs:
http://www.murrayc.com/blog/permalink/2011/07/14/glom-storing-pdfs/
It can store any file format, though it can only display images and PDFs.
* Print Layout: Major overhaul with improved UI and new functionality.
* Related Records: Allow the developer to specify how many rows to show.
* Choice drop-downs can show more than 2 fields.
* Choice drop-down fields are aligned.
* Choice drop-downs can show related fields:
http://www.murrayc.com/blog/permalink/2010/10/07/glom-choice-drop-downs-can-show-related-fields
* List columns have sensible widths.
Changes since 1.19.19:
* Details view:
- Default to left-alignment for numeric fields,
but default to right-alignment in the list view and in related
records lists.
- Move the checkbutton titles to the left.
- Make the Calendar portal work again. Bug #663310
* List view: Stop unnecessary saving of column widths.
* List view and Related Records: Disable buttons when appropriate.
Bug #663812 (André Klapper)
* libglom: Added ConnectionPool::set_fake_connection().
* Escape database connection details properly.
* Correctly escape and quote options when spawning tar or postgres.
* Build: Use the new Gnome::Gda::Numeric API.
1.19.19 (unstable):
* Use correct escapign of SQL identifiers in the custom SQL queries
that change database structure or GROUPS and USERS.
However, this will fail with quote characters due to libgda bug #663608
* Tests: Test some changes of database structure.
* Require the latest libgdamm.
(Murray Cumming)
1.19.18 (unstable):
* tests: Add a test of backup and restore.
(Murray Cumming)
* Require libgda 5.0.2 to fix these Glom bugs:
- Can't see images.
Bug #662925
- Data doesn't display when a field is renamed to string with a hyphen.
Bug #661655 (Ben Konrath)
- SQL Errors when a relationship name has capital letters.
Bug #661073
(Murray Cumming)
* Improvements to the (not compiled by default) SQLite code.
1.19.17 (unstable):
* Make connections to central PostgreSQL servers work again.
* Details:
- In developer mode, draw some lines, as in glom 1.18.
- Notebook: Avoid truncating related records buttons,
working around GtkFrame bug #662915 .
* Do not blank the data when showing the field definitions dialog.
* Fix some warnings about invalid field types with choices.
* Improvements to creation of temporary files, such as reports.
* Handle gdouble results from python functions.
* libglom:
- Utils::sqlbuilder_get_full_query(): Improve the result.
- Added Utils::build_sql_update_with_where_clause().
* User guide: Update the screenshots.
* tests:
- Add Glom::Priv test, to check parsting of PostgreSQL privileges tables.
- Add test of writing and then reading-back image data.
1.19.16 (unstable):
* Main window: Use a smaller default size.
(Murray Cumming)
* Replace progress dialogs with a GtkInfoBar.
(David King, Murray Cumming)
* Remove use of GtkHandleBox. Tool Palettes cannot now be
separated from the window.
(Murray Cumming)
* Build: Fix the build with the latest unstable glibmm and gtkmm.
(Murray Cumming)
* Tests:
- Test with sqlite too.
- Added some SQL injection tests.
(Murray Cumming)
1.19.15 (unstable):
* Do no try to pygobject_init() the incompatible 2 version instead of 3.0.
* Self-hosting: Attempt to avoid failed shutdowns.
* Tests: More SQL injection testing.
1.19.14 (unstable):
* Details: Avoid an outdent after group titles,
working around GtkFrame bug #644199.
* List View: Correct the default column widths.
* Command line: Correct some exit results.
* Add try/catch around all uses of std::locale(""),
though this should probably just fail early in main().
Bug #619445
* libglom:
- Correct the pkg-config file.
- Move ReportBuilder to libglom, adding a libxstl dependency.
* Tests:
- Self Hosting: Test more expected table structure and data.
- Add a simple SQL injection test.
- Test report building and contents.
- Test general XML validity of XSLT files.
* Examples:
- Remove all column_width attributes now that the defaults are good.
- Film Manager example: Change default table to Scenes.
1.19.13 (unstable):
* Developer:
- Deleting tables: Remove the auto-increment's next values too.
Bug #661653
* Details:
- Related Records: Allow min and max rows counts instead of just a rows count.
* List: Actually show custom choices, instead of crashing.
Bug #661764 (André Klapper)
* Print Layouts:
- Handle related records.
- Improve pagination.
- Use full page width when creating standard layouts.
* About dialog: Show the version number.
* Examples: Avoid use of pygtk, which causes a crash.
Bug #661766 (André Klapper)
* libglom: Make LayoutItem_Group::get_title_or_name() useful for portals too.
(Murray Cumming)
* Build:
- Avoid some deprecated GTK+ (in 3.3) and gtkmm API.
- Improve some translatable strings, using ustring::compose().
(Murray Cumming)
- Some OpenBSD fixes.
(Jasper Lievisse Adriaanse).
1.19.12 (unstable):
* Added the glom_create_from_example command-line utility.
This has no UI dependencies and might be useful when using Online Glom.
* Details:
- Print: Use a standard print layout instead of HTML.
- ID choosing dialog: Work around a crash in GTK+.
Bug #660347
- Related Records: Fix bug with a blank row when there is only one row.
- Related Records: Do not try to navigate to an empty record.
* Find:
- Get criteria even when a field is on the layout twice.
- Do not show data in related records.
* Developer mode:
- Fields: Adapt choices fields when changing field names.
Bug #661075
- Simplify the default layout structure for details.
- Details: Do not enable drag-and-drop by default.
- Field Formatting window: Make it slightly less tall.
See https://bugs.launchpad.net/ubuntu/+source/glom/+bug/863016
- Layout window: Correct the vertical order of Add buttons.
* Print Layout:
- Allow multiple pages.
- Add experimental Create Standard feature.
- Add an Align menu.
- Show contents of System Preferences in Fields.
* Document:
- Avoid writing some unnecessary XML nodes.
- Use CSS3 formatting for colors, via Gdk::RGBA.
(Murray Cumming)
* Build: Remove glibc-specific function call.
(Jasper Lievisse Adriaanse) Bug #660496
* libglom:
- LayoutItem_Portal: Added get_suitable_table_to_view_details().
- Added layout_field_should_have_navigation().
(Murray Cumming)
1.19.11 (unstable):
* Details:
- Avoid an empty layout when changing to developer mode.
(Requires libgdamm 4.99.4)
- Images: Avoid a warning when choosing.
* Print Layout:
- Use the correct numeric formatting.
- Use foreground colors from the text/field formatting.
- Related Records: Do not show editing formatting options.
- Layout: Fix alignment/expansion of the line options.
* Remove the Add Related Table feature.
It is useful, but it requires explanation and is probably confusing to new users.
Of course you can still add tables and then a relationship to them manually.
(Murray Cumming)
1.19.10 (unstable):
* Print Layout: Major overhaul to editing UI so it should be almost useable now.
* Related Records:
- Allow navigation through non-editable relationships.
- Correct automatic navigation to related records.
* Details: Avoid (failed) attempts to edit when navigating to related records.
* Avoid some invalid characters in the document.
* Script Library: Prevent a crash when opening the dialog.
* Several UI fixes to correct how widgets expand and align.
* Fix a crash when dragging items in the layout (developer mode)
* Build:
- Use pygobject-3.0 instead of pygobject-2.0.
- Remove the optional Maemo UI.
1.19.9 (unstable):
* Details:
- Related Records: Allow the developer to specify how many rows to show.
- Images: Avoid some saving of temp files.
1.19.8 (unstable):
* Details: Image fields:
- Support PDFs and similar files via the evince-view library.
(This adds a dependency.)
- Support other file formats, though there will be no preview image.
- Fix some window resizing issues.
1.19.7 (unstable):
* Details: Images:
- Fix insanely-big windows when big image files are used.
- Context menu: Add Open, Open With, and Save.
(Murray Cumming) Bug #630057
- Related Records: Show enough records.
(Murray Cumming)
- Do not navigate past the last row.
(Murray Cumming) Bug #526115 comment #25 (Michael Hasselmann)
* Add exampledir variable to pkg-config file.
(Ben Konrath) Bug #654384
* Add translator comments.
(Murray Cumming) Bug #638996 (Joe Hansen)
1.19.6 (unstable):
* Simplify the main window, and slightly simplify the menus.
* Find: Make this work again, and make it case-insensitive.
* ListView: Make the rows high enough.
* Fix the About box.
1.19.5 (unstable):
* Details:
- Make the Primary Key ID values visible again.
- Correct the sizing of the ... date button.
* Build:
- Adapt to the latest libgda and libgdamm API.
- Fix the build with --enable-warnings=fatal with gtkmm 3.1 and g++ 4.6.
- Require latest libepc, to avoid use of both GTK+ 3 and GTK+ 2.
- Use EggSpreadTableDnd, though it has crashes during layout drag-and-drop.
(Murray Cumming
1.19.4 (unstable):
* Calculated fields and button scripts:
- Properly return boolean results.
- Initialize pygobject, to fix the use of the PyRecord API.
* libglom: Added utils::build_sql_select_count_rows().
* Fix crashes when using choices with fixed lists.
* Do not crash if PyDateTime_IMPORT fails.
* Remove some unnecessary padding/borders around the main window.
* Main window: Use a custom Notebook-like widget instead of Gtk::Notebook.
* CSV Import: Fix quoted-newline detection, so we don't drop rows.
* Use the new Gtk::ComboBox CellArea API to align columns properly.
* Build:
- Depend on libgdamm-5.0 instead of libgdamm-4.0.
- Remove the dependency on pygda, though we now check for
gi.repository.Gda at startup instead.
It is provided by libgda-5.0 (currently 4.99.x).
- Require the latest mm-common and dist the mm-common scripts.
- Require the latest gtksourceviewmm
1.19.3 (unstable):
* Build
- Build with the latest gtkmm, goocanvasmm, libgdamm and gtksourceviewmm.
- Fix the tests builds with changed linker behaviour on Ubuntu Natty.
- Allow libglom to be built without building the Glom UI code too.
* Handle changed setlocale() behaviour on Ubuntu Natty.
1.19.2 (unstable):
* CSV Import: Actually preview and import the field values.
(Murray Cumming) Bug #625693 (maximiliano).
* List view: Make the retry option actually work afer entering invalid data.
(Murray Cumming)
* Details view: Solve some widget layout problems, by using
Use EggSpreadTable from libegg instead of Glom's own FlowTable widget.
* Build:
- Remove the gconfmm dependency, because we don't use it.
(Murray Cumming)
- Use upstream gettext instead Glib one.
(Javier Jardón) Bug #631367
- (Hopefully) solve the timing problems in the import tests, which are
now active again.
- Call xmlCleanupParser() because libxml++ does not anywmore.
(Murray Cumming)
1.19.1 (unstable):
* Choices: Allow multiple extra fields, and allow them to be related fields
or even doubly-related fields.
See http://www.murrayc.com/blog/permalink/2010/10/07/glom-choice-drop-downs-can-show-related-fields/
* Added a --stop-auto-server-shutdown command-line option for debugging.
* Build:
- Use gtkmm-3.0 instead of gtkmm-2.4.
- Use goocanvasmm-2.0 instead of goocanvasmm-1.0.
- Use gtksourceviewmm-3.0 instead of gtksourceviewmm-2.0.
1.18.0: (stable):
* Builds with gtkmm-2.24 with no use of deprecated API.
1.16.2: (stable):
* CSV Import: Actually preview and import the field values.
Bug #625693 (maximiliano).
* List view: Make the retry option actually work afer entering invalid data.
Bug #167818
* Build: Remove the gconfmm dependency, because we don't use it.
(Murray Cumming)
1.16.1 (stable):
* Prevent crash when all fields have been deleted from a table, also when
then trying to reopen the file. (Murray Cumming)
* Find: prevent duplicate error dialog when no find criteria was entered.
(Armin Burgeier)
* Build: Fix the python module's filename.
(Murray Cumming)
1.16.0 (stable):
New features in Glom 1.16, compared to Glom 1.14:
* Field Formatting: Related Choices: Add a Show All checkbox, so that
the list of choices can be restricted according to the relationship,
instead of just showing all values in the related table.
This allows the Choices to be used to narrow down a choice based on a
choice in another field.
* Developer menu: Added Export Backup and Restore Backup menu items.
These use PostgreSQL's pg_dump and pg_restore utilities, wrapping the
dump and .glom file up in a .tar.gz.
As well as allowing backups of data, this should make it easier to upgrade
the PostgreSQL version, which some distros do automatically when upgrading
to new major versions of Glom. This is possible because pg_restore can
work with the pg_dump output of an older PostgreSQL version.
See also:
http://www.glom.org/wiki/index.php?title=Pg_dump_when_upgrading_PostgreSQL
(Murray Cumming)
Changes in 1.16.0:
Build:
- Do not use deprecated gtkmm API (requires gtkmm 2.22).
(Murray Cumming)
- Various small improvements
(David King)
1.15.2 (unstable):
* Field Formatting: Related Choices: Add a Show All checkbox, so that
the list of choices can be restricted according to the relationship,
instead of just showing all values in the related table.
This allows the Choices to be used to narrow down a choice based on a
choice in another field.
(Murray Cumming) Bug #625536 (fmyhr)
* Allow unique fields with same name in multiple tables.
(Murray Cumming) Bug #625192 (fmyhr).
* Developer menu: Added Export Backup and Restore Backup menu items.
These use PostgreSQL's pg_dump and pg_restore utilities, wrapping the
dump and .glom file up in a .tar.gz.
As well as allowing backups of data, this should make it easier to upgrade
the PostgreSQL version, which some distros do automatically when upgrading
to new major versions of Glom. This is possible because pg_restore can
work with the pg_dump output of an older PostgreSQL version.
See also:
http://www.glom.org/wiki/index.php?title=Pg_dump_when_upgrading_PostgreSQL
(Murray Cumming)
* Build:
- Explicitly link with libdl for Python module loading test.
(David King)
- Rename the library to libglom-1-16 to be parallel-installable with
libglom-1-14.
- Adapt to the latest libgdamm API.
(Murray Cumming)
1.15.1 (unstable):
* Uses Gnome::Gda::SqlBuilder in most places to avoid manually building SQL
query strings. This should be more robust and safer.
(Murray Cumming)
* Correct the position of "Records / Found" labels.
(Daniel Borgmann)
* Find:
- Make Find mode a toggle and move it to the Edit menu.
- Fix a crash when using find mode.
(Daniel Borgmann)
* List view:
- Don't add a new row when cancelling editing of a placeholder row.
- Don't allow placeholder rows to be delteted.
(Daniel Borgmann)
* Build libglom and pyglom API documentation.
(Murray Cumming, Daniel Elstner)
1.14.5 (stable):
* Allow unique fields with same name in multiple tables.
(Murray Cumming) Bug #625192 (fmyhr).
1.14.4 (stable):
* Developer menu: Added Export Backup and Restore Backup menu items.
These use PostgreSQL's pg_dump and pg_restore utilities, wrapping the
dump and .glom file up in a .tar.gz.
As well as allowing backups of data, this should make it easier to upgrade
the PostgreSQL version, which some distros do automatically when upgrading
to new major versions of Glom. This is possible because pg_restore can
work with the pg_dump output of an older PostgreSQL version.
See also:
http://www.glom.org/wiki/index.php?title=Pg_dump_when_upgrading_PostgreSQL
(Murray Cumming)
* Build: Explicitly link with libdl for Python module loading test.
(David King)
1.14.3 (stable):
* Fix position of "Records / Found" labels.
(Daniel Borgmann)
* List: Don't allow deleting placeholder rows.
(Daniel Borgmann)
* Build: Don't require avahi-ui.
1.14.2 (stable):
* Fix document saving (horribly broken in 1.14.1).
* Python field calculations and button scripts:
- Test buttons now show python errors.
- Really convert the value to the field's type.
* Fix a crash when showing choices in some situations.
* Added several "make check" tests.
(Murray Cumming)
1.14.1 (stable):
* Python field calculation: Fix a crash when using some date types.
* Documentation:
Build and install libglom (C++) API reference documentation (for use by applications)
and pyglom (Python) API reference documentation (for use by Glom calculated
fields and button scripts).
(Murray Cumming, Daniel Elstner, David King)
* Added unit tests. (Murray Cumming)
1.14.0 (stable):
New features in Glom 1.14, compared to Glom 1.12:
* Details:
- Align widgets in neighbouring groups, making things look generally neater.
(and fix a bug that made the widgets far too wide.)
* Details and List:
Allow custom formatting of static text and buttons instead of just fields.
* Field Formatting:
- Add the option to use a different text color for negative values.
Suggested by Mathias Hasselmann.
- Add a horizontal alignment option, though we still right-align numbers
by default. Bug #591125 (Patrick Chan)
- Allow choices to be shown as radio buttons instead of a drop-down combo box.
Requested by Frederik Vande Rieviere.
* Many small UI improvements.
* Field calculations and button scripts:
- Fields values may now be changed like so:
record["fieldname"] = 123
- Simple navigation is posible via, for instance:
ui.show_table_list("artists")
ui.show_table_details("artists", 10)
where 10 is the value of the primary key in the table.
- Added ui.print_layout(), ui.print_report(report_name),
and ui.start_new_record() methods.
- Added a startup script feature, in Database Preferences.
* Plus several important bug fixes.
1.14.0: (stable)
* Design Mode:
- Notebook properties: Fix crash.
- Reports: Secondary Fields: Fix crash.
* Creating from example:
- Really save the new filename in the recent files list.
(Murray Cumming, Openismus)
- Don't show error dialog when user cancels creation from an example.
(Daniel Borgmann, Openismus)
* Opening recent files: Warn when a file doesn't exist, and forget it,
instead of just showing a generic error dialog.
(Murray Cumming, Openismus)
* Python scripts and field calculations: Fix a Glom 1.13 bug with use of
date fields.
* User Interface: General cleanup. The dialogs are more compliant with the
GNOME HIG and there are many minor ixes to the user interface.
(Daniel Borgmann, Openismus)
* Build:
- Fix the build with --as-needed.
(David King, Openismus)
- Add tests for the Glade XML files.
(Murray Cumming, David King, Openismus)
* Windows Installer: Update for Glom 1.14
(Armin Burgmeier)
1.13.9 (unstable):
* Field Formatting: Allow choices to be shown as radio buttons instead of a
drop-down combo box. Requested by Frederik Vande Rieviere.
(Murray Cumming)
* Python scripts: Added a startup script feature, in Database Preferences.
* Initial Dialog: Do not crash sometimes if cancelling the file chooser.
(Murray Cumming) Bug #612303 (David King)
* Build:
- Don't use deprecated gtkmm API. This requires the latest gtkmm.
(Murray Cumming)
- Require the correct gtkmm and libsigc++ versions.
(David King)
* Fix the Glade file so it can be opened with the latest glade-3 (when the
gtksourceview glade catalog is installed).
(David King)
1.13.8 (unstable):
* Details:
- Align widgets in neighbouring groups, making things look generally neater.
- Do not make field widgets too wide, so this fits on a laptop screen.
(Murray Cumming)
* Python scripts: Added ui.print_layout(), ui.print_report(report_name),
and ui.start_new_record() methods.
(Murray Cumming)
* Fix the build with exceptions disabled.
(Peter Penz )
1.13.7 (unstable):
* Avoid a crash when a script navigates from a list view to another table.
Maybe avoid similar warnings/crashes when doing normal navigation.
1.13.6 (unstable):
* Python scripts:
- Fields value may now be changed like so:
record["fieldname"] = 123
- Simple navigation is posible via, for instance:
ui.show_table_list("artists")
ui.show_table_details("artists", 10)
where 10 is the value of the primary key in the table.
(Murray Cumming)
* Avoid showing %20 in the window title.
Noticed by Daniel Borgmann.
(Murray Cumming)
1.13.5 (unstable):
* Python functions: Fix some regressions since the switch to boost::python.
(Murray Cumming)
* Disable broken unit tests to fix make distcheck.
(Murray Cumming)
* libglom: Fix build issue for Maemo.
(Peter Penz)
1.13.4 (unstable):
* Glom now depends on boost::python.
This release is to give disto packagers a chance to cope with that.
(Murray Cumming)
* Fix Maemo build errors
(Peter Penz)
(This fix is also in glom 1.2. The boost::python dependency will make
building of 1.13/14 on Maemo almost impossible.
1.13.3 (unstable):
* Relationships Overview: Avoid a crash and a warning when closing.
(Murray Cumming) Bug #607938 (Michael Hasselmann)
* Import: Avoid a hang, hopefully.
(Michael Hasselmann)
* Import: Fixed out-ouf-bounds crash.
(Michael Hasselmann) Bug #607938 (ialx).
* New file: Allow the title to contain quotes, avoiding weird errors.
(Murray Cumming) Bug #607957 (Michael Hasselmann)
* libglom:
- Improved include paths used in headers.
(Murray Cumming)
- Avoid crashes with invalid parameter values.
(Michael Hasselmann)
* Use Gtk::ToolPalette, requiring gtkmm 2.19.4, instead of code copied from libegg.
* Command-line arguments: Do some checks.
(Murray Cumming)
1.13.2 (unstable):
* Details layout: Really use the new formatting options (horizontal alignment,
foreground color and background color) for static text items and buttons.
(Murray Cumming)
1.13.1 (unstable):
* Details and List layouts:
Allow custom formatting of static text and buttons instead of just fields.
(Murray Cumming)
* Field Formatting:
- Add the option to use a different text color for negative values.
(suggested by Mathias Hasselmann)
- Add a horizontal alignment option, though we still right-align numbers
by default. #591125 (Patrick Chan)
(Murray Cumming)
1.12.5 (stable):
* List View: Don't chop off the bottom of text when using large fonts.
(Murray Cumming) Bug #607023 (Michael Hasselmann)
* Avoid problems when entering numbers with currency suffixes when using the
C locale.
(Murray Cumming, Michael Hasselmann)
* Windows: Install glom_1_12.pyd instead of glom.pyd.
(Armin Burgmeier) Bug #605593 (Karel Brucek)
* libglom: Added NumericFormat::get_default_precision().
1.12.4 (stable):