-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
3216 lines (2233 loc) · 94.3 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
2009-01-05 Ross Burton <[email protected]>
* libgupnp/gena-protocol.h:
* libgupnp/gupnp-service-proxy.c:
Don't assume subscription timeout is > 30s.
Instead choose a random timeout value that is between 1 and half
the timeout value given by service (thanks Zeeshan Ali)
2008-12-08 Ross Burton <[email protected]>
* libgupnp/gupnp-device-info.c:
Don't look for closest icon if there are no icons. Fixes the crash
in case of empty iconList nodes in device descriptions. (thanks
Zeeshan Ali)
2008-11-29 Jorn Baayen <[email protected]>
* libgupnp/gupnp-device.c (gupnp_device_get_device),
(gupnp_device_get_service), (gupnp_device_set_property),
(gupnp_device_dispose):
* libgupnp/gupnp-service.c (gupnp_service_set_property),
(gupnp_service_dispose):
Reference the root device weakly to avoid reference loops when
subclassing RootDevice. Based on patch from Zeeshan Ali.
2008-11-28 Jorn Baayen <[email protected]>
* libgupnp/gupnp-control-point.c (got_description_url):
* libgupnp/gupnp-root-device.c (download_and_parse):
* libgupnp/gupnp-service-info.c
(gupnp_service_info_get_introspection), (got_scpd_url):
* libgupnp/gupnp-service-proxy.c (check_action_response),
(server_handler):
* libgupnp/gupnp-service.c (control_server_handler):
Use xmlRecoverMemory instead of xmlParseMemory when parsing xml.
Hopefully we now manage better with the masses of über-broken xml
out there. (Thanks Jussi for the suggestion)
2008-11-24 Ross Burton <[email protected]>
* libgupnp/gupnp-resource-factory.c:
Use the correct value to key_equal_func argument of
g_hash_table_new_full (thanks Zeeshan Ali)
2008-11-18 Jorn Baayen <[email protected]>
* AUTHORS:
New e-mail address.
* configure.ac:
Depend on glib 2.18.
* libgupnp/gupnp-error-private.h:
* libgupnp/gupnp-error.c (_gupnp_error_set_server_error),
(_gupnp_error_new_server_error):
* libgupnp/gupnp-service-info.c
(gupnp_service_info_get_introspection), (got_scpd_url):
* libgupnp/gupnp-service-proxy.c (check_action_response):
Use g_set_error_literal(). (instead of our own home-cooked
set_error_literal())
Mark private error functions as G_GNUC_INTERNAL.
2008-11-18 Jorn Baayen <[email protected]>
* libgupnp/gupnp-service-proxy.c (subscribe_got_response):
* libgupnp/gupnp-service.c (notify_got_response),
(notify_subscriber):
Use g_error_new_literal() instead of passing literal error
messages through "%s".
Specify character set (UTF-8) in NOTIFY messages.
2008-11-18 Ross Burton <[email protected]>
* tests/test-proxy.c:
* tests/test-server.c:
* tests/test-browsing.c:
* tests/test-introspection.c:
* examples/light-client.c:
* examples/light-server.c:
Don't user g_error but g_printerr (Sven Neumann).
2008-11-17 Jussi Kukkonen <[email protected]>
* configure.ac:
* NEWS:
Version 0.12.4.
2008-11-14 Ross Burton <[email protected]>
* libgupnp/gupnp-service-proxy.c:
Set the Content Type header correctly (#1257, Zeeshan Ali Khattak)
2008-11-14 Ross Burton <[email protected]>
* libgupnp/gupnp-service.c:
* libgupnp/gupnp-service-proxy.c:
* tests/test-proxy.c:
* tests/test-server.c:
* tests/test-browsing.c:
* tests/test-introspection.c:
* examples/light-client.c:
* examples/light-server.c:
Don't pass arbitrary strings to printf() for security (thanks Sven Neumann)
2008-11-14 Ross Burton <[email protected]>
* libgupnp/gupnp-context.c:
Handle fscanf failing in get_default_host_ip (thanks Sven Neumann).
2008-11-14 Ross Burton <[email protected]>
* libgupnp/gupnp-service-proxy.c:
Fix typos (thanks Sven Neumann)
2008-11-12 Jussi Kukkonen <[email protected]>
* doc/glossary.xml:
* doc/overview.xml:
Add DIDL-Lite and SSDP to glossary, mention upnp and dlna specs.
2008-11-11 Jussi Kukkonen <[email protected]>
* README.release:
Add release instructions for GUPnP components
2008-11-06 Zeeshan Ali (Khattak) <[email protected]>
* AUTHORS:
* libgupnp/gupnp-resource-factory-private.h:
* libgupnp/gupnp-resource-factory.c:
* libgupnp/gupnp-resource-factory.h:
* libgupnp/gupnp-service-introspection.c:
* libgupnp/gupnp-service-introspection.h:
* libgupnp/gupnp-types-private.h:
* libgupnp/gupnp-types.c:
* libgupnp/gupnp-types.h:
* tests/test-introspection.c:
Replace my non-working "@gstreamer.net" email with "@gnome.org" one.
2008-10-27 Ross Burton <[email protected]>
* configure.ac:
* NEWS:
Version 0.12.3.
2008-10-27 Ross Burton <[email protected]>
* Makefile.am:
Enable gtk-doc in distcheck.
2008-10-27 Ross Burton <[email protected]>
* libgupnp/http-headers.c:
Don't use NULL return values from g_get_application_name() (#1176).
2008-10-22 Jussi Kukkonen <[email protected]>
* tools/gupnp-binding-tool:
Use inline functions.
Fix generated code indent, remove trailing whitespace.
2008-10-20 Jussi Kukkonen <[email protected]>
* tools/gupnp-binding-tool:
Don't include specific glib/gupnp headers, use gupnp.h.
2008-10-17 Jussi Kukkonen <[email protected]>
* tools/gupnp-binding-tool:
Add serverside binding generation.
* doc/client-tutorial.xml
* doc/server-tutorial.xml
* doc/gupnp-binding-tool.xml
Update documentation for new binding generation.
2008-10-17 Jussi Kukkonen <[email protected]>
* tools/gupnp-binding-tool:
gupnp-binding-tool improvements
- add support for all upnp types
- add "--prefix" option
- prettify binding tool output
- make var and function names lower_case, not CamelCase
- generate state variable notification bindings
This change makes gupnp-binding-tool output incompatible with old one
2008-10-14 Zeeshan Ali (Khattak) <[email protected]>
* libgupnp/gupnp-service-introspection.c:
Add some missing checks for NULL.
2008-09-27 Jorn Baayen <[email protected]>
* doc/gupnp-sections.txt:
* libgupnp/gupnp-context-private.h:
* libgupnp/gupnp-context.c (gupnp_context_get_property),
(gupnp_context_class_init), (gupnp_context_get_session):
* libgupnp/gupnp-context.h:
* libgupnp/gupnp-control-point.c (gupnp_control_point_dispose),
(load_description):
* libgupnp/gupnp-root-device.c (download_and_parse):
* libgupnp/gupnp-service-info.c (gupnp_service_info_dispose),
(gupnp_service_info_get_introspection),
(gupnp_service_info_get_introspection_async):
* libgupnp/gupnp-service-proxy.c (gupnp_service_proxy_dispose),
(finish_action_msg), (gupnp_service_proxy_cancel_action),
(subscription_expire), (subscribe), (unsubscribe):
* libgupnp/gupnp-service.c (subscription_data_free),
(notify_got_response), (notify_subscriber):
Make gupnp_context_get_session() public.
2008-09-27 Jorn Baayen <[email protected]>
* configure.ac:
Increase version number.
2008-09-27 Jorn Baayen <[email protected]>
* libgupnp/gupnp-context.c (gupnp_context_init),
(gupnp_context_constructor), (gupnp_context_class_init),
(gupnp_context_get_server), (host_path_handler):
* libgupnp/gupnp-resource-factory.c
(gupnp_resource_factory_create_device_proxy),
(gupnp_resource_factory_create_device),
(gupnp_resource_factory_create_service):
* libgupnp/gupnp-root-device.c (gupnp_root_device_constructor):
* libgupnp/gupnp-service-proxy.c (gupnp_service_proxy_dispose),
(emit_notifications), (server_handler), (subscription_expire),
(subscribe_got_response), (unsubscribe):
* libgupnp/gupnp-service.c (subscription_data_free), (subscribe),
(resubscribe):
Use the specified GMainContext for timeouts and plug several leaks.
Based on a patch from Olivier Crete <[email protected]>.
2008-08-30 Jorn Baayen <[email protected]>
* examples/Makefile.am:
Link examples to gthread.
2008-08-27 Jorn Baayen <[email protected]>
* configure.ac:
* tests/Makefile.am:
Link tests to gthread.
2008-07-14 Jorn Baayen <[email protected]>
* configure.ac:
Bump version to 0.12.1.99.
* libgupnp/gupnp-service.c (finalize_action),
(gupnp_service_action_return), (gupnp_service_action_return_error),
(control_server_handler), (subscription_server_handler),
(gupnp_service_class_init):
Support returning actions outside of the 'action-invoked' signal
handler. Based on a patch from Zeeshan Ali Khattak
2008-06-30 Jorn Baayen <[email protected]>
* NEWS:
* configure.ac:
Release 0.12.1.
2008-06-20 Jorn Baayen <[email protected]>
* libgupnp/http-headers.c (http_request_get_range):
Support Range headers without upper bound.
2008-06-20 Jorn Baayen <[email protected]>
* libgupnp/gupnp-context.c (host_path_handler):
Remove superfluous free.
2008-06-16 Jorn Baayen <[email protected]>
* NEWS:
* configure.ac:
Release 0.12.
2008-06-11 Ross Burton <[email protected]>
* doc/server-tutorial.xml:
Add *correct* comments about when query-variable is called.
2008-06-11 Ross Burton <[email protected]>
* doc/server-tutorial.xml:
Add comments about when query-variable is called.
2008-06-10 Ross Burton <[email protected]>
* doc/glossary.xml:
Add links to the cross references.
2008-06-10 Ross Burton <[email protected]>
* doc/client-tutorial.xml:
* doc/server-tutorial.xml:
Lots of proof reading.
2008-06-10 Ross Burton <[email protected]>
* examples/BinaryLight1.xml:
Use better friendly and model names.
2008-06-10 Ross Burton <[email protected]>
* doc/glossary.xml:
Add UDN, fix acronyms.
2008-06-10 Ross Burton <[email protected]>
* doc/Makefile.am:
* doc/gupnp-docs.sgml:
* doc/gupnp-docs.xml:
Rename the main document to .xml, this isn't 1980 any more.
2008-06-10 Ross Burton <[email protected]>
* doc/gupnp-binding-tool.xml:
* doc/gupnp-docs.sgml:
Don't use entities to get the version, use XInclude.
2008-06-10 Ross Burton <[email protected]>
* doc/gupnp-binding-tool.xml:
* doc/gupnp-docs.sgml:
* doc/Makefile.am:
Add a refentry for gupnp-binding-tool and add it to the
documentation.
2008-06-10 Ross Burton <[email protected]>
* doc/glossary.xml:
Add SCPD and remove baseform attributes.
2008-06-10 Ross Burton <[email protected]>
* doc/gupnp-docs.sgml:
Merge the overview into the tutorial part.
2008-06-10 Ross Burton <[email protected]>
* doc/gupnp-docs.sgml:
Add an index.
2008-06-10 Ross Burton <[email protected]>
* doc/server-tutorial.xml:
Document service description files.
2008-06-09 Ross Burton <[email protected]>
* doc/server-tutorial.xml:
Talk about the UPnP lightbulb instead of a made up interface, so
we can refer to the example code.
2008-06-09 Ross Burton <[email protected]>
* examples/:
* Makefile.am:
* configure.ac:
Add some basic but non-trivial examples.
2008-06-09 Ross Burton <[email protected]>
* doc/gupnp-docs.sgml:
* doc/glossary.xml:
* doc/overview.xml:
* doc/Makefile.am:
Add a basic glossary, and reference the Intel UPnP book.
2008-06-06 Ross Burton <[email protected]>
* doc/gupnp-docs.sgml:
* doc/overview.xml:
* doc/Makefile.am:
Split the (currently very small) overview out into a separate file.
2008-06-06 Ross Burton <[email protected]>
* doc/gupnp-docs.sgml:
Add more section IDs.
2008-06-05 Zeeshan Ali Khattak <[email protected]>
* gupnp/libgupnp/gupnp-service.c:
Refactor connect_names_to_signal_handlers() function.
2008-06-05 Jorn Baayen <[email protected]>
* libgupnp/gupnp-marshal.list:
* libgupnp/gupnp-service.c (gupnp_service_class_init):
Revert back to G_TYPE_POINTER for GValue argument type. We do not
want the GValue to be boxed as it is passed as an outward argument.
* libgupnp/gupnp-service.c (notify_got_response):
Cancel subscription on Precondition Failed.
2008-06-04 Jorn Baayen <[email protected]>
* libgupnp/gupnp-root-device.c (download_and_parse),
(gupnp_root_device_constructor):
Split out description document downloading code into a separate
function.
2008-06-04 Jorn Baayen <[email protected]>
* libgupnp/gupnp-context.c (construct_local_path), (append_locale),
(redirect_to_folder), (host_path_handler), (host_path_data_new),
(host_path_data_free), (gupnp_context_host_path):
* libgupnp/gupnp-control-point.c (load_description):
* libgupnp/gupnp-root-device.c (gupnp_root_device_constructor):
* libgupnp/gupnp-service-info.c
(gupnp_service_info_get_introspection),
(gupnp_service_info_get_introspection_async):
* libgupnp/gupnp-service-proxy.c (begin_action_msg):
* libgupnp/gupnp-service.c (gupnp_service_action_get_locales):
* libgupnp/http-headers.c (http_language_from_locale),
(locale_from_http_language), (http_request_get_range),
(http_request_set_accept_language),
(http_request_get_accept_locales), (http_request_set_user_agent),
(http_response_set_content_locale),
(http_response_set_content_type),
(http_response_set_content_range):
* libgupnp/http-headers.h:
Cleanup of hosting logic.
Reprefix message_ functions with http_request_/http_response_.
2008-06-03 Jorn Baayen <[email protected]>
* libgupnp/gupnp-context.c (host_path_handler):
Don't free path_to_open too early.
2008-06-03 Jorn Baayen <[email protected]>
* doc/server-tutorial.xml:
Update for new gupnp_root_device_new() API.
2008-06-03 Jorn Baayen <[email protected]>
* libgupnp/Makefile.am:
Bump ABI version.
* libgupnp/gupnp-context.c (host_path_handler),
(gupnp_context_host_path):
Fix a couple of bugs regarding Accept-Language handling.
* libgupnp/gupnp-control-point.c (load_description):
* libgupnp/gupnp-service-proxy.c (begin_action_msg),
(finish_action_msg), (check_action_response),
(gupnp_service_proxy_cancel_action):
* libgupnp/gupnp-service.c (gupnp_service_action_get_locales):
* libgupnp/http-headers.c (message_get_range),
(message_set_accept_language), (message_get_accept_locales):
* libgupnp/http-headers.h:
Add Accept-Language header to more messages.
Some restructuring for clarity.
* libgupnp/gupnp-root-device.c (gupnp_root_device_finalize),
(gupnp_root_device_init), (gupnp_root_device_constructor),
(gupnp_root_device_new):
* libgupnp/gupnp-root-device.h:
Remove xmlDoc argument from gupnp_root_device_new() for simplicity.
xmlDocs can still be passed to gupnp_root_device_new_full().
* tests/test-server.c (main):
Update for API change.
2008-05-30 Ross Burton <[email protected]>
* doc/server-tutorial.xml:
Add more content.
2008-05-29 Ross Burton <[email protected]>
* libgupnp/gupnp-service.c:
Add gtk-doc markup to signal names so they are links.
2008-05-29 Ross Burton <[email protected]>
* doc/client-tutorial.xml:
* doc/gupnp-docs.sgml:
* doc/Makefile.am:
Run the client tutorial through gtk-doc for symbol linking and fix
some tags.
2008-05-29 Ross Burton <[email protected]>
* doc/server-tutorial.xml:
* doc/gupnp-docs.sgml:
* doc/Makefile.am:
Add rather poor first draft of the server guide.
2008-05-28 Ross Burton <[email protected]>
* doc/gupnp-sections.txt:
Add a symbol which somehow decided it wanted to be documented.
2008-05-27 Ross Burton <[email protected]>
* libgupnp/gupnp-service.c:
Fix doc typo.
2008-05-27 Ross Burton <[email protected]>
* libgupnp/gupnp-control-point.c:
* libgupnp/gupnp-root-device.c:
* libgupnp/gupnp-context.c:
* libgupnp/gupnp-service-info.c:
* libgupnp/gupnp-service-introspection.c:
* libgupnp/gupnp-service.c:
* libgupnp/http-headers.c:
* libgupnp/gupnp-service-proxy.c:
* libgupnp/gupnp-device-info.c:
* libgupnp/gupnp-resource-factory.c:
Documentation cleanups.
2008-05-23 Ross Burton <[email protected]>
* tools/gupnp-binding-tool:
Add async wrappers too.
2008-05-23 Jorn Baayen <[email protected]>
* libgupnp/gupnp-marshal.list:
* libgupnp/gupnp-service.c (gupnp_service_action_get_type),
(gupnp_service_class_init):
* libgupnp/gupnp-service.h:
Use G_TYPE_VALUE and GUPNP_TYPE_SERVICE_ACTION in signal declarations
where appropriate.
2008-05-22 Ross Burton <[email protected]>
* tools/gupnp-binding-tool:
* tools/Makefile.am:
* configure.ac:
* Makefile.am:
Initial commit of gupnp-binding-tool, to generate convenience C
wrappers for GUPnP service definitions.
2008-05-22 Jorn Baayen <[email protected]>
* configure.ac:
Version to 0.10.1.99.
2008-05-22 Ross Burton <[email protected]>
* libgupnp/gupnp-device-info.[ch]:
* doc/gupnp-sections.txt:
Add gupnp_device_info_get_presentation_url().
2008-05-21 Ross Burton <[email protected]>
* libgupnp/gupnp-context.c:
When guessing the host's IP address, try and use the default
route's interface.
2008-05-19 Jorn Baayen <[email protected]>
* NEWS:
* configure.ac:
* libgupnp/Makefile.am:
Bump soname, and release 0.10.1.
2008-05-16 Ross Burton <[email protected]>
* doc/Makefile.am:
* doc/device-description.rnc:
* doc/service-description.rnc:
* doc/gupnp-docs.sgml:
Add RELAX NG schemas for the device and service description files,
and add them to the reference manual.
2008-05-16 Ross Burton <[email protected]>
* libgupnp/gupnp-types.c:
Last missing bit of documentation, now 100% API coverage.
2008-05-15 Ross Burton <[email protected]>
* libgupnp/gupnp-context.c:
* libgupnp/gupnp-service-info.c:
* libgupnp/gupnp-service-introspection.c:
* libgupnp/gupnp-types.c:
* libgupnp/gupnp-service-proxy.c:
* libgupnp/gupnp-device-info.c:
* libgupnp/gupnp-error.c:
* libgupnp/gupnp-resource-factory.c:
* libgupnp/gupnp-error.h:
More documentation work, almost at 100% now.
2008-05-13 Jorn Baayen <[email protected]>
* NEWS:
* configure.ac:
GUPnP 0.10.
2008-05-12 Ross Burton <[email protected]>
* libgupnp/gupnp-types.h:
Document the special types.
2008-05-12 Ross Burton <[email protected]>
* libgupnp/gupnp-service-info.c:
Complete API documentation.
2008-05-12 Ross Burton <[email protected]>
* doc/gupnp-docs.sgml:
* doc/Makefile.am:
* docs/client-tutorial.xml:
Add *very basic* first draft at a tutorial.
2008-05-12 Ross Burton <[email protected]>
* libgupnp/gupnp-control-point.c:
Document the search target, and enforce target != NULL.
2008-05-11 Zeeshan Ali Khattak <[email protected]>
* libgupnp/gupnp-service.c:
Emit a warning on failure to retreive requested action argument.
2008-05-11 Zeeshan Ali Khattak <[email protected]>
* libgupnp/gupnp-context.c:
GContentType is not guaranteed to be a mime-type.
2008-05-10 Jorn Baayen <[email protected]>
* libgupnp/gupnp-service-proxy.c (server_handler):
Do not error out if proxy->priv->sid is NIL as the subscription
response may not have been processed yet.
2008-05-09 Jorn Baayen <[email protected]>
* libgupnp/gupnp-service-proxy.c (emit_notifications),
(server_handler):
Cosmetic: fit into 80 columns.
2008-05-09 Ross Burton <[email protected]>
* libgupnp/gupnp-service-proxy.c:
Emit notifications in an idle handler, because some stacks block
when sending the NOTIFY message.
2008-05-07 Ross Burton <[email protected]>
* libgupnp/gupnp-service.c:
Fix typo, remove unused variable.
2008-05-07 Jorn Baayen <[email protected]>
* libgupnp/gupnp-service.c (subscription_data_free),
(gupnp_service_dispose), (notify_got_response),
(notify_subscriber):
Store pending notifications on the SubscriptionData structure.
2008-05-07 Ross Burton <[email protected]>
* libgupnp/gvalue-util.c:
Fix type marshalling for doubles.
2008-05-07 Ross Burton <[email protected]>
* libgupnp/gupnp-control-point.c:
* libgupnp/gupnp-control-point.h:
* libgupnp/gupnp-root-device.c:
* libgupnp/gupnp-context.c:
* libgupnp/gupnp-root-device.h:
* libgupnp/gupnp-context.h:
* libgupnp/gupnp-service-info.h:
* libgupnp/gupnp-service.c:
* libgupnp/gupnp-service-introspection.h:
* libgupnp/gupnp-device.h:
* libgupnp/gupnp-service.h:
* libgupnp/gupnp-service-proxy.c:
* libgupnp/gupnp-device-proxy.h:
* libgupnp/gupnp-service-proxy.h:
* libgupnp/gupnp-resource-factory.c:
* libgupnp/gupnp-device-info.h:
* libgupnp/gupnp-resource-factory.h:
More documentation tweaks, up to 76% now.
* doc/Makefile.am:
* doc/gupnp-sections.txt:
Remove unused sections and ignore private headers.
2008-05-06 Ross Burton <[email protected]>
* libgupnp/gupnp-context.c:
Add the ability to set GUPNP_DEBUG to spew the HTTP messages to
the console.
2008-05-06 Ross Burton <[email protected]>
* libgupnp/gupnp-control-point.c:
* libgupnp/gupnp-service-introspection.c:
* libgupnp/gupnp-service-proxy.c:
* libgupnp/gupnp-error.c:
* libgupnp/gupnp-service-proxy.h:
Fix small problems which upset gtk-doc.
2008-05-06 Ross Burton <[email protected]>
* doc/gupnp-sections.txt:
Add missing symbols.
2008-05-06 Ross Burton <[email protected]>
* doc/gupnp.types:
Add a .types file so the objects get introspected.
2008-05-06 Ross Burton <[email protected]>
* configure.ac:
Add AC_SYS_LARGEFILE to use 64-bit offsets, thus both fixing
32-bit compiles and making the world a better place.
2008-05-06 Ross Burton <[email protected]>
* libgupnp/gupnp-context.c:
Fix some compile warnings.
2008-04-29 Jorn Baayen <[email protected]>
* libgupnp/gupnp-context.c (hosting_server_handler):
* libgupnp/http-headers.c (range_get):
* libgupnp/http-headers.h:
Support HTTP Range header.
2008-04-29 Jorn Baayen <[email protected]>
* libgupnp/gupnp-context.c (hosting_server_handler):
Use GMappedFile.
2008-04-15 Jorn Baayen <[email protected]>
* configure.ac:
* libgupnp/Makefile.am:
* libgupnp/gupnp-context.c (hosting_server_handler):
Use GContentType.
* libgupnp/xdgmime:
Removed.
2008-04-15 Jorn Baayen <[email protected]>
* libgupnp/gupnp-service-proxy.c (subscribe_got_response):
* libgupnp/gupnp-service.c (subscribe), (resubscribe):
Use g_timeout_add_seconds(). We can because soup 2.4 depends
on glib 2.16.
2008-04-15 Jorn Baayen <[email protected]>
* libgupnp/gupnp-context.c (hosting_server_handler),
(path_data_new), (path_data_free), (gupnp_context_host_path):
Correct HTTP GET logic.
2008-04-15 Jorn Baayen <[email protected]>
* libgupnp/gupnp-service.c (notify_subscriber):
Set request, not response.
2008-04-15 Jorn Baayen <[email protected]>
Zeeshan Ali Khattak <[email protected]>
* configure.ac:
* gupnp-1.0-uninstalled.pc.in:
* gupnp-1.0.pc.in:
* libgupnp/gupnp-context.c (gupnp_context_init),
(default_server_handler), (gupnp_context_get_server),
(hosting_server_handler), (gupnp_context_host_path):
* libgupnp/gupnp-control-point.c (gupnp_control_point_dispose),
(process_service_list), (process_device_list),
(description_loaded), (got_description_url), (load_description):
* libgupnp/gupnp-device-info.c (gupnp_device_info_class_init),
(gupnp_device_info_get_icon_url):
* libgupnp/gupnp-device-info.h:
* libgupnp/gupnp-device-proxy.c (gupnp_device_proxy_get_device),
(gupnp_device_proxy_get_service):
* libgupnp/gupnp-device.c (gupnp_device_get_device),
(gupnp_device_get_service):
* libgupnp/gupnp-resource-factory-private.h:
* libgupnp/gupnp-resource-factory.c
(gupnp_resource_factory_create_device_proxy),
(gupnp_resource_factory_create_service_proxy),
(gupnp_resource_factory_create_device),
(gupnp_resource_factory_create_service):
* libgupnp/gupnp-root-device.c (gupnp_root_device_constructor):
* libgupnp/gupnp-service-info.c (gupnp_service_info_dispose),
(gupnp_service_info_class_init),
(gupnp_service_info_get_introspection), (got_scpd_url),
(gupnp_service_info_get_introspection_async):
* libgupnp/gupnp-service-info.h:
* libgupnp/gupnp-service-proxy.c (gupnp_service_proxy_dispose),
(begin_action_msg), (action_got_response), (finish_action_msg),
(write_in_parameter), (gupnp_service_proxy_begin_action_valist),
(gupnp_service_proxy_begin_action_hash), (check_action_response),
(read_out_parameter), (gupnp_service_proxy_end_action_valist),
(gupnp_service_proxy_end_action_hash),
(gupnp_service_proxy_cancel_action), (server_handler),
(subscription_expire), (subscribe_got_response), (subscribe),
(unsubscribe):
* libgupnp/gupnp-service.c (control_server_handler),
(subscription_response), (subscription_server_handler),
(gupnp_service_constructor), (gupnp_service_dispose),
(notify_got_response), (notify_subscriber):
* libgupnp/http-headers.c (accept_language_get_locales),
(message_set_user_agent):
* libgupnp/xml-util.c (xml_util_get_child_element_content_uri),
(xml_util_get_child_element_content_url):
* libgupnp/xml-util.h:
Port to libsoup 2.4.
2008-03-19 Jorn Baayen <[email protected]>
* libgupnp/gupnp-context.c (gupnp_context_init):
Use SOUP_SESSION_IDLE_TIMEOUT when available.
2008-03-18 Jorn Baayen <[email protected]>
* configure.ac:
* libgupnp/gupnp-service.c (gupnp_service_signals_autoconnect):
Release gupnp 0.8.
2008-03-06 Jorn Baayen <[email protected]>
* libgupnp/gupnp-device-info.c (resource_type_match):
Interpret strncmp() return value correctly.
2008-03-05 Jorn Baayen <[email protected]>
* doc/gupnp-sections.txt:
* libgupnp/gupnp-context-private.h:
* libgupnp/gupnp-context.c (gupnp_context_get_property),
(gupnp_context_class_init), (gupnp_context_get_server),
(make_server_url), (gupnp_context_get_port),
(gupnp_context_host_path), (gupnp_context_unhost_path):
* libgupnp/gupnp-context.h:
* libgupnp/gupnp-service-proxy.c (subscribe_got_response),
(subscribe), (unsubscribe):
* libgupnp/gupnp-service.c (gupnp_service_constructor):
Make gupnp_context_get_server() public.
Fixes #832.
2008-03-05 Jorn Baayen <[email protected]>
* libgupnp/gupnp-device-info.c (resource_type_match),
(gupnp_device_info_get_device), (gupnp_device_info_get_service):
Return subresources with version greater or equal than
requested version.
* libgupnp/gupnp-root-device.c
(add_resource_with_earlier_versions), (fill_resource_group):
Announce all earlier versions of resources in addition to the
implemented version.
2008-03-04 Jorn Baayen <[email protected]>
* libgupnp/gupnp-device-info.c (gupnp_device_info_get_device),
(gupnp_device_info_get_service):
Allow version-agnostic subresource retrieval.
2008-02-29 Zeeshan Ali Khattak <[email protected]>
* libgupnp/gupnp-service-proxy.c:
Critical bug fix: Don't free the action in check_action_response().
2008-02-26 Jorn Baayen <[email protected]>
* autogen.sh:
Don't call glib-gettextize.
2008-02-23 Jorn Baayen <[email protected]>
* libgupnp/gupnp-service-proxy.c:
(gupnp_service_proxy_action_free),
(gupnp_service_proxy_send_action_valist),
(gupnp_service_proxy_send_action_hash), (begin_action_msg),
(action_got_response), (gupnp_service_proxy_begin_action_valist),
(gupnp_service_proxy_begin_action_hash),
(gupnp_service_proxy_end_action_valist),
(gupnp_service_proxy_end_action_hash),
(gupnp_service_proxy_cancel_action):
* libgupnp/gupnp-service-proxy.h:
Remove error argument from begin_action() method series. The
error is now saved and returned by end_action().
2008-02-23 Jorn Baayen <[email protected]>
* libgupnp/http-headers.c: (message_set_user_agent):
Add DLNA string.
2008-02-09 Jorn Baayen <[email protected]>
* libgupnp/Makefile.am:
* libgupnp/accept-language.c:
* libgupnp/accept-language.h:
* libgupnp/gupnp-context.c:
* libgupnp/gupnp-control-point.c: (load_description):
* libgupnp/gupnp-service-info.c:
(gupnp_service_info_get_introspection),
(gupnp_service_info_get_introspection_async):
* libgupnp/gupnp-service-proxy.c: (begin_action_msg),
(gupnp_service_proxy_get_subscribed):
* libgupnp/gupnp-service.c:
* libgupnp/http-headers.c:
* libgupnp/http-headers.h:
Include "User-Agent" header in requests.
2008-01-31 Jorn Baayen <[email protected]>
* libgupnp/gupnp-context-private.h:
* libgupnp/gupnp-device-info-private.h:
* libgupnp/gupnp-resource-factory-private.h:
* libgupnp/gupnp-resource-factory.c:
(gupnp_resource_factory_unregister_resource_proxy_type):
* libgupnp/gupnp-service-introspection-private.h:
Add missing G_GNUC_INTERNALs.
2008-01-23 Jorn Baayen <[email protected]>
* libgupnp/gupnp-control-point.c:
(gupnp_control_point_set_property):
* libgupnp/gupnp-device-info.c: (gupnp_device_info_set_property):
Fix compiler warning. Patch by Zeeshan Ali Khattak.
2008-01-17 Ross Burton <[email protected]>
* libgupnp/gvalue-util.c:
Fix build on 64-bit systems (#711, thanks Bastien Nocera).
2008-01-17 Zeeshan Ali Khattak <[email protected]>
* libgupnp/accept-language.h:
* libgupnp/gvalue-util.h:
* libgupnp/xml-util.h: