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 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196
|
gnome-bluetooth3 (47.1-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bícha <jbicha@ubuntu.com> Thu, 17 Oct 2024 09:41:44 -0400
gnome-bluetooth3 (47.0-2) unstable; urgency=medium
* Release to unstable
-- Jeremy Bícha <jbicha@ubuntu.com> Mon, 16 Sep 2024 08:15:26 -0400
gnome-bluetooth3 (47.0-1) experimental; urgency=medium
* Team upload
* New upstream release
-- Nathan Pratta Teodosio <nathan.teodosio@canonical.com> Fri, 13 Sep 2024 12:38:22 +0200
gnome-bluetooth3 (47~rc-1) experimental; urgency=medium
* Team upload
* New upstream release
-- Nathan Pratta Teodosio <nathan.teodosio@canonical.com> Fri, 06 Sep 2024 10:33:46 +0200
gnome-bluetooth3 (47~beta-1) experimental; urgency=medium
* New upstream release
* Bump minimum GTK4 & libadwaita
* Bump Standards Version to 4.7.0
-- Jeremy Bícha <jbicha@ubuntu.com> Thu, 08 Aug 2024 21:59:33 -0400
gnome-bluetooth3 (46.0-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bícha <jbicha@ubuntu.com> Thu, 28 Mar 2024 11:37:23 -0400
gnome-bluetooth3 (46~beta-1) unstable; urgency=medium
* New upstream release
* Bump minimum libadwaita to 1.4
-- Jeremy Bícha <jbicha@ubuntu.com> Thu, 08 Feb 2024 07:10:43 -0500
gnome-bluetooth3 (42.8-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bícha <jbicha@ubuntu.com> Mon, 05 Feb 2024 08:06:19 -0500
gnome-bluetooth3 (42.7-2) unstable; urgency=medium
* Team upload
* d/control: Explicitly build-depend on gir1.2-girepository-2.0.
This is imported by tests/integration-test.py, and will need to switch
from being part of gir1.2-glib-2.0 to being its own independent
binary package during the GNOME 46 cycle, so build-depend on it
separately. It's also pulled in by libgirepository1.0-dev, but
that's less obvious.
Build-depending on the canonical name will also help to keep track
of the packages that will need adjustment when pygobject switches
from GIRepository-2.0 to GIRepository-3.0.
* Add proposed patch to fix build-time test regression with dbusmock
0.30.0. (Closes: #1058116)
One test will still fail with dbusmock 0.30.1, which is a dbusmock
regression fixed in 0.30.2.
* d/control, d/rules: Don't build documentation with -Pnodoc or -B
* d/control: Add ${gir:Depends}, ${gir:Provides} where appropriate.
This allows users of GnomeBluetooth-3.0.gir to build-depend on it by
its systematic name gir1.2-gnomebluetooth-3.0.
-- Simon McVittie <smcv@debian.org> Sun, 31 Dec 2023 14:39:46 +0000
gnome-bluetooth3 (42.7-1) unstable; urgency=medium
* New upstream release
* Stop using debian/control.in and dh_gnome_clean
-- Jeremy Bícha <jbicha@ubuntu.com> Mon, 27 Nov 2023 09:38:20 -0500
gnome-bluetooth3 (42.6-1) unstable; urgency=medium
[ Jeremy Bícha ]
* New upstream release
[ Simon McVittie ]
* d/clean: Clean up tests/__pycache__/ (Closes: #1044612)
-- Jeremy Bícha <jbicha@ubuntu.com> Wed, 16 Aug 2023 08:39:27 -0400
gnome-bluetooth3 (42.5-3) unstable; urgency=medium
* Drop Provides: gnome-bluetooth from gnome-bluetooth-sendto
(Closes: #1030126)
-- Jeremy Bicha <jbicha@ubuntu.com> Tue, 07 Feb 2023 16:39:53 -0500
gnome-bluetooth3 (42.5-2) unstable; urgency=medium
[ Debian Janitor ]
* Remove constraints unnecessary since buster (oldstable)
[ Jeremy Bicha ]
* debian/rules: Drop apparently unnecessary NO_AT_BRIDGE=1
* Update standards version to 4.6.2, no changes needed
-- Jeremy Bicha <jbicha@ubuntu.com> Wed, 11 Jan 2023 15:22:25 -0500
gnome-bluetooth3 (42.5-1) unstable; urgency=medium
* New upstream release
* Add ayatana-indicator-bluetooth to gnome-bluetooth-sendto's alternate
Recommends
-- Jeremy Bicha <jbicha@ubuntu.com> Tue, 13 Dec 2022 16:55:01 -0500
gnome-bluetooth3 (42.4-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@ubuntu.com> Tue, 06 Sep 2022 09:49:59 -0400
gnome-bluetooth3 (42.3-3) unstable; urgency=medium
* Rebuild after NEW acceptance
-- Jeremy Bicha <jbicha@ubuntu.com> Sun, 28 Aug 2022 16:28:54 -0400
gnome-bluetooth3 (42.3-2) unstable; urgency=medium
* Build gnome-bluetooth-sendto, a GTK4 version of the mini-app
formerly installed as gnome-bluetooth
* Set versioned Provides for gnome-bluetooth
-- Jeremy Bicha <jbicha@ubuntu.com> Wed, 24 Aug 2022 10:45:39 -0400
gnome-bluetooth3 (42.3-1) unstable; urgency=medium
* New upstream release
* debian/libgnome-bluetooth-3.0-13.symbols: Add new symbols
-- Jeremy Bicha <jbicha@ubuntu.com> Wed, 24 Aug 2022 10:15:58 -0400
gnome-bluetooth3 (42.2-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@ubuntu.com> Thu, 28 Jul 2022 13:54:46 -0400
gnome-bluetooth3 (42.1-1) unstable; urgency=medium
* New upstream release
* Bump Standards-Version to 4.6.1
-- Jeremy Bicha <jbicha@ubuntu.com> Tue, 14 Jun 2022 16:01:52 +0300
gnome-bluetooth3 (42.0-5) unstable; urgency=medium
[ Jeremy Bicha ]
* Add a trivial autopkgtest for gir1.2-gnomebluetooth-3.0
[ Simon McVittie ]
* d/upstream/metadata: Add
-- Jeremy Bicha <jbicha@ubuntu.com> Sun, 10 Apr 2022 07:31:08 -0400
gnome-bluetooth3 (42.0-4) unstable; urgency=medium
* Team upload
* gir1.2-bluetooth-3.0 Breaks gnome-shell (<< 42~alpha).
Earlier versions of gnome-shell imported GnomeBluetooth without
specifying a version number, and expected to get API version 1.0.
Similar to bug #1008926.
-- Simon McVittie <smcv@debian.org> Mon, 04 Apr 2022 17:03:52 +0100
gnome-bluetooth3 (42.0-3) unstable; urgency=medium
* Fix typo in Breaks/Replaces (Closes: #1008743)
-- Jeremy Bicha <jbicha@ubuntu.com> Thu, 31 Mar 2022 12:47:38 -0400
gnome-bluetooth3 (42.0-2) unstable; urgency=medium
* Have libgnome-bluetooth-ui-3.0-dev install its headers,
not the other -dev package. Thanks to Diego Escalante Urrelo
-- Jeremy Bicha <jbicha@ubuntu.com> Wed, 30 Mar 2022 15:30:26 -0400
gnome-bluetooth3 (42.0-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@ubuntu.com> Fri, 18 Mar 2022 18:21:59 -0400
gnome-bluetooth3 (42~rc-1) unstable; urgency=medium
* New upstream release
* Update Vcs fields
-- Jeremy Bicha <jeremy.bicha@canonical.com> Thu, 10 Mar 2022 08:42:07 -0500
gnome-bluetooth3 (42~beta.2-1) unstable; urgency=medium
* New upstream release
* debian/control.in: Bump minimum python-dbusmock for build tests to 0.26.1
* Update -dev package dependencies based on their pkgconfig files
* Release to unstable
-- Jeremy Bicha <jeremy.bicha@canonical.com> Fri, 25 Feb 2022 15:57:13 -0500
gnome-bluetooth3 (42~beta-1) experimental; urgency=medium
* Rename source package for new series
* New upstream release
* Drop patch: applied in new release
* Add patch to skip new test that fails
* Don't build gnome-bluetooth-sendto: it doesn't work yet
* Add libgnome-bluetooth-doc and libgnome-bluetooth-3-common packages
-- Jeremy Bicha <jeremy.bicha@canonical.com> Tue, 22 Feb 2022 15:12:12 -0500
gnome-bluetooth (3.34.5-5) unstable; urgency=medium
* Cherry-pick patch to fix build with latest meson (Closes: #1005560)
-- Jeremy Bicha <jeremy.bicha@canonical.com> Fri, 18 Feb 2022 16:21:00 -0500
gnome-bluetooth (3.34.5-4) unstable; urgency=medium
* Use NO_AT_BRIDGE=1 instead of at-spi2-core Build-Depends
* Release to unstable
-- Jeremy Bicha <jbicha@debian.org> Sat, 21 Aug 2021 08:00:10 -0400
gnome-bluetooth (3.34.5-3) experimental; urgency=medium
[ Laurent Bigonville ]
* debian/control.in: Add xauth to the BD, this is needed for the tests
* debian/control.in: Bump Standards-Version to 4.5.1 (no further changes)
* debian/control.in: Add libglib2.0-doc and libgtk-3-doc to the BD to
properly resolv links between documentation files
[ Jeremy Bicha ]
* Build-Depend on at-spi2-core for build tests
* Bump debhelper-compat to 13
* Build-Depend on dh-sequence-gir and dh-sequence-gnome
* debian/rules: Drop unneeded -Wl,--as-needed
-- Jeremy Bicha <jbicha@debian.org> Fri, 20 Aug 2021 21:18:44 -0400
gnome-bluetooth (3.34.5-2) experimental; urgency=medium
* debian/control.in, debian/rules:
- require python3-dbusmock 0.23.0 now that it's available and make
the build fail again on tests errors.
-- Sebastien Bacher <seb128@ubuntu.com> Fri, 18 Jun 2021 15:27:28 +0200
gnome-bluetooth (3.34.5-1) experimental; urgency=medium
* New upstream release:
- the "Cancel" button works now when pairing keyboards
(lp: #1845163)
* New upstream release
* debian/libgnome-bluetooth13.symbols:
- updated symbols list for the new version
* debian/control.in:
- updated the build requirements for the new integration tests
* debian/rules:
- don't make the tests fail the build, those are new and depending on
python-dbusmock features that are not available in Debian yet
- use xvfb for the integration tests
-- Sebastien Bacher <seb128@ubuntu.com> Tue, 23 Mar 2021 20:39:10 +0100
gnome-bluetooth (3.34.3-2) unstable; urgency=medium
* debian/gnome-bluetooth.docs: refreshed to follow upstream renaming
-- Sebastien Bacher <seb128@debian.org> Fri, 02 Oct 2020 11:25:06 +0200
gnome-bluetooth (3.34.3-1) unstable; urgency=medium
* New upstream release:
- Work-around intermittent connection problems by disabling
discovery when connecting to devices (lp: #1870356)
-- Sebastien Bacher <seb128@ubuntu.com> Thu, 01 Oct 2020 17:15:36 +0200
gnome-bluetooth (3.34.1-1) unstable; urgency=medium
* New upstream release
-- Sebastien Bacher <seb128@ubuntu.com> Fri, 13 Mar 2020 09:32:53 +0100
gnome-bluetooth (3.34.0-1) unstable; urgency=medium
[ Simon McVittie ]
* d/p/client-Disconnect-all-signal-handlers-when-client-is-disp.patch:
Mark as applied upstream for 3.33.91
[ Sebastien Bacher ]
* New upstream release
* Remove the patch applied in the new version
-- Sebastien Bacher <seb128@ubuntu.com> Tue, 10 Sep 2019 09:28:42 +0200
gnome-bluetooth (3.33.90-2) experimental; urgency=medium
* Team upload
* d/p/client-Disconnect-all-signal-handlers-when-client-is-disp.patch:
Add proposed patch to avoid GNOME Shell crashes when
gnome-shell-extension-bluetooth-quick-connect is used
(Closes: #932405)
* Standards-Version: 4.4.0 (no changes required)
* Set Rules-Requires-Root to no
* Use debhelper-compat 12
-- Simon McVittie <smcv@debian.org> Sun, 18 Aug 2019 16:17:51 +0100
gnome-bluetooth (3.33.90-1) experimental; urgency=medium
* New upstream release
-- Sebastien Bacher <seb128@ubuntu.com> Fri, 09 Aug 2019 17:28:06 +0200
gnome-bluetooth (3.32.1-1) experimental; urgency=medium
* New upstream release
- Fix setup of devices that don't need pairing
- Always try to pair pointer devices
- Delegate audio devices quirks to bluez, which means that more
PIN codes can be tried without user intervention
- Disable discovery when switching settings
- Fix possible warnings when switching settings
-- Sebastien Bacher <seb128@ubuntu.com> Tue, 02 Apr 2019 16:30:05 +0200
gnome-bluetooth (3.32.0-1) experimental; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@debian.org> Mon, 11 Mar 2019 19:53:06 -0400
gnome-bluetooth (3.31.1-1) experimental; urgency=medium
[ Andrea Azzarone ]
* New upstream release
* debian/watch: Watch for unstable releases
[ Jeremy Bicha ]
* Bump minimum meson to 0.49.0
-- Jeremy Bicha <jbicha@debian.org> Wed, 20 Feb 2019 10:44:26 -0500
gnome-bluetooth (3.28.2-3) unstable; urgency=medium
* Restore -Wl,-O1 to our LDFLAGS
* Bump Standards-Version to 4.3.0
-- Jeremy Bicha <jbicha@debian.org> Sun, 23 Dec 2018 09:46:03 -0500
gnome-bluetooth (3.28.2-2) unstable; urgency=medium
[ Sebastien Bacher ]
* debian/gbp.conf:
Call the upstream tag pattern 'invalid' so that it creates errors.
You currently need to pass this manually.
[ Jeremy Bicha ]
* Drop unneeded dh_translations overrides
* Bump Standards-Version to 4.2.1
-- Jeremy Bicha <jbicha@debian.org> Sat, 08 Sep 2018 06:37:24 -0400
gnome-bluetooth (3.28.2-1) unstable; urgency=medium
* New upstream version
-- Sebastien Bacher <seb128@ubuntu.com> Thu, 09 Aug 2018 17:03:40 +0200
gnome-bluetooth (3.28.0-2) unstable; urgency=medium
* Have libgnome-bluetooth-dev depend on libcanberra-gtk3-dev and
libnotify-dev to match its pkgconfig file (LP: #1755758)
-- Jeremy Bicha <jbicha@debian.org> Wed, 14 Mar 2018 22:20:17 -0400
gnome-bluetooth (3.28.0-1) unstable; urgency=medium
* New upstream release
* Release to unstable
-- Jeremy Bicha <jbicha@debian.org> Mon, 12 Mar 2018 16:37:34 -0400
gnome-bluetooth (3.27.90-1) experimental; urgency=medium
* New upstream development release
* Update configure flags
* debian/libgnome-bluetooth13.symbols: Drop apparently unused symbol
according to https://codesearch.debian.net/
-- Jeremy Bicha <jbicha@debian.org> Sun, 18 Feb 2018 16:50:20 -0500
gnome-bluetooth (3.26.1-3) unstable; urgency=medium
* Update Vcs fields for migration to https://salsa.debian.org/
* Bump debhelper compat to 11
-- Jeremy Bicha <jbicha@debian.org> Sat, 03 Feb 2018 21:58:43 -0500
gnome-bluetooth (3.26.1-2) unstable; urgency=medium
[ Jeremy Bicha ]
* Update Vcs fields for conversion to git
* Add debian/gbp.conf
* Bump Standards-Version to 4.1.2
[ Simon McVittie ]
* Promote libgnome-bluetooth-dev from Priority: extra to optional.
The extra priority is now deprecated.
-- Jeremy Bicha <jbicha@debian.org> Sat, 16 Dec 2017 13:32:57 -0500
gnome-bluetooth (3.26.1-1) unstable; urgency=medium
* New upstream release to fix icons
-- Jeremy Bicha <jbicha@debian.org> Fri, 15 Sep 2017 12:50:35 -0400
gnome-bluetooth (3.26.0-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@debian.org> Mon, 11 Sep 2017 15:52:03 -0400
gnome-bluetooth (3.25.91-1) unstable; urgency=medium
* New upstream release
* Build with meson (Closes: #830052)
* debian/control.in:
- Drop obsolete Suggests: gnome-user-share
- Allow unity-control-center to fulfill Recommends: gnome-control-center
* Bump Standards-Version to 4.1.0
-- Jeremy Bicha <jbicha@debian.org> Wed, 06 Sep 2017 22:18:49 -0400
gnome-bluetooth (3.20.1-1) unstable; urgency=medium
* New upstream release.
* Bump debhelper compat level to 10 for automatic dh-autoreconf.
* Update symbols file for libgnome-bluetooth13 for the
bluetooth_type_to_filter_string API addition.
* Use as-needed to avoid unnecessary library dependencies.
* Drop pre-wheezy migration code.
-- Michael Biebl <biebl@debian.org> Wed, 22 Feb 2017 15:05:07 +0100
gnome-bluetooth (3.20.0-1) unstable; urgency=medium
[ Laurent Bigonville ]
* Drop debian/61-gnome-bluetooth-rfkill.rules: gnome-bluetooth is not
managing rfkill anymore, this has been moved to gnome-settings-daemon
which is shipping the exact same rules file.
* Drop dependency against libpam-systemd, this was added for the udev rules
that are gone now.
* Bump Standards-Version to 3.9.8 (no further changes)
[ Michael Biebl ]
* New upstream release.
* Bump debhelper compatibility level to 9.
* Convert to multiarch. Mark gir, dev and library package as
Multi-Arch: same. (Closes: #813036)
* Convert from cdbs to dh.
-- Michael Biebl <biebl@debian.org> Fri, 01 Jul 2016 12:02:58 +0200
gnome-bluetooth (3.18.3-1) unstable; urgency=medium
* New upstream release.
* Bump Standards-Version to 3.9.7
-- Andreas Henriksson <andreas@fatal.se> Thu, 24 Mar 2016 15:39:22 +0100
gnome-bluetooth (3.18.2-1) unstable; urgency=medium
* New upstream release.
* Update symbols file for libgnome-bluetooth13.
-- Michael Biebl <biebl@debian.org> Thu, 21 Jan 2016 01:55:50 +0100
gnome-bluetooth (3.18.1-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Wed, 11 Nov 2015 16:38:38 +0100
gnome-bluetooth (3.18.0-1) unstable; urgency=medium
* New upstream release.
-- Andreas Henriksson <andreas@fatal.se> Sat, 03 Oct 2015 18:23:14 +0200
gnome-bluetooth (3.17.92-1) experimental; urgency=medium
* New upstream release candidate.
-- Andreas Henriksson <andreas@fatal.se> Fri, 18 Sep 2015 09:33:27 +0200
gnome-bluetooth (3.17.90-1) experimental; urgency=medium
* New upstream beta release.
* Update build-dependencies according to configure.ac changes:
- drop yelp-tools
- add libcanberra-gtk3-dev and libnotify-dev
* Stop installing usr/share/help, no longer available.
-- Andreas Henriksson <andreas@fatal.se> Wed, 16 Sep 2015 16:04:40 +0200
gnome-bluetooth (3.16.1-1) unstable; urgency=medium
* New upstream release.
* Drop obsolete Breaks/Replaces from pre-wheezy.
* Wrap dependencies.
* Bump Build-Depends on libgtk-3-dev to (>= 3.12.0) as per configure.ac
* Update Homepage: URL.
* Update debian/copyright using the machine-readable copyright format 1.0.
* Bump Standards-Version to 3.9.6.
-- Michael Biebl <biebl@debian.org> Thu, 28 May 2015 02:36:55 +0200
gnome-bluetooth (3.14.1-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Thu, 28 May 2015 01:53:18 +0200
gnome-bluetooth (3.14.0-2) unstable; urgency=medium
* debian/control.in: Depends against bluez-obexd instead of obex-data-server
and obexd-client, gnome-bluetooth uses the new interfaces
(org.bluez.obex.Client vs. org.bluez.obex.Client1, yes this is confusing)
-- Laurent Bigonville <bigon@debian.org> Fri, 28 Nov 2014 12:42:14 +0100
gnome-bluetooth (3.14.0-1) unstable; urgency=medium
* New upstream release.
-- Andreas Henriksson <andreas@fatal.se> Mon, 22 Sep 2014 21:05:40 +0200
gnome-bluetooth (3.13.90-2) unstable; urgency=medium
* Upload to unstable
-- Sjoerd Simons <sjoerd@debian.org> Sat, 20 Sep 2014 10:10:01 +0200
gnome-bluetooth (3.13.90-1) experimental; urgency=medium
* New upstream development release.
-- Andreas Henriksson <andreas@fatal.se> Fri, 05 Sep 2014 15:53:15 -0700
gnome-bluetooth (3.12.0-5) unstable; urgency=medium
[ Emilio Pozuelo Monfort ]
* Let gnome-bluetooth break gnome-shell (<< 3.12).
The private library libgnome-bluetooth-applet.so got removed and
gnome-shell 3.8 was using that, so we need to ensure gnome-shell
is upgraded when gnome-bluetooth is. Closes: #754924.
-- Andreas Henriksson <andreas@fatal.se> Wed, 16 Jul 2014 09:50:15 +0200
gnome-bluetooth (3.12.0-4) unstable; urgency=medium
* libgnome-bluetooth-dev: add missing dependency on libudev-dev
-- Andreas Henriksson <andreas@fatal.se> Tue, 15 Jul 2014 18:15:38 +0200
gnome-bluetooth (3.12.0-3) unstable; urgency=medium
* Upload to unstable.
-- Andreas Henriksson <andreas@fatal.se> Mon, 14 Jul 2014 23:32:24 +0200
gnome-bluetooth (3.12.0-2) experimental; urgency=medium
[ Sjoerd Simons ]
* debian/copyright: Update copyright for the help/
* Drop consolekit dependency, gnome-bluetooth doesn't have a direct
dependency on any user session tracking anymore.
[ Laurent Bigonville ]
* debian/control.in: Depends against libpam-systemd so the /dev/rfkill
permissions are properly set
* debian/61-gnome-bluetooth-rfkill.rules: Drop ConsoleKit related rules
-- Laurent Bigonville <bigon@debian.org> Sun, 25 May 2014 23:40:59 +0200
gnome-bluetooth (3.12.0-1) experimental; urgency=low
[ Michael Biebl ]
* Drop obsolete configure switches.
[ Andreas Henriksson ]
* New upstream development release (3.9.3)
* Bump glib build-dependency to >= 2.36
* Rename package for new SONAME (11 -> 12).
* Update debian/libgnome-bluetooth12.symbols
* Replace debian/patches/02_gettext_macros.patch with upstream commit.
* gnome-bluetooth was ported to the new BlueZ5 API in the 3.9 series.
- bump dependency on bluez to >= 5.5
* Bump Standards-Version to 3.9.4
* Add build-dependency on autotools-dev to fix outdated config.sub/guess.
* Ran wrap-and-sort
[ Emilio Pozuelo Monfort ]
* debian/patches/01-Revert-lib-Remove-ObexFTP-browsing.patch:
+ Dropped, the soname has changed so we can finally remove this API.
[ Jordi Mallach ]
* New upstream release (3.10.0).
* Drop debian/patches/02_gettext_macros.patch: finally obsolete.
* Require glib 2.38, to fix the build.
* Adjust .symbols file.
[ Andreas Henriksson ]
* New upstream release (3.12.0)
* Update build-dependencies according to configure.ac changes:
- Bump gtk+ to >= 3.11.2
- Drop libx11-dev and libxi-dev
- Add libudev-dev
* Rename package for new soname (12->13)
* Update debian/libgnome-bluetooth13.symbols
* Don't install usr/lib/gnome-bluetooth
- upstream dropped plugin support.
* Drop part talking about applets in gnome-bluetooth package description.
* Bump Standards-Version to 3.9.5
-- Sjoerd Simons <sjoerd@debian.org> Sat, 26 Apr 2014 11:14:02 +0200
gnome-bluetooth (3.8.1-2) unstable; urgency=low
[ Josselin Mouette ]
* Add Breaks for gir1.2-gnomebluetooth-1.0 which changed API without a
name change: gnome-bluetooth, gnome-shell.
[ Jeremy Bicha ]
* Update homepage
[ Michael Biebl ]
* Apply uaccess tag for rfkill devices for users of logind.
-- Michael Biebl <biebl@debian.org> Mon, 01 Jul 2013 10:39:27 +0200
gnome-bluetooth (3.8.1-1) unstable; urgency=low
* New upstream release.
+ Don't abort on unknown rfkill switches. Closes: #712774.
-- Emilio Pozuelo Monfort <pochu@debian.org> Wed, 19 Jun 2013 16:54:41 +0200
gnome-bluetooth (3.8.0-1) experimental; urgency=low
* New upstream release.
+ debian/control:
- Update build dependencies.
- The nautilus-sendto plugin is gone, so stop suggesting it.
+ debian/patches/01_autostart_path.patch:
- Removed, no longer needed.
+ debian/gnome-bluetooth.install:
- Stop installing nautilus-sendto files.
+ debian/patches/01-Revert-lib-Remove-ObexFTP-browsing.patch:
- New patch. Add bluetooth_browse_address{,_finish} functions
back, as they are part of the ABI and are used by
gnome-control-center 3.4. We can remove this patch when the
libgnome-bluetooth is bumped, or if we add breaks on
gnome-control-center (<< 3.8.0).
-- Emilio Pozuelo Monfort <pochu@debian.org> Fri, 29 Mar 2013 12:42:16 +0100
gnome-bluetooth (3.6.0-1) experimental; urgency=low
* New upstream release
* Sync with Ubuntu:
+ debian/patches/02_gettext_macros.patch
Added, Don't mix gettext and intltool macros
+ Soname bump libgnome-bluetooth10 -> libgnome-bluetooth11
+ debian/control: Update build-depends
-- Sjoerd Simons <sjoerd@debian.org> Sun, 14 Oct 2012 20:47:20 +0200
gnome-bluetooth (3.4.2-1) unstable; urgency=low
[ Andreas Henriksson ]
* New upstream release.
* Drop Sjoerds patches, which has been merged upstream:
debian/patches/02_Fix-return-of-RequestConfirmation-call.patch
debian/patches/03_Fix_wizard_blocked_in_finish_page.patch
debian/patches/04_fix_incoming_pairing.patch
debian/patches/05_fix_memory_leak.patch
-- Michael Biebl <biebl@debian.org> Tue, 10 Jul 2012 21:55:04 +0200
gnome-bluetooth (3.4.1-2) unstable; urgency=low
* Added: debian/patches/02_Fix-return-of-RequestConfirmation-call.patch,
debian/patches/03_Fix_wizard_blocked_in_finish_page.patch
+ Fix pairing with devices supporting SSP (Closes: #679644) (bgo: 679190)
* Added: debian/patches/04_fix_incoming_pairing.patch,
+ Fix incoming pairing requests (bgo: 674414)
* Added debian/patches/05_fix_memory_leak.patch:
+ Fix memory leak (bgo: 679420)
-- Sjoerd Simons <sjoerd@debian.org> Mon, 02 Jul 2012 09:15:49 +0200
gnome-bluetooth (3.4.1-1) unstable; urgency=low
* New upstream release.
* Refresh debian/patches/01_autostart_path.patch.
-- Michael Biebl <biebl@debian.org> Wed, 13 Jun 2012 15:04:58 +0200
gnome-bluetooth (3.4.0-2) unstable; urgency=low
* Upload to unstable.
-- Michael Biebl <biebl@debian.org> Mon, 28 May 2012 22:37:54 +0200
gnome-bluetooth (3.4.0-1) experimental; urgency=low
* New upstream release.
* Drop (Build-)Depends on libdbus-glib-1-dev, ported to GDBus.
* Bump Build-Depends on libglib2.0-dev to (>= 2.29.90)
* Add Depends on libglib2.0-dev to libgnome-bluetooth-dev.
* Drop explicit Build-Depends on gir- packages.
* Bump soname of libgnome-bluetooth from 8 → 10.
* Update symbols file for libgnome-bluetooth10.
* debian/gnome-bluetooth.install: Remove control-center properties panel
which was moved into gnome-control-center.
* Bump Standards-Version to 3.9.3.
-- Michael Biebl <biebl@debian.org> Wed, 04 Apr 2012 00:35:44 +0200
gnome-bluetooth (3.2.2-1) unstable; urgency=low
* New upstream release.
* Use the new maintscript facility in dh_installdeb to remove the obsolete
conffiles:
- Bump Build-Depends on debhelper to (>= 8.1.0~).
- Add Pre-Depends: ${misc:Pre-Depends}.
- Replace preinst/postinst/postrm scripts with a
gnome-bluetooth.maintscript file.
* Change section of gir1.2-gnomebluetooth-1.0 to introspection.
-- Michael Biebl <biebl@debian.org> Fri, 10 Feb 2012 06:24:14 +0100
gnome-bluetooth (3.2.1-1) unstable; urgency=low
[ Jordi Mallach ]
* Make all packages Arch: linux-any.
[ Michael Biebl ]
* New upstream release.
* debian/libgnome-bluetooth8.symbols:
- Add new bluetooth_status_get_type symbol.
* Remove obsolete xdg autostart conffile on upgrades. Closes: #645445
-- Michael Biebl <biebl@debian.org> Wed, 19 Oct 2011 01:08:02 +0200
gnome-bluetooth (3.2.0-2) unstable; urgency=low
[ Laurent Bigonville ]
* debian/control.in: Update Vcs-Svn and Vcs-Browser URL
[ Michael Biebl ]
* Upload to unstable.
* debian/control.in:
- Add Breaks against gnome-phone-manager (<< 0.67) and
network-manager-gnome (<< 0.9.0-3) as loading both GTK 2 and GTK 3 in
the same process is not allowed.
-- Michael Biebl <biebl@debian.org> Thu, 13 Oct 2011 19:14:08 +0200
gnome-bluetooth (3.2.0-1) experimental; urgency=low
[ Laurent Bigonville ]
* New upstream release
- debian/libgnome-bluetooth8.symbols: Adjusts .symbols file
* debian/control.in:
- Bump Standards-Version to 3.9.2 (no further changes)
* debian/rules: List missing files during build
* debian/watch:
- Switch to .bz2 tarballs.
* debian/watch: Fix regex so latest directory is correctly detected
[ Michael Biebl ]
* debin/watch:
- Switch to .xz tarballs.
* debian/control.in:
- Drop Build-Depends on libgnome-control-center-dev.
- Add Breaks against nautilus-sendto (<< 3.0) as loading both GTK 2 and
GTK 3 in the same process is not allowed.
- Don't hard-code dependency on libdconf0 | gsettings-backend but rely on
dh_installgsettings to set the correct dependencies. Bump Build-Depends
on cdbs accordingly.
* Strip debian/tmp/ from .install files.
* Refresh debian/patches/01_autostart_path.patch.
-- Michael Biebl <biebl@debian.org> Tue, 11 Oct 2011 22:57:52 +0200
gnome-bluetooth (3.0.0-1) experimental; urgency=low
[ Laurent Bigonville ]
* New upstream release
* debian/control.in:
- Drop libgconf2-dev build-dependency
- Add Build-Conflicts: nautilus-sendto (>> 3.1.0)
* debian/rules:
- Always bump shlibs files, we are using .symbols files anyway
* debian/libgnome-bluetooth8.symbols: Adjust .symbols file
[ Josselin Mouette ]
* Make the -dev package depend on the gir package.
-- Laurent Bigonville <bigon@debian.org> Sun, 10 Apr 2011 14:14:23 +0200
gnome-bluetooth (2.91.5-1) experimental; urgency=low
[ Laurent Bigonville ]
* New upstream release
- Bump libgnome-bluetooth soname
- Update .symbols file
- Japanese translation updated (Closes: #601518)
* debian/control.in:
- Bump build-dependencies
- Drop not needed build-dependencies
- Add libgnome-control-center-dev build-dependency
- Add gobject-introspection, libgirepository1.0-dev, gir1.2-atk-1.0,
gir1.2-freedesktop, gir1.2-gtk-3.0 and libatk1.0-dev for introspection
- Bump Standards-Version to 3.9.1 (no further changes)
- Bump debhelper compatibility to 8
- Remove duplicate Section to please lintian
- Make gnome-bluetooth depends against ${gir:Depends} and libdconf0
- Add gir1.2-gnomebluetooth-1.0 package
* Switch to dpkg-source 3.0 (quilt) format
* debian/libgnome-bluetooth-dev.install: Install .gir file
* debian/rules:
- Add --enable-introspection
- Add parameters for dh_girepository for gnome-bluetooth package
* debian/gnome-bluetooth.install:
- Remove debian/tmp/etc
- Add debian/tmp/usr/lib/control-center-1/panels/*.so,
debian/tmp/usr/lib/gnome-bluetooth/*.so*,
debian/tmp/usr/lib/gnome-bluetooth/*.typelib,
debian/tmp/usr/share/GConf/gsettings/,
debian/tmp/usr/share/glib-2.0/schemas/
[ Emilio Pozuelo Monfort ]
* debian/control.in:
+ Bump gobject-introspection build dependency to get a
dh_girepository that can cope with private libraries.
+ Update gtk+ 3 package names.
* New upstream release.
* debian/rules:
+ Don't run dh_makeshlibs on gnome-bluetooth.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sun, 27 Feb 2011 15:45:22 +0000
gnome-bluetooth (2.30.0-3) unstable; urgency=low
[ Josselin Mouette ]
* 02_ja_po.patch: patch from Nobuhiro Iwamatsu to update Japanese
translation. Closes: #601518.
[ Sjoerd Simons ]
* debian/patches/03_fix_build_with_libnotify_0.7.0.patch:
+ Added. Fix build with libnotify7
-- Sjoerd Simons <sjoerd@debian.org> Sun, 31 Jul 2011 14:52:22 +0100
gnome-bluetooth (2.30.0-2) unstable; urgency=low
* 61-gnome-bluetooth-rfkill.rules: use the new syntax to use udev-acl.
Closes: #582188, #584312.
* Require udev 154 because of this change.
-- Josselin Mouette <joss@debian.org> Sat, 26 Jun 2010 08:21:03 +0200
gnome-bluetooth (2.30.0-1) unstable; urgency=low
[ Emilio Pozuelo Monfort ]
* debian/watch:
- Only track stable releases.
[ Sebastian Dröge ]
* New upstream release:
+ debian/control.in:
- Update build dependencies.
- Add required dependencies to the -dev package.
+ debian/debian/libgnome-bluetooth7.symbols:
- Add new symbols.
+ debian/gnome-bluetooth.install,
debian/control.in:
- Ship the nautilus-sendto plugin.
-- Sebastian Dröge <slomo@debian.org> Fri, 23 Apr 2010 08:03:27 +0200
gnome-bluetooth (2.28.6-2) unstable; urgency=low
* debian/control.in:
- recommends on obexd-server removed, g-bluetooth doesnt
use its interface and that was causing a lot of features
not working correctly. The package we need is actually
obex-data-server, re-adding it back as a strong dependency.
-- Andrea Veri <and@debian.org> Fri, 15 Jan 2010 14:47:06 +0100
gnome-bluetooth (2.28.6-1) unstable; urgency=low
* New upstream bug fix release.
* debian/control.in:
- DM tag removed, not needed anymore.
-- Andrea Veri <and@debian.org> Mon, 11 Jan 2010 22:43:46 +0100
gnome-bluetooth (2.28.3-3) unstable; urgency=low
[ Josselin Mouette ]
* Recommend obexd-server. Closes: #558377.
[ Andrea Veri ]
* debian/control:
- added a suggests on gnome-user-share, its bluetooth
support should be working fine now.
[ Josselin Mouette ]
* 61-gnome-bluetooth-rfkill.rules: new file. Set ACLs for console
users on /dev/rfkill. Closes: #552185.
* Install it in the udev directory.
* Require udev 146 and consolekit for it to work properly.
* Pass --disable-icon-update.
-- Josselin Mouette <joss@debian.org> Sat, 09 Jan 2010 14:13:47 +0100
gnome-bluetooth (2.28.3-2) unstable; urgency=low
[ Andrea Veri ]
* debian/control.in:
- moved maintainer to pkg-gnome.
- added pkg-gnome-tools B-D since we have a control.in
file now to autogenerate uploaders list.
- removed libgeoclue-dev B-D, it was causing issues on kfreebsd,
and it's actually not really needed.
- VCS-* fields updated since we moved the branch to pkg-gnome.
* debian/rules:
- added uploaders.mk include from gnome-pkg-tools
[ Emilio Pozuelo Monfort ]
* debian/control.in:
- Remove Filippo from uploaders with his consent. Thanks for your
past work!
- Wrap dependencies.
* debian/watch:
- Don't uupdate.
* debian/control.in,
debian/rules:
- Remove no longer needed chrpath calls. Stop build depending on chrpath.
* debian/rules:
- Remove buildcore.mk, not needed.
- Include gnome-get-source.mk
* debian/libgnome-bluetooth-dev.install:
- Stop shipping *.la.
-- Andrea Veri <andrea.veri89@gmail.com> Thu, 12 Nov 2009 20:04:49 +0100
gnome-bluetooth (2.28.3-1) unstable; urgency=low
* New upstream release.
* debian/control:
- obex-data-server depends removed and added
obexd-client instead required by bluetooth-sendto
to work properly. (Closes: #551974)
- added a B-D on libgeoclue-dev for a proper plugin's
build.
* debian/gnome-bluetooth.install:
- enabling plugins installation
* debian/patches/01_autostart_path.patch:
- added to adjust autostartdir path to the right
value /usr/share/gnome/autostart
-- Andrea Veri <andrea.veri89@gmail.com> Fri, 23 Oct 2009 12:20:27 +0200
gnome-bluetooth (2.28.1-2) unstable; urgency=low
* debian/control:
- added bluez depends for gnome-bluetooth, this is
definitely required. (Closes: #535057)
-- Andrea Veri <andrea.veri89@gmail.com> Wed, 14 Oct 2009 00:21:07 +0200
gnome-bluetooth (2.28.1-1) unstable; urgency=low
* New upstream release.
* debian/control:
- bumped standards-version to latest 3.8.3
- added myself into uploaders, I gonna help Filippo
updating this package for the future.
- added Debian Maintainers Tag.
- libdbus-glib-1-dev bumped to >= 0.74.
- libhal-dev B-D removed, it's no more needed according
to configure.ac requirements.
- libgnome-bluetooth package renamed to libgnome-bluetooth7,
to match soname change. Plus renamed all other entries that
had the old libgnome-bluetooth name.
* debian/libgnome-bluetooth.install:
- renamed to match soname bump.
* debian/libgnome-bluetooth.symbols:
- renamed to match soname change
- refreshed with new symbols after soname bump.
* debian/rules:
- simple-patchsys include removed, we have no patches to apply.
* debian/copyright:
- added missing copyright holders.
-- Andrea Veri <andrea.veri89@gmail.com> Fri, 09 Oct 2009 20:30:37 +0200
gnome-bluetooth (2.27.5-1) unstable; urgency=low
* New upstream version (Closes: #530396)
+ actually a fork of bluez-gnome, conflict accordingly
+ revisit debian/copyright
* Ship a .symbols file for libgnome-bluetooth, thanks Sjoerd Simons
* Add chrpath to build-depends and explictely strip RPATH
* Upgrade to S-V 3.8.1, no changes needed
-- Filippo Giunchedi <filippo@debian.org> Sun, 24 May 2009 21:42:09 +0200
gnome-bluetooth (0.9.1-1) unstable; urgency=low
* New upstream release, bump libgnomeui-dev dep to >= 2.14
* libbluetooth2-dev -> libbluetooth-dev transition
* first upload to unstable (Closes: #253735)
-- Filippo Giunchedi <filippo@debian.org> Tue, 24 Jul 2007 16:32:57 +0200
gnome-bluetooth (0.8.0-1) UNRELEASED; urgency=low
* New upstream release
* Add Bastien Nocera as author. [debian/copyright]
* Bump debhelper comp. level to 5. [debian/compat, debian/control]
* Update build-depends according to configure.in. [debian/control]
* Bump Standards-Version to 3.7.2. No changes needed. [debian/control]
* Change libbtctl2-dev dep version to binary:Source to reobtain binNMU
compatibility. [debian/control]
* Drop .la files. [debian/libgnomebt0-dev.install]
* Move icon to Utilities menu. [debian/patches/10_desktop-file.patch]
* Add watch file. [debian/watch]
* Change to synchronous rescan [debian/patches/20_rescan.patch]
* Fix typo in nb translation. [30_nb-translation-typo.patch]
* Add man pages
* Fix typo in package description
-- Oystein Gisnas <oystein@gisnas.net> Sat, 24 Feb 2007 22:39:57 +0100
gnome-bluetooth (0.7.0-1) unstable; urgency=low
* New upstream release
-- Filippo Giunchedi <filippo@debian.org> Fri, 2 Dec 2005 21:20:23 +0100
gnome-bluetooth (0.6.0-1) unstable; urgency=low
* New Upstream release
-- Filippo Giunchedi <filippo@debian.org> Fri, 2 Dec 2005 19:33:47 +0100
gnome-bluetooth (0.6.0+cvs2005.09.09-2) unstable; urgency=low
* build-dep on python-dev and not python2.3-dev
-- Filippo Giunchedi <filippo@debian.org> Sun, 13 Nov 2005 16:29:14 +0100
gnome-bluetooth (0.6.0+cvs2005.09.09-1) unstable; urgency=low
* first upload to debian, imported from ubuntu (Closes: #253735)
* revert back to python2.3
-- Filippo Giunchedi <filippo@debian.org> Tue, 1 Nov 2005 18:23:17 +0100
gnome-bluetooth (0.6.0+cvs2005.09.09-0ubuntu1) breezy; urgency=low
* CVS fixes:
- src/fileactiondialog.gob: don't use uri after it was freed, make
sure that a URI was created before using it
- src/gnomebt-fileactiondialog-test.c: (main): check that the
files exist before running the tests
- src/controller.gob: fix 2 memory leaks, gconf_client_get_string
already returns a newly-allocated string
- src/permissiondialog.gob: fix a double-free
* fixes Malone #2406.
-- Daniel Holbach <dh@mailempfang.de> Tue, 20 Sep 2005 19:36:24 +0200
gnome-bluetooth (0.6.0-0ubuntu1) breezy; urgency=low
* New upstream release:
- gnome-obex-server: Now preserves timestamps of reserved files
(Tumoas Salo).
- Save received files to the path specified in the
/apps/gnome-obex-server/savedir GConf key
- Remove the nautilus extension, sending files over Bluetooth
devices is now handled though nautilus-sendto (Bastien Nocera)
- Make gnome-bluetooth-manager run with newer PyGTK (Olav Vitters,
Harald Hoyer)
- Make dialogues comply better with the HIG (Bastien Nocera)
- Add a test program for the spinner widget (Bastien Nocera)
- Build fixes (Bastien Nocera)
- Updated translations.
* debian/control:
- Bumped Standards-Version.
- Adjusted Build-Depends according to configure.in
* debian/patches/01_gnome-ui-appbar-fix.patch:
- dropped.
-- Daniel Holbach <dh@mailempfang.de> Fri, 9 Sep 2005 17:12:18 +0200
gnome-bluetooth (0.5.1-1ubuntu7) hoary; urgency=low
* Rebuilt, because of libhowl0 moving out.
-- Daniel Holbach <dh@mailempfang.de> Thu, 10 Mar 2005 13:55:24 +0100
gnome-bluetooth (0.5.1-1ubuntu6) hoary; urgency=low
* debian/patches/01_gnome-ui-appbar-fix.patch:
- gtk.Statusbar() fix thanks very much to Trent Lloyd.
* debian/control:
- Build-Depend on librsvg2-dev, python2.4-dev. Migrate all to python2.4.
-- Jeff Waugh <jeff.waugh@ubuntu.com> Mon, 24 Jan 2005 19:11:43 +1100
gnome-bluetooth (0.5.1-1ubuntu5) hoary; urgency=low
* debian/control:
- Build-Depends typo.
-- Jeff Waugh <jeff.waugh@canonical.com> Thu, 2 Dec 2004 21:51:04 +1100
gnome-bluetooth (0.5.1-1ubuntu4) hoary; urgency=low
* debian/control:
- Eugh, Build-Depends.
-- Jeff Waugh <jeff.waugh@canonical.com> Thu, 2 Dec 2004 15:05:29 +1100
gnome-bluetooth (0.5.1-1ubuntu3) hoary; urgency=low
* debian/control:
- Build-Depend on intltool
-- Jeff Waugh <jeff.waugh@canonical.com> Thu, 2 Dec 2004 14:12:48 +1100
gnome-bluetooth (0.5.1-1ubuntu2) hoary; urgency=low
* Upload to Ubuntu
-- Jeff Waugh <jeff.waugh@canonical.com> Wed, 1 Dec 2004 18:47:26 +1100
gnome-bluetooth (0.5.1-1) unstable; urgency=low
* New upstream release.
-- Edd Dumbill <ejad@debian.org> Fri, 18 Jun 2004 20:13:52 +0100
gnome-bluetooth (0.5-3) unstable; urgency=low
* Add more missing dependencies for gnome-bluetooth (gtk2, glade2, gnome2).
-- Edd Dumbill <ejad@debian.org> Sat, 12 Jun 2004 02:54:48 +0100
gnome-bluetooth (0.5-2) unstable; urgency=low
* Add missing dependency on python2.3-libbtctl.
-- Edd Dumbill <ejad@debian.org> Fri, 11 Jun 2004 15:22:36 +0100
gnome-bluetooth (0.5-1) unstable; urgency=low
* Initial packaging.
-- Edd Dumbill <ejad@debian.org> Thu, 10 Jun 2004 11:07:33 +0100
|