-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
28598 lines (15339 loc) · 668 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
2015-02-06 Jack Jansen <[email protected]>
* Updating
2015-02-05 Jack Jansen <[email protected]>
* Upped version numbers to 2.7
2015-02-04 Jack Jansen <[email protected]>
* Tweaks for building debian distribtuion
2015-02-02 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Exclude gcd-event-processor from npambulant and corrected the
standard search path for pkg-config
* Search our own libraries first to get them in the bundle
* Fixed building npambulant_installer s.t. libraries we build
ourselves are also included in the bundle
* Fixed s.t. --without-gcd-event-prpcessor works properly
2015-02-02 Jack Jansen <[email protected]>
* Fix for in-tree builds of libltdl
* Another fix to OSX build instructions
* gettext-xcode.patch was missing from source distributions
* Slight updates to OSX and Windows build procedures
* Windows sourcefiles that were missing from source distributions
2015-02-01 Jack Jansen <[email protected]>
* Re-added libdispatch-dev libsdl2-image-dev
2015-01-30 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Disabled maxVersion, since it seems not to be used anymore (atleast
on Ubuntu14.04-64
* Updated to current Firefox version
2015-01-29 Jack Jansen <[email protected]>
* Re-enable uploading of PPA
2015-01-30 Jack Jansen <[email protected]>
* Nightlybuild Ubuntu machines contained libSDL2_image and
libdispatch, and they shoulnd't
2015-01-29 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Fix for #879: color conversion was wrong for gtk2 (gtk3 impl. was
used).
2015-01-28 Kees Blom <[email protected]>
* Fix for #877: make sure initially 'NPN_InvalidateRect' is called to
get a 'draw' event
2015-01-26 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Added fixes for #876 once again
* Close branch because of irrecoverable merge errors
* Fix 9107 redone (lost by merge ?). Fixes#876.
2015-01-26 Jack Jansen <[email protected]>
* Details
2015-01-24 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Added an optional argument 'rect' to copy_surface to seledt a
rectangular area
2015-01-23 Jack Jansen <[email protected]>
* Typo
* Temporarily disable PPA upload
* One more version number/copyright date found
* Fixes
* Fixes
* More iOS version mods
* Added IOS 8.1
* Always supply branch name
2015-01-22 Jack Jansen <[email protected]>
* Script to create all distributions. Untested.
* Use IPHONEOS_DEPLOYMENT_TARGET, not -sdk
2015-01-21 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Impl.start() methods in gtk_fill and gtk_sdl (repalce fix in 9088).
Fixes #875.
* Impl.start() methods in gtk_fill and gtk_sdl (repalce fix in 9088).
Fixes #875.
2015-01-21 Jack Jansen <[email protected]>
* Moving mac/iphone nightlybuilds to 10.10 mac
* Undoing faulty merge 9087 which threw away half the changes. Will
have to redo 9088. Also loses history of 9062-9086. Sigh.
* For some reason 9077 is not here? Re-applying: use ssh for mac
builds also
2015-01-20 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Impl. stop() in gtk_fill (fix for #875), not yet tested
2015-01-20 Kees Blom <[email protected]>
* Implemented a start() method for cg_fill_renderer (fix for: #875)
2015-01-20 Jack Jansen <[email protected]>
* Add PLATFORM_NAME to npambulant xcodebuild, now we no longer set
SDKROOT
2015-01-19 Kees Blom <[email protected]>
* Added a test for m_thread == NULL (fix for:874)
2015-01-16 Jack Jansen <[email protected]>
* Unset MACOSX_DEPLOYMENT_TARGET when building pyambulant. Not great,
but I do not see another solution.
* Unset MACOSX_DEPLOYMENT_TARGET when building pyambulant. Not great,
but I do not see another solution.
* Detail
* Updated branch instructions
* Fiddling with osx deployment target and sdk
* Use ssh also for mac nightlybuilds
2015-01-15 Kees Blom <[email protected]>
* Fixed some deprecated warnings (#865)
2015-01-15 Jack Jansen <[email protected]>
* More keychain manilupation
* Fixed typo.
* fIXED TYPO.
* Support for double-unzipping of tar.gz on windows
* Fix win32 log location, and clean out old log files
* libxml 2.9.2 doesn't work on windows, try 2.9.1. Also double-unpack
libxml2 tarbal
* Pick up windows build output
2015-01-14 Kees Blom <[email protected]>
* Upgrade libxml to 2.9.2
* Close branch exp-kees-autoconf
2015-01-15 Jack Jansen <[email protected]>
* Another mod to keychain searching
2015-01-14 Jack Jansen <[email protected]>
* Attempting upgrade of libxml2 to 2.9.2 to see whterh this fixes bug
725
* Got rid of plugin path preference (which is now automatic)
* More debugging
* Use new nightlybuilds alias, fixed log logations
* Removed extra quote
2015-01-13 Jack Jansen <[email protected]>
* More details on creating night build mac
2015-01-12 Jack Jansen <[email protected]>
* Print all available identities (debugging)
* Getting rid of debug prints
* Video didn't always restart after hitting eof and a subsequent seek.
* Send flush packet to all streams when seeking
* Slightly more detail in debug prints
2015-01-09 Jack Jansen <[email protected]>
* Getting a resampler for an aux audio datasource no longer works.
Disabled.
* Updated descriptions
* Tests to play sections of the same file in reverse
* Renamed old_elapsed to packet_pts which is more self-documenting
* Updating audio clock got lost in 2013, in rev 8425. Put back in.
* More instructions
* Updated
* Upped a few more version numbers
* Upped version numbers to 2.6
* Upped mirror version to 2.6, and did the mirroring
* Translations updated
2015-01-08 Jack Jansen <[email protected]>
* Squashed warning
* Removed wrong ffmpeg component:-)
2015-01-07 Jack Jansen <[email protected]>
* Detail
2015-01-07 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* On MacOSX, using 'extern' here produces elsewhere: error:
declaration of 's_npambulant_last_instance' has a different language
linkage
* Get rid of ffmpeg_audio_decoder_finder
* Typo.
* Codesign with Developer ID Application
2015-01-07 Kees Blom <[email protected]>
* On MacOSX, using 'extern' here produces elsewhere: error:
declaration of 's_npambulant_last_instance' has a different language
linkage
* Get rid of ffmpeg_audio_decoder_finder
* Typo.
* Renamed 'configure.in' to 'configure.ac' (fix for: #865)
2015-01-07 Jack Jansen <[email protected]>
* Get rid of ffmpeg_audio_decoder_finder
* Get rid of ffmpeg_audio_decoder_finder
* Upped plugin API version number
* Get rid of ffmpeg_audio_decoder_finder
* Use nightlybuild keychain
* Minor detail
* Get rid of ffmpeg_audio_decoder_finder
2015-01-06 Jack Jansen <[email protected]>
* Updated copyright notice to 2015
* Fixed nonstandard copyright
* Closing branch.
* Rate conversion works too. Ready to merge and close branch.
* Mono and float formats work. Rate conversion not yet
2015-01-06 Kees Blom <[email protected]>
* Attempt to sign the macos-desktop-cg app
2015-01-06 Jack Jansen <[email protected]>
* Format conversion in place, but now we hit a memory error
2014-12-21 Jack Jansen <[email protected]>
* Preparing for signing Ambulant for the Mac. Not enabled yet until
after christmas
2015-01-05 Jack Jansen <[email protected]>
* Adding audio_format_choices arguments to various methods
2015-01-04 Jack Jansen <[email protected]>
* Audio testing
* Disabled rate converter, can be re-enabled with WITH_AUDIO_RESAMPLE
2014-12-25 Kees Blom <[email protected]>
* moved avcodec/avformat from version 54 to 55 in various hidden
script files.
2014-12-26 Kees Blom <[email protected]>
* moved avcodec/avformat from version 54 to 55 in more files.
2014-12-24 Kees Blom <[email protected]>
* moved avcodec/avformat from version 54 to 55 in various hidden
script files.
2014-12-23 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Closed branch 'exp-kees-gtk3'.
2014-11-27 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Fix a bug in "Preferences" menu
2014-11-23 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Fixed some missing brackets.
2014-12-22 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Added 'ambulant-gtk_gui.xml', UI description for GtkBuilder in
Gtk-3.0, made by 'glade'
* Regenerated .po files
* Fixed errors resulting from failed merge
* Made distinction between old and new code w.r.t.GTK-3.0 more
explicit for readability
* Normalized white-space for readability
* Added support for background images for gtk-3
* Fixed an error resulting from afailed merge
* Fixed an error resulting from afailed merge
* Added a dummy file 'xerces_parser.cpp' to avoid problems in 'make
distcheck'
2014-12-16 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Adapted gtk_gui to gtk+-3.10 (use GetkBuider i.o. GtkUIManager etc.
to avoid 'deprecated' warnings
2014-12-18 Jack Jansen <[email protected]>
* Be a bit more precise on which SDL methods are available when
* Add an rpath to the executables and plugins, so libraries are found
if prefix=/usr/local or something like that. Fixes #868
* Use ltadvise to set RTLD_GLOBAL. Needed by some modules imported
indirectly via Python on Linux (such as gobject)
2014-12-15 Jack Jansen <[email protected]>
* Make executable
* Changed logfile names, some other cleanup
2014-12-14 Jack Jansen <[email protected]>
* two more small steps towards easier checking of failing nightly
builds
2014-12-13 Jack Jansen <[email protected]>
* For now build everything with gtk2
* Sam Rog's ffmpeg moved to 2.5, and had some name changes
2014-12-12 Kees Blom <[email protected]>
* fixed typo in control variable, blocking nightly builds
* Fixed debían rules because of recent changes in configure
2014-12-11 Kees Blom <[email protected]>
* Fixes for SDL configure. Print SDL version in the summary.
* move the #include "renderer_imp.h" to this renderer's include file,
as all other ddl renderers do
* Protect building sdl_ttf_smiltext with #define WITH_SDL_IMAGE, which
is only set when building AmbulantPlayer_sdl
2014-12-11 Jack Jansen <[email protected]>
* Auto-select of signing identity no longer works for nightlybuilds.
Fix to Jack's ID.
2014-12-11 Kees Blom <[email protected]>
* Fixed (possible) crashes on exit
2014-12-10 Kees Blom <[email protected]>
* Fixed errors introduced during manual merge
* Attempt to fix SDL configure problems
* Fixed errors introduced during manual merge
2014-12-10 Jack Jansen <[email protected]>
* Changed configuring of gtk
2014-12-10 Kees Blom <[email protected]>
* fixed bug in --without-npambulant
* Merge
2014-12-10 Jack Jansen <[email protected]>
* Make distinction gtk2/gtk3, with the latter probably not working
2014-12-03 Jack Jansen <[email protected]>
* Sigh... Even more things are not optional.
* More fixes, still not complete
* Previous set of fixes was wrong. Fixed fixes.
2014-12-02 Jack Jansen <[email protected]>
* Made API independent of ifdefs, by adding dummy methods if
WITH_REMOTE_SYNC isn't defined. This may fix 858 (and is a good idea
anyway). Upped API version to 14
2014-12-02 Kees Blom <[email protected]>
* Updated check command for FreeType2. Fixes #862.
2014-12-02 Jack Jansen <[email protected]>
* Got rid of thread watching button states. Fixes #861.
* Closing branch.
* Got rid of m_video_clock which ffmpeg now handles for us
* Ambulant timestamping seems to work
* Convert more timestamps and durations to ambulant timebase earlier.
2014-12-01 Kees Blom <[email protected]>
* Fixed brackets
* Fixed brackets
2014-11-28 Jack Jansen <[email protected]>
* Cleaning up timebase handling. Unfortunately doesn't work right now
because we need an AVStream timebase which we don't have in the
right place.
* Decoders can only handle ffmpeg, reflect that in the code
2014-11-28 Kees Blom <[email protected]>
* Fixed brackets
2014-11-24 Kees Blom <[email protected]>
* Enabled mirror download of freetype-2.5.3, because Internal Server
Error (500) from the official website.
2014-11-17 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Leak fixes (#753)
2014-11-20 Kees Blom <[email protected]>
* Fixed Compiler Warning C4627, rather than ignoring it (which didn't
work).
* Disabled AM_DBG
* Disabled some Visual Studio specific warnings
2014-11-17 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Initially during negotiotion when a buffer is wanted to determine
width and height
2014-11-14 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Add -d (debug) and -t (trace) flags for evalution of the script's
execution
* Updated Ambulant version
* Updated to most recent Firefox version
* Updated Ambulant version
2014-11-11 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Found another place where the version number must be maintained
(make check in pyambulant)
* Removed the changes to implement backgroundImage, awaiting later
overhaul (#853)
2014-11-10 Kees Blom <[email protected]>
* Added a wall clock parser. Partial fix for #430. Need to compute and
process the result appropriately.
* Bug#853 set to open-postponed: disabled bgimage_loader and removed
hacks in rev.8922 and 8926.
2014-11-06 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Disabled some debugging lines
2014-11-05 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Before deleting the event processor, allow the node destructors to
finish
* Changed the bgimage map to <region id, bgimage>
* Removed reference to npambulant, which currently only works with
gtk2
* Made backgroundImage work correctly with multple regions having
their own backgroundImage
2014-11-04 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* "Fixed" bug # 853 that crashed AmbulantPlayer on all platforms.
* backgroundImage now works in gtk3.
2014-10-31 Kees Blom <[email protected]>
* Added libgtk-3-dev to the list of packages needed to build.
* Updated 'avformat' to the correct version.
2014-10-31 Kees Blom <[email protected]>
* Test if macro AV_PIX_FMT_NE is available
* Select 'Debug' for all components
* Added swresample.lib to plugin_ffmpeg project
2014-10-30 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Made a test in npambulant for gtk2 dependent on explcitly the
configure option --with-npambulant
2014-10-30 Kees Blom <[email protected]>
* Added workaround for: ffmpeg bug #2702 (our bug #856)
2014-10-29 Kees Blom <[email protected]>
* Fix for #856: removed /OPT:REF,ICF from libamplug_ffmeg' linker
command line
* Updated avutil-51 to current version avutil-52
* removed references to live555
* Updated avutil-51 to current version avutil-52
2014-10-28 Kees Blom <[email protected]>
* Restored INSTALL to previous state: it was accidentely replaced by
autoconf's default version in rev.8418 dd. Oct.6,2013.
2014-10-27 Kees Blom <[email protected]>
* Added swresample
2014-10-27 Kees Blom <[email protected]>
* Closed branch exp-kees-gtk3
2014-10-27 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Added libswresample-0 to be included in the build
2014-10-24 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Removed LD_LIBRARY_PATH, internalize-shlibs.py now has the correct
system library paths
* Added the correct default library paths for Ubuntu >= 12
* Explictily disable --with-npambulant when --with-gtk=gtk2 is not
selected.
2014-10-23 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Fixed LD_LIBARY_PATH setting, in an effort to reduce warnings from
'internalize_shlibs.py'
* Fixed 'empty format string' warnings
* Explicitly remove all results from previous (gtk3) build before
configuring for gtk2.
* Removed some unintentional white space, which seemed to confuse the
shell
* Fixed erroneous clean up of an unmanaged object
2014-10-22 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Removed obsolete references to gtk_includes.h
* Removed obsolete references to gtk_includes.h
* Minor changes.
* Changed for selecting gtk+-2.0 (default) or gtk+-3.0. npamabulant
cannot yet be build with gtk+-3.0.
* Adapted for GTK+-3.0, as controlled by GTK_VERSION_MAJOR
* Adapted for GTK+-3.0, as controlled by GTK_VERSION_MAJOR
2014-10-14 Jack Jansen <[email protected]>
* One more instuction
2014-10-13 Jack Jansen <[email protected]>
* Added note about fixing mail config
2014-10-10 Jack Jansen <[email protected]>
* Cater for building mac/ios on a VM too
2014-10-09 Jack Jansen <[email protected]>
* More instructions
2014-10-08 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Impl. all other transition types
(clock,iris,diagonal,bowTie,waterfall,arrowHead etc.).
* Impl. snake-,waterfall- and fourBoxWipe
* Impl. push/slideWipe
* Impl. transIn/Out for barWipe, BoxWipe ane barnDoorWipe.
2014-10-07 Jack Jansen <[email protected]>
* Use native SDK to do mac nightlybuild
2014-10-07 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* found with valgrind
* Implemented fullscreen transitions for GTK3
2014-10-07 Jack Jansen <[email protected]>
* Be a bit more forgiving about SDKROOT and MACOSX_DEPLOYMENT_TARGET
* Use ffmpeg 2.0.2
2014-10-06 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Implemented transOut="fade" for GTK3
* Implemented transIn="fade". All drawing goes now to
'target_surface', which
2014-10-03 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Implemeted mdeoOPacity for image, video in GTK3
2014-10-02 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* backgroundOpacity now works.
* All renderers use the target surface directly now, that we get from
the "draw" callback.
* Fixed foreground/background colors.
* Everything starts to work. Missing: a.o. drawing loop opimizations,
menu clicks, opacity, blending, transitions.
2014-10-03 Jack Jansen <[email protected]>
* Sigh. Cater for different ios version
* Grrrr... yet another bug fix to ios-specific code because things
break on other platforms
2014-10-01 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Major change: upgrade to GTK+3.0. Evreything compiles, nothing
works, except GUI.
2014-10-01 Jack Jansen <[email protected]>
* Make sure things work for non-iphone builds too:-)
* Closing branch exp-jack-new-ios
* Also add sdk to ffmpeg xcrun calls
* Pass sdk to xcrun invocations, needed on 10.7 it seems
* Attenpt to get iOS version from SDK, if given
* Some progress with simulator builds
* iPhone builds and runs (but SDL doesn't work)
* More tweaking of sdl building
2014-09-29 Jack Jansen <[email protected]>
* Backout changeset 9fc120ad336d80dce1fd9e9c1ed690f09cd33edc
2014-09-29 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Use accssor functions i.o. direct struct field access
* <image/> and <video/> now also work in some rudimentary form.
* <smiltext/> starts working, in a rudimentary form.
* <text/> now works.
2014-09-28 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Getting rid of GTK-2 deprecated functions, only <brush/> and
background rendereing works, <text/> is unfinished.
2014-09-26 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Create branch 'exp-kees-gtk3'
2014-09-28 Jack Jansen <[email protected]>
* Attempting to force iOS 6 build
* More SDL fixes
2014-09-27 Jack Jansen <[email protected]>
* Emulator builds too
* iphone device builds starting to work, somewhat
2014-09-26 Kees Blom <[email protected]>
* Closed branch 'exp-kees-sdl2-macosx' after merge into 'default'
2014-09-25 Kees Blom <[email protected]>
* --with-smil2-player=false should also prohibit building
sdlt_ttf_renderer
* Set the projects files back to their state before adapting them to
Xcode 6.0 recommendations, to maintain compatibility with Xcode 4.3
on OSX 10.7
* Added FreeType2 to build-thirtd-party-packages, needed by SDL2_ttf
* Updated to "recommended settings for Xcode 6.0.1 on Mac OS X 10.9
2014-09-25 Kees Blom <[email protected]>
* Added a test for animation of all supported media types
2014-09-23 Kees Blom <[email protected]>
* Added proper Font location for <text/> w. SDL onmac.os x
2014-09-22 Kees Blom <[email protected]>
* New branch 'exp-kees-sdl2-macosx' with command line player on MacOSX
AmbulantPlayer_sdl (no Xcode support).
2014-09-22 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Changed sdl_text_renderer to do proper lins wrapping, when using
TTF.
2014-09-26 Jack Jansen <[email protected]>
* Branch to try and get iOS builds more modernized
2014-09-19 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* merge
2014-09-18 Jack Jansen <[email protected]>
* Upped iOS version
* Better frame duration calculation, may still not be perfect
* Reverted 8461: stopping datasource in post_stop() breaks playable
reuse for seamless playback
* Video-only ground truth testfile
* More instructions
* Script to prepare OSX machine for Ambulant development
2014-09-18 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Branch closed because of may wrong settings in lots of nightlybuild
files, caused by to wrong components delicered by MacPort
2014-09-18 Jack Jansen <[email protected]>
* Slightly cleaned up video frame handling. More to be done
* More logfile saving preparations
* Started on mac-vm instructions
2014-09-17 Kees Blom <[email protected]>
* gtk_video: avoid unnessesary scaling
2014-09-18 Jack Jansen <[email protected]>
* Reordered ffmpeg packages
2014-09-17 Jack Jansen <[email protected]>
* Undo 8684 and replace by a different fix to forestall crash in
data_avail, releaseing m_src in post_stop was not a good idea
* Add line to each log file which indicates where this logfile should
be stored
* Add line to each log file which indicates where this logfile should
be stored
2014-09-16 Jack Jansen <[email protected]>
* Current set of nightly builds
* Removed patch file which no longer exists
* Only build for Ubuntu 14.04 for the time being
2014-09-15 Kees Blom <[email protected]>
* On Mac OS, use SDL2 for audio
2014-09-13 Kees Blom <[email protected]>
* try --enable-static, the script needs libavformat.a (was disabled to
try get around compile error "ran out of registers" which was fixed
by upgrading 'clang' compiler)
2014-09-12 Kees Blom <[email protected]>
* Added ---disable-static to avoid "ran out of registers" compile
error
2014-09-11 Kees Blom <[email protected]>
* Installed get text 0.19.2 in $HOME (--prefix=$HOME), and adapted
PATH s.t. gettextize is used during ./autogen, which must be called
before build-third-party-packages, otherwise libltdl does not build.
* added a debug line in a hunt for the right way to use gettextizize
* oops.. wrong working directory
2014-09-11 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* changed to gettext-19.2
* Fixed clipping problem w. crawling smilText
2014-09-11 Kees Blom <[email protected]>
* Adapted to use gettext-19.2
* oops..
* Also use MAC106_COMMON_CONFIGURE with --disable-dependency-tracking
for SDL and libltdl
* On Mac10.6, always use --disable depency-tracking to compile for
multiple architectures
2014-09-10 Kees Blom <[email protected]>
* small typo
* Selected the Apple c-compiler ins tread of gcc
* Found another way to add the '-m32' for ffmpeg 32 bit (see:
https://trac.ffmpeg.org/ticket/2659)
* typo
* Attempt to fix ffmpeg building on nightlybuilds machine: 'yasm' is
installed in "/Users/nightlybuilds/bin' and ffmpeg (i386) needs
configure options "--enable-small --cc='cc -m32'"
2014-09-09 Kees Blom <[email protected]>
* Added <brush> drawing for SDL on Mac
* Added SmilText for SDl on Mac, based own SDL_TTF
2014-09-08 Kees Blom <[email protected]>
* Ambulant_sdl can now be build from the command line, using:
2014-09-01 Kees Blom <[email protected]>
* Closed branch 'exp-kees-gtk-video', since it has been renamed to:
'exp-kees-sdl2-mac'.
* Changed to new branch 'exp-kees-SDL2-mac'.
2014-08-29 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Also Intersect the dest.rect with the clip rect, as SDL_SetClipRect
does not
* Small changes
* Revised the blit function to the final SDL_Surface to properly take
into account
* Fixed a bug in (video) scaling, but the fix is not yet sufficiently
general/tested.
2014-08-27 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Instead of an assert, print a message and do nothing.
2014-08-26 Kees Blom <Kees.Blom.cwi.nl> <Kees.Blom.cwi.nl>
* Re-committed rev.8778: Scale the pixbuf containing video image only
if necessary (doesn't fit).
2014-08-26 Kees Blom <[email protected]>
* revert to version of Fri.Aug,22,2014 because of persistent bug in
new code
2014-08-25 Kees Blom <[email protected]>