-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
2238 lines (1593 loc) · 78.3 KB
/
ChangeLog
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
2009-02-18 Jonathon Jongsma <[email protected]>
* configure.in: bump version to 2.24.0
2009-02-15 Dodji Seketeli <[email protected]>
* src/gtkhex.c (gtk_hex_init): GObject type ids should be instances of
GType, not of guint. On x86_64, GType size is 8 bytes whereas guint is
4 bytes. This was causing random crashes in Nemiver in gtk_hex_new.
2009-02-06 Martin Olsson <[email protected]>
* src/ghex-window.c:
(ghex_window_update_status_message): Fix an off-by-one error in reporting
the number of bytes selected in the status bar.
* src/gtkhex.c:
(gtk_hex_set_cursor): emit the 'cursor-moved' signal later to fix broken
reporting of selection range when selecting text with the keyboard
2009-01-27 Pacho Ramos <[email protected]>
* ghex.desktop.in: Bug #568023: provided desktop files don't follow
freedesktop spec
2009-01-26 Martin Olsson <[email protected]>
* src/ghex-window.c:
* src/gtkhex.c:
(gtk_hex_key_press):
* src/hex-document.c:
Bug #564375 - patch that removes unused variables in ghex.
2009-01-26 Martin Olsson <[email protected]>
* src/hex-dialog.c:
(hex_dialog_getview): Bug #564371 - ghex2 prints g_warning on startup because
it uses a deprecated API (GtkAdjustment page_size being non-zero.
2008-04-10 Jonathon Jongsma <[email protected]>
* configure.in: post-release bump to 2.23.0 for trunk
2008-04-06 Jonathon Jongsma <[email protected]>
* src/ui.c: Update the About Dialog to use the application icon. In the
process, I ported the code from GnomeAbout to GtkAboutDialog.
Fixes Bug #520983
2008-04-05 Jonathon Jongsma <[email protected]>
* src/gtkhex.c: fix a bug where the selection would always start at 0 if
the user only used the keyboard. To reproduce, navigate away from the start
of the document, then press Shift+Down, and the text will be selected, but
instead of starting the selection from where the cursor was when you pressed
Down, it would start from the beginning of the file.
2008-04-09 Jonathon Jongsma <[email protected]>
i
* src/gtkhex.c (draw_shadow, gtk_hex_size_allocate): Fix the allocation code
to allocate the child widgets relative to the GtkHex allocation.x and
allocation.y coordinates instead of (0,0). Fixes Bug #527272
2008-04-12 Jonathon Jongsma <[email protected]>
* src/gtkhex.c (draw_shadow): remove the call to gdk_window_clear_area()
since it can sometimes result in the background between the hex and ascii
widgets becoming dark black. Fixes Bug #527279
2008-04-10 Jonathon Jongsma <[email protected]>
* src/Makefile.am: set G_LOG_DOMAIN for the shared libgtkhex library so that
warning messages use the right domain
2008-04-10 Rodney Dawes <[email protected]>
* configure.in: Up version to 2.22.0 for release
2008-02-26 Rodney Dawes <[email protected]>
* configure.in: Up version to 2.21.92 for release
2008-02-26 Rodney Dawes <[email protected]>
* src/ghex-window.c (ghex_window_new):
Pass DATADIR instead of PREFIX to bonobo_ui_util_set_ui
Patch from Yuriy Penkin <[email protected]>
Fixes #515425
2008-01-30 Rodney Dawes <[email protected]>
* configure.in: Up version to 2.21.90 for release
2008-01-30 Rodney Dawes <[email protected]>
* Makefile.am: Use GCONF_SCHEMA_FILE_DIR for schemadir
Fixes #511529
2007-12-21 Rodney Dawes <[email protected]>
* configure.in:
* gtkhex.pc.in:
Use the same version number for libgtkhex as ghex itself
2007-12-21 Rodney Dawes <[email protected]>
* configure.in: Up version to 2.21.4 for release
2007-11-30 Jonathon Jongsma <[email protected]>
* src/gtkhex.c:
* src/gtkhex.h: add API to set a starting offset address. In some ways it
seems that this information is a property of the document rather than the
view, but the GtkHex widget does all of the offset-related stuff, so I put
it here. This is useful for using this widget as a debugger memory editor
since we'll only read a small amount of memory from gdb and we want to be
able to label the rows with the correct address. Fix for bug #465137
2007-11-30 Jonathon Jongsma <[email protected]>
* src/gtkhex.c:
* src/gtkhex.h: connect to the HexDocument's document_changed signal and
redraw the widget so that the display gets updated when modifying the data
with hex_document_set_data(). Fix for bug #500358
2007-12-09 Rodney Dawes <[email protected]>
* configure.in: Update version to 2.20.1 for release
2007-11-28 Jonathon Jongsma <[email protected]>
* src/hex-document.h: added missing include for gtkwidget.h
when the file is included directly
2007-11-28 Jonathon Jongsma <[email protected]>
* src/gtkhex.h: fixed typo G_BEGIN_DECLS instead of G_END_DECLS
2007-09-17 Rodney Dawes <[email protected]>
* configure.in: Update version to 2.20.0 for release
2007-09-02 Rodney Dawes <[email protected]>
* MAINTAINERS: I got hustled into this by a pre-commit script
2007-08-27 Rodney Dawes <[email protected]>
* configure.in: Update version to 2.19.91 for release
2007-08-25 Rodney Dawes <[email protected]>
* src/gtkhex.c (gtk_hex_key_press):
Change the return value to be gboolean instead of gint
(gtk_hex_key_release):
Turn off selection mode when Shift is released
(gtk_hex_button_release):
Enable selection mode if doing shift+click
2007-08-25 Rodney Dawes <[email protected]>
* src/preferences.c (create_prefs_dialog):
Add mnemonics to a few labels, and set mnemonic widget if needed
* src/ui.c (group_type_label[3]):
Add mnemonics to the type labels, for the preferences dialog
Fixes #466695
2007-08-25 Rodney Dawes <[email protected]>
* src/Makefile.am:
* src/ghex-window.c (ghex_window_new):
Pass PREFIX in to bonobo_ui_util_set_ui so that we can load the
ui xml from the appropriate prefix
Fixes #467384
2007-08-13 Rodney Dawes <[email protected]>
* configure.in: Update version to 2.19.90 for release
2007-08-10 Jonathon Jongsma <[email protected]>
* src/hex-document.h: add G_BEGIN/END_DECLS around public declarations
so that it can be easily included in C++ applications
2007-08-09 Rodney Dawes <[email protected]>
* src/gtkhex.c (gtk_hex_key_press):
Handle keypad presses appropriately when numlock is on/off
Fixes #464979
2007-08-08 Rodney Dawes <[email protected]>
* src/gtkhex.c (gtk_hex_insert_autohilight):
Pass the right type to sizeof for the malloc
Patch from Stanislav Brabec <[email protected]>
Fixes #339055
2007-08-08 Rodney Dawes <[email protected]>
* configure.in: Update version to 2.19.0 for release
Don't pass arguments to AM_INIT_AUTOMAKE and AC_INIT both
2007-08-08 Rodney Dawes <[email protected]>
* .cvsignore: Remove all the now-unneeded .cvsignore files
* *.make: Remove these included makefiles as they are autogenerated
* Makefile.am: Add DISTCHECK_CONFIGURE_FLAGS
Add CLEANFILES and DISTCLEANFILES
Add gnome-doc-utils files to EXTRA_DIST
Remove omf-install from SUBDIRS
* autogen.sh: Require automake 1.7 and set up for gnome-doc-utils
* configure.in: Update to use gnome-doc-utils
Remove help/$lang/Makefile from AC_OUTPUT
Remove omf-install from AC_OUTPUT
* help/*/Makefile.am:
* help/*/ghex2.xml:
* help/*/ghex2-*.omf:
* help/*/legal.xml:
* help/*/topic.dat:
* help/*/*.html:
* help/*/*.png:
* help/*/*.sgml:
* help/*/*.txt:
Remove all these files that are no longer needed with gnome-doc-utils
* help/*/*.po: New po files for translations with gnome-doc-utils
* help/Makefile.am: Update to use gnome-doc-utils
* help/ghex.omf.in: Generate the translated omf files from this
2007-08-06 Rodney Dawes <[email protected]>
* Makefile.am: Remove icon install bits
Add icons to SUBDIRS
* configure.in: Create Makefiles for icons subdirectories
* ghex.desktop.in: Use ghex as the Icon instead of gnome-ghex.png
* gnome-ghex.png: Replaced with udpated style icons
* icons: Add new icons subdir with icons and automake files
New icon original from Matteo Drera <[email protected]>
* src/main.c (main): Set the default window icon from the theme
rather than a hardcoded path to the old gnome-ghex.png
Fixes #405331
2007-08-03 Rodney Dawes <[email protected]>
* ghex.spec: Remove from version control as it is autogenerated
by the configure script
2007-08-03 Rodney Dawes <[email protected]>
* configure.in: Require intltool >= 0.35.0 for po/LINGUAS support
Remove ALL_LINGUAS as we moved this information to po/LINGUAS
2007-08-03 Rodney Dawes <[email protected]>
* src/ghex-window.c (ghex_window_ok_to_close):
* src/ui.c (save_cb):
Fix typo in string: occurred not occured
Partially fixes #314569
2007-08-03 Rodney Dawes <[email protected]>
* src/ghex-ui.xml: Fix mnemonic conflicts in Edit menu
Remove ellipsis from "Character _Table" toggle menu item
Patch from Subrahmanyam Madduri
Fixes #339054
2007-08-03 Rodney Dawes <[email protected]>
* ghex.desktop.in: Add semicolon to end of Categories list
Patch from Luca Cavalli <[email protected]>
Fixes #339414
2007-08-03 Rodney Dawes <[email protected]>
* src/findreplace.c (replace_all_cb):
Use ngettext to translate plurals
Fixes #123865
2007-08-03 Rodney Dawes <[email protected]>
* Makefile.am: Remove duplicate @INTLTOOL_DESKTOP_RULE@
Fixes #333808
2007-08-03 Rodney Dawes <[email protected]>
* Makefile.am: Support --disable-schemas-install
Patch from [email protected]
Fixes #333807
2007-07-27 Raivis Dejus <[email protected]>
* configure.in: Added 'lv' to ALL_LINGUAS.
2007-01-10 Pema Geyleg <[email protected]>
* configure.in: Added 'dz' to ALL_LINGUAS.
2006-05-23 Jaka Mocnik <[email protected]>
* configure.in: version 2.8.3.
* src/ghex-window.c (ghex_window_drag_data_received): do not
dereference the filename pointer!
* src/gtkhex.c (gtk_hex_set_cursor[_xy]): add a sanity check so that
new cursor pos is always non-negative.
* src/hex-document.c (get_document_attributes): do not discriminate
against empty files.
2006-04-17 Kjartan Maraas <[email protected]>
* configure.in: Remove obsolete entry for no_NO.
* po/no.po: And the translation.
2006-03-07 Jaka Mocnik <[email protected]>
* configure.in: version 2.8.2; release a tarball to pick up new
translations; tagged as GHEX_2_8_2.
2005-12-06 Kjartan Maraas <[email protected]>
* configure.in: Add nb to ALL_LINGUAS.
2005-08-24 Pawan Chitrakar <[email protected]>
* configure.in: Added ne in ALL_LINGUAS
2005-04-01 Steve Murphy <[email protected]>
* configure.in: Added "rw" to ALL_LINGUAS.
2004-11-06 Amanpreet Singh Alam <[email protected]>
* ALL_LINGUAS: pa [Punjabi] is add for Transaltion
2004-10-17 Jaka Mocnik <[email protected]>
* src/Makefile.am (INCLUDES): removed -I$(includedir): apparently it breaks
builds for some people.
* src/converter.c: fixed a bug in set_values().
* configure.in: version 2.8.1; released a tarball; tagged as GHEX_2_8_1.
2004-10-11 Jaka Mocnik <[email protected]>
* src/ui.c: '(C)' -> 'Copyright'.
* released 2.8.0 tarball; tagged as GHEX_2_8_0.
2004-10-09 Jaka Mocnik <[email protected]>
* configure.in: bumped version to 2.8.0: now we have a reason to.
* src/findreplace.c: changed all GtkEntries to GtkHex widgets which allow for
mixed hex/ascii editing of search and replace strings. removed the search type
selection radio buttons as they are not needed anymore.
* src/hex-document.[ch]: renamed hex_document_new() to hex_document_new_from_file()
and added hex_document_new() that creates an empty document. fixed all code to
respect this.
* src/gtkhex.[ch]: new function gtk_hex_set_geometry() that allows user to set the
GtkHex widget dimensions by number of characters per line and number of visible lines.
* src/gtkhex.c: misc bugfixes.
2004-10-07 Jaka Mocnik <[email protected]>
* src/ghex-window.c (ghex_window_load): fixed padding and border of window vbox.
* src/preferences.c (offset_fmt_update_from_entry): new function for updating format
string with contents from prefs dialog entry.
(format_focus_out_event_cb): update format string.
* ghex2.schemas: removed unused gconf keys for print font sizes.
* major cleanup: contents of ghex.h moved to separate header file for each module
making up ghex; removed unused #defines and variables left over after more than
6 years of occasional coding on ghex.
2004-10-06 Jaka Mocnik <[email protected]>
* src/gtkhex.[ch]: renamed gtk_hex_[copy|cut]_clipboard() to
gtk_hex_[copy|cut]_to_clipboard().
* src/gtkhex.[ch]: added gtk_hex_clear_selection() and gtk_hex_get_selection(),
made gtk_hex_set_selection() and gtk_hex_delete_selection() public.
* src/ghex-window.[ch]: added ghex_window_update_status_message() and use it
throughout the source.
* src/ghex-window.c: added selection interval and selection size to status message;
fixes #151848.
* src/preferences.c: update the status message after offset format changes;
fixes #154690.
2004-10-04 Jaka Mocnik <[email protected]>
* src/ghex-window.c (ghex_window_drag_data_received): use g_filename_from_uri() as
suggested by Fredrik Noring.
* configure.in: set version back to 2.6.3; there really hasn't been anything that
new that would require a new minor version...
* src/gtkhex.c: added hex_scroll_cb() and ascii_scroll_cb() that propagate the event
to the scrollbar, effectively enabling mouse wheel scrolling while the pointer is in
the hex or ascii view.
* src/ui.c (about_cb): caronized the c in my surname;) and removed email addresses.
* src/preferences.c: moved definitions of variables pertaining to configuration
to config.c.
* src/gnome-print-font-picker.c (gnome_print_font_picker_label_use_font_in_label):
introduced some sanity checks; probably fixes #144261 - I couldn't reproduce it
in any way, so I suspect it only appears in faulty font setups.
* applied the following patches patch by Subrahmanyam Madduri:
* src/ghex-window.c (drag_data_received):
avoids many DND issues. fixes #150333, #150335, #150336.
* src/findreplace.c (replace_all_cb): removed typo mistakes. fixes #150338.
* src/ui.c (close_cb): status bar is reset upon file close. fixes #150339.
2004-08-26 Mohammad DAMT <[email protected]>
* configure.in: Added id to ALL_LINGUAS
* po/id.po: Added Indonesian translation done by Abdul Hamid.A.Nawawi <[email protected]>
2004-06-16 Jaka Mocnik <[email protected]>
* src/ghex-window.c (ghex_window_set_doc_name): applied patch from
Subrahmanyam Madduri: changed the title order as "<filename> - GHex"
Fixes bug 60089 in bugzilla.ximian.com.
2004-06-11 Jaka Mocnik <[email protected]>
* src/preferences.c (prefs_response_cb): display help. fixes #143643.
* src/findreplace.c (goto_byte_cb): report an error if the input is
not a positive decimal number or a hex number, beginning with '0x'.
fixes #144014.
2004-05-20 Jaka Mocnik <[email protected]>
* ported some bugfixes from gnome-2-6 branch:
* src/hex-document.[ch]: new signals "undo", "redo" and
"undo_stack_forget" added.
* src/hex-document.c: remove all calls to
hex_document_set_menu_sensitivity(). UI related stuff should be
abstracted from the HexDocument class. man, was I dumb... instead
just invoke the new signals.
* src/hex-document-ui.c (hex_document_set_menu_sensitivity): changed
to set_doc_menu_sensitivity().
* src/ghex.h: prototype for set_doc_menu_sensitivity().
* src/ghex-window.c (ghex_window_load): connect
set_doc_menu_sensitivity() to all three new signals.
* all the above together should fix #142220.
* src/gtkhex.h: removed hex-dialog.h include. moved advanced find
dialog related typedefs to ghex.h where they belong. fixes #142221.
2004-04-26 Adam Weinberger <[email protected]>
* en_CA.po: Added en_CA to ALL_LINGUAS.
2004-04-25 Jaka Mocnik <[email protected]>
* applied a patch from Muktha Narayan; prevent a crash when advanced
find is issued with no file loaded (fixes #131919):
* findreplace.c (advanced_find_add_cbadvanced_find_add_cb): check if
there is a document loaded.
* ghex-window.c (ghex_window_set_sensitivity): disable AdvanceFind
option if there's no document loaded.
* applied a patch from Kaushal Kumar to destroy a dialog upon
response (fixes #131411):
* ghex-window.c (ghex_window_save_as): Destroy the 'overwrite'
message dialog after getting the response.
Fix bugzilla bug #131411.
* applied a patch from Vijaykumar Patwari to validate the print
ranges (fixes #120295):
* src/ui.c (ghex_print_dialog_response): Removed pji->config
getting populated.
(ghex_print_run_dialog): setting the value for pji->config.
Fixes bug# 120295.
* applied a patch from Shakti Sen that closes another question dialog.
fixes #136745:
* src/ui.c (revert_cb): Destroying the question dialog.
Fixes bug #136745
* src/ghex-ui.xml: added About item its stock icon, as suggested by
Kaveri Murthy.
* src/findreplace.c (create_advanced_find_add_dialog): move the color
selection in the vbox, since it screws up the action area if put
there. fixes #131907.
* src/ui.c (ghex_print_document_real): create a progress dialog.
(ghex_print_progress): progress callback for printing.
* src/print.c (ghex_print_job_execute): allow user to call a progress
indication callback. fixes #113356.
* src/hex-document.c (hex_document_export_html): fixed progress dialog
to be a true dialog.
(export_html_cb): destroy message box.
* (ghex-window.c, ui.c): replaced all uses of GtkFileSelection with
GtkFileChooserDialog! among other things, this fixes #140332.
* src/hex-document.c (hex_document_export_html): create UTF-8 encoded
output. fixes #122493.
* src/preferences.c (select_display_font_cb, create_prefs_dialog): use
GtkFontButton for display font selection.
* Makefile.am: removed OrigTree.pm from EXTRA_DIST.
* configure.in: fixed package dependency versions; bumped version to
2.6.0;tagged as GHEX_2_6_0; branched off gnome-2-6 branch.
2004-03-04 Breda McColgan <[email protected]>
* help/C/ghex2.xml: Updated for GNOME 2.6, technical review draft
* help/C/ghex2-C.omf: Updated for GNOME 2.6
* help/C/l10n.txt: Updated for GNOME 2.6
* help/C/figures/ghex_window_empty.png: Updated for GNOME 2.6
* help/C/figures/ghex_window_open.png: Updated for GNOME 2.6
2004-02-12 Tomasz Kłoczk o<[email protected]>
* src/Makefile.am: fixed paralel build (make -j<N>).
* configure.in: Trivial cleanup: remove AC_SUBST(CFLAGS),
AC_SUBST(CPPFLAGS) and AC_SUBST(LDFLAGS). This variables are
substed by default.
2003-12-30 Jaka Mocnik <[email protected]>
* Makefile.am: include intltool-modules dir in distribution tarball.
2003-12-29 Jaka Mocnik <[email protected]>
* configure.in: added --enable-deprecations parameter to allow for
configurable inclusion of *_DISABLE_DEPRECATED defines.
bumped version to 2.5.2; tagged as GHEX_2_5_2; released a tarball
* src/Makefile.am: respect the above.
2003-12-19 Shakti Sen <[email protected]>
* src/ui.c (close_cb):
Unreferenced the object (doc) only after destroying the window.
Fixes the bug #129674
2003-12-14 Jaka Mocnik <[email protected]>
* configure.in: removed -Wall in order to allow non-gcc builds.
2003-11-02 Jaka Mocnik <[email protected]>
* src/gtkhex.c (render_xc, render_ac): render inactive cursor as
an outlined rectangle. fixes #126034.
(gtk_hex_key_press): toggle active view on tab, not just on control
tab. fixes #126033.
(gtk_hex_size_allocate): queue offset widget for redraw .
2003-10-25 Jaka Mocnik <[email protected]>
replaced deprecated functions all over the code. this will probably
cause some things not to work;)
* src/findreplace.c: Use GtkColorSelection.
* src/preferences.c: Use GtkFontSelection.
* src/converter.c: GnomeDialog -> GtkDialog.
* src/gtkhex.c (gtk_hex_class_init): gtk_signal_new -> g_signal_new.
* src/ghex-window.c, src/ui.c: GnomeMessageBox -> GtkMessageDialog.
* configure.in: version 2.5.1; tag GHEX_2_5_1.
2003-10-10 Jaka Mocnik <[email protected]>
* src/print.c (ghex_print_job_info_destroy): remove
gnome_print_job_close().
* src/print.c (ghex_print_job_execute): call gnome_print_job_close()
here!
* src/gtkhex.c (gtk_hex_update_auto_highlight): moved cur declaration
to beginning of the block!
2003-10-08 David Hammerton <[email protected]>
* Add find high-lighting: Occuranced of a search which are visible
are now highlighted red. Also added an 'advanced find' dialog
box to allow for multiple searches at once (with different
highlighting colours).
* src/hex-dialog.c: Internationalize conversion dialog strings.
* src/gtkhex.c: Don't display the char 0x7f in the ascii window,
to avoid corrupt output.
2003-09-25 Jaka Mocnik <[email protected]>
* applied a patch for the type dialog by David Hammerton. thank
the guy for some great work!
* Makefile.am: added new stuff to build.
* configure.in: bumped version to 2.5.0
2003-09-10 Jaka Mocnik <[email protected]>
* src/Makefile.am: removed redundant -DGHEX_UI_DIR and
-DGHEX_GLADEDIR CFLAGS!
* configure.in: bumped version to 2.4.0.1; tag GHEX_2_4_0_1;
fixes problems with installation of locale files.
2003-09-01 Jaka Mocnik <[email protected]>
* src/ghex-window.c: applied a patch from Kaushal Kumar: Check on
close if the current file was deleted, and prompt for a save to
avoid a possible data loss. fixes #119855.
(ghex_window_save_as): put warning dialog on top. fixes #119707.
patch by Shakti Sen.
2003-08-18 Stanislav Brabec <[email protected]>
* Makefile.am: Added xmldocs.make to EXTRA_DIST (needed for
autoreconf).
2003-08-12 Jaka Mocnik <[email protected]>
* src/ghex-window.c: applied patch by Shakti Sen to prevent NULL
filenames.
* src/main.c: dont crash if a document fails to open because of
lack of memory.
2003-05-14 Guntupalli Karunakar <[email protected]>
* configure.in: Added "ml" to ALL_LINGUAS.
2003-05-28 Danilo Segan <[email protected]>
* configure.in: Added "sr" and "sr@Latn" to ALL_LINGUAS.
2003-05-24 Jaka Mocnik <[email protected]>
* src/ui.c: don't retain the previous file name when opening a new
one. patch by Muktha Narayan.
2003-05-15 Jaka Mocnik <[email protected]>
* src/ui.c: pass proper arg to va_end. patch by Miguel Ibarra.
2003-04-30 Irene Ryan <[email protected]>
* help/C/ghex2.xml: Fixed one technical inaccuracy and included
a description of the Revert menu item
* help/C/ghex2-C.omf: Updated the manual release details
* help/C/*.png: Removed obsolete graphic files
* help/C/ghex.xml: Removed obsolete file
* help/C/*.sgml: Removed obsolete SGML files
2003-04-29 Jaka Mocnik <[email protected]>
* made prefs dialog instant-apply.
* src/ui.c: don't explicitly call gnome_print_job_close(), since
it is called in ghex_print_job_info_destroy().
2003-04-14 Mike Lei <[email protected]>
* configure.in: Added Makefile support for de es fr it sv ko zh_CN zh_TW
* added online help for above languages and ja
2003-04-11 Jaka Mocnik <[email protected]>
* src/gtkhex.c: Deactivate selection for keys other then
Arrows and PgUp/PgDown. Fixes bug 109397. patch by Rajkumar
Sivasamy.
* src/gtkhex.c: draw highlight in secondary view with the color
for insensitive state. fixes bug 108756.
* src/chartable.c: fixed keybindings. fixes 107188.
* src/ghex-window.c (ghex_window_load): set max undo depth only
if a document was created. patch by Pasupathi Duraisamy.
* src/main.c (main): only attempt to open a file that exists. patch
by Pasupathi Duraisamy.
* tagged as GHEX_2_3_0. tarball released.
2003-03-03 Dmitry G. Mastrukov <[email protected]>
* configure.in: Added Belarusian to ALL_LINGUAS.
2003-02-28 Jaka Mocnik <[email protected]>
* src/chartable.c: fix ESC key press handler bug that hid the treeview
instead of the window!
* src/converter.c: hide converter on ESC.
2003-02-25 Shivram U <[email protected]>
* src/ghex-window.c (ghex_window_close): If the last view has been
destroyed, unref the document.
2003-02-21 Jaka Mocnik <[email protected]>
* The Grand Librarification: to help viv at veeev dot com,
the GtkHex widget, the HexDocument object and all relevant
accessibility stuff have been moved into a separate library,
libgtkhex, that comes bundled together with all the necessary
includes and a pkgconfig description file.
* in order to achieve this all config-dependent stuff has been
moved out of the lib and into the main app. this might have
resulted in introduction of a score of new bugs as the app itself
was not tested at all ;)
2003-02-17 Abel Cheung <[email protected]>
* configure.in: Removed "ar" from ALL_LINGUAS.
2003-02-15 Jaka Mocnik <[email protected]>
* src/chartable.c (hide_chartable_cb): sync chartable item.
* src/converter.c (close_converter): sync converter item.
* src/print.c (print_header): convert filename to utf8.
* src/session.c: applied a patch from Pasupathi Duraisamy that
prompts the user if logout is performed when changed files are
still open.
Mon Feb 10 09:51:23 2003 Hidetoshi Tajima <[email protected]>
* src/findreplace.c (find_next_cb, find_prev_cb, replace_next_cb):
made "String was not found\n" translatable (#103610).
2003-01-29 Jaka Mocnik <[email protected]>
* src/gnome-print-font-*: code rip from gedit: dialog and picker
for print fonts.
* src/Makefile.am: add above to compilation.
* src/preferences.c: use the above.
this patch was submitted by Shivram U.
2003-01-28 Abel Cheung <[email protected]>
* configure.in: Added Arabic (ar) to ALL_LINGUAS, fixed
libgnomeprint-2.2 requirement
2003-01-20 Pablo Saratxaga <[email protected]>
* configure.in: Added Azeri (az) file
2003-01-12 Jaka Mocnik <[email protected]>
* help/C/ghex-C.omf, help/ja/ghex-ja.omf: fixed identifier url. patch
by Artur Flinta.
2003-01-06 Jaka Mocnik <[email protected]>
* applied a patch from frederic crozat that makes ghex use
libgnomeprintui 2.2 instead of 2.0.
* configure.in: bumped version to 2.2.0; tagged as GHEX_2_2_0.
2003-01-06 Jaka Mocnik <[email protected]>
* src/ui.c (close_cb): fixed a possible crash.
* src/gtkhex.c: enabled pasting of primary selection with
middle mouse button. move cursor properly after cutting or
pasting data.
* configure.in: bumped version to 2.0.0; tagged as GHEX_2_0_0;
branch ghex-2-0.
* src/preferences.c (set_prefs): set display font.
* src/access/accessiblegtkhex.c (accessible_gtk_hex_real_initialize):
applied patch from padraig o'briain. fixes #101136.
2002-12-23 Jaka Mocnik <[email protected]>
* configure.in: bumped version to 1.99.90; tagged as GHEX_1_99_90.
* src/gtkhex.c: use colors from widget styles to ensure text
visibility when using high-contrast, accessible themes. initial
patch was kinldy provided by Pasupathi Duraisamy of Wipro. thanx!
* src/gtkhex.h (struct _GtkHexClass): removed colormap and cursor
color members.
2002-11-24 Jaka Mocnik <[email protected]>
* src/hex-document.c, src/ui.c: applied patch from Hideoshi
Tajima to convert all filenames to utf8 before being used in
strings for GTK+ to display.
2002-11-10 Jaka Mocnik <[email protected]>
* src/ghex-window.c (ghex_window_add_doc_to_list): encode strings
in XML.
* ghex.spec.in: applied patch from Dan Hensley.
* src/chartable.c: enable insertion with keyboard.
2002-11-09 Jaka Mocnik <[email protected]>
* src/ghex-ui.xml: 'About...' -> 'About'. really fixes #96771.
2002-10-26 Jaka Mocnik <[email protected]>
* configure.in: version 1.99.2. tagged as GHEX_1_99_2.
2002-10-26 Jaka Mocnik <[email protected]>
* src/ghex-window.c (ghex_window_ok_to_close): new function that
replaces hex_document_ok_to_close() as this is really a window and
not document issue.
(ghex_window_save_as): new function that handles saving to a new
file instead of having this code duplicated all over.
* src/ui.c (export_html_cb): check for permissions. notify user if
the selected path is now writable.
(save_cb): check for write permissions of the file and notify user
if the file is not writable.
(save_as_cb): use ghex_window_save_as().
(close_cb): hex_document_ok_to_close() -> ghex_window_ok_to_close().
(save_cb, open_cb, export_html_cb): new, cleaner handling of
file selection.
* src/ghex-window.c (ghex_window_set_sensitivity): handle
cut/copy/paste items. also disable find/replace/goto items when
no document is loaded.
* src/ui.c (save_cb): test if the document is writable, report an
error if it is not so!
* src/hex-document.[ch] (hex_document_is_writable): a function to
test if the document is writable.
* src/findreplace.c (replace_all_cb): display info dialog if no
strings were replaced.
2002-10-26 Muktha <[email protected]>
* findreplace.c: Added mnemonics for buttons. Fixes bug #96882.
2002-10-25 Jaka Mocnik <[email protected]>
* src/ghex-ui.xml: 'About...' -> 'About'. fixes #96771.
2002-10-01 Jaka Mocnik <[email protected]>
* ghex.desktop.in (Exec): added a missing '['.
2002-10-01 Yanko Kaneti <[email protected]>
* ghex2.schemas: reorder elements so that it validates.
2002-09-20 Jaka Mocnik <[email protected]>
* applied a patch for japanese .omf file by Frederic Crozat.
2002-09-19 Jaka Mocnik <[email protected]>
* src/ghex-window.c (ghex_window_new): set default width and height.
* configure.in: require gail >= 0.17.
* ghex.desktop.in (Exec): add %F to enable passing filenames when
items are dragged on the launcher.
2002-09-01 Jaka Mocnik <[email protected]>
* configure.in: version 1.99.1. tagged as GHEX_1_99_1.
* src/ghex-window.c (ghex_window_listener): sync "Character Table" and
"Converter" items in all windows.
(ghex_window_sync_*_item): sync items in all windows.
* src/converter.c (create_converter): connect a signal to delete
event of the window.
(converter_delete_event_cb): deselect "Converter" item in all
windows.
* src/chartable.c (create_char_table): connect a signal to delete
event of the window.
(char_table_delete_event_cb): deselect "Character Table" item in all
windows.
* src/ui.c (revert_cb): set win->changed to FALSE. fixes #90240.
(raise_and_focus_widget): use gtk_window_present();
2002-09-01 Jaka Mocnik <[email protected]>
* src/findreplace.c (replace_all_cb): fixed a replace all bug.
2002-08-30 Jaka Mocnik <[email protected]>
* src/gtkhex.c: fixed block marking.
made clipboard support work.
* src/ui.c: handlers for cut, copy and paste verbs.
* src/ghex-ui.xml: commands and menu items for cut/copy/paste.
2002-08-28 Irene Ryan <[email protected]>
* help/C/ghex2.xml : updated to reflect changes to UI and to fix
http://bugzilla.gnome.org/show_bug.cgi?id=91025
* help/C/ghex2-C.omf : renamed to reflect XML filename and updated
with new version number and date info
* help/C/l10n.txt : new file with screenshot instructions for L10N team
* help/C/figures/ghex_window_empty.png : new screenshot
* help/C/figures/ghex_window_opn.png : new screenshot
2002-08-19 Ross Burton <[email protected]>
* ghex.desktop.in: Fix the desktop file so that it validates and
is sane.
2002-08-12 Aruna P R <[email protected]>
* src/preferences.c : preference dialog is connected to "delete-event"
which hides the dialog when "Esc" is used for closing the dialog.
Fix for #90298
2002-07-25 Jaka Mocnik <[email protected]>
* src/ghex-window.c (ghex_window_listener): allow opening dialogs
even if win->gh == NULL.
2002-07-25 Jaka Mocnik <[email protected]>
* src/ghex.h: added prototype for set_prefs();
* src/ui.c (prefs_cb): set current values.
* src/preferences.c: set OK and apply buttons to insensitive.
2002-07-22 Jaka Mocnik <[email protected]>
* src/session.c: add a "geometry" option.
* src/main.c (main): parse geometry if specified.
2002-07-20 Jaka Mocnik <[email protected]>
* src/Makefile.am (INCLUDES): fixed locale paths.
* src/hex-document.c (hex_document_export_html): show a progress
indicator during exporting.
* src/preferences.c (create_prefs_dialog): slightly fixed layout.
* src/ghex-window.c, src/ghex-ui.xml, src/ui.c: reorganized ui.
Files menu has been renamed to Windows and Character table and
Converter items have also been moved to Windows menu.
* src/findreplace.c: display a dialog when a string is not found.
* src/ui.c (display_info_dialog): format a message and display it in
an info dialog.
2002-07-18 Shivram U <[email protected]>
* src/print.c (ghex_print_job_info_new): We dont have to create a new
GnomePrintMaster here. Its anyway created from the Print Context in
ui.c (ghex_print).
* src/print.c (ghex_print_job_execute): Dont close the Print Context.
Closing the Print Master anyway does that.
* src/ui.c : Close the Print Master (gnome_print_master_close) before
preview or print. Fix for bug #85147
2002-07-17 Shivram U <[email protected]>
* src/ui.c (close_cb): Remove the document from the Files list on close.
* src/ghex-window.c (ghex_document_close): Remove the document from the
Files list if the next view is NULL. Also not doing an unref on the
document, if it the last view. Its not needed. Fix for #88013
2002-07-10 Jaka Mocnik <[email protected]>
* src/ui.c (export_html_cb): give GtkHex not GHexWindow as user data
to ok_button "clicked" signal.
* src/preferences.c: replaced deprecated GnomePropertyBox with a
GtkDialog.
2002-07-08 Jaka Mocnik <[email protected]>
* src/config.c (ghex_prefs_notify_cb): update GHex state according to
changes.
* src/gtkhex.c: invalidate widget windows properly.
2002-07-07 Jaka Mocnik <[email protected]>
* src/ghex-window.c (ghex_window_load): connect cursor_moved signal
to report cursor offset.
display offsets column if desired.
* src/config.c: removed old, gnome1-related, code.
* src/ui.c (raise_and_focus_widget): silently return if widget is not
realized.
2002-06-30 Jaka Mocnik <[email protected]>
* src/ui.c (quit_app_cb): ask to save or cancel if the documents
were changed.
* src/ghex-window.c (ghex_window_close): the proper way to get rid of
a GHexWindow. if this is the last view of a doc and the doc has
changed, ask user whether to save the changes.
(ghex_window_load): add/remove new/old document to/from the "Files"
menu.
(ghex_window_remove_doc_from_list): remove document name from the
"Files" menu.
(ghex_window_add_doc_to_list): add document name to the "Files" menu.
(ghex_window_new): add all existing document to "Files" menu.
* src/ui.c (close_cb): kill all views of the closed document.
* src/hex-document.c (hex_document_finalize): release refs to all
views.
2002-06-20 Jaka Mocnik <[email protected]>
* src/ui.c (add_view_cb, remove_view_cb): implemented.
2002-06-17 Jaka Mocnik <[email protected]>
* further de-MDI-zation; GHex is now semistable and MDI-less ;)
* src/bonobo-mdi.*, src/ghex-mdi.[ch]: removed
2002-06-15 Jaka Mocnik <[email protected]>
* src/ghex-window.[ch]: a BonoboWindow descendant, hosting
at most one GtkHex widget.
* src/hex-document.[ch]: de-MDI-zing.
* src/ui.c: likewise. use GHexWindow for displaying a single view.
* src/main.c: likewise. use (GHexWindow)* instead of MDI.
2002-06-12 Pasupathi Duraisamy <[email protected]>
* src/findreplace.c: Fixes #84988
2002-06-08 Yanko Kaneti <[email protected]>
* configure.in: (ALL_LINGUAS) Added Bulgarian (bg).
2002-05-29 Satyajit Kanungo <[email protected]>