forked from dimbor-ru/opennx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
4820 lines (3392 loc) · 156 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
2013-11-25 17:58 Fritz Elfert <[email protected]>
* [r729] osdep.c:
Fixed another typo in OSX specific code.
2013-11-25 17:53 Fritz Elfert <[email protected]>
* [r728] packaging/win32/cygnx/getnxsetup:
Update URL of old 3.5.0-9 windows setup.
2013-11-25 17:31 Fritz Elfert <[email protected]>
* [r727] osdep.c:
Fixed typo in OSX specific code.
2013-11-25 17:22 Fritz Elfert <[email protected]>
* [r726] packaging/win32/pulse/urls.txt:
Updated download URL for json-c
2013-11-25 15:59 Fritz Elfert <[email protected]>
* [r725] getnxsrcpkg, opennx.spec.in, opennxApp.cpp, opennxApp.h,
osdep.c, packaging/MacOSX/pkgResources/InstallationCheck,
po/de.po, po/ja.po, po/opennx.pot, po/ru.po:
- Updated fetch URL for nomachine sources.
- Support Fedora 19
- Support alternate path for quartz-wm on OSX
2012-08-05 17:52 Fritz Elfert <[email protected]>
* [r724] Makefile.am:
- Honor RPMBUUILD_OPTS during RPM build
2012-08-01 02:48 Fritz Elfert <[email protected]>
* [r723] packaging/win32/xming/Makefile.am:
- Fixed Xming download
2012-08-01 01:35 Fritz Elfert <[email protected]>
* [r722] packaging/win32/Makefile.am:
- Quit using isccwrap in mingw build
2012-08-01 01:13 Fritz Elfert <[email protected]>
* [r721] packaging/win32/findrequires.pl.in:
- Do case-insensitive compare while searching for dependencies in
mingw build
2012-07-31 23:52 Fritz Elfert <[email protected]>
* [r720] packaging/win32/cygnx/Makefile.am:
- Fixed fetch of unnounp in nxwin build variant
2012-07-31 13:51 Fritz Elfert <[email protected]>
* [r719] packaging/win32/pulse/patches/libsndfile-win32.patch:
- Added patch for building libsndfile on newer mingw
2012-07-31 04:57 Fritz Elfert <[email protected]>
* [r718] packaging/win32/pulse/Makefile.am:
- Fix build of json-c using latest F17 mingw32-configure
2012-07-31 02:57 Fritz Elfert <[email protected]>
* [r717] packaging/win32/pulse/Makefile.am:
- Fixed minor glitch in makefile
2012-07-31 02:26 Fritz Elfert <[email protected]>
* [r716] Makefile.am:
- Build bin2hdr helper always static
2012-07-31 01:22 Fritz Elfert <[email protected]>
* [r715] configure.ac:
- Use iscc package from OBS as default for mingw cross builds.
2012-07-30 18:53 Fritz Elfert <[email protected]>
* [r714] packaging/MacOSX/Makefile.am:
- OSX-build: Invoke sudo during clean-local only when necessary
2012-07-02 15:56 Fritz Elfert <[email protected]>
* [r713] opennx.spec.in, opennxApp.cpp, opennxApp.h:
- Fix RPM postinstall: create symlink for libpulse
- Disable any GUI dialogs while performing --exportres
2012-06-19 10:45 Fritz Elfert <[email protected]>
* [r712] po/LINGUAS, po/ja.po:
- Added japanese translation stubs.
2012-06-02 21:35 Fritz Elfert <[email protected]>
* [r711] m4/compat.m4:
- Added missing m4 file
2012-06-02 19:18 Fritz Elfert <[email protected]>
* [r710] configure.ac, m4/flibcurl.m4,
patches/nxcomp-zz_png15.patch, po/de.po:
- Added patch for building against latest libpng on Fedora 17
2012-05-12 22:06 Fritz Elfert <[email protected]>
* [r709] UsbIp.h, mylog.h:
- Fixed compile error on Ubuntu 12.04 due to patched wxWidgets
2012-03-23 18:18 Fritz Elfert <[email protected]>
* [r708] UnixImageSettingsDialog.cpp, UnixImageSettingsDialog.h,
VncImageSettingsDialog.cpp, opennx.pjd, res/opennx.xrc:
- Prevent initial focus from selecting first radiobutton in
custom image settings.
2012-03-22 13:53 Fritz Elfert <[email protected]>
* [r707] ShareProperties.cpp, ShareProperties.h,
ShareProperties_symbols.h, opennx.pjd,
packaging/win32/xming/patches/xming-kbhook.patch, res/opennx.xrc:
- Fixed bug #3509691
- Added missing kbhook in Xming
2012-03-19 10:15 Fritz Elfert <[email protected]>
* [r706] packaging/win32/xming/Makefile.am,
packaging/win32/xming/patches/xming-kioskhack.patch:
- Added abiltiy to disable the NX magic pixel in fullscreen mode
(win32)
2012-03-16 13:01 Fritz Elfert <[email protected]>
* [r705] MySession.cpp, SessionProperties.cpp, SessionProperties.h,
SessionProperties_symbols.h, opennx.pjd,
patches/nxcomp-zz_debugfix.patch,
patches/nxcomp-zz_kiosk-hack.patch, po/de.po, po/opennx.pot,
po/ru.po, res/opennx.xrc:
- Fixed german translation (Bugs 3496973 and 3497020).
- Fixed build of nxcomp with INFO logging enabled.
- Added abiltiy to disable the NX magic pixel in fullscreen mode
(not yet working on Windows).
2012-03-14 14:55 Fritz Elfert <[email protected]>
* [r704] MySession.cpp, MySession.h, MyXmlConfig.cpp:
- Added workaround for server bug: attach to shadow session
fails, if server's DisplayBase is >= 10000
- Simplified ssh logging
2012-03-12 16:45 Fritz Elfert <[email protected]>
* [r703] debian/postinst:
- Added missing symlink for libpulse in debian postinst script
2012-02-24 11:41 Fritz Elfert <[email protected]>
* [r702] debian/rules, tracelogApp.cpp:
- Fixed remote ip regex in tracelog
- Fixed debian build
2012-02-22 14:22 Fritz Elfert <[email protected]>
* [r701] debian/rules:
- Fixed build rule for debian
2012-02-22 11:56 Fritz Elfert <[email protected]>
* [r700] MyIPC.cpp, MyIPC.h:
- Added missing error handling for expired evaluation license on
commercial NX server.
2012-02-22 10:14 Fritz Elfert <[email protected]>
* [r699] debian/rules:
- Fix debian build
2012-02-22 04:21 Fritz Elfert <[email protected]>
* [r698] SessionProperties.cpp, debian/rules,
packaging/win32/xming/Makefile.am,
packaging/win32/xming/patches/xming-kbhook.patch,
patches/nxcomp-irlimit.patch, po/de.po, po/opennx.pot, po/ru.po:
- Fixed keyboard grabbing on Windows
- Added missing irlimit patch
- Fixed debian rules
2012-02-21 09:50 Fritz Elfert <[email protected]>
* [r697] debian/rules, opennx.spec.in:
- Don't apply visibility patch to older nxcomp
2012-02-20 23:30 Fritz Elfert <[email protected]>
* [r696] patches/nxcomp-visibility.patch:
- Added visibility patch
2012-02-20 23:30 Fritz Elfert <[email protected]>
* [r695] debian/rules, opennx.spec.in,
packaging/win32/nx/patches/nxcomp-win32.patch:
- Reduce visibility of symbols in nxcomp
- Clean up win32 patch
2012-02-20 12:37 Fritz Elfert <[email protected]>
* [r694] opennx.spec.in:
- Fix build dependencies on Mandriva 2011
2012-02-20 11:35 Fritz Elfert <[email protected]>
* [r693] MyIPC.cpp:
- Handle error 536 (user limit exceeded)
2012-02-20 10:35 Fritz Elfert <[email protected]>
* [r692] LoginDialog.cpp, SessionProperties.cpp,
SessionProperties.h, SessionProperties_symbols.h, opennx.pjd,
po/de.po, po/opennx.pot, po/ru.po, res/opennx.xrc:
- Made recently added feature "clear password on abort"
configurable.
2012-02-19 00:47 Fritz Elfert <[email protected]>
* [r691] opennx.spec.in:
- Fixed RPM build
2012-02-19 00:45 Fritz Elfert <[email protected]>
* [r690] Makefile.am, debian/rules:
- Removed nxesd from debian build - we use pulseaudio on all
platforms
2012-02-19 00:30 Fritz Elfert <[email protected]>
* [r689] LogDialog_symbols.h, opennx.spec.in, po/de.po,
po/opennx.pot, po/ru.po:
- Remove nxesd from rpm build - we use pulseaudio on all
platforms
2012-02-18 02:36 Fritz Elfert <[email protected]>
* [r688] LogDialog.cpp, MySession.cpp, PulseAudio.cpp,
SessionAdmin.cpp:
- Several Session-Admin related fixes
2012-02-18 00:00 Fritz Elfert <[email protected]>
* [r687] SessionAdmin.cpp, SessionList.cpp:
- Attempt to fix bug #3468859
2012-02-17 21:25 Fritz Elfert <[email protected]>
* [r686] MySession.cpp, MyWizard.cpp, SessionProperties.cpp:
- Fixed bug #3487112
- Decoupled session watch event handling
2012-02-15 17:09 Fritz Elfert <[email protected]>
* [r685] ResumeDialog.cpp:
- Added workaround for http://trac.wxwidgets.org/ticket/10400,
which
strangely affects wxMSW (windows) only.
2012-02-10 17:47 Fritz Elfert <[email protected]>
* [r684] MySession.cpp, MySession.h:
- Properly derive from wxObject
- Better ssh logging
- Minor tweaks
2012-02-09 23:37 Fritz Elfert <[email protected]>
* [r683] KeyDialog.cpp, PanicDialog.h:
- Replaced obsolete paramters (old wxWidgets 2.6 compatibility
stuff)
2012-02-09 23:34 Fritz Elfert <[email protected]>
* [r682] MyDynlib.cpp:
- Added more debug logging
2012-02-09 23:33 Fritz Elfert <[email protected]>
* [r681] WinShare.cpp, WinShare.h:
- Properly derive from wxObject
- Added more debug logging
2012-02-09 23:31 Fritz Elfert <[email protected]>
* [r680] MacOSX.c:
- Fixed compile erro on older Macs
2012-02-09 23:29 Fritz Elfert <[email protected]>
* [r679] MyXmlConfig.cpp, MyXmlConfig.h:
- Properly derive from wxObject
2012-02-09 23:27 Fritz Elfert <[email protected]>
* [r678] MyIPC.cpp, MyIPC.h:
- Serialize async events from nxssh
2012-02-05 19:52 Fritz Elfert <[email protected]>
* [r677] MacUninstallApp.cpp, WrappedStatic.cpp, macfindreader.c,
mactestkbd.c, osdep.c, packaging/MacOSX/Makefile.am,
packaging/MacOSX/mkbundle, packaging/MacOSX/opennx.plist.in:
- OSX: Fixed several compile warnings
- OSX: Fixed application bundle IDs
2012-02-05 16:18 Fritz Elfert <[email protected]>
* [r676] MySession.cpp, MySession.h, MyXmlConfig.cpp,
RdpImageSettingsDialog.cpp, RdpImageSettingsDialog.h,
UnixImageSettingsDialog.cpp, UnixImageSettingsDialog.h,
VncImageSettingsDialog.cpp, VncImageSettingsDialog.h:
- Fixed loading of image compression dialogs.
- Fixed parsing of session list when attaching to shadow
sessions.
- Added missing image compression parameters in attach handling
2012-02-05 07:27 Fritz Elfert <[email protected]>
* [r675] MySession.cpp, ResumeDialog.cpp:
- Fixed bug #3473164
2012-02-05 05:55 Fritz Elfert <[email protected]>
* [r674] LoginDialog.cpp, Makefile.am, MyXmlConfig.cpp,
MyXmlConfig.h, RdpImageSettingsDialog.cpp,
RdpImageSettingsDialog.h, RdpImageSettingsDialog_symbols.h,
RdpPropertyDialog_symbols.h, ResumeDialog.cpp, ResumeDialog.h,
ResumeDialog_symbols.h, SessionProperties_symbols.h,
TraceLogRemote.cpp, TraceLogRemote.h, TraceLogRemote_symbols.h,
UnixImageSettingsDialog.cpp, UnixImageSettingsDialog.h,
UnixImageSettingsDialog_symbols.h, VncImageSettingsDialog.cpp,
VncImageSettingsDialog.h, VncImageSettingsDialog_symbols.h,
configure.ac, opennx.pjd, opennxApp.cpp,
packaging/win32/opennx.iss, po/de.po, po/opennx.pot, po/ru.po,
res/opennx.xrc, res/tracelog.xrc, tracelog.pjd, tracelogApp.cpp,
tracelogApp.h:
- Massive rework of session config - Attempt to fix Bug #3483356
- Started work on Bug #3473164
- Added remote debugging in win32 tracelog App
2012-02-04 22:32 Fritz Elfert <[email protected]>
* [r673] PulseAudio.cpp, getnxsrcpkg, packaging/MacOSX/buildnx,
packaging/MacOSX/opennx-main.plist.in,
packaging/MacOSX/opennx.plist.in, packaging/MacOSX/pkg.plist.in,
packaging/MacOSX/pulse/Makefile.am,
patches/nxcomp-autotools.patch:
- Misc build fixes for OSX
- Better getnxsrcpkg (can now fetch version-numbers only)
- Added retry loop (3x) in pulseaudio client connect.
2012-01-30 17:45 Fritz Elfert <[email protected]>
* [r672] PulseAudio.cpp:
- Fixed win32 build (wrong #defines)
2012-01-30 17:12 Fritz Elfert <[email protected]>
* [r671] MacOSX.c, Makefile.am, MySession.cpp, PulseAudio.cpp,
configure.ac, packaging/MacOSX/Makefile.am,
packaging/MacOSX/buildnx,
packaging/MacOSX/pkgResources/InstallationCheck,
packaging/MacOSX/pulse/Makefile.am,
packaging/MacOSX/pulse/cfg/default.pa,
packaging/MacOSX/pulse/patches/pulseaudio-osx-machid.patch,
packaging/MacOSX/pulse/pulseaudio.shasum,
packaging/MacOSX/pulse/urls.txt:
- Fixed bug #3472968 (crash, if pulseaudio fail to start
or its pid file could not be found)
- Updated to latest PA. Added patch for PA..
- Changes for building on OSX 10.7
2012-01-08 23:34 Fritz Elfert <[email protected]>
* [r670] packaging/MacOSX/buildnx:
- Cleaned up build process for OSX
2012-01-08 19:37 Fritz Elfert <[email protected]>
* [r669] ., opensc, packaging/MacOSX/buildnx,
packaging/MacOSX/pulse:
- MaxOSX: include a custom libjpeg which provides
libjpeg-turbo on intel systems.
2012-01-08 06:34 Fritz Elfert <[email protected]>
* [r668] Makefile.am, PulseAudio.cpp, configure.ac,
packaging/win32/pulse/Makefile.am:
- Fixed pulseaudio startup on win32 (was broken by pulseaudio
changes for OSX)
- Fixed cxx warnings
- Hide pulseaudio console window on win32
2012-01-08 00:45 Fritz Elfert <[email protected]>
* [r667] LoginDialog.cpp, MacUninstallApp.cpp, Makefile.am,
PulseAudio.cpp, configure.ac, opennxApp.cpp, opennxApp.h,
packaging/MacOSX/pulse/Makefile.am:
- Fixed behavior on OSX when opening a downloaded
session config for the first time after installation.
- Activated pulseaudio on OSX
- Fixed OSX uninstaller
- Eliminated various compiler warnings
2012-01-06 13:31 Fritz Elfert <[email protected]>
* [r666] MacUninstallApp.cpp:
- Don't try to uninstall man direcory
2012-01-06 13:10 Fritz Elfert <[email protected]>
* [r665] LoginDialog.cpp, MyXmlConfig.cpp, opennx.spec.in:
- Added some trace logging for
2012-01-04 19:55 Fritz Elfert <[email protected]>
* [r664] opennxApp.cpp:
- Fixed bug #3469356
2012-01-04 04:53 Fritz Elfert <[email protected]>
* [r663] KeyDialog.cpp, PulseAudio.cpp, ResumeDialog.cpp,
XdmPropertyDialog.cpp, watchReaderApp.cpp:
- Eliminated several warnings
2012-01-04 04:48 Fritz Elfert <[email protected]>
* [r662] configure.ac:
- Added even more quoting and workaround for
older wxWidgets in config check for wxRegEx
2012-01-04 04:11 Fritz Elfert <[email protected]>
* [r661] configure.ac:
- Fixed escaping in new configure check
2012-01-04 00:46 Fritz Elfert <[email protected]>
* [r660] SessionList.cpp:
- Fixed bug #3469017
2012-01-03 23:59 Fritz Elfert <[email protected]>
* [r659] configure.ac:
Fixed bug #3468923
2011-12-21 09:58 Fritz Elfert <[email protected]>
* [r658] MySession.cpp, MyXmlConfig.cpp, MyXmlConfig.h,
SessionProperties.cpp, SessionProperties.h,
SessionProperties_symbols.h, opennx.pjd,
packaging/win32/xming/Makefile.am,
packaging/win32/xming/patches/xming-clipfilter.patch,
packaging/win32/xming/patches/xming-logdebug.patch, po/de.po,
po/opennx.pot, po/ru.po, res/opennx.xrc:
- Added debug logging via OutputDebugString in XMing
- Added configurable selection filter in XMing
- Added GUI config option and parameter handling for
selection filter.
2011-12-09 20:41 Fritz Elfert <[email protected]>
* [r657] MyWizard.cpp, MyWizard_symbols.h,
SessionProperties_symbols.h, opennx.pjd, po/de.po, po/opennx.pot,
po/ru.po, res/opennx.xrc:
- Updated Wizard to XDMCP support
- Updated translations
2011-12-09 19:26 Fritz Elfert <[email protected]>
* [r656] KeyDialog.cpp, Makefile.am:
- Removed misleading .pub extension from key-import file selector
- Really fixed linker error on Linux & OSX
2011-12-09 19:09 Fritz Elfert <[email protected]>
* [r655] KeyDialog.cpp, Makefile.am:
- Fixed liker error on Linux and OSX
- Close KeyDialog when clicking Save
2011-12-09 18:07 Fritz Elfert <[email protected]>
* [r654] Makefile.am, MySession.cpp, PulseAudio.cpp, PulseAudio.h,
configure.ac, packaging/win32/Makefile.am,
packaging/win32/opennx.iss, packaging/win32/pulse,
packaging/win32/pulse/Makefile.am,
packaging/win32/pulse/cfg/client.conf,
packaging/win32/pulse/pulseaudio.md5sum,
packaging/win32/pulse/urls.txt, pulseTest.cpp, res/opennx.rc.in:
- Update to latest pulseaudio.
- Don't use nxesd on win32 anymore
2011-12-07 15:39 Fritz Elfert <[email protected]>
* [r653] Makefile.am, MyXmlConfig.cpp, MyXmlConfig.h,
ProxyPropertyDialog.h, ProxyPropertyDialog_symbols.h,
SessionProperties.cpp, SessionProperties_symbols.h,
XdmPropertyDialog.cpp, XdmPropertyDialog.h,
XdmPropertyDialog_symbols.h, opennx.pjd, po/POTFILES.in,
po/de.po, po/opennx.pot, po/ru.po, res/opennx.xrc:
- Added Support for XDM Sessions
- Updated translations
2011-12-06 15:00 Fritz Elfert <[email protected]>
* [r652] MyXmlConfig.cpp, MyXmlConfig.h,
SessionProperties_symbols.h, opennx.pjd, opennxApp.cpp,
res/opennx.xrc:
- Fixed sizer problem in ResumeDialog.
- Added larger values in chache size selectors
2011-12-06 11:58 Fritz Elfert <[email protected]>
* [r651] SessionProperties.h, opennx.pjd:
- Readded lost accessors
2011-12-06 11:18 Fritz Elfert <[email protected]>
* [r650] LoginDialog.cpp, MyXmlConfig.cpp, MyXmlConfig.h,
SessionProperties.cpp, SessionProperties.h,
SessionProperties_symbols.h, opennx.pjd, osdep.c, po/ru.po,
res/opennx.xrc:
- Reverted OSX-related change from rev 649
- Manually applied #3256650
- Added ability to convert login name to lowercase
- Clear password entry in GUI after aborted or failed login.
2011-08-09 11:51 Fritz Elfert <[email protected]>
* [r649] MacOSX.c, mactestkbd.c, osdep.c:
- Attempt to work around broken XKB rule properties on OSX 10.7
2011-06-24 17:16 Fritz Elfert <[email protected]>
* [r648] MySession.cpp, packaging/MacOSX/pulse/Makefile.am,
packaging/win32/nx/nxcomp.md5sum:
- Add custom bindir to path before executing nxssh
- Build optimization for OSX
2011-06-23 17:52 Fritz Elfert <[email protected]>
* [r647] ProxyPropertyDialog.cpp:
- Added missing include
2011-06-23 17:42 Fritz Elfert <[email protected]>
* [r646] ProxyPropertyDialog.cpp, ProxyPropertyDialog.h,
ProxyPropertyDialog_symbols.h, opennx.pjd, res/opennx.xrc:
- Added a link to htmlized pconnect man page in proxy settings
dialog.
2011-06-23 17:07 Fritz Elfert <[email protected]>
* [r645] packaging/MacOSX/Makefile.am:
- Install pconnect man page on OSX
2011-06-23 13:19 Fritz Elfert <[email protected]>
* [r644] Makefile.am, configure.ac, docs, docs/Makefile.am,
docs/pconnect.1, man:
- Renamed subdir man -> docs
2011-06-23 12:07 Fritz Elfert <[email protected]>
* [r643] Makefile.am, configure.ac, man, man/Makefile.am,
man/pconnect.html, packaging/win32/opennx.iss:
- Install a html man page for pconnect
2011-06-23 00:34 Fritz Elfert <[email protected]>
* [r642] packaging/MacOSX/pulse/Makefile.am,
packaging/win32/pulse/Makefile.am, packaging/win32/pulse/cfg,
packaging/win32/pulse/cfg/daemon.conf,
packaging/win32/pulse/cfg/default.pa, po/de.po, po/opennx.pot,
po/ru.po:
- Added missing dist elements
2011-06-22 16:29 Fritz Elfert <[email protected]>
* [r641] extres/svg2icons, getnxsrcpkg, opennx.pjd,
packaging/win32/pulse/Makefile.am,
packaging/win32/pulse/pulseaudio.md5sum,
packaging/win32/pulse/urls.txt, po/de.po, po/opennx.pot,
po/ru.po, res/nx-desktop.png:
- Updated pulseaudio for win32
- Updated translations
- Cleaned up icons
2011-06-22 16:27 Fritz Elfert <[email protected]>
* [r640] Makefile.am, configure.ac, packaging/MacOSX/pulse,
packaging/MacOSX/pulse/Makefile.am,
packaging/MacOSX/pulse/pulseaudio.shasum,
packaging/MacOSX/pulse/urls.txt:
- pulse build tweaks for OSX
2011-06-21 23:01 Fritz Elfert <[email protected]>
* [r639] packaging/MacOSX/Makefile.am,
packaging/MacOSX/pulse/Makefile.am,
packaging/MacOSX/pulse/Makefile.in, packaging/MacOSX/pulse/cfg,
packaging/MacOSX/pulse/cfg/daemon.conf,
packaging/MacOSX/pulse/cfg/default.pa:
- Misc build fixups for pulseaudio on OSX
2011-06-21 13:52 Fritz Elfert <[email protected]>
* [r638] packaging/MacOSX/pulse,
packaging/MacOSX/pulse/Makefile.am,
packaging/MacOSX/pulse/Makefile.in,
packaging/MacOSX/pulse/json-c.shasum,
packaging/MacOSX/pulse/libsamplerate.shasum,
packaging/MacOSX/pulse/libsndfile.shasum,
packaging/MacOSX/pulse/libtool.shasum,
packaging/MacOSX/pulse/patches,
packaging/MacOSX/pulse/patches/speex-crossppc.patch,
packaging/MacOSX/pulse/pulseaudio.shasum,
packaging/MacOSX/pulse/speex.shasum,
packaging/MacOSX/pulse/urls.txt:
- Added pulseaudio subdir
2011-06-19 22:01 Fritz Elfert <[email protected]>
* [r637] packaging/win32, packaging/win32/Makefile.am,
packaging/win32/findrequires.pl.in, packaging/win32/nx,
packaging/win32/nx/Makefile.am,
packaging/win32/nx/libjpeg.md5sum,
packaging/win32/nx/patches/jpeg-ming32.patch,
packaging/win32/nx/patches/nxcomp-win32.patch,
packaging/win32/nx/urls.txt, packaging/win32/pulse,
packaging/win32/pulse/Makefile.am,
packaging/win32/pulse/libatomic_ops.md5sum,
packaging/win32/pulse/patches/pulseaudio-config.patch,
packaging/win32/pulse/patches/pulseaudio-win32.patch,
packaging/win32/pulse/pulseaudio.md5sum,
packaging/win32/pulse/urls.txt:
- win32: Added silent-rules, general cleanup
- win32: Updated to libjpeg-turbo 1.1.1
- win32 pulseaudio: Removed libatomic_ops, build against our own
github fork
2011-06-18 15:45 Fritz Elfert <[email protected]>
* [r636] packaging/win32/Makefile.am, packaging/win32/opennx.iss:
- Setup: Add pulseaudio.exe to windows firewall exceptions
- Setup: Add dependencies from pulse libs
2011-06-18 14:24 Fritz Elfert <[email protected]>
* [r635] PulseAudio.cpp:
- Disable cookie auth in pa's esd module.
2011-06-17 11:11 Fritz Elfert <[email protected]>
* [r634] packaging/win32/Makefile.am, packaging/win32/lgpl.rtf,
packaging/win32/opennx.iss, packaging/win32/version.iss:
- Adapted to latest InnoSetup
2011-06-16 15:34 Fritz Elfert <[email protected]>
* [r633] packaging/win32/Makefile.am,
packaging/win32/isccwrap.sh.in, packaging/win32/nx/nxcomp.md5sum,
packaging/win32/nx/nxesd.md5sum,
packaging/win32/nx/nxproxy.md5sum,
packaging/win32/nx/patches/nxcomp-win32.patch,
packaging/win32/nx/patches/nxesd-win32.patch,
packaging/win32/opennx.iss, packaging/win32/pulse,
packaging/win32/pulse/Makefile.am,
packaging/win32/pulse/json-c.md5sum,
packaging/win32/pulse/liboil.md5sum,
packaging/win32/pulse/libsamplerate.md5sum,
packaging/win32/pulse/libsndfile.md5sum,
packaging/win32/pulse/patches/jsonc-win32.patch,
packaging/win32/pulse/patches/liboil-win32.patch,
packaging/win32/pulse/patches/pulseaudio-config.patch,
packaging/win32/pulse/patches/pulseaudio-win32.patch,
packaging/win32/pulse/pulseaudio.md5sum,
packaging/win32/pulse/speex.md5sum,
packaging/win32/pulse/urls.txt:
- Updated win32 build to latest nx components
- Added a working pulseaudio for win32 (Finally!!)
- Note: pulseaudio daemon setup on win32 not yet implemented.
2011-06-13 00:58 Fritz Elfert <[email protected]>
* [r632] MyDynlib.cpp:
- Added workaround for loading cups lib on Mac OSX
2011-06-12 19:20 Fritz Elfert <[email protected]>
* [r631] LoginDialog.cpp, LoginDialog.h, MacOSX.c, Makefile.am,
MySession.cpp, MyWizard.cpp, configure.ac, opennxApp.cpp,
packaging/MacOSX/Makefile.am, trace.h:
- Use Xau lib functions on Unix instead of invoking xauth.
- Revert OSX menu changes, as the break event andling.
- Added special "all" trace tag for enabling all trace regions at
once.
- Misc. OSX related build optimizations.
2011-06-12 19:15 Fritz Elfert <[email protected]>
* [r630] po/de.po, po/opennx.pot, po/ru.po:
- Updated translations
2011-06-12 05:36 Fritz Elfert <[email protected]>
* [r629] MacUninstallApp.cpp, MacUninstallApp.h,
packaging/MacOSX/Makefile.am, po/de.po, po/opennx.pot, po/ru.po,
res/about.html, res/de_about.html:
- Made Mac OSX uninstall app working again
- Updated translations
2011-06-12 04:20 Fritz Elfert <[email protected]>
* [r628] opennx.spec.in, po/de.po, po/opennx.pot, po/ru.po:
- Fixed a typo in spec
- Updated translations
2011-06-12 03:53 Fritz Elfert <[email protected]>
* [r627] LoginDialog.cpp, opennx.spec.in:
- Solved compile issue on openSUSE 11.4
2011-06-11 21:42 Fritz Elfert <[email protected]>
* [r626] MacUninstallApp.cpp, Makefile.am, MySession.cpp,
MySession.h, m4/flibcurl.m4, m4/libcurl.m4, macfindreader.c,
opennxApp.cpp, packaging/MacOSX/Makefile.am,
packaging/MacOSX/buildnx, packaging/MacOSX/mkdmg,
patches/jpeg-autoconf.patch:
- Fixed a library interference on Mac OSX with libjpeg and
Apple's ImageIO framework
- Removed build dependencies on opensc and libsmbclient on Mac
OSX
- Started adapting uninstaller to new receipt layout (not
finished yet)
2011-06-09 14:50 Fritz Elfert <[email protected]>
* [r625] MyWizard.cpp, MyWizard.h:
Enable Quit menu item on OSX
2011-06-09 13:17 Fritz Elfert <[email protected]>
* [r624] opennxApp.cpp:
Enable quit menu entry on OSX
2011-05-27 11:38 Fritz Elfert <[email protected]>
* [r623] opennxApp.cpp, opennxApp.h:
- Added exportres option
2011-05-26 14:04 Fritz Elfert <[email protected]>
* [r622] Makefile.am, WinShare.cpp, configure.ac, debian/control,
libsmbclient.h, opennx.spec.in, po/de.po, po/opennx.pot,
po/ru.po:
- Remove build dependency on cups-devel and libsmbclient-devel
2011-05-25 16:38 Fritz Elfert <[email protected]>
* [r621] LoginDialog.cpp:
- Try solving a compile error on openSUSE 11.4
2011-05-25 14:49 Fritz Elfert <[email protected]>
* [r620] Makefile.am, configure.ac, debian/control, opennx.spec.in,
opensc, opensc/errors.h, opensc/opensc-config.in,
opensc/opensc.h, opensc/pkcs15.h, opensc/scconf.h,
opensc/types.h:
- Remove build dependency on opensc-devel
2011-05-25 13:41 Fritz Elfert <[email protected]>
* [r619] pconnect.c:
- Code cleanup in pconnect
2011-05-21 22:45 Fritz Elfert <[email protected]>
* [r618] opennx.spec.in:
- Attempt to fix wxWidgets dependency on openSUSE >= 11.4
2011-05-21 18:50 Fritz Elfert <[email protected]>
* [r617] opennx.spec.in, packaging/MacOSX/buildnx:
- Solved rpath problem with new nxesd build.
- Solved patch issue with new nxesd build on OSX.
2011-05-21 14:21 Fritz Elfert <[email protected]>
* [r616] debian/rules:
- Fixed nxesd patching
2011-05-21 13:12 Fritz Elfert <[email protected]>
* [r615] debian/rules:
- Added missing autoreconf call
2011-05-21 11:50 Fritz Elfert <[email protected]>
* [r614] debian/rules:
- Apply patch for nxesd in debian rules
2011-05-21 10:56 Fritz Elfert <[email protected]>
* [r613] opennx.spec.in, patches/nxesd-3.5-autotools.patch:
- Fixed autotools isuue with nxesd
2011-04-08 10:20 Fritz Elfert <[email protected]>
* [r612] packaging/MacOSX/buildopensc:
- Updated opensc build script for OSX
2011-02-27 14:59 Fritz Elfert <[email protected]>
* [r611] MySession.cpp, MyXmlConfig.cpp, MyXmlConfig.h,
SessionProperties.cpp, SessionProperties.h,
SessionProperties_symbols.h, opennx.pjd, po/de.po, po/opennx.pot,
po/ru.po, res/opennx.xrc:
- Fixed bug #3192411
- Added some translations
2011-02-25 10:59 Fritz Elfert <[email protected]>
* [r610] MySession.cpp:
- Fixed Session resume, Bug-ID: #3190396
2011-02-24 03:07 Fritz Elfert <[email protected]>
* [r609] MySession.cpp, opennxApp.cpp, opennxApp.h:
- Added --autoresume switch.
2011-02-23 19:47 Fritz Elfert <[email protected]>
* [r608] opennx.spec.in:
- Fix lib install path (#3190416)
2011-02-23 17:04 Fritz Elfert <[email protected]>
* [r607] MySession.cpp, ResumeDialog.cpp, po/de.po, po/opennx.pot,
po/ru.po:
- Added translations, misc cosmetics
2011-02-23 16:43 Fritz Elfert <[email protected]>
* [r606] MyIPC.cpp, MyIPC.h, MySession.cpp, MySession.h,
ResumeDialog.cpp, ResumeDialog.h, ResumeDialog_symbols.h,
opennx.pjd, res/opennx.xrc, watchReaderApp.cpp:
- Added "User" column in ResumeDialog
- Added refresh button in ResumeDialog
- Parse user from session list
- Added debug logging in watchReader and ResumeDialog
- Fixed bug in shadow-session attach: wron session ID was
selected.
- Added --resize option to attachsession
2011-02-22 04:00 Fritz Elfert <[email protected]>
* [r605] LibUSB.cpp, SessionProperties.cpp,
UsbFilterDetailsDialog.cpp, UsbFilterDetailsDialog.h,
watchUsbIpApp.cpp, watchUsbIpApp.h:
- USB/IP: Fallback to sysfs, if libusb can't read
device attributes.
- Prepared UsbFilterDetailDialog for context help.
2011-02-21 22:37 Fritz Elfert <[email protected]>
* [r604] SessionProperties.cpp, SessionProperties.h,
SessionProperties_symbols.h, opennx.pjd, po/de.po, po/opennx.pot,
po/ru.po, res/about.html, res/de_about.html, res/opennx.xrc:
- Reduced height of SessionProperties to fit
on smaller displays (Feature request #3186863)
2011-02-21 19:18 Fritz Elfert <[email protected]>
* [r603] AsyncProcess.cpp, AsyncProcess.h, MyIPC.cpp:
- Speedup initial handshake
2011-02-21 17:10 Fritz Elfert <[email protected]>
* [r602] MyIPC.cpp:
- Fixed bug, described in Patch #3183720 - Thanks to
2011-02-21 14:05 Fritz Elfert <[email protected]>
* [r601] extres/xdg/innovidata-opennx-admin.desktop,
extres/xdg/innovidata-opennx-wizard.desktop,
extres/xdg/innovidata-opennx.desktop,
extres/xdg/innovidata-opennx.directory:
- Applied patch #3170414 - Thanks to [email protected]
2010-12-16 15:19 Fritz Elfert <[email protected]>
* [r600] debian/control:
- Added dependencies for liburl on debian
2010-12-16 15:15 Fritz Elfert <[email protected]>
* [r599] m4/libcurl.m4, opennx.spec.in:
- Added M$ check for libcurl
- Added RPM dependency for libcurl
2010-12-16 14:38 Fritz Elfert <[email protected]>
* [r598] LoginDialog.cpp, Makefile.am, MyXmlConfig.cpp,
MyXmlConfig.h, configure.ac, opennxApp.cpp, opennxApp.h, osdep.c,
po/de.po, po/opennx.pot, po/ru.po, watchUsbIpApp.cpp:
- Added support for fetching session config via https
- Fixed an issue when using USB/IP, configured in a remote
session config.
- Fixed several typos
- Updated translations
2010-12-09 12:26 Fritz Elfert <[email protected]>
* [r597] LoginDialog.cpp, ProxyPropertyDialog.cpp,
ProxyPropertyDialog.h, SessionProperties.cpp, po/de.po:
- Bugfix: Set focus in login dialog, even if session config was
loaded via http
2010-11-30 11:23 Fritz Elfert <[email protected]>
* [r596] packaging/win32/nx/patches/nxcomp-win32.patch:
- Misc fixes for build of nxcom on windows.
2010-11-15 17:54 Fritz Elfert <[email protected]>
* [r595] packaging/win32/xming/Makefile.am,
packaging/win32/xming/patches/xming-build.patch:
- Updated Xming build configuration
2010-11-15 12:21 Fritz Elfert <[email protected]>
* [r594] MyXmlConfig.cpp, po/de.po, po/opennx.pot, po/ru.po:
- Applied Patch #3109454 (Thanks to: snejok AT users.sf.net)
- Updated translations
2010-11-10 17:33 Fritz Elfert <[email protected]>
* [r593] SessionProperties.cpp:
- Fix crash in Session Property Dialog
2010-11-10 13:19 Fritz Elfert <[email protected]>
* [r592] SessionProperties.cpp:
- Fixed crash in Property dialog
2010-10-24 23:58 Fritz Elfert <[email protected]>
* [r591] ForeignFrame.cpp, ForeignFrame.h, SessionAdmin.cpp,
opennxApp.cpp, osdep.c, osdep.h, packaging/win32/nx/Makefile.am,
packaging/win32/nx/libjpeg.md5sum,
packaging/win32/nx/nxcomp.md5sum,
packaging/win32/nx/nxesd.md5sum,
packaging/win32/nx/patches/libpng-exports.patch,
packaging/win32/nx/patches/nxcomp-win32.patch,
packaging/win32/nx/urls.txt:
- Continued work on win32 mingw build
2010-10-23 22:42 Fritz Elfert <[email protected]>
* [r590] KeyDialog.cpp, KeyDialog.h, KeyDialog_symbols.h,
LoginDialog.cpp, LoginDialog.h, Makefile.am,
ProxyPropertyDialog.cpp, ProxyPropertyDialog.h, PulseAudio.cpp,
RdpImageSettingsDialog.cpp, RdpImageSettingsDialog.h,
RdpImageSettingsDialog_symbols.h, RdpPropertyDialog.cpp,
RdpPropertyDialog.h, RdpPropertyDialog_symbols.h,
SessionProperties.cpp, ShareProperties.cpp, ShareProperties.h,
UnixImageSettingsDialog.cpp, UnixImageSettingsDialog.h,
UnixImageSettingsDialog_symbols.h, UsbFilterDetailsDialog.cpp,
UsbFilterDetailsDialog_symbols.h, VncImageSettingsDialog.cpp,
VncImageSettingsDialog.h, VncImageSettingsDialog_symbols.h,
VncPropertyDialog.cpp, VncPropertyDialog.h,
X11PropertyDialog.cpp, X11PropertyDialog.h,
X11PropertyDialog_symbols.h, opennx.pjd, res/opennx.xrc:
- More preparations for context sensitive help
2010-10-23 12:54 Fritz Elfert <[email protected]>
* [r589] .:
- Ignore pulsetest binary in SVN
2010-10-22 01:15 Fritz Elfert <[email protected]>
* [r588] SessionProperties.cpp, SessionProperties.h, opennxApp.cpp,
opennxApp.h, po/de.po, po/opennx.pot, po/ru.po:
- Started implementing context help
2010-10-21 22:35 Fritz Elfert <[email protected]>