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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055
|
2008-11-11 Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
* src/media-server/rygel-connection-manager.vala:
* src/media-server/rygel-content-directory.vala:
* src/media-server/rygel-media-receiver-registrar.vala:
Override GLib.Object.constructed() instead of using 'construct' keyword.
2008-11-11 Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
* src/media-providers/tracker/rygel-media-tracker.vala:
* src/media-server/rygel-media-manager.vala:
* src/media-server/rygel-media-server.vala:
* src/media-server/rygel-metadata-extractor.vala:
Avoid using 'construct' now that we have flexible construction methods.
2008-11-11 Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
* src/media-providers/tracker/rygel-tracker-container.vala:
* src/media-providers/tracker/rygel-tracker-image-item.vala:
* src/media-providers/tracker/rygel-tracker-item.vala:
* src/media-providers/tracker/rygel-tracker-music-item.vala:
* src/media-providers/tracker/rygel-tracker-video-item.vala:
Don't keep GUPnP context and D-Bus proxy objects in TrackerItem. It can
access these from the parent container object.
2008-11-11 Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
* src/media-providers/tracker/rygel-tracker-container.vala:
Don't hide GUPnP context and D-Bus proxy objects.
2008-11-11 Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
* src/media-providers/tracker/rygel-media-tracker.vala:
* src/media-providers/tracker/rygel-tracker-container.vala:
* src/media-providers/tracker/rygel-tracker-image-item.vala:
* src/media-providers/tracker/rygel-tracker-music-item.vala:
* src/media-providers/tracker/rygel-tracker-video-item.vala:
Rename field/variable "tracker_category" to "category".
2008-11-11 Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
* src/media-providers/tracker/Makefile.am:
* src/media-providers/tracker/rygel-tracker-image-item.vala:
* src/media-providers/tracker/rygel-tracker-item.vala:
* src/media-providers/tracker/rygel-tracker-music-item.vala:
* src/media-providers/tracker/rygel-tracker-video-item.vala:
Refactor: Put common Tracker item code into a separate abstract class.
All Tracker item classes now inherit from this class.
2008-11-11 Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
* src/media-providers/tracker/Makefile.am:
* src/media-providers/tracker/rygel-tracker-container.vala:
* src/media-providers/tracker/rygel-tracker-image-item.vala:
* src/media-providers/tracker/rygel-tracker-music-item.vala:
* src/media-providers/tracker/rygel-tracker-video-item.vala:
Refactor: Separate classes for each item type. These tracker-specific
item classes are responsible for fetching their metadata and serializing
it.
2008-11-11 Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
* src/media-providers/tracker/rygel-tracker-container.vala:
Declare private fields as private.
2008-11-11 Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
* src/media-providers/tracker/rygel-media-tracker.vala:
* src/media-providers/tracker/rygel-tracker-container.vala:
Refactor: Add TrackerContainer.get_file_category(). Now MediaTracker
doesn't talk to tracker directly.
2008-11-11 Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
* data/xml/ConnectionManager.xml:
* data/xml/ContentDirectory.xml:
* data/xml/X_MS_MediaReceiverRegistrar1.xml:
More standard-compliant SCPDs. Based on a patch by Ross Burton
<ross@opennedhand.com>
2008-11-11 Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
* src/media-providers/tracker/rygel-media-tracker.vala:
Create root container after it's children. This is to pass the correct
number of children to the constructor of the root container.
2008-11-10 Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
* src/media-providers/tracker/rygel-media-tracker.vala:
* src/media-providers/tracker/rygel-tracker-container.vala:
Refactor: A more intelligent TrackerContainer. As a result, MediaTracker
class is now very slim.
2008-11-10 Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
* AUTHORS:
* src/media-server/cstuff.c:
* src/media-server/cstuff.h:
Replace my non-working "@gstreamer.net" email with "@gnome.org" one.
2008-10-29 Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
* src/media-server/rygel-media-manager.vala:
* src/media-server/rygel-metadata-extractor.vala:
File.query_info () doesn't return a weak anymore.
2008-10-26 Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
* MAINTAINERS:
Add MAINTAINERS file.
2008-10-26 Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
* README:
* configure.ac:
* data/xml/Makefile.am:
* data/xml/description-xbox360.xml:
* data/xml/description.xml:
* doc/design.txt:
* src/media-providers/tracker/Makefile.am:
* src/media-providers/tracker/gupnp-media-tracker.vala:
* src/media-providers/tracker/gupnp-tracker-container.vala:
* src/media-providers/tracker/gupnp-tracker-plugin.vala:
* src/media-providers/tracker/rygel-media-tracker.vala:
* src/media-providers/tracker/rygel-tracker-container.vala:
* src/media-providers/tracker/rygel-tracker-plugin.vala:
* src/media-server/Makefile.am:
* src/media-server/gupnp-connection-manager.vala:
* src/media-server/gupnp-content-directory.vala:
* src/media-server/gupnp-media-container.vala:
* src/media-server/gupnp-media-item.vala:
* src/media-server/gupnp-media-manager.vala:
* src/media-server/gupnp-media-object.vala:
* src/media-server/gupnp-media-provider.vala:
* src/media-server/gupnp-media-receiver-registrar.vala:
* src/media-server/gupnp-media-server.vala:
* src/media-server/gupnp-metadata-extractor.vala:
* src/media-server/rygel-connection-manager.vala:
* src/media-server/rygel-content-directory.vala:
* src/media-server/rygel-media-container.vala:
* src/media-server/rygel-media-item.vala:
* src/media-server/rygel-media-manager.vala:
* src/media-server/rygel-media-object.vala:
* src/media-server/rygel-media-provider.vala:
* src/media-server/rygel-media-receiver-registrar.vala:
* src/media-server/rygel-media-server.vala:
* src/media-server/rygel-metadata-extractor.vala:
Project renamed to "Rygel" to be moved to GNOME SVN.
2008-09-08 Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
* src/media-providers/tracker/Makefile.am:
* src/media-providers/tracker/gupnp-media-tracker.vala:
* src/media-providers/tracker/gupnp-tracker-plugin.vala:
Refactor: Put plugin stuff into a separate module.
2008-09-08 Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
* src/media-providers/tracker/Makefile.am:
* src/media-providers/tracker/gupnp-media-tracker.vala:
* src/media-providers/tracker/gupnp-tracker-container.vala:
Refactor: Put TrackerContainer class into a separate module.
2008-09-08 Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
* src/media-providers/tracker/gupnp-media-tracker.vala:
Rename Tracker.Container to GUPnP.TrackerContainer.
2008-08-31 Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
* src/media-providers/tracker/gupnp-media-tracker.vala:
* src/media-server/gupnp-media-manager.vala:
Create the root container in the contructor of the media providers.
2008-08-30 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/media-providers/tracker/gupnp-media-tracker.vala:
Remove the redundant 'title' field from the Tracker.Container class.
2008-08-29 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/media-server/gupnp-media-item.vala:
Introduce a class for media items.
* src/media-server/Makefile.am:
Add MediaItem to vapi file and build.
* src/media-providers/tracker/gupnp-media-tracker.vala:
Start utilizing the MediaContainer class in MediaTracker.
2008-08-29 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/media-server/gupnp-media-object.vala:
Introduce a new abstract class for media objects. It will be the
responsibility of derived classes to implement serializing to
DIDLLiteWriter.
* src/media-server/gupnp-media-container.vala:
Introduce a class for media containers.
* src/media-server/Makefile.am:
Add MediaObject and MediaContainer to vapi file and build.
* src/media-providers/tracker/gupnp-media-tracker.vala:
* src/media-server/gupnp-media-manager.vala:
Start utilizing the MediaContainer class in media providers.
2008-08-29 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/media-providers/tracker/gupnp-media-tracker.vala:
- Keep the parent_id of the container in the Tracker.Container class.
- Add the root_id prefix to container's id at object creation time.
2008-08-21 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/media-providers/tracker/gupnp-media-tracker.vala:
* src/media-server/gupnp-media-manager.vala:
* src/media-server/gupnp-media-provider.vala:
Remove MediaProvider.get_root_children_count() and allow each provider
to add metadata of it's root container to DIDL instead.
2008-08-21 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/media-server/gupnp-media-manager.vala:
Rename MediaManger's get_root_container_metadata() to
add_root_container_metadata().
2008-08-21 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/media-server/gupnp-content-directory.vala:
Put the code and message from exception caught on the action error.
2008-08-21 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/media-server/gupnp-media-provider.vala:
Assign a specific code (701) to "No such object" error.
2008-08-21 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/media-server/gupnp-media-manager.vala:
Rename MediaManager's browse_root_container() to add_root_children().
2008-08-21 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/media-providers/tracker/gupnp-media-tracker.vala:
* src/media-server/gupnp-content-directory.vala:
* src/media-server/gupnp-media-manager.vala:
* src/media-server/gupnp-media-provider.vala:
- Rename MediaProvider's get_metadata() to add_metadata().
- Rename MediaProvider's browse() to add_children_metadata().
2008-08-21 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/media-providers/tracker/gupnp-media-tracker.vala:
* src/media-server/gupnp-content-directory.vala:
* src/media-server/gupnp-media-manager.vala:
* src/media-server/gupnp-media-provider.vala:
MediaProviders now get a DIDLiteWriter to add metadata to and no longer
return didl strings.
2008-08-21 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/media-server/gupnp-media-manager.vala:
Remove an unneeded try&catch block.
2008-08-21 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/media-server/Makefile.am:
MediaProvider class now requires gupnp-av package.
2008-08-17 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/media-providers/tracker/gupnp-media-tracker.vala:
* src/media-server/gupnp-content-directory.vala:
* src/media-server/gupnp-media-manager.vala:
* src/media-server/gupnp-media-provider.vala:
Use Exceptions rather than returning null.
2008-08-17 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/media-server/gupnp-media-server.vala:
Use real name of the user rather than username in FriendlyName.
2008-08-17 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/media-providers/tracker/gupnp-media-tracker.vala:
* src/media-server/gupnp-media-manager.vala:
* src/media-server/gupnp-media-provider.vala:
Make MediaProvider an abstract class rather than interface. We will have
to do this at some point anyway to put common functionality into this
module but the real reason to do this right now is that support for
constuct-only props in interfaces was recenlty dropped in Vala (for good
reasons).
2008-08-17 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/media-server/gupnp-media-provider.vala:
Put MediaProvider in GUPnP namespace.
2008-08-05 Zeeshan Ali Khattak <zeenix@gmail.com>
* configure.ac:
* src/Makefile.am:
* src/cstuff.c:
* src/cstuff.h:
* src/cstuff.vapi:
* src/gupnp-connection-manager.vala:
* src/gupnp-content-directory.vala:
* src/gupnp-media-manager.vala:
* src/gupnp-media-provider.vala:
* src/gupnp-media-receiver-registrar.vala:
* src/gupnp-media-server.vala:
* src/gupnp-metadata-extractor.vala:
* src/media-providers/tracker/Makefile.am:
* src/media-server/Makefile.am:
* src/media-server/cstuff.c:
* src/media-server/cstuff.h:
* src/media-server/cstuff.vapi:
* src/media-server/gupnp-connection-manager.vala:
* src/media-server/gupnp-content-directory.vala:
* src/media-server/gupnp-media-manager.vala:
* src/media-server/gupnp-media-provider.vala:
* src/media-server/gupnp-media-receiver-registrar.vala:
* src/media-server/gupnp-media-server.vala:
* src/media-server/gupnp-metadata-extractor.vala:
Move the core Media Server code into a separate subdirectory.
2008-08-05 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/media-providers/Makefile.am:
Remove Makefile.in on 'make maintainer-clean'.
2008-08-05 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-media-manager.vala:
- Better/recursive GIO-based plugin loading.
- Replace random ID generation function by a GQuark-based (persistant)
one.
2008-08-05 Zeeshan Ali Khattak <zeenix@gmail.com>
* configure.ac:
Disable generation of static libraries.
2008-08-05 Zeeshan Ali Khattak <zeenix@gmail.com>
* configure.ac:
* src/Makefile.am:
* src/media-providers/Makefile.am:
* src/media-providers/tracker/Makefile.am:
* src/media-providers/tracker/gupnp-media-tracker.vala:
Re-introduce MediaTracker as a plugin.
2008-08-04 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/Makefile.am:
* src/cstuff.vapi:
* src/gupnp-media-manager.vala:
* src/gupnp-media-tracker.vala:
- Introduce a plugins system. Ross should be happy now. :)
- Remove MediaTracker module.
2008-08-03 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-media-manager.vala:
* src/gupnp-media-provider.vala:
* src/gupnp-media-tracker.vala:
- Add "title" prop to MediaProvider interface.
- Add get_root_children_count() to MediaProvider interface.
2008-08-03 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-media-tracker.vala:
- Correct a typo. Now we export the ID of the container in the format we
need to export it in.
- No need for MediaManager to prefix IDs with root_id.
- Pass ID as is to browse() and get_metadata() of media providers.
- Get the root ID prefix from IDs rather than removing it.
- Don't add root ID prefix to root parent ID.
2008-08-03 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-content-directory.vala:
* src/gupnp-media-manager.vala:
* src/gupnp-media-provider.vala:
* src/gupnp-media-tracker.vala:
- MediaProviders now get the "root_parent_id" though a prop.
- MediaManager now decides the IDs to use on it's own.
2008-08-02 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-content-directory.vala:
Use MediaManager rather than MediaTracker. This also means that
system_update_id doesn't need to be handled by ContentDirectory
anymore.
2008-08-02 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/Makefile.am:
* src/gupnp-media-manager.vala:
Introduce MediaManager. It implements MediaProvider interface and will
be responsible to manage all MediaProviders. Currently it uses
MediaTracker directly since it currently doesn't have a plugin system.
2008-07-31 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-media-tracker.vala:
Each MediaProvider prefixes each objectid with "root-id:". This will
allow the ContentDirectory to redirect the Browse requests to the
appropriate MediaProvider in a simple/efficient way.
2008-07-30 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/Makefile.am:
* src/gupnp-media-provider.vala:
* src/gupnp-media-tracker.vala:
Introduce MediaProvider interface that MediaTracker
implements.
2008-07-18 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-connection-manager.vala:
No need to list all supported mimetypes in SourceProtocolInfo.
2008-07-04 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/Makefile.am:
- Fix a typo.
- Declared all built sources in BUILT_SOURCES.
2008-07-04 Zeeshan Ali Khattak <zeenix@gmail.com>
* NEWS:
Prepare NEWS file for initial (0.1) release.
2008-07-04 Zeeshan Ali Khattak <zeenix@gmail.com>
* TODO:
* doc/design.txt:
Update design doc and TODO files.
2008-07-04 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-connection-manager.vala:
- Swap the sink and source ProtocolInfo.
- Use Vala's syntax for connecting signals with details.
- Remove the unused commented-out code.
- Initialize the variables in the constructor.
- Put my name/copyright in the header.
2008-07-04 Zeeshan Ali Khattak <zeenix@gmail.com>
* data/xml/Makefile.am:
* data/xml/description.xml:
* src/gupnp-media-server.vala:
Enable the ConnectionManager service.
2008-07-04 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/Makefile.am:
* src/gupnp-connection-manager.vala:
Copy the ConnectionManager code from gupnp-media-renderer.
2008-07-04 Zeeshan Ali Khattak <zeenix@gmail.com>
* README:
Put some description in README file.
2008-07-03 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-content-directory.vala:
Return an error on getting invalid arguments for 'Browse'.
2008-07-03 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-content-directory.vala:
Argument 'value' of query_variable signal should now be declared 'ref'.
2008-07-03 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-media-tracker.vala:
Provide the 'creator' tag in DIDL xml for all items. The same value is
provided in 'author' and 'artist' tags for music and video items
respectively.
2008-07-02 Zeeshan Ali Khattak <zeenix@gmail.com>
* data/xml/ContentDirectory.xml:
Hide the optional "GetSortExtensionCapabilities" action as well.
2008-07-02 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-content-directory.vala:
- Initialize "SystemUpdateID" variable and implement related query and
action.
- Implement "SearchCapabilities" and "SortCapabilities" related
queries and actions.
- Implement "FeatureList" related queries and actions.
2008-07-02 Zeeshan Ali Khattak <zeenix@gmail.com>
* data/xml/ContentDirectory.xml:
- List the required actions/variable before the optional.
- Comment out the optional actions and variables.
2008-07-02 Zeeshan Ali Khattak <zeenix@gmail.com>
* data/xml/Makefile.am:
* data/xml/description-xbox360.xml:
* data/xml/description.xml:
Disable the distribution and advertisement of the yet unimplemented
ConnectionManager service.
2008-07-02 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-media-tracker.vala:
A temporary hack to make Vala compiler free string in structs. We need
this untill GB#526552 is fixed.
2008-07-01 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-media-tracker.vala:
- Refactor: separate functions for adding music, image and video items
to DIDL.
- Put the actual "album" in the DIDL when available.
- Put "dc:date" in the DIDL when available.
- No need to check for null on values returned from tracker.
2008-07-01 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-media-tracker.vala:
- Include the author, creator or artist in the DIDL when available.
- Include "originalTrackNumber" in the DIDL for Music track objects.
- Indentation fix.
2008-06-30 Zeeshan Ali Khattak <zeenix@gmail.com>
* configure.ac:
Export the "abs_top_builddir" explicitly. Some installations need it.
2008-06-30 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-media-tracker.vala:
- Include the title instead of filename in the DIDL when it's available.
- tracker gives us empty string rather than null for each unavailable
metadata.
2008-06-29 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-metadata-extractor.vala:
Put some more more comments and Refactor.
2008-06-27 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-metadata-extractor.vala:
Extract the mime-type using GIO.
2008-06-27 Zeeshan Ali Khattak <zeenix@gmail.com>
* configure.ac:
* src/Makefile.am:
Require gio-2.0 (>= 2.16) and include it in the build.
2008-06-27 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-metadata-extractor.vala:
Implement extraction of audio and video specific metadata.
2008-06-26 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-media-server.vala:
Correct the logic in MediaServer.set_friendly_name_and_udn (). The
values for UDN and FriendlyName were not set in the description doc if
not already present in the corresponding gconf keys.
2008-06-25 Zeeshan Ali Khattak <zeenix@gmail.com>
* configure.ac:
Reduce the gstreamer dependency to 0.10.18.
2008-06-25 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-metadata-extractor.vala:
- Use 'this' keyword wherever possible. This makes code much more
cleaner.
- Only react to PAUSED state-change if the previous state was READY.
- Refactor: A separate function for extraction of 'duration'.
- Gst.TagList.copy_value.value is 'out' rather than 'ref'.
2008-06-25 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/Makefile.am:
* src/gupnp-metadata-extractor.vala:
Add a gstreamer-based metadata extractor.
2008-06-25 Zeeshan Ali Khattak <zeenix@gmail.com>
* configure.ac:
* src/Makefile.am:
Add dependency to gstreamer >= 0.10.19.
2008-06-24 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-content-directory.vala:
* src/gupnp-media-receiver-registrar.vala:
* src/gupnp-media-server.vala:
* src/gupnp-media-tracker.vala:
Remove the now redundant 'using GLib' from all sources.
2008-06-24 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-content-directory.vala:
* src/gupnp-media-receiver-registrar.vala:
Start using the new Vala syntax for connecting signals with details.
2008-06-23 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-media-tracker.vala:
A small fix to setisfy the latest Vala compiler.
2008-06-16 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-media-tracker.vala:
Make all constants all CAPS.
2008-06-15 Zeeshan Ali Khattak <zeenix@gmail.com>
* configure.ac:
Check for gupnp-media-server.vala file rather than now removed main.c
file.
2008-06-15 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/Makefile.am:
Add the vala stamp file to CLEANFILES.
2008-06-15 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/Makefile.am:
* src/gupnp-media-server.vala:
* src/main.c:
Re-write the main module in Vala. The main module's code now resides
in MediaServer class as static methods. This marks the completion of
re-write of code in Vala. Yay!
2008-06-15 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/Makefile.am:
* src/cstuff.c:
* src/cstuff.h:
* src/cstuff.vapi:
Put all low-level stuff into a separate module. This module will be
the only one kept in C and all the code that currently can't be
written (easily) in Vala, will go there.
2008-06-13 Zeeshan Ali Khattak <zeenix@gmail.com>
* configure.ac:
* src/Makefile.am:
Check for gconf-2.0 Vala bindings and add it to the Vala compiler
flags.
2008-06-13 Zeeshan Ali Khattak <zeenix@gmail.com>
* configure.ac:
Introduce a separate configure option for a strict C compiler.
2008-06-13 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/Makefile.am:
* src/gupnp-media-server.c:
* src/gupnp-media-server.h:
* src/gupnp-media-server.vala:
Re-write the MediaServer class in Vala.
2008-06-12 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-media-receiver-registrar.vala:
Add the copyright header.
2008-06-12 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-media-tracker.vala:
- Use the nice and clean DBus API that Vala provides us.
- Enable the commented out code of get_container_children_count() now
that it's working against the latest Vala (svn trunk). MediaTracker
is fully functional again, yay!
- Correct a warning message (copy&paste mistake).
2008-06-12 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-media-tracker.vala:
Correct the types of two parameters of MediaTracker.browse().
2008-06-12 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/Makefile.am:
* src/gupnp-content-directory.c:
* src/gupnp-content-directory.h:
* src/gupnp-content-directory.vala:
Re-write ContentDirectory implementation in Vala.
2008-06-11 Zeeshan Ali Khattak <zeenix@gmail.com>
* configure.ac:
Require Vala >= 0.3.4.
2008-06-11 Zeeshan Ali Khattak <zeenix@gmail.com>
* configure.ac:
* src/Makefile.am:
* src/gupnp-content-directory.c:
* src/gupnp-media-tracker.c:
* src/gupnp-media-tracker.h:
* src/gupnp-media-tracker.vala:
Re-write MediaTracker in Vala. Doesn't really work. Thanks to
dbus-glib bindings for Vala and tracker API.
2008-06-07 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/Makefile.am:
* src/gupnp-media-receiver-registrar.c:
* src/gupnp-media-receiver-registrar.h:
* src/gupnp-media-receiver-registrar.vala:
Re-write X_MS_MediaReceiverRegistrar implementation in Vala.
2008-06-07 Zeeshan Ali Khattak <zeenix@gmail.com>
* configure.ac:
Check for Vala and GUPnP bindings.
2008-05-14 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/Makefile.am:
* src/gupnp-content-directory.c:
* src/gupnp-content-directory.h:
* src/gupnp-media-receiver-registrar.c:
* src/gupnp-media-receiver-registrar.h:
* src/gupnp-media-server.c:
Put the services implementations into separate objects.
2008-05-08 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-media-tracker.c:
- Report the correct UPnP class of the items.
- Xbox wants Images container to have ID of '16'.
- Provide 'res@resultion' in DIDL XML for audio and video items.
2008-05-08 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-media-tracker.c:
Quick security fix: only host the user's home dir. This should be OK
with most tracker setups since by default tracker only indexes user's
home dir.
2008-05-08 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-media-tracker.c:
- Introduce a structure to hold container info: ID, title and
associated tracker category.
- Don't escape '/' in the path before putting it in HTTP URI.
2008-05-08 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-media-server.c:
Xbox 360 uses 'ContainerID' instead of 'ObjectID' for cotainers.
2008-05-07 Zeeshan Ali Khattak <zeenix@gmail.com>
* data/xml/Makefile.am:
Add the newly added xbox 360 specific xml files to build.
2008-05-07 Zeeshan Ali Khattak <zeenix@gmail.com>
* data/xml/description-xbox360.xml:
* src/main.c:
Use a separate description document for Xbox 360 to keep the code
simple.
2008-05-07 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-media-server.c:
Retrieve the services in version agnostic way.
2008-05-06 Zeeshan Ali Khattak <zeenix@gmail.com>
* data/xml/X_MS_MediaReceiverRegistrar1.xml:
* data/xml/description.xml:
* src/gupnp-media-server.c:
* src/main.c:
Add basic support for Xbox.
2008-05-05 Zeeshan Ali Khattak <zeenix@gmail.com>
* data/xml/description.xml:
Steal some more DLNA bits from rhythmbox GUPnP plugin.
2008-05-03 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-media-tracker.c:
Adapt to latest didl writer API. We put a fake 'MP3' for all items in
the DLNA's PN field for each item. This should fix the playback of mp3
contents on DLNA-compliant MRs and CPs without breaking the playback of
non-mp3 contents on non-DLNA compliant MRs/CPs.
2008-05-02 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-media-tracker.c:
In Browse() implementation,
- respect 'StartingIndex' and 'RequestedCount' params.
- Never return more than 128 items in a single reply.
2008-05-02 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-media-tracker.c:
- Use tracker to get the number of items in a category.
- offset param to Files.GetByServiceType method is zero-based.
2008-05-02 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-media-tracker.c:
- Host the root directory rather than user's home directory since the
tracker URI's are absolute file paths and it could be tracking other
directories as well.
- Escape the path before making a URI from it.
- Remove an unneeded param from a function.
2008-05-02 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-media-tracker.c:
Start using tracker for fetching the list of media files.
2008-04-29 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-media-tracker.c:
Fix a small typo.
2008-04-29 Zeeshan Ali Khattak <zeenix@gmail.com>
* configure.ac:
* src/Makefile.am:
* src/gupnp-media-tracker.c:
Start using tracker for fetching the metadata.
2008-04-28 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/Makefile.am:
* src/gupnp-media-server.c:
* src/gupnp-media-tracker.c:
* src/gupnp-media-tracker.h:
Add skeleton for tracker-based media provider.
2008-04-23 Zeeshan Ali Khattak <zeenix@gmail.com>
* TODO:
* doc/design.txt:
Remove first goal from TODO and update the design/plan.
2008-04-23 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/main.c:
- Fetch the UDN and friendlyname from gconf and set them to default
values if gconf keys aren't already set.
- No need to load the modified description document anymore.
2008-04-22 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/main.c:
Let the context choose the hostname/IP and port for us if not
specified in gconf.
2008-04-21 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-media-server.c:
- Implement 'BrowseMetadata'.
- Mime-type of mp3 files should be 'audio/mpeg' rather than
'audio/mp3'.
- Host user's home directory as '/media' and update paths accordingly.
2008-04-21 Zeeshan Ali Khattak <zeenix@gmail.com>
* configure.ac:
* data/Makefile.am:
* data/xml/Makefile.am:
* src/Makefile.am:
Update/fix the build system for our dummy MS.
2008-04-21 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-media-server.c:
* src/gupnp-media-server.h:
* src/main.c:
Implement a dummy MS.
2008-04-21 Zeeshan Ali Khattak <zeenix@gmail.com>
* src/gupnp-media-server.c:
* src/gupnp-media-server.h:
Update the copyright/licence header.
2008-04-21 Zeeshan Ali Khattak <zeenix@gmail.com>
* data/xml/ConnectionManager.xml:
* data/xml/ContentDirectory.xml:
* data/xml/description.xml:
- Advertise version 2 of MS and AV services.
- Some minor updates.
2008-04-13 Zeeshan Ali Khattak <zeenix@gmail.com>
* doc/design.txt:
Simpler design:
- Rename MediaDb to MediaProvider.
- Replace MediaDbGroup and MediaDbPlugin by a single MediaDb.
* TODO:
Add TODO file and put the general plan in there.
2008-04-13 Zeeshan Ali Khattak <zeenix@gmail.com>
* doc/design.txt:
Add some more objects and description to design doc.
|