-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
1682 lines (954 loc) · 38.6 KB
/
Copy pathChangeLog
File metadata and controls
1682 lines (954 loc) · 38.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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
2004-03-30 16:04 tsauter
* doc/grdesktop.1: update the manpage
2004-03-30 16:03 tsauter
* doc/: .cvsignore, grdesktop.1, grdesktop.sgml: include the
manpage in original tarball, remove sgml file
2004-03-30 15:59 tsauter
* configure.ac: yeah. new version :-)
2004-03-30 15:58 tsauter
* TODO: remove some tasks from todo list
2004-03-30 15:56 tsauter
* help/C/Makefile.am: remove invalid character from makefile? (fix
debian bug #231737)
2004-03-30 15:47 tsauter
* po/: de.po, grdesktop.pot: update pot-file/ german translation
2004-03-30 15:17 tsauter
* src/run.c: rewrite the cmdline generation code. run ssh in
batchmode (no more userinput to the ssh process)
2004-03-30 14:31 tsauter
* src/: optbox.c, options.c, sshbox.c, sshbox.h: load and save ssh
settings from gconf database
2004-03-30 14:08 tsauter
* src/: optbox.c, sshbox.c, sshbox.h: all GUI elements are working
now
2004-03-30 13:43 tsauter
* src/sshbox.c: fix label string, this is the hostname, not the
password
2004-03-30 13:33 tsauter
* src/options.c: save and reload the option to use ssh or not
2004-03-04 12:29 tsauter
* help/C/Makefile.am: fix automake error
2004-03-04 12:24 tsauter
* m4/: codeset.m4, gettext.m4, glibc21.m4, iconv.m4, isc-posix.m4,
lcmessage.m4, progtest.m4: merge m4 macros
2004-03-04 12:22 tsauter
* po/Makefile.in.in: autogenerated version with the upstream
version
2004-03-04 12:22 tsauter
* po/POTFILES.in: update source files
2004-03-04 12:22 tsauter
* po/: de.po, es.po, fr.po: update translation files
2004-03-04 12:18 tsauter
* INSTALL: merge new version from upstream
2004-03-04 12:00 tsauter
* .cvsignore, ABOUT-NLS: this file is automaticly generated
2004-03-04 11:58 tsauter
* .cvsignore, config.h.in: remove this file, it's automaticly
created by autoheader
2004-03-04 11:56 tsauter
* Makefile.am, configure.ac: use glib gettext support
2004-03-04 11:55 tsauter
* src/main.c: if we have NLS enabled, we can use gettext
2004-03-03 15:32 tsauter
* src/: optbox.c, sshbox.c, sshbox.h: finish ssh dialog (GUI)
2004-03-03 13:23 tsauter
* doc/Makefile.am: we still need support to install the manpage, of
course :-)
2004-03-03 13:14 tsauter
* configure.ac, doc/Makefile.am: remove docbook-to-man dependency.
I will ship the generated manpages in the tarball/ print a
warning if we use the default keymap path
2004-03-03 12:28 tsauter
* configure.ac: fix problem if no keymap-path is specified. We are
using the "default" path now
2004-03-03 00:54 tsauter
* src/optbox.c: reformat the dialogbox for ssh options
2004-03-03 00:45 tsauter
* src/options.c: define the hostname variable at the top of the
while loop
2004-03-03 00:42 tsauter
* src/options.c: hide warnings if gconf values are unassigned (only
useful for debugging)
2004-03-02 17:47 tsauter
* src/: global.h, optbox.c, optbox.h: add a new checbox and
buttonbox for the new ssh dialog
2004-03-02 14:59 tsauter
* src/: sshbox.c, sshbox.h: a simple dialog box
2004-03-02 14:25 tsauter
* src/: Makefile.am, sshbox.c, sshbox.h: start include an extra box
for ssh parameters
2004-02-27 07:42 tsauter
* src/options.c: add a non-common display resolution
2004-02-04 17:02 tsauter
* src/options.c: fix segfault in loadOptions(), uninitialized gconf
values can produce a segfault
2004-02-03 11:46 tsauter
* ChangeLog, Makefile.am, NEWS, README, TODO, configure.ac,
doc/Makefile.am, doc/grdesktop.sgml, help/Makefile.am,
help/C/Makefile.am, pixmaps/Makefile.am, src/Makefile.am,
src/btnbox.c, src/btnbox.h, src/global.h, src/main.c, src/main.h,
src/optbox.c, src/optbox.h, src/options.c, src/options.h,
src/rdpparse.c, src/rdpparse.h, src/run.c, src/run.h,
src/srvsel.c, src/srvsel.h: $grdesktop: $ -> $Id: $
2004-02-03 11:42 tsauter
* AUTHORS: $grdesktop: $ -> $Id: $
2004-02-03 10:51 tsauter
* configure.ac, grdesktop.spec: update version: we make a bugfix
release
2004-02-03 10:49 tsauter
* src/options.c: save clientname (fix!)
2004-02-03 10:47 tsauter
* src/optbox.c: enable the checkbox for attaching to console, if
the user select rdp protocol 5.1 or higher
2004-02-03 10:39 tsauter
* src/options.c: fix memory leak problem while loading licence
filenames
2004-02-03 09:22 tsauter
* src/btnbox.c: insert year 2004 into copyright field
2004-02-03 09:18 tsauter
* configure.ac, grdesktop.spec: prepare source tree for new
upcomming version 0.21
2004-02-02 15:05 tsauter
* src/: global.h, optbox.c, options.c: replace normal text entry
for clientname with a combo box. fill this combo box with
available license keys from ~/.rdesktop/.licence.*
2003-11-18 10:23 tsauter
* src/: main.c, run.c, run.h: drop my own fork/waitpid and use
g_spawn_sync instead
2003-11-17 17:28 tsauter
* src/run.c: remove debug
2003-11-17 17:25 tsauter
* po/de.po: include ssh-host translation
2003-11-17 17:21 tsauter
* src/: global.h, optbox.c, optbox.h, options.c, run.c: include
support for ssh remote execution
2003-11-12 15:47 tsauter
* TODO: again and again and again
2003-11-12 15:47 tsauter
* Makefile.am, grdesktop.applications, grdesktop.desktop,
grdesktop.keys, grdesktop.mime: YEAH! better gnome support.
2003-11-12 15:47 tsauter
* TODO: lots of work :(
2003-11-12 14:49 tsauter
* .cvsignore: ignore debian files
2003-11-12 14:47 tsauter
* configure.ac, grdesktop.spec: create a minor subversion
2003-11-12 14:44 tsauter
* src/run.c: fix missing blank in generated command line.
2003-11-12 14:41 tsauter
* po/de.po: fix de translation.
2003-11-12 14:37 tsauter
* src/run.c: change title name
2003-11-12 14:35 tsauter
* src/: btnbox.c, global.h, optbox.c, options.c, run.c: Rename some
widgets
2003-11-12 14:23 tsauter
* po/de.po: Update german translation
2003-11-12 14:09 tsauter
* .cvsignore: ignore debian/{autoconf,automake} files
2003-11-12 14:07 tsauter
* src/: global.h, main.c, optbox.c, optbox.h, options.c, options.h,
run.c: Insert support for sound redirection
2003-11-12 14:07 tsauter
* pixmaps/: sound.png, Makefile.am: Insert a new icon for sound
support
2003-11-09 10:14 tsauter
* grdesktop.spec: upgrade rpm spec file
2003-11-07 15:41 tsauter
* configure.ac: update grdesktop version
2003-11-07 15:41 tsauter
* po/de.po: update german translation
2003-11-07 13:41 tsauter
* src/: global.h, optbox.c, optbox.h, options.c, run.c: - add
support for rdesktop "attach to console" - add support for
rdesktop wm keybindings
2003-11-06 18:21 tsauter
* src/: Makefile.am, global.h, main.c, optbox.c, optbox.h,
options.c, options.h, run.c: Insert color/rdp5.1 support from
rdesktop 1.3
2003-11-06 18:21 tsauter
* configure.ac: remove old color support pre-compiler definitions
2003-06-23 13:45 tsauter
* src/: btnbox.c, btnbox.h: insert an new help button use stock
icons for help and about
2003-06-23 13:26 tsauter
* src/: global.h, main.c, run.c: remove the alarm signal, it isn't
used any longer
2003-06-23 12:21 tsauter
* configure.ac: correct libtool problem (missing package name)
2003-06-23 12:17 tsauter
* po/Makefile.in.in: fix problem with automake1.7
2003-06-23 12:13 tsauter
* help/: omf.make, xmldocs.make, C/.cvsignore, C/Makefile.am: gnome
docu is now correctly installed
2003-06-18 16:41 tsauter
* configure.ac, src/Makefile.am, src/optbox.c, src/options.c,
src/run.c: Include new rdesktop cvs color support
2003-06-18 16:06 tsauter
* src/run.c: Store options _after_ the conntection has been closed
2003-06-18 16:04 tsauter
* src/options.c: Fix error saveServers handling
2003-06-18 15:45 tsauter
* src/: btnbox.c, run.c, run.h: Remove the old unused wathing
thread. Save options before forking.
2003-05-22 17:52 tsauter
* src/rdpparse.c: fix ibm compiler error
2003-05-14 17:46 tsauter
* src/Makefile.am: try to fix gconf problem
2003-05-14 17:26 tsauter
* src/options.c: remove hostname debugging
2003-05-14 16:08 tsauter
* configure.ac: change minor number
2003-05-14 16:07 tsauter
* po/: de.po, grdesktop.pot: update translation files
2003-05-14 15:43 tsauter
* src/: main.c, main.h: make locales working
2003-05-14 14:55 tsauter
* src/options.c: remove unused variable
2003-03-29 13:41 tsauter
* src/: Makefile.am, emain.c, emain.h: Remove grdesktope. we do
this now with nautilus
2003-03-29 11:29 tsauter
* help/C/: grdesktop.xml: Fix tag missmatch
2003-03-29 11:16 tsauter
* help/C/: .cvsignore, Makefile.am, grdesktop-C.omf, grdesktop.xml,
legal.xml: Include files for help
2003-03-29 11:14 tsauter
* help/: .cvsignore, Makefile.am, xmldocs.make: Include new
scrollkeeper help basis directory
2003-03-29 11:12 tsauter
* pixmaps/grdesktop-mainwin.png: Insert new pixmap from the
mainwindow for the scroolkeeper docu.
2003-03-29 11:09 tsauter
* Makefile.am, configure.ac: Include new sub directory "help". Fix
minor errors in configure.ac
2003-03-29 11:08 tsauter
* po/: de.po, es.po, fr.po, grdesktop.pot: Updating localized
po-files
2003-03-08 21:56 tsauter
* po/grdesktop.pot: Update the localization
2003-03-08 21:51 tsauter
* po/: .cvsignore, POTFILES.in, de.po, es.po, fr.po: Update the
localization
2003-03-01 22:10 tsauter
* configure.ac: Fix error, to handle gconf schema files
2003-03-01 22:09 tsauter
* src/grdesktop.schemas: Insert keys in the schema file
2003-02-28 02:13 tsauter
* configure.ac, src/Makefile.am, src/grdesktop.desktop,
src/grdesktop.schemas: Installing gnome desktop and schema files
2003-02-27 23:38 tsauter
* src/run.c: Restore run function (remove old debug flags)
2003-02-27 23:19 tsauter
* src/options.c: Read serverlist from gconf
2003-02-27 22:09 tsauter
* src/: optbox.c: Disable colorize menu (not supported by rdesktop)
2003-02-27 22:03 tsauter
* src/: btnbox.c, main.c, optbox.c, options.c, options.h, run.c:
Read/write all options now from gconf db
2003-02-27 15:43 tsauter
* src/options.c: use warning box
2003-02-27 15:40 tsauter
* src/: Makefile.am, btnbox.c, btnbox.h, errmsg.c, errmsg.h,
optbox.h, options.c, options.h, rdpparse.c, rdpparse.h, run.c,
run.h: Remove errormsg and use gnome_error_dialog()
2003-02-27 15:22 tsauter
* src/: Makefile.am, aboutbox.c, aboutbox.h, btnbox.c, btnbox.h:
Use gnomes internal aboutbox
2003-02-27 15:18 tsauter
* src/: aboutbox.h, emain.h, errmsg.h, global.h, main.h, options.c,
options.h, run.c: Include gnome.h/ Save serverlist into gconf
2003-02-27 14:35 tsauter
* src/: Makefile.am, main.c, rdesktop.c, rdesktop.h, run.c: Remove
rdesktop.[ch], we don't support old versions anymore.
2003-02-27 14:31 tsauter
* src/: optbox.c, options.c, options.h, rdesktop.c, run.c: Full
drop of old rdesktop releases support.
2003-02-27 14:26 tsauter
* src/: global.h, main.c, optbox.c, options.c, options.h: Pump all
to gnome2. Use gconf instead options file. Drop oldworld
support. Yes, we only support rdesktop1.2 from this point.
2003-02-27 14:18 tsauter
* src/: aboutbox.c, aboutbox.h, global.h, main.c, main.h,
options.c, options.h, run.c: BUG: Submitted by: Reviewed by:
Approved by:
2003-02-27 14:18 tsauter
* configure.ac, src/Makefile.am: Include support for gnome2 desktop
2003-02-27 10:46 tsauter
* configure.ac, grdesktop.spec: Prepare for new release 0.19
2003-02-27 00:09 tsauter
* po/de.po: Update german translation
2003-02-26 23:59 tsauter
* po/: es.po, fr.po: Merge new translation files
2003-02-26 22:31 tsauter
* src/optbox.c: Fix GUI elements for client hostname
2003-02-26 22:17 tsauter
* src/optbox.c: Change title (make it more generic)
2003-02-26 22:15 tsauter
* src/: global.h, optbox.c, optbox.h, options.c, run.c: Include
support for display encryption (france ts)
2003-02-05 16:01 tsauter
* src/: global.h, optbox.c, optbox.h, options.c, run.c: Insert
support to fake clientname
2003-02-02 20:49 tsauter
* src/main.c: Fix problem on bigendian archs (refer tp debian bug
#179482)
2003-01-30 12:03 tsauter
* src/: emain.c, emain.h: Build file menu, start filling the
listbox
2003-01-30 08:03 tsauter
* src/: emain.c, emain.h: Start writing the main window
2003-01-29 16:47 tsauter
* src/: Makefile.am, emain.c, emain.h: Include new grdesktop
explorer binary. Initital revision
2003-01-29 16:46 tsauter
* src/.cvsignore: Ignore new explorer binary and core
2003-01-29 16:36 tsauter
* src/: rdesktop.c, run.c: Fix problem with 1.2beta and watch
thread (simply disable it)
2003-01-29 14:45 tsauter
* .cvsignore: Ignore timestamp files
2003-01-29 14:43 tsauter
* configure.ac, src/Makefile.am, src/global.h: Keymap path is now
configurable via configure script
2003-01-29 14:15 tsauter
* .cvsignore: Ignore vim swapfiles/ depcomp binary from automake
2003-01-21 20:28 tsauter
* grdesktop.spec: Include updated rpm-spec file
2003-01-20 20:23 tsauter
* AUTHORS, configure.ac, po/es.po: Insert spanish translation
2003-01-18 01:14 tsauter
* configure.ac: Make new version 0.18
2003-01-10 21:54 tsauter
* src/optbox.c: BUX: Fix some copy'n'paste errors
2002-12-23 14:58 tsauter
* src/: global.h, optbox.c, optbox.h, options.c, run.c: Insert
support for -D switch (hide wm decoration)
2002-12-23 14:44 tsauter
* src/global.h: Change default keymap path
2002-12-21 00:52 tsauter
* AUTHORS: Insert new thanks to
2002-12-20 12:09 tsauter
* src/run.c: make grdesktop compatible to latest rdesktop cvs
version
2002-11-14 12:05 tsauter
* AUTHORS, configure.ac, po/fr.po: Include french translation
2002-11-11 21:57 tsauter
* configure.ac, po/de.po: Include new translations for 0.17 release
2002-11-07 13:33 tsauter
* src/run.c: Fix: logfiles are now deleted (we have the correct pid
now)
2002-11-07 13:28 tsauter
* src/run.c: Delete the logfile after the user has got the error
dialog
2002-11-07 13:25 tsauter
* src/run.c: Now we known, if the rdesktop doesnt exit successfull
2002-11-06 12:09 tsauter
* doc/Makefile.am: Fix make abort, if the upper case manpage was
not found
2002-11-06 12:06 tsauter
* doc/Makefile.am: Move generated man-pages to lower cases if
needed
2002-11-06 12:01 tsauter
* configure.ac, doc/Makefile.am: First use the docbook-to-man
command, because it generates better man-pages, cleanup docbook
dummy files
2002-11-06 11:41 tsauter
* src/: global.h, optbox.c, options.c, options.h, run.c: we can now
handle both keymap types
2002-11-06 11:23 tsauter
* src/: global.h, main.c, options.c, options.h: Fill keymap list
with available languages for oldworld
2002-11-06 00:30 tsauter
* src/: optbox.c, options.c, options.h: Create two new functions
for oldworld and newworld rdestkop versions to set the correct
keymap parameter
2002-11-05 23:20 tsauter
* src/run.c: Set the window title of rdesktop only on newer
versions
2002-11-05 23:15 tsauter
* src/run.c: create the final rdesktop nicer
2002-11-05 22:41 tsauter
* src/rdesktop.c: use rdesktop binary from global.h, so we can do
easier debugging
2002-11-05 17:56 tsauter
* src/: rdesktop.c, rdesktop.h: Finish simple rdesktop version
detection
2002-11-05 17:55 tsauter
* src/: main.c, main.h: Try to detect rdesktop version at startup
2002-11-05 17:54 tsauter
* doc/.cvsignore: Ignore created dummy manpage files
2002-11-05 17:17 tsauter
* src/: Makefile.am, rdesktop.c, rdesktop.h: Include new source
files for rdesktop handling
2002-11-05 17:14 tsauter
* src/options.c: spell errors
2002-11-05 16:29 tsauter
* src/: rdpparse.c, rdpparse.h: Fix error while reading rdpfiles
and blanks in keys/ fix compiler warnings
2002-11-05 16:28 tsauter
* src/options.h: Fix compiler warnings
2002-11-05 16:01 tsauter
* src/.cvsignore: Ignore test rdp files
2002-11-05 16:01 tsauter
* src/: run.c, rdpparse.c: Change debug options
2002-11-05 16:00 tsauter
* src/main.c: Autostart the connection
2002-11-05 15:31 tsauter
* src/main.c: Autostart only with valid rdp file from commandline
2002-11-05 15:28 tsauter
* src/: main.c, main.h: Include functions for help and usage
2002-11-05 12:38 tsauter
* src/main.c: Parse now the command line options
2002-11-05 11:51 tsauter
* src/: main.c, main.h: Load an rdpfile if given on commandline
2002-11-05 11:51 tsauter
* src/: rdpparse.c, rdpparse.h: Dont parse the rdpfile in signal
handlers, create a separat function to allow us the loading of
rdpfiles from commandline
2002-11-05 11:32 tsauter
* src/: options.c, options.h: User gtk_get_user_name instead of
pwd.h functions
2002-11-01 15:32 tsauter
* AUTHORS: Include realname of che
2002-11-01 14:24 tsauter
* TODO: Remove todo tasks, done in latest release
2002-11-01 14:16 tsauter
* AUTHORS, grdesktop.spec: Include redhat rpm spec-file
2002-11-01 01:46 tsauter
* configure.ac: Create new release
2002-11-01 01:44 tsauter
* po/de.po: Modify german translation file
2002-11-01 01:43 tsauter
* po/.cvsignore: Ignore vi lockfiles
2002-11-01 01:06 tsauter
* src/rdpparse.c: Fix problem with newline characters and gtk
2002-11-01 01:01 tsauter
* src/: rdpparse.c, rdpparse.h: Writing rdp files, and print
override warning
2002-11-01 00:27 tsauter
* src/options.c: Fix screensize error: 600->640
2002-10-31 19:39 tsauter
* src/rdpparse.c: Print an error message if no file was selected
2002-10-31 18:24 tsauter
* src/run.c: Remove comments and insert new one
2002-10-31 18:22 tsauter
* src/options.c: Load also the hostnames from options and rdp-files
2002-10-31 18:10 tsauter
* src/: global.h, main.c, optbox.c, options.c, options.h,
rdpparse.c: Create an extra function to load the options into the
dialog, and call this function also to load rdp files
2002-10-31 15:45 tsauter
* src/: rdpparse.c, rdpparse.h: parse and set now all available
options for rdesktop
2002-10-31 14:56 tsauter
* src/: rdpparse.c, rdpparse.h: Sample entries from rdp file are
now stored into hash table
2002-10-31 14:24 tsauter
* src/: rdpparse.c, rdpparse.h: Reading rdp files by file
(unicode/non-unicode)
2002-10-31 11:27 tsauter
* configure.ac, doc/Makefile.am: Check for both docbook2man and
docbook-to-man commands
2002-10-29 23:04 tsauter
* src/: optbox.c, optbox.h, rdpparse.c, rdpparse.h: Create the
fileboxes and signals
2002-10-29 22:28 tsauter
* TODO: Remove task for rwin, because rdesktop 2 will be released
soon
2002-10-29 22:27 tsauter
* src/: Makefile.am, rdpparse.c, rdpparse.h: Start supporting of
microsoft rdp-files
2002-10-29 22:24 tsauter
* src/btnbox.c: Display the about dialog without image (maybe to
long on other languages
2002-10-29 22:22 tsauter
* src/: btnbox.c, global.h, main.c, optbox.c: Remove the widget
hash and replace it with global variables.
2002-10-29 21:10 tsauter
* .cvsignore, po/.cvsignore, src/.cvsignore: include more files in
cvsignore files, and resort the entries
2002-10-29 21:06 tsauter
* aclocal.m4, config.guess, config.h.in, config.sub, configure.ac,
configure.in, install-sh, ltconfig, ltmain.sh, missing,
mkinstalldirs: Make new autoconf/automake configuration and
remove all unused dynamic generated files from cvs.
2002-10-29 20:56 tsauter
* src/: aboutbox.h, btnbox.h, config.h, errmsg.h, global.h, main.h,
optbox.h, options.h, run.h, srvsel.h: replace the config.h file
with global.h. $(topdir)/config.h file is now used.
2002-10-29 20:53 tsauter
* src/Makefile.am: Create new autoconf/automake configuration
2002-10-28 14:52 tsauter
* src/: aboutbox.c, btnbox.c, config.h, errmsg.c, main.c, optbox.c,
run.c, srvsel.c: Make everything now workable, but sometimes with
global variables
2002-10-27 13:08 tsauter
* doc/grdesktop.sgml: Change license to Free Document License
2002-10-27 13:04 tsauter
* doc/Makefile.am, doc/grdesktop.sgml, pixmaps/Makefile.am: Insert
copyright notices in all nontrivial files
2002-10-27 12:59 tsauter
* AUTHORS, ChangeLog, INSTALL, Makefile.am, NEWS, README, TODO,
config.h.in, configure.in, src/Makefile.am, src/main.c,
src/options.c: Insert copyright notices in all nontrivial files
2002-10-27 00:51 tsauter
* src/: btnbox.c, config.h, main.c, optbox.c, run.c, run.h: Store
most of the global widgets in hash-table: NOT WORKING correct
2002-10-26 23:43 tsauter
* src/options.c: Skipping doubbled options
2002-10-26 23:37 tsauter
* src/: btnbox.c, config.h, main.c, optbox.c, options.c, run.c,
srvsel.c: Store option values now in hash-table
2002-10-26 17:26 tsauter
* src/optbox.c: Implement signals fir the open/save buttons
2002-10-26 17:09 tsauter
* pixmaps/Makefile.am, pixmaps/folder.png, src/optbox.c,
src/optbox.h: Insert save and load buttons; minor fixes in gui
2002-10-26 15:37 tsauter
* src/btnbox.c: Remove old unsed comments
2002-10-26 15:30 tsauter
* TODO, src/aboutbox.c, src/btnbox.c, src/errmsg.c: include icons
in buttons
2002-10-26 14:58 tsauter
* src/options.c: Fix pointer compiler errors
2002-10-26 14:49 tsauter
* src/: btnbox.c, optbox.c, options.c, run.c, run.h: Fix read
options/rename connect function to run_rdesktop
2002-10-26 13:14 tsauter
* src/: Makefile.am, btnbox.c, btnbox.h, main.h, run.c, run.h: Move
some generic funtions from btnbox.c to run.c
2002-10-26 13:04 tsauter
* src/: aboutbox.c, aboutbox.h, btnbox.c, btnbox.h, config.h,
errmsg.c, errmsg.h, main.c, main.h, optbox.c, optbox.h,
options.c, options.h, srvsel.c, srvsel.h: Ooops wrong lizenze
text in source files-> should be GPL and not LGPL
2002-10-26 12:52 tsauter
* TODO: Yeah. this task has been finished :-)
2002-10-26 12:51 tsauter
* doc/Makefile.am: Dont stop, if we have no docbook-to-man! (quick
and dirty hack)
2002-10-26 12:47 tsauter
* src/config.h: Change gint and gboolean to non-pointer elements
2002-10-26 12:23 tsauter
* src/optbox.c: Insert EN as keymap, if the directory doesnt
exists/ select EN if no other keymap was loaded
2002-10-26 12:19 tsauter
* src/.cvsignore: Ignore *bsd core dumps
2002-10-26 12:07 tsauter
* src/Makefile.am, .cvsignore, config.h.in, configure.in, ltconfig:
Include privat intl-dir if we have no system-wide libintl tools
2002-10-26 12:06 tsauter
* src/config.h: fix problems on platforms which have MAXHOSTNAMELEN
defined
2002-10-26 12:05 tsauter
* src/btnbox.h: include signal.h to avoid compiler warnings in obsd
2002-10-26 00:28 tsauter
* src/: btnbox.c, config.h, optbox.c, optbox.h, options.c: Include
special options, fix some prefious made errors
2002-10-26 00:10 tsauter
* pixmaps/: Makefile.am, settings.png: Include new icons for
settings register
2002-10-26 00:02 tsauter
* src/btnbox.c: Set the window title in the started rdesktop
2002-10-25 23:59 tsauter
* src/: btnbox.c, config.h, optbox.c, optbox.h, options.c: Insert
support for working directory in program register
2002-10-25 22:36 tsauter
* src/optbox.c: Get and set the keyboard selection: works now!
2002-10-25 21:22 tsauter
* src/optbox.c: Set minimum size for keyboard selection
2002-10-25 17:30 tsauter
* src/optbox.c: Replace the keyboard combo box with treeview: NOT
full working
2002-10-25 16:15 tsauter
* src/: optbox.c, options.c, options.h: Replace the color combo-box
with option menu