This repository has been archived by the owner on Feb 8, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 75
/
ChangeLog
1857 lines (1086 loc) · 53.6 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
2010-07-23 Andreia Gaita <[email protected]>
* autogen.sh: fix default paths for mcs, and accept a with_mono_path
flag to optionally specify an alternate mono path
* configure.ac: fix the MOONLIGHT_MONO var to use the correct mono path
2010-07-23 Rolf Bjarne Kvinge <[email protected]>
* README: Update manual mono build instructions since we disable sgen now.
2010-07-23 Rolf Bjarne Kvinge <[email protected]>
* README: Update dependency checkout instructions to git.
2010-07-22 Rolf Bjarne Kvinge <[email protected]>
* README: Update to include Silverlight 3.0.
2010-07-19 Andreia Gaita <[email protected]>
* plugin-accessibility-bridge.cpp: add missing config.h includes
2010-07-15 Sebastien Pouliot <[email protected]>
* README: Bump to r160387
2010-07-12 Rolf Bjarne Kvinge <[email protected]>
* README: Bump to r160250.
2010-07-06 Rolf Bjarne Kvinge <[email protected]>
* README: Make both mesa sha1s we have in this file consistent with eachother.
2010-07-05 David Reveman <[email protected]>
* README: Update mesa revision.
2010-07-05 Rolf Bjarne Kvinge <[email protected]>
* README: Bump mono/mcs/mono-basic to r159895.
2010-07-05 Rolf Bjarne Kvinge <[email protected]>
* autogen.sh: Disable sgen to speed up the mono build.
2010-06-22 Sebastien Pouliot <[email protected]>
* README: Bump mono/mcs/mono-basic to r159337 for JB's linq fixes
2010-06-18 Rolf Bjarne Kvinge <[email protected]>
* README: Bump mono/mcs/mono-basic to r159132 to get SL4 final API.
2010-06-14 Sebastien Pouliot <[email protected]>
* README: Bump mono/mcs/mono-basic to r158874
2010-05-28 Alan McGovern <[email protected]>
* README: Bump the mono requirement to get a fix for mcs bug
609049
2010-05-24 Rolf Bjarne Kvinge <[email protected]>
* configure.ac: Build libmoon with curl flags too.
2010-05-24 Rolf Bjarne Kvinge <[email protected]>
* configure.ac: Build libmoon with curl libs, and remove the curl Makefile.
2010-05-19 Andreia Gaita <[email protected]>
* README: Bump mono/mcs to r157525, WCF fixes
2010-05-18 Andreia Gaita <[email protected]>
* README: Bump mono/mcs to r157368, WCF fixes
2010-05-14 Sebastien Pouliot <[email protected]>
* README: Bump mono/mcs to r157360 and remove glib=system from
instructions
2010-05-13 Rolf Bjarne Kvinge <[email protected]>
* README: Bump mono/mcs to r157252.
2010-05-12 Chris Toshok <[email protected]>
* configure.ac (LUNAR_LAUNCHER_CFLAGS): add MONO_CFLAGS, since
lunar-launcher's build needs to be able to find mono-config.h.
2010-05-12 Rolf Bjarne Kvinge <[email protected]>
* configure.ac: Show any failure reason for curl.
2010-05-10 Larry Ewing <[email protected]>
* cairo/: add cairo_pattern_*_color_tolerance.
* pixman/: merge to pixman
2f4f2fb4859931bf6dc5632d8c919e7296736427 then add toskok's
gradient optimizations controled by
pixman_image_set_color_tolerance.
2010-05-10 Alan McGovern <[email protected]>
* autogen.sh: Remove --with-glib=system from our autogen so
that we use the default value (eglib). Lets see what blows
up now...
2010-05-06 Alan McGovern <[email protected]>
* README: Bump mono/mcs to gain an eglib fix so that everyone
using a manual mono build doesn't end up with a broken
plugin.
2010-05-06 Alan McGovern <[email protected]>
* moon.mds: Update bhe build files.
2010-05-05 Chris Toshok <[email protected]>
* configure.ac: add dbus/network pal stuff.
2010-04-28 Andreia Gaita <[email protected]>
* configure.ac: remove ff36 bridge
2010-04-26 Jeffrey Stedfast <[email protected]>
* configure.ac: Fixed LUNAR_LAUNCHER_CFLAGS/LIBS
2010-04-23 Rolf Bjarne Kvinge <[email protected]>
* README: Bump to r155983 to get System.Lazy included.
2010-04-19 Rolf Bjarne Kvinge <[email protected]>
* configure.ac: Add lunar-launcher.
2010-04-14 Larry Ewing <[email protected]>
* cairo/configure.ac: add the pixman flags that somehow got lost
in the update.
* autogen.sh: don't clear the PKG_CONFIG_PATH it is needed in the
configure step.
2010-04-14 Larry Ewing <[email protected]>
* autogen.sh: confuse the cairo build a little more
* cairo: us the pixman-1-uninstalled.pc just to make sure we are
picking up the right version and not the installed version.
2010-04-14 Rolf Bjarne Kvinge <[email protected]>
* README: Add information about required ffmpeg version and remove outdated
testing information.
2010-04-13 Chris Toshok <[email protected]>
* Makefile.am: disable perf for now.
2010-04-14 Larry Ewing <[email protected]>
* pixman/Makefile.am (pkgconfigdir): don't install the embedded pc
file. Should fix the build problems some people were seeing.
2010-04-13 Andreia Gaita <[email protected]>
* README: Bump mcs to r155283 (olympics fix)
2010-04-12 Larry Ewing <[email protected]>
* autogen.sh: set PKG_CONFIG_PATH to our pixman
when running configure on cairo.
2010-04-08 Larry Ewing <[email protected]>
* pixman/: update pixman to 0.18.0.
* cairo/: update cairo to 1.8.6.
2010-04-08 Andreia Gaita <[email protected]>
* README: update build options documentation. Bump to 155093
* autogen.sh: use --with-moonlight=only on automatic mono builds
* configure.ac: update mono build options
2010-04-07 Andreia Gaita <[email protected]>
* autogen.sh: don't build the 4.0 profile automatically
* README: update mono build flags
2010-04-07 Andreia Gaita <[email protected]>
* configure.ac: update the mono build information
* README: add the flags that we're currently using to build a
minimal version of mono
2010-04-07 Andreia Gaita <[email protected]>
* configure.ac: link with libmono-moon convenience library
* README: bump to 154976. Add build tips
* autogen.sh: remove fpic and fix the mono build flags
2010-04-07 Andreia Gaita <[email protected]>
* autogen.sh: use --with-mcs-path to locate mono.
2010-03-30 Andreia Gaita <[email protected]>
* autogen.sh: add curl build step
2010-03-25 Rolf Bjarne Kvinge <[email protected]>
* moon.mds: Enable libshocker.
2010-03-22 Andreia Gaita <[email protected]>
* README: Bump to 153983
2010-03-16 Rolf Bjarne Kvinge <[email protected]>
* README: Bump to 153674 for System.Xml.Serialization.
2010-03-16 Jb Evain <[email protected]>
* README: Bump to 153639.
2010-03-15 Rolf Bjarne Kvinge <[email protected]>
* README: Bump to 153581.
2010-03-11 Mario Carrion <[email protected]>
* .gitignore: Temporal vim locking files added.
2010-03-09 Sebastien Pouliot <[email protected]>
* README: Update mono/mcs requirement to 153349 to fix moon-unit
2010-03-09 Chris Toshok <[email protected]>
* configure.ac: add SILVERLIGHT_4_0_TARGETRUNTIME.
2010-03-08 Alan McGovern <[email protected]>
* README: Update mono/mcs requirement to 153123 to bring in
some linker fixes.
2010-03-08 Chris Toshok <[email protected]>
* configure.ac: output stuff about the PAL capture configuration.
2010-03-04 Andreia Gaita <[email protected]>
* autogen.sh, configure.ac, Makefile.am: Add --with-manual-mono flag to disable
autogenning/building/cleaning mono automatically from moon
2010-03-04 Rolf Bjarne Kvinge <[email protected]>
* configure.ac: Add MONO_LIBS to MOON_PROG_LIBS.
2010-03-04 Rolf Bjarne Kvinge <[email protected]>
* configure.ac: Don't include MONO_LIBS in MOON_LIBS, so that libmoon[-static]
can choose static/dynamic linkage with libmoon itself.
2010-03-04 Rolf Bjarne Kvinge <[email protected]>
* configure.ac: Add .libs to the mono lib search path.
2010-03-04 Rolf Bjarne Kvinge <[email protected]>
* configure.ac: We want to link to libmono-2.0, there's no libmono anymore
in trunk.
2010-03-04 Rolf Bjarne Kvinge <[email protected]>
* README: Updated with new build instructions.
* Makefile.am: Add runtime to SUBDIRS.
* configure.ac: Link the plugin statically to libmono, and also link to
gallium and ffmpeg, since libmoon requires them, but doesn't include them
in libmoon-static.a which the plugin is now linking to. Add variables for
using either the system or moonlight mono. Link libmoon with the moonlight
mono from the built tree.
* autogen.sh: Run autogen for mono too.
2010-03-02 Rolf Bjarne Kvinge <[email protected]>
* man/respack.1: Fixed some typos, and added information about support for
response files.
2010-02-26 Andreia Gaita <[email protected]>
* configure.ac: Add curl bridge, curl checks and--with-curl flag
to activate building the bridge
2010-02-08 Rolf Bjarne Kvinge <[email protected]>
* moon.mds: generators.mdp has moved.
2010-02-04 Andreia Gaita <[email protected]>
* README: Update mesa revision.
2010-02-04 Andreia Gaita <[email protected]>
* .gitignore: added autogen'd type-generated.cpp to ignored files
2010-02-04 David Reveman <[email protected]>
* README: Update mesa revision.
2010-02-03 Andreia Gaita <[email protected]>
* .gitignore: add autogenerated files to the ignore list
* Makefile.am: make the generator step the first one when
building
* configure.ac: add the generators dir to the list
2010-01-28 Andreia Gaita <[email protected]>
* configure.ac: Add Firefox 3.6 support
2010-01-28 David Reveman <[email protected]>
* README: Add section about mesa module requirement for
pixel shader support.
2010-01-28 Rolf Bjarne Kvinge <[email protected]>
* README: Bump min version
2010-01-27 Chris Toshok <[email protected]>
* configure.ac: split up the pal windowing from messaging, and
output both messages.
2010-01-20 Rolf Bjarne Kvinge <[email protected]>
* autogen.sh: Fix/remove mono stuff left over from copy-pasting
* autogen.sh:
this file.
2009-12-15 Andrew Jorgensen <[email protected]>
* moonlight.spec.in: own $prefix/lib/moonlight (SUSE does not
like un-owned directories)
Add libmoon-devel to hold the libmoon.so symlink (and maybe,
some day, header files)
2009-12-15 Chris Toshok <[email protected]>
* moonlight.spec.in: install the .pc files in datadir, not in
libdir.
2009-12-12 Chris Toshok <[email protected]>
* moonlight.spec.in: use %{_prefix}/lib/moonlight/2.0 instead of
%{_libdir}/moonlight/2.0 for the sdk directories.
* data/Makefile.am: correct the webdir reference to the SDK to be
the same as its install location.
2009-12-11 Andrew Jorgensen <[email protected]>
* configure.ac:
* moonlight.spec.in: Added moonlight RPM spec
2009-12-11 Jeffrey Stedfast <[email protected]>
* README: Fixed some grammar and spacing issues.
2009-12-10 Rolf Bjarne Kvinge <[email protected]>
* NOTES: delete this file, it's entirely outdated.
2009-12-09 Alan McGovern <[email protected]>
* demo-status.txt: Update demo status for the stock
application
2009-12-08 Chris Toshok <[email protected]>
* configure.ac: keep all the most recent target runtime versions
here and we'll subst them around.
2009-12-08 Alan McGovern <[email protected]>
* demo-status.txt: Update demo status.
2009-12-07 Rolf Bjarne Kvinge <[email protected]>
* moon.mds: Remove mopen1.mdp.
2009-11-30 Andrés G. Aragoneses <[email protected]>
* configure.ac: MOON_A11Y_INTERNAL_HACK is not needed anymore
since the audit finished in r147098. r: spouliot
2009-11-23 Andrés G. Aragoneses <[email protected]>
* configure.ac: Add generation of FakeA11yBridge/Makefile.
r: spouliot
2009-11-18 Jeffrey Stedfast <[email protected]>
* configure.ac: Force the use of the c++ compiler for tests and
add a check for the basename() function declaration.
2009-11-04 Rolf Bjarne Kvinge <[email protected]>
* configure.ac: Show if we were built with debug on or off.
r: spouliot
2009-10-19 Rolf Bjarne Kvinge <[email protected]>
* demo-status.sh: Don't report failure quite yet.
r: alan.
2009-10-06 Rolf Bjarne Kvinge <[email protected]>
* demo-status.sh: Added, used to created demo-status.html
from demo-status.txt.
2009-09-29 Andrés G. Aragoneses <[email protected]>
* configure.ac: Warn about missing 'zip' tool, needed
by Moonlight.MXap at run time.
r: toshok
2009-08-26 Andrés G. Aragoneses <[email protected]>
* configure.ac: Detect env var that enables a11y.
2009-08-16 Chris Toshok <[email protected]>
* configure.ac: add foreign to AM_INIT_AUTOMAKE so it stops
warning us about the gmake-isms.
r: andreia
2009-07-27 Rolf Bjarne Kvinge <[email protected]>
* moon.mds: For DEBUG builds do a minimal build.
2009-06-29 Rusty Howell <[email protected]>
* configure.ac: bump version to 1.9.5.99
2009-06-02 Rusty Howell <[email protected]>
* configure.ac:
* Makefile.am:
Added --without-examples to disable building examples
2009-06-02 Sebastien Pouliot <[email protected]>
* configure.ac: Add a define for the PREVIEW_VERSION so updating
the environment variable (in src/security.c) is not required anymore
2009-06-01 Rusty Howell <[email protected]>
* configure.ac: add no-dist-gzip to disable tar.gz
We only need tar.bz2
2009-05-29 Rusty Howell <[email protected]>
* configure.ac: Bump version to 1.9.3.99
2009-05-21 Rolf Bjarne Kvinge <[email protected]>
* configure.ac: Add test/cpp/Makefile to the output.
2009-05-18 Rusty Howell <[email protected]>
* configure.ac: Bump version to 1.9.3
2009-05-17 Sebastien Pouliot <[email protected]>
* demo-status.txt: Add sample application that uses sockets
2009-05-06 Raja R Harinath <[email protected]>
* Makefile.am (ACLOCAL_AMFLAGS): Add.
2009-05-04 Michael Hutchinson <[email protected]>
* data/Makefile.am: Guard the managed browser pc files
with INCLUDE_BROWSER_MANAGED_CODE.
2009-05-04 Michael Hutchinson <[email protected]>
* data/Makefile.am:
* data/moon-browser-redist-assemblies.pc:
Add a pkgconfig file for redistributable assemblies.
2009-05-04 Sebastien Pouliot <[email protected]>
* configure.ac: Add sockpol
2009-05-02 Andreia Gaita <[email protected]>
* configure.ac: add unwind libs to shocker to support
DEBUG_ERROR_GECKO (only on debug mode, see shocker.cpp)
2009-04-30 Andreia Gaita <[email protected]>
* configure.ac: Added new tool (moonvisi) to parse
ref/unref debug output and generate dot files
2009-04-29 Andreia Gaita <[email protected]>
* configure.ac: Add libunwind checks
2009-04-23 Aaron Bockover <[email protected]>
* Makefile.am: Only enable the user-plugin target if
PLUGIN_INSTALL is set from configure
2009-04-22 Rusty Howell <[email protected]>
* configure.ac, Makefile.am: Add support for make user-plugin.
--enable-user-plugin is no longer needed
2009-04-21 Rolf Bjarne Kvinge <[email protected]>
* configure.ac: Add support for --with-mono-basic-path=<path>
2009-04-14 Stephane Delcroix <[email protected]>
* configure.ac: swap definition order of variables for PERF_TOOL so I
can keep building it
2009-04-14 Rolf Bjarne Kvinge <[email protected]>
* Makefile.am: Revert r131611, it breaks 'make install'.
2009-04-13 Rolf Bjarne Kvinge <[email protected]>
* configure.ac: Remove objecttypes here too.
2009-04-13 Rolf Bjarne Kvinge <[email protected]>
* configure.ac: Include the test templates in the build.
2009-04-13 Rolf Bjarne Kvinge <[email protected]>
* moon.mds: Add a project for each tool, and clean up some of
the existing projects.
2009-04-08 Rolf Bjarne Kvinge <[email protected]>
* configure.ac: Remove agviewer and test-runner from the
build.
2009-04-03 Aaron Bockover <[email protected]>
* configure.ac: gtksilver -> Moonlight.Gtk
2009-04-03 Aaron Bockover <[email protected]>
* configure.ac: Remove DISTCHECK_CONFIGURE_FLAGS - was only there for
testing the new build stuff
2009-04-02 Aaron Bockover <[email protected]>
* configure.ac: Lots of clean up, easier to read, call the new macros;
changed the tarball name from moon to moonlight, version from 1.9 to 1.9.0
to make packaging more consistent for distributions; make sure -I m4
gets passed to aclocal when running 'make' and configure has changed
* m4/: Factored out all the major checks in configure.ac into easier to
read and maintain m4 macros; most of the logic is identical - major changes
documented below
* m4/mono.m4: Completely rewrote the Mono checks; nuked --with-managed;
managed code now implied/required; added --disable-browser-support and
--disable-desktop-support options; if browser support is disabled, allow
building with a Mono as old as 2.0; define MONO_ENABLE_APP_DOMAIN_CONTROL
and MONO_ENABLE_CORECLR_SECURITY if Mono 2.5 or better is available, which
is required for the browser plugin
* autogen.sh: Updated to pass -I m4 to aclocal
* Makefile.am: Fix up SUBDIRS; don't enter the plugins directory if
we're not going to build the plugin
2009-04-02 Jb Evain <[email protected]>
* Makefile.am: add scripts to SUBDIRS.
2009-03-31 Jb Evain <[email protected]>
* configure.ac: take care of the new scripts folder.
2009-03-17 Rolf Bjarne Kvinge <[email protected]>
* moon.mds: Updated.
2009-03-17 Rolf Bjarne Kvinge <[email protected]>
* configure.ac: Updated.
2009-03-16 Rolf Bjarne Kvinge <[email protected]>
* configure.ac: Include support for building MS' toolkit tests
in our build.
2008-03-10 Sebastien Pouliot <[email protected]>
* configure.ac: Add class/tuning/SecurityAttributes/Makefile to
AC_OUTPUT
2009-02-27 Jb Evain <[email protected]>
* configure.ac: change configure script to take mcs path
so that we can tune the 2.1 assemblies from moon.
2009-02-02 Rolf Bjarne Kvinge <[email protected]>
* moon.mds: Updated to use new MD features (ChangeLog and log
message policy).
2009-01-29 Geoff Norton <[email protected]>
* configure.ac: Add MONO here too as runtime needs to know about window
which needs to know about deployment, which needs to know about domain.
2009-01-28 Rolf Bjarne Kvinge <[email protected]>
* autogen.sh: Make --with-sanity default.
* configure.ac: Add --with-sanity-checks, --with-object-tracking and
--with-logging.
2009-01-27 Chris Toshok <[email protected]>
* configure.ac: don't grep/awk to find the codec version to build
a filename. instead, the codec version is in codec-version.h.in.
this gets generated with all the proper bits from the configure
process and included in pipeline.cpp and pipeline-ui.cpp (instead
of pipeline.h, which should keep recompile costs down when the
version changes.)
2009-01-27 Rolf Bjarne Kvinge <[email protected]>
* tools/tools.mdp: Yay code-completion in MD.
2009-01-23 Rolf Bjarne Kvinge <[email protected]>
* configure.ac: Add munxap.
* tools/munxap: Initial munxap.
* tools/tools.mdp: Updated.
2009-01-19 Rolf Bjarne Kvinge <[email protected]>
* moon.mds: Update.
2009-01-19 Rolf Bjarne Kvinge <[email protected]>
* tools/tools.mdp: Updated.
2009-01-12 Jackson Harper <[email protected]>
* tools/respack/respack.cs: Add support for unpacking resources
from assemblies.
* tools/respack/Makefile.am: Add an unrespack script.
* man/respack.1: Update man page to describe unpacking.
2009-01-12 Rolf Bjarne Kvinge <[email protected]>
* configure.ac: Enable System.Windows.Controls[.Data] here too.
2009-01-12 Rolf Bjarne Kvinge <[email protected]>
* configure.ac: Enable System.Windows.Controls[.Data] here too.
2009-01-07 Rolf Bjarne Kvinge <[email protected]>
* tools/respack/respack.cs: Add support for specifying the name for each
resource.
2008-12-20 Geoff Norton <[email protected]>
* configure.ac: We work just fine on Firefox 3 so far, so lets
enable support for it in the plugin.
2008-12-19 Rolf Bjarne Kvinge <[email protected]>
* moon.mds: Updated.
2008-12-17 Chris Toshok <[email protected]>
* configure.ac: remove unnecessary --with-managed assignments.
also remove class/Mono.Moonlight/Makefile from AC_OUTPUT.
* data/silverdesktop.pc: remove Mono.Moonlight mention.
* data/agmono.pc.in: nuke.
* data/Makefile.am: remove agmono stuff.
2008-12-16 Jeffrey Stedfast <[email protected]>
* configure.ac: Added checks for libexpat. Fixes bug #449528
2008-12-11 Jeffrey Stedfast <[email protected]>
* configure.ac: Add glib-2.0 to the dependencies for FF2 and FF3
LIBS. Partial fix for bug #455885.
r: toshok, kangaroo
2008-12-01 Geoff Norton <[email protected]>
* configure.ac: Ensure that we always link against libexpat, we cannot
trust libtool to always flatted our NEEDED's.
r: toshok
2008-12-01 Larry Ewing <[email protected]>
* test/xaml/drtlist.xml: remove failure tag from a bunch of tests
that are passing.
2008-11-25 Rolf Bjarne Kvinge <[email protected]>
* tools/unsign, tools/unsign/Makefile, tools/unsign/unsign.cs: Added,
tool to remove strong name signature from an assembly.
2008-11-21 Rolf Bjarne Kvinge <[email protected]>
* moon.mds: Updated.
2008-11-19 Geoff Norton <[email protected]>
* configure.ac: Don't link our plugin against unnecessary things.
Saves about .5MB in our uncompressed disk profile.
r: toshok
2008-11-19 Sebastien Pouliot <[email protected]>
* configure.ac: Use -fstack-protector-all when compiling with GCC
2008-11-19 Stephane Delcroix <[email protected]>
* cairo/: update cairo to 1.8,4
2008-11-12 Rusty Howell <[email protected]>
* configure.ac: Set ac_subst for INSTALL_ARCH, SL_PROFILE, for install.rdf
2008-11-12 Jeffrey Stedfast <[email protected]>
* configure.ac: Require Mono 2.2
2008-11-11 Geoff Norton <[email protected]>
* Makefile.am: The perf suite requires managed code
2008-11-06 Stephane Delcroix <[email protected]>
* configure.ac:
* tools/mopen/Makefile.am: pass distcheck
r:gnorton
2008-11-05 Jeffrey Stedfast <[email protected]>
* configure.ac: Check for sys/time.h
2008-11-03 Fernando Herrera <[email protected]>
* README: Added info about MOONLIGHT_DEBUG env variable.
2008-11-03 Rolf Bjarne Kvinge <[email protected]>
* configure.ac: Don't dlopen mono, just link with it if -with-debug is
specified.
2008-11-03 Rolf Bjarne Kvinge <[email protected]>
* configure.ac: Remove SWSCALE flags, we don't use swscale anymore.
2008-11-03 Rolf Bjarne Kvinge <[email protected]>
* configure.ac: Revert r117547 and related.
2008-10-31 Rolf Bjarne Kvinge <[email protected]>
* configure.ac: Don't link with ffmpeg anymore. Remove the "no decoding
backend" warning, it may produce false positives.
2008-10-30 Michael Dominic K. <[email protected]>
* pixman/applied-patches/PATCHES:
* pixman/applied-patches/radial-gradient.patch:
* pixman/pixman/pixman-source.c: A patch by Andre Tupinamba for radial gradients.
Moves some calculations outside the walker loop.
2008-10-24 Jeffrey Stedfast <[email protected]>
* configure.ac: Disable the xcb cairo backend. Fixes bug #438265.
2008-10-16 Geoff Norton <[email protected]>
* configure.ac: Encode the binary codec name at configure time.
2008-10-16 Fernando Herrera <[email protected]>
* README: Update codecs options.
2008-10-13 Aaron Bockover <[email protected]>
* src/pipeline-ui.cpp: Set width request on the labels and not the
dialog to ensure they wrap properly; remove bad hard coded new
lines on the intro message; set the icon to dialog-error when
there's an error
2008-10-08 Stephane Delcroix <[email protected]>
* cairo, pixman: local changes to the build files, include the -embed.h
files.
2008-10-08 Stephane Delcroix <[email protected]>
* cairo, pixman: upgrade to 1.8.0, 0.12.0
2008-10-02 Jeffrey Stedfast <[email protected]>
* configure.ac: If building against the system cairo, make sure it
is 1.8.0 or later.
2008-09-16 Rolf Bjarne Kvinge <[email protected]>
* configure.ac: Use dlopen/dlsym to access all alsa methods, and don't
link with alsa anymore
2008-09-16 Rolf Bjarne Kvinge <[email protected]>
* configure.ac: Use dlopen/dlsym to access all pa methods, and don't
link with pulseaudio anymore. Hopefully fixes #425560.
2008-09-03 Jackson Harper <[email protected]>
* tools/xamlg/xamlg.cs: Add code for getting resources, it's
commented out right now, because MS isn't doing this, but I wrote
the code before I realized that, and will leave it in, since I am
sure it will be added at some point.
- Don't try to lookup names or resources if we are an Application,
since System.Windows.Application doesnt have a FindName/Resource
in Silverlight.
2008-08-22 Raja R Harinath <[email protected]>
* configure.ac (SMCS_ASM): Remove spaces around '='.
2008-08-19 Chris Toshok <[email protected]>
* configure.ac: beautify the configuration output.
2008-08-02 Miguel de Icaza <[email protected]>
* tools/mxap/mxap.cs: Use NDesk.GetOptions instead of another
custom parser.
2008-08-19 Rolf Bjarne Kvinge <[email protected]>
* configure.ac: Add configure options for alsa and pulseaudio.
2008-08-18 Michael Dominic K. <[email protected]>
* Makefile.am:
* perf/Makefile.am: Adding make targets for perf runs.
2008-08-18 Michael Dominic K. <[email protected]>
* Makefile.am:
* configure.ac:
* perf/Makefile:
* perf/Makefile.am:
* perf/perf-suite-runner/DrtItem.cs: Adding the perf suite to the build system.
2008-08-17 Chris Toshok <[email protected]>
* configure.ac: rework the SL2 checks so that we can enable
browser (2.1) assemblies separate from the desktop (3.0)
assemblies.
1) new configure arg --with-managed replaces --with-mono. It's
not yes/no only. It allows for: "yes" (both desktop and browser),
"no" (neither), "desktop" (just desktop), and "browser" (just
browser.)
2) replace the INCLUDE_MONO_RUNTIME AM_CONDITIONAL with 3 distinct
ones. INCLUDE_MANAGED_CODE (for when either desktop/browser are
enabled), INCLUDE_BROWSER_MANAGED_CODE (for when 2.1 is enabled),
and INCLUDE_DESKTOP_MANAGED_CODE (for when 3.0 is enabled.)
3) add a SL_PLUGIN_2_0 AC_DEFINE alongside the SL_2_0 one that's
already there, to deal with the fact that if you don't enable the
browser assemblies, we need to build a 1.0-only plugin. But this
plugin might be talking to a 2.0-enabled core (due to desktop
assemblies being enabled.)
4) clean up the configuration output at the end to show
everything.
* Makefile.am (MONO_SUBDIRS): include class/ if
INCLUDE_MANAGED_CODE. also, include the gtk/examples/man/data
directories if INCLUDE_DESKTOP_MANAGED_CODE is enabled.
* tools/Makefile.am: INCLUDE_MONO_RUNTIME ->
INCLUDE_DESKTOP_MANAGED_CODE.
2008-08-12 Rolf Bjarne Kvinge <[email protected]>
* moon.mds: Updated.
2008-08-10 Raja R Harinath <[email protected]>
* configure.ac (HAVE_CAIRO_LINE_CAP_TRIANGLE): Look for
cairo/src/cairo.h in $srcdir. Remove Useless Use of cat.
(large file support): Name cache variable 'moon_cv_largefile64_source'.
2008-08-08 Rolf Bjarne Kvinge <[email protected]>
* tools/tools.mdp: Updated.
2008-08-08 Fernando Herrera <[email protected]>
* configure.ac: add class/Microsoft.SilverlightControls.
2008-08-06 Rolf Bjarne Kvinge <[email protected]>
* moon.mds: Make src and plugin projects build.
2008-08-05 Rolf Bjarne Kvinge <[email protected]>
* tools/tools.mdp: Updated.
2008-08-03 Rolf Bjarne Kvinge <[email protected]>
* tools/tools.mdp: Updated.
2008-08-03 Rolf Bjarne Kvinge <[email protected]>
* tools/tools.mdp: Added typeandkindgen: generates
Mono.Moonlight/Mono/Surface.g.cs (a dictionary of Type/Kind).
2008-08-02 Rolf Bjarne Kvinge <[email protected]>
* moon.mds: Updated.
* tools/tools.mdp: Added.
* tools/generators: Moved typegen to moon/generators, and add methodgen
to generate pinvokes, and cgen to generate c bindings.
2008-08-01 Rolf Bjarne Kvinge <[email protected]>
* tools/mxap/mxap.cs: Implement custom html files, stack traces for
assemblies (by including mdb files too) and return a non-zero error
code if any of the sub-processes fail.
2008-07-30 Rolf Bjarne Kvinge <[email protected]>
* moon.mds: Updated.
2008-07-28 Jackson Harper <[email protected]>
* tools/mxap/mxap.cs: Use only the .dll name for Assembly Source.
* tools/respack/respack.cs: For some reason, these names need to
be lower case to run on windows.
2008-07-22 Rolf Bjarne Kvinge <[email protected]>
* tools/mxap/mxap.cs: Changed indenting and newlines to match MS'
AppManifest.xaml, makes it easier to see if they are different.
Updated RuntimeVersion to 2.0.30523.6.
2008-07-22 Jackson Harper <[email protected]>
* tools/mxap/mxap.cs: Create an HTML wrapper for our application.
2008-07-21 Michael Dominic K. <[email protected]>