forked from hesa/gnu-xnee
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
3711 lines (2373 loc) · 85.7 KB
/
ChangeLog
File metadata and controls
3711 lines (2373 loc) · 85.7 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
2018-01-01 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/print.c
Bumped year and version
* configure.in
Removed deps to gnomeuio
2014-05-06 Henrik Sandklef <hesa@sandklef.com>
* cnee/src/cnee_printer.c
* cnee/src/parse.c
* libxnee/include/libxnee/xnee.h
* libxnee/include/libxnee/xnee_resource.h
* libxnee/include/libxnee/xnee_setget.h
* libxnee/include/libxnee/xnee_utils.h
* libxnee/src/xnee.c
* libxnee/src/xnee_error.c
* libxnee/src/xnee_record.c
* libxnee/src/xnee_resource.c
* libxnee/src/xnee_session.c
* libxnee/src/xnee_setget.c
* libxnee/src/xnee_utils.c
Added feature to manually set display to record from.
2014-05-05 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_fake.c
* libxnee/src/xnee_grab.c
* libxnee/src/xnee_km.c
Added support for pause/resume/quit when retyping file. Fixed unseen bug
when removing events twice from queue (prob always worked since
press was followed by release)
2013-06-05 Henrik Sandklef <hesa@sandklef.com>
* gnee/src/main.c:
* gnee/src/callbacks.c:
* gnee/src/recordables.c:
Adding support for pre defined event sets
* libxnee/include/libxnee/xnee_internal.h (_):
Added XNEE_PREDEF_EVENTS for pre defined event sets
* libxnee/include/libxnee/xnee_xinput.h
(xnee_xinput_unrequest_*): macro for unrequesting recording of XI events
2012-10-09 Henrik Sandklef <hesa@sandklef.com>
* pnee/Makefile.am:
* gnee/Makefile.am:
* Makefile.am:
* configure.in:
"Restructuerd incl/excl of builds, as a preparation for obsoleting gui and
applet."
2012-06-28 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_xinput.c:
* libxnee/src/xnee_record.c:
Don't record non XI events if XI is in use
* libxnee/src/xnee_resource.c:
correct handling of --all-events
2012-04-19 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_xinput.c (xnee_xinput_add_devices):
Not recording mouse event when wanting to record kbd only
2012-04-17 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_xinput.c:
Added (c) year 2012
Ok if minor differs when querying XI extension
2012-03-24 Henrik Sandklef <hesa@sandklef.com>
* configure.in:
Fixed faulty printout in xosd option (configure script)
2012-02-10 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_record.c (xnee_record_handle_event_printer):
Corrected faulty print statement (too few arguments)
* configure.in:
Bumped version
* cnee/src/parse.c:
* cnee/include/parse.h:
* cnee/src/main.c:
* cnee/src/cnee_demo.c:
Added option: record-replay
* cnee/src/main.c (main):
Returning from main with the last return value
2012-01-05 Henrik Sandklef <hesa@bach.sandklef.com>
* configure.in (libgnomeui_LIBS):
Changed the printout when not finding gtk-config
2011-12-13 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_display.c (xnee_add_display_str):
Fixed mem error in realloc
Replaced alloc+realloc with only realloc
2011-12-12 Henrik Sandklef <hesa@sandklef.com>
* gnee/src/gnee_xnee.h:
Added inclusion of xnee_utils.h
* gnee/src/gnee_xnee.c:
Removed unused variables
* gnee/src/main.c:
Corrected faulty version printout
* gnee/src/recordables.c:
Removed unused variable
Added 2011 to (c) year
* gnee/src/callbacks.c (on_ok_button1_clicked):
Removed unused variable
* gnee/src/gnee_xnee.h:
Added proto for gnee_set_xosd_feedback
* cnee/src/cnee_printer.c:
Added 2011 to (c) year
Removed unused variable
(xnee_usage_printer):
Removed unused variable
* cnee/src/cnee_fake.c (xnee_type_help_sub):
Removed unused variable: option_descr
* libxnee/include/libxnee/xnee_setget.h:
Added proto for :
xnee_is_future_clients
xnee_set_new_window_pos_value
* libxnee/include/libxnee/xnee_xinput.h:
Added proto for xnee_xinput_add_devices
* libxnee/src/xnee_display.c:
* libxnee/src/xnee_expr.c:
* libxnee/src/xnee_grab.c:
Removed unused variables
* libxnee/src/xnee_plugin.c:
Removed unused handling of sync callback
* libxnee/src/xnee_record.c:
Removed new_window_pos
* libxnee/src/xnee_utils.c:
Removed unused printout code
* libxnee/src/xnee_time.c:
Added type (unsigned long) for stored_recordFirst_diff
* libxnee/src/xnee_xinput.c (xnee_xinput_add_devices):
Removed unused and/or obsolete code
Added inclusion of xnee_range.h
(xnee_init_xinput): return XNEE_OK
* libxnee/src/xnee_display.c:
Added inclusion of xnee_xinput.h
* libxnee/src/xnee_session.c (handle_xerr):
Removed unused and/or obsolete code
* libxnee/src/xnee_buffer.c:
Added inclusion of xnee_xinput.h
Added 2011 to (c) years
* libxnee/src/xnee_grab.c (xnee_save_or_print):
Removed obsolete and/or unused code
* libxnee/src/xnee_fake.c (xnee_fake_key_event_impl):
Moved declaration of XDevice*
* libxnee/src/xnee_replay.c:
Printout of replayable added
Added inclusion of xnee_xinput.h
* libxnee/include/libxnee/xnee_setget.h:
Added prototype for int xnee_is_forced_core_device_events
* libxnee/src/print.c (xnee_store_mouse_pos):
Bool bo removed, since not used
* configure.in:
Bumping version to 3.10.92
* gnee/src/gnee_xnee.c (gx_start_recording):
Removed printout (stderr)
* libxnee/src/xnee.c (xnee_start):
Returning (XNEE_NO_PROT_CHOOSEN) if nothing to record
* libxnee/src/xnee_range.c (xnee_get_nr_of_data):
Not counting reparentnotify among data to record
* libxnee/src/xnee.c (xnee_start):
Removing debug printouts
* configure.in:
Bumb version
* libxnee/src/xnee.c (xnee_start):
Init data counter to 0
2011-11-28 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_plugin.c:
Removed code already commented away
* libxnee/src/xnee_session.c:
Replacing remaining exit with setting interrupt flag
* libxnee/src/xnee_xinput.c (xnee_handle_xinput_event):
Removed faulty printout
* gnee/src/callbacks.c:
Removed calls to set verbose mode
* gnee/src/main.c (main):
Forcing gnee to replay only core events
2011-11-21 Henrik Sandklef <hesa@bach.sandklef.com>
* libxnee/src/xnee_resource.c (]):
Type fixed
2011-11-17 Henrik Sandklef <hesa@sandklef.com>
* pnee/src/callbacks.c:
Added copyright notice (thanks ams)
* configure.in:
Bumping version
Debian => Debian based distros
2011-11-17 Henrik Sandklef <hesa@sandklef.com>
* build/ftp-upload.sh:
Fix for upload directive syntax
* libxnee/src/xnee_utils.c (xnee_record_from_data_display):
context display fix now works on Xorg <= 1.12
2011-09-10 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee.c (xnee_start):
* libxnee/src/xnee_display.c (xnee_add_display_str):
* libxnee/src/xnee_fake.c (xnee_type_file):
* libxnee/src/xnee_plugin.c (xnee_use_plugin):
* libxnee/src/xnee_setget.c:
Replaced exit with return
2011-08-25 Henrik Sandklef <hesa@sandklef.com>
* configure.in:
Replaced "can not" with "can't"
Removed duplicate entry of texi2html
Removed comment about missing programs when not needed
2011-08-08 Henrik Sandklef <hesa@sandklef.com>
* build/build-cvstag.sh (DATE):
Better error messages
* configure.in:
Bumping version to 3.10
* build/test-dist.sh (XNEE_DIR):
Fix for allowing dir path in dist to test
2011-07-12 Henrik Sandklef <hesa@sandklef.com>
* configure.in:
Bumping to 3.09.91
* doc/version.texi:
Bumped date
* libxnee/src/xnee_setget.c (xnee_set_unsync_mode):
Added verbose printout on synd mode set/unset
* doc/xnee_intern.texi:
Replaced "--no-sync" with -ns
* cnee/src/cnee_strings.c:
Replaced "--no-sync" with -ns
* libxnee/include/libxnee/xnee_utils.h:
Changed print format on 64 bit platform
* libxnee/src/xnee_expr.c:
Added xnee session line which caused the error to err printout
* libxnee/src/xnee_record.c:
Fixed format error
2011-07-10 Henrik Sandklef <hesa@sandklef.com>
* cnee/test/src/Makefile (X11_LIB):
Added missing -I and -L to include path
* libxnee/src/xnee_session.c (xnee_close_down):
Setting displays to NULL after closing them
* libxnee/src/xnee_fake.c (xnee_fake_motion_event_impl):
Slightly altered threshold for usleep wrapper (xnee_fake_sleep)
* libxnee/src/xnee_time.c (xnee_calc_sleep_amount_fast):
Rewrote time diff calculator
Removed printf statements
* libxnee/src/xnee_xinput.c (xnee_handle_xinput_event):
Printing data from stored x event instead of frmo deviceevaluator
Replaced 100 as buf size with a macro (XI_BUF_SIZE)
spnrintf instead of sprintf
2011-05-05 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_utils.c (xnee_record_from_data_display):
Added support for X.org >= 7 to xnee_record_from_data_display()
bug #33237, Xnee fails to record on RedHat
(xnee_record_from_data_display):
Adding support for X.org > 1 10
2011-04-18 Henrik Sandklef <hesa@sandklef.com>
* cnee/test/src/Makefile (X11_INC):
Added -I/usr/local/include
to compile test code on freebsd
* cnee/test/test_all.sh:
* cnee/test/check_mem.sh:
Updated to use "env" to invoke bash script
2011-03-28 Henrik Sandklef <hesa@bach.sandklef.com>
* doc/xnee_copying:
Added 2011 to (c) year
2011-03-25 Henrik Sandklef <hesa@bruckner.sandklef.com>
* libxnee/src/xnee_xinput.c (xnee_xinput_add_devices):
Increased size of xinput device name (to 100)
2011-03-13 Henrik Sandklef <hesa@sandklef.com>
* doc/xnee_intro.texi:
Typos fixed
* AUTHORS (Authors):
Added Scott Kostyshak to contributors
* doc/xnee_intern.texi:
Typo fix (exists -> exist, doesn't -> don't)
* doc/xnee_prot.texi:
Typo
2011-03-12 Henrik Sandklef <hesa@sandklef.com>
* doc/xnee_intern.texi:
Language fixes
2011-03-01 Henrik Sandklef <hesa@sandklef.com>
* NEWS:
Boiler template for coming version 3.10
2011-02-26 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_range.c (xnee_device_as_delivered):
Not recording device as delivered if X.org > 1.9
2011-03-01 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_range.c (xnee_device_as_delivered):
Typo (<6 => <9) when checking X.org version
2011-02-23 Henrik Sandklef <hesa@sandklef.com>
* configure.in:
Prepared for 3.0.9
* NEWS:
Prepared for 3.0.9
2011-02-22 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_fake.c (xnee_fake_motion_event_impl):
Removed unused (and somewhat stupid) test code
* cnee/src/Makefile.am (cnee_SOURCES):
Adding LIBXI (possibly containing libxi) to ld flags
* libxnee/src/Makefile.am (LIB_XNEE_SOURCE_FILES):
Used "#" for commenting out stuff
* NEWS:
Added link to debian bug
2011-02-20 Henrik Sandklef <hesa@sandklef.com>
* configure.in:
Removed faulty extra call to AC_INIT
* gnee/src/Makefile.am (gnee_LDADD):
* pnee/src/Makefile.am (pnee_LDADD):
Added LIBXI to d flags (via LIBXI)
* configure.in:
Bumped version (to 3.08.90) to start preps for 3.09
Removed debug printout
Altered check for XI slightly
* libxnee/src/xnee_xinput.c:
Added (c) year
* libxnee/src/xnee_replay.c:
Removed call to xnee_init_xinput
* libxnee/src/xnee_fake.c (xnee_fake_key_event_impl):
Replaced warning print with verbose (was nothing to warn about)
* libxnee/include/libxnee/xnee_utils.h:
Updated (c) year
Added macros for print format
* libxnee/src/xnee_display.c:
Updated (c) year
Minor verbose statements changed
* libxnee/src/xnee_record.c:
Changed print format
Updated (c) year
* libxnee/src/xnee_replay.c (xnee_replay_synchronize):
Minor tweaks
Added init of XI devices
* libxnee/src/xnee_fake.c (xnee_replay_event_handler):
Fixes for XI
* libxnee/src/xnee_xinput.c (xnee_handle_xinput_event):
Fixes for XI support (num_valuators reworked)
2011-02-19 Henrik Sandklef <hesa@sandklef.com>
* cnee/src/parse.c (xnee_parse_cnee_option):
Adding recording of XI keyboard events if XI support
* cnee/src/cnee_demo.c (cnee_demonstration):
Added XI support.
Savannah: bug #31231: Replay in demo mode malfunctions
* cnee/src/cnee_printer.c (xnee_usage_printer):
Removed "===" from help printout
2011-01-25 Henrik Sandklef <hesa@sandklef.com>
* xnee/configure.in:
Bumped version to 3.08
2011-01-23 Henrik Sandklef <hesa@sandklef.com>
* pnee/src/Makefile.am:
Adding libs (for Fedora)
2011-01-21 Henrik Sandklef <hesa@sandklef.com>
* configure.in:
Bumping to version 3.07.92
2011-01-13 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_utils.c (xnee_record_from_data_display):
Added support to handle X server from Fedora 13, 14 & NoMachine
* pnee/src/pnee_impl.c (pnee_start_replaying):
Removed unused variables
2010-10-27 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_expr.c:
#ifdef:ed away an unused var: tmp_time
* libxnee/include/libxnee/xnee_session.h:
Added prototype for:
xnee_set_x_server_version(xnee_data *xd);
* libxnee/include/libxnee/xnee_xinput.h:
Added prototype for:
xnee_handle_xinput_event_human
* libxnee/include/libxnee/xnee_utils.h:
Added prototype for:
xnee_is_screen_ok
2010-10-26 Henrik Sandklef <hesa@sandklef.com>
* libxnee/include/libxnee/xnee_setget.h:
Added prototypes for:
xnee_set_no_reparent_recording
xnee_unset_no_reparent_recording
xnee_is_no_reparent_recording
* libxnee/include/libxnee/xnee_xinput.h:
Added prototype for: xnee_set_x_server_version
* libxnee/src/xnee_alloc.c:
#ifdef:ed (the very odd) NULL pointer check
* libxnee/src/print.c:
fprintf pointers with "%p" instead of "%d" or "%u"
Added inclusion of xnee_xinput.h
* libxnee/src/xnee_xinput.c:
Added server_time to args when xinput2 disabled
* libxnee/src/xnee_utils.c:
Removed old crappy commented out code
* libxnee/src/xnee_setget.c:
* libxnee/src/xnee_session.c:
* libxnee/src/xnee_resource.c:
* libxnee/src/xnee_replay.c:
* libxnee/src/xnee_record.c:
* libxnee/src/xnee_range.c:
* libxnee/src/xnee_keysym.c:
fprintf pointers with "%p" instead of "%d" or "%u"
* libxnee/src/xnee_window.c:
* libxnee/src/xnee_plugin.c:
* libxnee/src/xnee_grab.c:
* libxnee/src/xnee_fileop.c:
Added 2010 to (c) year
fprintf pointers with "%p" instead of "%d" or "%u"
* libxnee/src/xnee_fake.c:
#ifdef:ed away code
fprintf pointers with "%p" instead of "%d" or "%u"
* libxnee/src/xnee_expr.c:
#ifdef:ed away code
Removed unused variables
* libxnee/src/xnee_display.c:
fprintf pointers with "%p" instead of "%d" or "%u"
* libxnee/src/xnee_buffer.c:
#ifdef:ed away code
Added 2010 to (c) year
* libxnee/src/xnee_xinput.c:
fprintf pointers with "%p" instead of "%d" or "%u"
* libxnee/src/Makefile.am (PEDANTIC_FLAGS):
Added -fno-strict-aliasing -Wno-unused-parameter
2010-10-25 hesa <hesa@sandklef.com>
* libxnee/src/print.c (xnee_print_distr_list):
Printing display(s) as unsigned ints instead of ints
* libxnee/src/xnee_record.c:
Setting rContext to 0 (instead of NULL)
Fixed some fprintf arg type casts
* libxnee/src/xnee_utils.c (xnee_record_from_data_display):
Extending fix for RECORD to be valid for newer Xorg servers
* libxnee/src/xnee_xinput.c (xnee_handle_xinput_event_human):
Corrected faulty number of args to print function
Switched to using stored function (instead of fprintf directly)
* libxnee/include/libxnee/xnee.h:
Changed type of time variable (saved_xinput_event) to Time
2010-10-23 Henrik Sandklef <hesa@sandklef.com>
* configure.in:
Bumped version to 3.07.90 (preps for 3.08)
Fixes for dvi to pdf program
Check for XI stuff only when XI is enabled
* cnee/src/Makefile.am:
Cleaned up Makefile
* libxnee/include/libxnee/xnee.h:
* libxnee/src/xnee_session.c:
Removed disabling of xinput device by default
Added recording_enabled to xnee_data struct
* libxnee/src/xnee_xinput.c:
Fixes for --disable-xinput-events
2010-10-15 Henrik Sandklef <hesa@sandklef.com>
* gnee/src/Makefile.am:
* pnee/src/Makefile.am:
XNEE_XINPUT_SUPPORT_FLAGS is a flag for the compiler (not a linker),
changing accordingly
* configure.in:
Updated version number to 3.07
Minor fixes when looking for gtk-config, dvipdf
* gnee/src/Makefile.am (gnee_LDADD):
* pnee/src/Makefile.am (pnee_LDADD):
Added ${XNEE_XINPUT_SUPPORT_FLAGS} to linker args
* libxnee/src/print.c (xnee_version):
Added 2010 to (c) year
2010-10-02 Henrik Sandklef <hesa@sandklef.com>
* configure.in:
Adding "-ldl" to linker arg if needed
Adding check for XI functions
2010-09-26 Henrik Sandklef <hesa@sandklef.com>
* configure.in:
Bumping version to 3.06.96 (in preps for 3.07)
* libxnee/src/xnee_fake.c:
Removed printfs
* libxnee/src/xnee_xinput.c (xnee_get_xinput_event_base):
Preventing more than XQueryExtension call
caching value
* libxnee/src/xnee_buffer.c (xnee_replay_buffer_handler):
Fixed bug in sync buffer
* configure.in:
Bumping version to 3.06.95 (in preps for 3.07)
* doc/xnee_prot.texi:
Added notes on how XI events are stored in session file
* libxnee/src/xnee_utils.c (xnee_is_screen_ok):
Screen nr=0, should of course be an ok screen
* libxnee/src/xnee_expr.c (xnee_expression_handle_project):
Better support to handle strangely recorded screen nr
More fixes to ifdef away xi (N900)
* libxnee/src/xnee_fake.c:
More fixes to ifdef away xi (N900)
* libxnee/src/xnee_utils.c (xnee_is_screen_ok):
New fun to handle strangely recorded screen nr
* libxnee/src/xnee_xinput.c:
Added empty stub for xi human print, if xi disabled
2010-09-25 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_replay.c (xnee_replay_main_loop):
* libxnee/src/xnee_fake.c (xnee_replay_event_handler_sleep_amt):
Removed printf statements (used during devel)
2010-09-25 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_fake.c:
Removed set/unset of verbose mode
2010-09-24 Henrik Sandklef <hesa@sandklef.com>
* NEWS:
Notes from ChangeLog turned into (not yet properly) commented notes
* libxnee/include/libxnee/xnee_fake.h:
Changed fake key fun to macro
Added fun to fake xi key
* libxnee/src/xnee_fake.c:
Added support for replaying XI key event
* libxnee/src/xnee_expr.c (xnee_expression_handle_prim_sub):
Storing of time altered to work with xi and forced core replay
Discard xi events if forced core replay
* libxnee/src/xnee_fake.c (xnee_fake_button_event_impl):
Storing last motion event's X and Y coords for use in coming calls
to xi fake button
* libxnee/src/xnee_xinput.c (xnee_get_xinput_device):
Using fake display when listing and setting up xi devices
* libxnee/test/libtest.c:
Added (c) notice
* cnee/include/parse.h:
* cnee/src/parse.c:
Added options to handle:
forced core replay
replay backend
* libxnee/src/print.c:
Basic functionality of printing xi events for humans added
* libxnee/src/xnee_error.c:
Added: XNEE_XINPUT_EXTENSION_FAILURE, XNEE_REPLAY_BACKEND_FAILURE
* libxnee/src/xnee_fake.c:
Added support for xi buttton
Moved calc of time to sleep to separate fun
(xnee_replay_event_handler_sleep_amt)
Added code to find replay session's device id
(only rudimentary support, based on # instead of name)
* libxnee/src/xnee_record.c:
Removed "#" in front of core event printout
Temp. disabling check for screen
* libxnee/src/xnee_replay.c:
Restructured duplicate code (new static fun
xnee_replay_update_dev_ctr)
Added support for xi buttons
* libxnee/src/xnee_session.c:
Added call to xi init and to set replay backend
* libxnee/src/xnee_setget.c
(xnee_unset_forced_core_device_events):
Added funs to (un)set forced code device replay
* libxnee/src/xnee_xinput.c:
Human printout of xi events
New function to init Xnee's XInput stuff (no device init)
Added code to find replay session's device id
(only rudimentary support, based on # instead of name)
* libxnee/include/libxnee/xnee.h:
Added vars for replay to xi structs
* libxnee/include/libxnee/xnee_fake.h:
Changed fake button fun to macro
Added fun to fake xi buttons
* libxnee/include/libxnee/xnee_xinput.h:
Added funs to init Xnee's XInput stuff (no device init)
* libxnee/include/libxnee/xnee_setget.h:
Added funs to (un)set forced code device replay
2010-09-23 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_strings.c:
* libxnee/include/libxnee/xnee_strings.h:
Added string for replay backend
* libxnee/include/libxnee/xnee_setget.h:
Added funs to handle replay backend
* libxnee/include/libxnee/xnee.h:
Added enum and variable for replay backend
* libxnee/src/xnee_setget.c (xnee_set_replay_backend):
Removed faulty fprintf statement
* configure.in:
Bumping version to 3.06.91 (in preps for 3.07)
* libxnee/src/xnee_fake.c (xnee_fake_motion_event_impl):
Removed crappy printf statement
* libxnee/src/xnee_expr.c (xnee_expression_handle_replay):
Storing time for XI events
* libxnee/include/libxnee/xnee_xinput.h:
* libxnee/src/xnee_xinput.c (xnee_handle_xinput_event):
Added server time as argument since we need the time source
* libxnee/src/xnee_fake.c:
Making sure XI motions events are faked as absolute
Improved handling of XI events
* libxnee/src/xnee_replay.c (xnee_replay_main_loop):
Changed to replaying/faking XInput Slave events instead of master
* libxnee/src/xnee_record.c (xnee_record_handle_event_printer):
Printing a "#" in front of every "normal" motion event (devel fix) v
* doc/xnee_copying:
Updated (c) year
* doc/version.texi:
Updated (c) year
2010-09-22 Henrik Sandklef <hesa@sandklef.com>
* libxnee/src/xnee_xinput.c (xnee_handle_xinput_event):
Changed exit to print a warning (stderr) and return with errorr code
* configure.in:
Updated version to 3.06.90 to prepare for 3.07
* libxnee/src/xnee_fake.c (xnee_replay_event_handler):
Indentation fix
* libxnee/src/xnee_range.c:
Changed "WARNING" to "NOTIFICATION" in warning text
* libxnee/src/xnee_session.c (xnee_rep_prepare):
Added extra call (for second call of fun :( ) to
xnee_setup_display
Continuing if XNEE_OK returned from xnee_replay_main_loop
* libxnee/src/xnee_record.c:
Enabled recording even if screen < 0
Added print of xnee_data and control dpy in fprintf statement
* libxnee/src/xnee_replay.c:
Removed printf statements
changed a printf into a fprintf(stderr,
* libxnee/src/xnee_session.c:
xnee_setup_display called earlier (N900 fix)
* libxnee/src/xnee_xinput.c:
Updated (c) year
changed a printf into a fprintf
2010-09-18 Henrik Sandklef <hesa@sandklef.com>
* xswine/main.c:
Major rewrite, fprintf and flush to swmouse devs
2010-09-14 Henrik Sandklef <hesa@sandklef.com>
* build/maemo.sh:
Removed unused old settings
Re-enabled clean target
2010-09-13 Henrik Sandklef <hesa@sandklef.com>
* build/maemo.sh:
New file to build Xnee for N900,
(very specific settings)
* libxnee/src/xnee_utils.c (xnee_record_from_data_display):
Added support for handling N900 X servers
2010-09-09 Henrik Sandklef <hesa@sandklef.com>
* libxnee/include/libxnee/xnee.h:
Removed hard coded #define of XNEE_XINPUT_SUPPORT
* libxnee/include/libxnee/xnee_xinput.h:
Modified (c) year (only 2010)
Include libxnee/xnee.h alwas done
2010-09-08 Henrik Sandklef <hesa@sandklef.com>
* libxnee/include/libxnee/xnee_xinput.h:
Moved function prototypes outside xinput ifdef
* libxnee/src/xnee_alloc.c (xnee_free_recordext_setup):
free code placed inside NULL checks instead of separate NULL checks
* libxnee/src/xnee_record.c (xnee_record_handle_event_printer):
Discarding motion event if no screen presented
* libxnee/src/xnee_xinput.c:
Stub code for Xinput2 if xinput disabled
* libxnee/src/Makefile.am:
* cnee/src/Makefile.am:
Added xinput enable/disable support
* configure.in:
--disable-xinput2 (and enable) added
2010-09-07 Henrik Sandklef <hesa@sandklef.com>
* libxnee/include/libxnee/xnee_strings.h:
merge
* libxnee/src/xnee_alloc.c:
Updated (c) year
2010-09-07 Henrik Sandklef <hesa@sandklef.com>
* libxnee/include/libxnee/xnee_settings.h
(XNEE_NR_OF_XINPUT_DEVICES):
Adding XNEE_NR_OF_XINPUT_DEVICES as the max
number of xinput devices handled
2010-09-01 Henrik Sandklef <hesa@sandklef.com>
* libxnee/test/print.c (test_printfuns):
Typo fix: reurn => return
(main): printf typo and formatting
* libxnee/include/libxnee/xnee.h:
Including xnee_settings.h to get the nr of xinput devices
2010-08-31 Henrik Sandklef <hesa@sandklef.com>
* AUTHORS (Authors):
Added Tuukka Pasanen to contributors
* libxnee/test/print.c:
Added return 0 at the end of some function body
Added (c) and license notice
* libxnee/test/test_feedback.c (test_setfeedback):
Added return 0 at the end of the function body
* libxnee/test/test_all.c (test_all):
Added return 0 at the end of the function body
* libxnee/test/libtest.c (test_xnee_data):
Added return XNEE_OK at the end
Added (c) and license notice
* gnee/src/gnee_xnee.c (gnee_get_grab):
Added missing return values
* cnee/src/main.c (cnee_handle_err):
function now returns void
we will discard any errors in the function anyway
* devel-scripts/setup-xi2.sh:
Script to setup and unsetup (-d) xinput devices
* libxnee/src/Makefile.am:
Merged xinput-2 branch
* libxnee/src/xnee.c:
Removed funs: xnee_check_true, xnee_check_false
* libxnee/src/xnee_display.c:
Merged xinput-2 branch
* libxnee/src/xnee_error.c:
Updated (c) years to include 2010
New error code: XNEE_CLI_ERROR
* libxnee/src/xnee_expr.c:
Merged xinput-2 branch
* libxnee/src/xnee_fake.c:
Merged xinput-2 branch
* libxnee/src/xnee_range.c:
Merged xinput-2 branch
* libxnee/src/xnee_replay.c:
Merged xinput-2 branch
* libxnee/src/xnee_session.c:
Merged xinput-2 branch
* libxnee/src/xnee_utils.c (xnee_check_true):
New funs: xnee_check_true, xnee_check_false
* libxnee/src/xnee_strings.c:
Updated (c) years to include 2010
Added string containing name of xinput extension
* libxnee/src/xnee_record.c (xnee_unsetup_recording):
Merged xinput-2 branch
* libxnee/include/libxnee/xnee.h (struct):
Merged xinput-2 branch
2010-08-31 Henrik Sandklef <hesa@sandklef.com>
BRANCH: xinput-2 branch
* cnee/src/parse.c:
* cnee/include/parse.h:
Updated (c) years to include 2010
Added option "--disable-xinput-events"
* libxnee/src/Makefile.am:
Added files: src/xnee_xinput.c include/libxnee/xnee_xinput.c
* libxnee/src/xnee_expr.c:
Added support for managing xinput events
Updated (c) years to include 2010
* libxnee/src/xnee_fake.c: