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 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394
|
budgie-desktop (10.5.2-4) unstable; urgency=medium
* Bug-fixes
- Ensure gir package does not have an empty Depends (Closes: #991079)
-- David Mohammed <fossfreedom@ubuntu.com> Tue, 13 Jul 2021 19:24:58 +0100
budgie-desktop (10.5.2-3) unstable; urgency=medium
* Bug-fixes
- Panel crashes when using wine-based apps with icon-applet
keepass_segfaults.patch
sync_x_errors_carbon.patch
- Do not show budgie-desktop-settings in docks like plank
bde_icon_handling.patch
- Show/Mute icon in panel when user uses keyboard media keys
mute_unmute.patch
- All budgie-desktop-settings to be pinned/unpinned in icon applet
bde_pinned.patch
-- David Mohammed <fossfreedom@ubuntu.com> Tue, 12 Jan 2021 11:48:18 +0000
budgie-desktop (10.5.2-2) unstable; urgency=medium
* Packaging Changes
- Add recommendation for budgie-desktop-view together with
a gsettings-override to enable desktop-icons support in
budgie-desktop-settings
- Update Suggests to include minimal suggestions to get a workable
basic desktop if these suggestions are installed
-- David Mohammed <fossfreedom@ubuntu.com> Sun, 13 Dec 2020 22:02:35 +0000
budgie-desktop (10.5.2-1) unstable; urgency=medium
* New upstream release
- upstream release announcement in install changelogs
* Packaging Changes
- control: Bump StandardsVersion
- control: Update build dependency version numbers as per upstream
recommendations
- drop desktop-settings.patch since new release has support for
budgie-desktop-view/desktopfolder/nemo
- drop recalc-panel-box-visibility.patch since new release has fixed
this issue
- drop windowanimation.patch since upstreamed into new release
- drop 1000-Obtain-gsettings-transparency-key-value-before-showi.patch
since upstreamed into new release
- refresh hide_default_theme.patch
- copyright bump copyright year to match revised sourcess
- update libraven0.symbols
- update libbudgie-plugin0.symbols
- update watch file for revised upstream version naming
-- David Mohammed <fossfreedom@ubuntu.com> Wed, 02 Dec 2020 19:45:59 +0000
budgie-desktop (10.5.1+git20200824-4) unstable; urgency=medium
* Bug fix
Restore budgie window minimize and unminimize animation
windowanimation.patch (LP: #1900354)
-- David Mohammed <fossfreedom@ubuntu.com> Sun, 18 Oct 2020 22:28:00 +0100
budgie-desktop (10.5.1+git20200824-3) unstable; urgency=medium
* debian/tests add superficial as a restriction since the test
only covers a limited build artifact (Closes: #971453)
-- David Mohammed <fossfreedom@ubuntu.com> Wed, 30 Sep 2020 22:12:28 +0100
budgie-desktop (10.5.1+git20200824-2) unstable; urgency=medium
* No change upload to unstable (Closes: #971038)
-- David Mohammed <fossfreedom@ubuntu.com> Sat, 26 Sep 2020 18:32:17 +0100
budgie-desktop (10.5.1+git20200824-1) experimental; urgency=medium
* Git build 20200824
- mutter-7 build capability
- Translations includes upstream translations up-to 20200827
* Packaging Changes
- drop mutter-7 patch since included in Git build
- control: build against mutter-7
- control: bump debhelper version
-- David Mohammed <fossfreedom@ubuntu.com> Wed, 09 Sep 2020 18:40:11 +0100
budgie-desktop (10.5.1+git20200715-2) unstable; urgency=medium
* Revise show-tray-icon.patch to use an alternate ID to prevent
a clash with the system tray schema
-- David Mohammed <fossfreedom@ubuntu.com> Tue, 18 Aug 2020 18:02:40 +0100
budgie-desktop (10.5.1+git20200715-1) unstable; urgency=medium
* Git build 20200715
- Variety of bug-fixes including
resolve system tray icon corruption
display chromium notifications with their icons
option to display windows from all workspaces in tab-switcher
show non xkb layouts in keyboard applet
respect animations flag for background transitions
resolve occasional panel crash when removing applets
make screenshot commands configurable via gsettings
fix display of spotify artwork in raven
* Refresh show-tray-icon.patch but use new name for schema
* Add mutter7.patch ready for GNOME 3.38 (mutter7) switch
* hide-default-theme.patch hide Debian specific "Default" theme
label
* Drop the following patches since incorporated in the git build
- keygrab.patch
- leftright-panel-layouts.patch
- Mutter-3.35.90-support-1918.patch
- Mutter-3.35.91-1939.patch
- pkexec-menu.patch
- polkitdialog.patch
- popup-scale-factor.patch
- strut-calc.patch
- use-builtin-session-manager.patch
- wnck-shutdown.patch
- workspace-max.patch
* Refresh debian/copyight for the git build source
* All patches now included Forwarded in their dep-3 header
-- David Mohammed <fossfreedom@ubuntu.com> Mon, 17 Aug 2020 20:04:17 +0100
budgie-desktop (10.5.1-8) unstable; urgency=medium
* Fix FTBFS (Closes: #963366)
- debian budgie-desktop-settings.1 corrected
the invalid section
- debian budgie-panel.1 resolved lintian for
section description
-- David Mohammed <fossfreedom@ubuntu.com> Sun, 21 Jun 2020 22:47:18 +0100
budgie-desktop (10.5.1-7) unstable; urgency=medium
* Upload experimental package to unstable
-- David Mohammed <fossfreedom@ubuntu.com> Sat, 11 Apr 2020 15:46:35 +0100
budgie-desktop (10.5.1-6) experimental; urgency=medium
* Bug-fix
update polkitdialog.patch to ensure pkexec based dialogs
are shown.
-- David Mohammed <fossfreedom@ubuntu.com> Sat, 21 Mar 2020 15:10:15 +0000
budgie-desktop (10.5.1-5) experimental; urgency=medium
* Bug-fix
Patch to resolve polkitdialog crashes
polkitdialog.patch
-- David Mohammed <fossfreedom@ubuntu.com> Wed, 18 Mar 2020 21:58:42 +0000
budgie-desktop (10.5.1-4) experimental; urgency=medium
[ Marco Trevisan (TreviƱo) ]
* Add support for mutter-6 (Closes: #952639)
* debian/control: Build-depend on libmutter-6-dev
* d/p/Mutter-3.35.91-1939.patch,
d/p/Mutter-3.36-support-1918.patch:
- Support compiling with mutter-6
[ David Mohammed ]
* Use github homepage rather than upstream website
(Closes: #950477)
* control: bump Standards-Version; no changes required
* control: Update description for the budgie-desktop pkg
(Closes: #950468)
* Fix crash when adding more than 8 workspaces
workspace-max.patch
-- David Mohammed <fossfreedom@ubuntu.com> Mon, 09 Mar 2020 19:03:12 +0000
budgie-desktop (10.5.1-3) unstable; urgency=medium
* Cherry-pick release
Add support to hide/show network manager applet icon via gsettings
show-tray-icon.patch
* Add support for the Debian third-party applet budgie-appmenu-applet
recalc-panel-box-visibility.patch
* Update keygrab.patch so that mutter-5 dbus UngrabAccelerators is
supported - this stops the spamming of journald
* Update strut-calc.patch with the upstream accepted commit. This
resolves messages spamming journald
* Support left/right panel layouts
leftright-panel-layouts.patch
-- David Mohammed <fossfreedom@ubuntu.com> Mon, 20 Jan 2020 10:29:42 +0000
budgie-desktop (10.5.1-2) unstable; urgency=medium
* Bug-fix release
Handle monitor-monitor window positioning
strut-calc.patch
Ensure budgie popovers handle desktop scaling beyond 100%
popup-scale-factor.patch
Manage keyboard shortcuts - resolve intermittent loss of shortcuts
on login
keygrab.patch
* Packaging Changes
control: fix home-page link to point to a valid url
control: add build-depends on debhelper-compat (= 12)
compat: remove deprecated file
upstream/metadata: refresh with new upstream information
copyright: refresh with upstream contact info
watch: update with revised github project name
changelog: fixed typo StandardsVersion --> Standards-Version
Update libbudgie-private0.symbols with new symbol due to
strut-calc.patch
-- David Mohammed <fossfreedom@ubuntu.com> Sat, 30 Nov 2019 10:59:21 +0000
budgie-desktop (10.5.1-1) unstable; urgency=medium
* Official upstream release
- upstream release announcement in install changelogs
* Drop all patches except for the following (rebased where necessary)
1000-Obtain-gsettings-transparency-key-value-before-showi.patch
desktop-override.patch
desktop-settings.patch
pkexec-menu.patch
wnck-shutdown.patch
use-builtin-session-manager.patch
* Packaging Changes
Control - bump Standards-Version - no changes required
Update libraven symbols
-- David Mohammed <fossfreedom@ubuntu.com> Wed, 16 Oct 2019 15:07:53 +0100
budgie-desktop (10.5-4) unstable; urgency=high
[ Willem Mulder ]
* use gnome-session builtin session manager to stop gnome-shell
spawning where both gnome-shell and budgie desktop are both installed.
When this happens, it is impossible to login to budgie desktop
(Closes: #942077)
-- David Mohammed <fossfreedom@ubuntu.com> Thu, 10 Oct 2019 21:16:53 +0100
budgie-desktop (10.5-3) unstable; urgency=medium
* Upload experimental package to unstable
-- David Mohammed <fossfreedom@ubuntu.com> Mon, 30 Sep 2019 18:59:27 +0100
budgie-desktop (10.5-2) experimental; urgency=medium
* Release to support GNOME 3.34/3.32
* Add support for mutter 5
drop gnome-3.30-compatability.patch
gnome-3.32-compability.patch
mutter5-add-build-support.patch
mutter5-generate-vapi.patch
mutter5-vapi.patch
* Add compilation support for vala 0.46
vala046.patch
* Remove unneeded gnome-settings-daemon v3.34 components that stops logon
gsd334.patch
* Don't force wnck to shutdown - this causes apport crashes since applets
and other wnck users haven't released memory
wnck-shutdown.patch
* Fix spacer sizing
Use-panel-orientation-for-spacer-sizing.patch
* Add support for nemo and desktopfolder
desktop-settings.patch
* Fix to enable pkexec apps are supported through the menu
pkexec-menu.patch to
* Sort menus using linguistic rules
sort-linguistic.patch
* Add hinting support for settings
add-hinting.patch
* Refresh animations.patch
* Packaging Changes:
- Rules: replace manual meson build with debhelper equivalents
- Control & Compat: Update for debhelper 12
- Control bump Standards-Version: no changes required
- Control bump gnome-settings-daemon-dev build version
- Control move needed runtime dependencies from budgie-desktop to
budgie-core (Closes: #939358)
- Rules: Update meson build options
- Update budgie-core lintian-overrides to be a generic architecture
rather than specifically amd64
-- David Mohammed <fossfreedom@ubuntu.com> Sat, 14 Sep 2019 20:27:50 +0100
budgie-desktop (10.5-1) unstable; urgency=medium
* Official upstream release
- upstream release announcement in install changelogs
* Diff from previous git release
- Includes release translation updates
- upstream bug fix commit to allow setting GNOME Screensaver
to never
- Fix for keyboard shortcuts occasionally stop working
(LP: #1818978) cleanup-keygrab.patch
- Fix FTBFS due to incorrect Wnck WindowTypes
- 1000-Obtain-gsettings-transparency-key-value-before-showi.patch
Refresh to remove patch fuzz
- Ensure animations remain working with newer versions of mutter
(LP: #1824102) animations.patch
* Packaging Changes
- Signed release tarball; signing key updated for new upstream
maintainer
- rules: Minimize polkit crashes due to -O2 build optimization
- budgie-desktop.gsettings-override remove disabling animation override
-- David Mohammed <fossfreedom@ubuntu.com> Mon, 15 Apr 2019 10:11:06 +0100
budgie-desktop (10.5~git20190218-1) unstable; urgency=medium
* Bug-fix git and Translation release
- archive built from commit f62524110961cbbaf6e9
- Ensure polkit dialog cancel correctly dismisses rather
than hanging, with patch
0001-Polkit-Correctly-handle-the-user-dismissing-the-auth.patch
- refresh gnome-3.30-compatability.patch to build
against upstream tarball
-- David Mohammed <fossfreedom@ubuntu.com> Mon, 18 Feb 2019 12:58:45 +0000
budgie-desktop (10.5~git20190202-1) unstable; urgency=medium
* New upstream git release
- Version bump to reflect upstream budgie-desktop version change
pending upstream git version tag
- archive built from commit 73df80757c8b1781dc23
* Packaging Changes
- update libraven0 symbols for this release
- Copyright: Revised copyright for translations
- Control: Update to build-depends to include libnotify-dev
- Rules: Remove obsolete translation install removal
add optimization build LD_FLAG
-- David Mohammed <fossfreedom@ubuntu.com> Sat, 02 Feb 2019 21:28:58 +0000
budgie-desktop (10.4+git20190110.01.1f8eceaa58e-1) unstable; urgency=medium
* New upstream git release
- Release combines the git master release + gnome-3.30 patch work
- Resolve wishlist to open addition terminal windows (Closes: #897570)
* Bug fixes
- Resolve typo in panel translation (Closes: #880719)
- Add package lightdm suggestion to advise netinst installation
(Closes: #897601)
- Ensure budgie-core installs gnome-settings-daemon so that minimal
installs do not crash due to missing GNOME schemas (LP: #1688607)
* Packaging Changes
- control add new BD libasound2-dev
- copyright update copyright for new release together with year change
- control Bump Standards-Version - fixed symbols Build-Depends-Package
- Drop the following patches since they have been merged upstream
0006-Install-missing-notification-icon-1545.patch
0008-Add-copyright-for-notification-disabled-symbolic.svg.patch
- Drop 0007-Check-if-schema-is-defined-for-volume-slider-changes.patch
since this as not been accepted by upstream
- Merge remaining patches into one gnome-3.30-compatibility.patch
except for the following that has been kept local
1000-Obtain-gsettings-transparency-key-value-before-showi.patch
-- David Mohammed <fossfreedom@ubuntu.com> Thu, 10 Jan 2019 15:45:51 +0000
budgie-desktop (10.4+git20180830.02.f2dbc215fdb-3) unstable; urgency=medium
* Packaging Change
- simplify rules to ensure Debian and Ubuntu build without
desktop-icon support
-- David Mohammed <fossfreedom@ubuntu.com> Mon, 24 Dec 2018 12:06:53 +0000
budgie-desktop (10.4+git20180830.02.f2dbc215fdb-2) unstable; urgency=medium
* Bug-fix release
- Patch 0011-Override-new-mutter-vertical-workspace-layout.patch
Restore horizontal scrolling when switching workspaces
-- David Mohammed <fossfreedom@ubuntu.com> Sun, 07 Oct 2018 21:39:11 +0100
budgie-desktop (10.4+git20180830.02.f2dbc215fdb-1) unstable; urgency=medium
* Bug-fix release
- Add temporary gsettings override to disable animations to ensure
windows do not leave visual artifacts
- Patch 0009-Add-null-guards.patch
Fix occasional workspace switch crashes
- 0010-Ensure-focus-and-button-layout-keys-are-updated.patch
Fix right/left decoration placement and mouse over focus
issues
* Packaging Changes
- debian/rules - remove unneeded separate ubuntu/debian overrides
- regenerate tarball with git submodule GVC pointing to new
gitlab location
https://gitlab.gnome.org/GNOME/libgnome-volume-control.git
-- David Mohammed <fossfreedom@ubuntu.com> Wed, 26 Sep 2018 20:24:39 +0100
budgie-desktop (10.4+git20180830.01.f2dbc215fdb-3) unstable; urgency=medium
* Build desktop icon support with debian/rules update
- for Debian support is switched off (due to Nautilus 3.30
transition) since budgie desktop settings would crash
due to gsettings schema being missing
- for Ubuntu support is switched on since using older
version of Nautilus
-- David Mohammed <fossfreedom@ubuntu.com> Sat, 08 Sep 2018 09:16:56 +0100
budgie-desktop (10.4+git20180830.01.f2dbc215fdb-2) unstable; urgency=medium
* Release to unstable (Closes: #907939)
- copy experimental package + packaging changes as described
* Packaging Changes
- Copyright updates
-- David Mohammed <fossfreedom@ubuntu.com> Wed, 05 Sep 2018 14:59:49 +0100
budgie-desktop (10.4+git20180830.01.f2dbc215fdb-1) experimental; urgency=medium
* Release to experimental (Closes: #907616)
- base on ubuntu cosmic package; this includes a git release of
budgie-desktop that will form the forthcoming v10.5 release.
Includes additional patches to compile for mutter 3.30 plus
current work-in-progress stability patches
* Packaging Changes
- budgie-core.lintian-overrides - revise explanation of the lintian
false positive results with the objdump test to confirm the observations
- bump control Standards-Version; no additional changes required
- libraven0.symbols add two additional symbols for git release
-- David Mohammed <fossfreedom@ubuntu.com> Thu, 30 Aug 2018 21:38:21 +0100
budgie-desktop (10.4+git20180830.01.f2dbc215fdb-0ubuntu1) cosmic; urgency=medium
* Upstream Git release
* drop caffeine patch since now incorporated into git master
* 0003-Make-sure-vapi-workspace-def-use-real-c-header-filen.patch
Fix to resolve alt+tab crashes (LP: #1788721)
* 0004-Vala-0.41.92-does-not-allow-custom-getter-default-va.patch
Add fix for vala compilation issues
* 0005-Point-vapi-cheaders-to-their-upstream-equiv.patch
Ensure vapi matches the correct C header file names
* 0006-Install-missing-notification-icon-1545.patch
Add fallback icon for 'disable all notifications' capability
* 0007-Check-if-schema-is-defined-for-volume-slider-changes.patch
Do not check for gnome sound schema for microphone slider
* 0008-Add-copyright-for-notification-disabled-symbolic.svg.patch
Ensure notification icon has a copyright statement in the source
Packaging Changes:
- rename numeric order for patches to be sequential
- debian/copyright Add copyright for the additional git release icons
-- David Mohammed <fossfreedom@ubuntu.com> Thu, 30 Aug 2018 10:21:26 +0100
budgie-desktop (10.4+git20180820.01.cb35f5b4f1c-0ubuntu1) cosmic; urgency=medium
* Upstream Git release
* Revise mutter3.30 patch to fix focus issues
* Revise caffeine patch to use both fallback and actual theme icons if
available
* 0004-Correct-GNOME-button-layout-schema-path.patch
Fix path to point to a valid schema
* Packaging Changes:
- debian/rules - remove the rename of the caffeine icons
-- David Mohammed <fossfreedom@ubuntu.com> Mon, 20 Aug 2018 21:56:13 +0100
budgie-desktop (10.4+git20180806.02.933f78fc03d-0ubuntu1) cosmic; urgency=medium
[Adam Conrad]
* caffeine-cup-conflicts.patch: Avoid caffeine icon conflicts (LP: #1786107)
[David Mohammed]
* Upstream Git release
* Add patch to support GNOME 3.29.4 mutter
* Packaging Changes:
- Drop existing patches except
0001-Obtain-gsettings-transparency-key-value-before-showi.patch,
- refresh patch 0001*.patch
- debian/control - Bump Standards-Version (4.1.4): no changes required
- Add new patch 0003-Port-to-mutter-3-from-GNOME-3.30.patch
- Create unsigned tarball (dh_make) from upstream Git tree
- debian/control - build-depends on libmutter-3 and libglib2.0 2.57
- debian/control - add new libbudgie-private0 private ABI package
- create lintian-overrides for budgie-core-dev
- update lintian-overrides for budgie-core
-- David Mohammed <fossfreedom@ubuntu.com> Wed, 08 Aug 2018 23:33:56 +0100
budgie-desktop (10.4+git20171031.10.g9f71bb8-1.2ubuntu1) bionic; urgency=medium
* Bug fix release
- add patch to fix system tray black backgrounds
fix_black_tray_backgrounds.patch
-- David Mohammed <fossfreedom@ubuntu.com> Sun, 01 Apr 2018 20:28:30 +0100
budgie-desktop (10.4+git20171031.10.g9f71bb8-1.2) unstable; urgency=medium
* Non-maintainer upload
* Build-Depend on gnome-settings-daemon >= 3.28
-- Jeremy Bicha <jbicha@debian.org> Sat, 17 Mar 2018 11:41:00 -0400
budgie-desktop (10.4+git20171031.10.g9f71bb8-1.1) unstable; urgency=medium
* Non-maintainer upload.
* Upload Ubuntu changes to unstable for mutter transition.
* Depend on gnome-settings-daemon >= 3.26
-- Jeremy Bicha <jbicha@debian.org> Sat, 10 Mar 2018 19:44:52 -0500
budgie-desktop (10.4+git20171031.10.g9f71bb8-1ubuntu4) bionic; urgency=medium
* Mutter 3.28 transition (LP: #1751070)
- Add patch to support GSD 3.27.90 and later
- Add patch to support libmutter-2
* Packaging Changes
- Drop patch gsd.patch
- Add patch 0002-Switch-to-checking-GSD-version-for-the-build-1319.patch
- Add patch libmutter-2.patch
- debian/control - libmutter so-name bump build-depends >= 3.27.91
-- David Mohammed <fossfreedom@ubuntu.com> Sat, 03 Mar 2018 23:32:29 +0000
budgie-desktop (10.4+git20171031.10.g9f71bb8-1ubuntu3) bionic; urgency=medium
* No-change rebuild against latest gnome-desktop3
-- Jeremy Bicha <jbicha@ubuntu.com> Fri, 16 Feb 2018 08:10:38 -0500
budgie-desktop (10.4+git20171031.10.g9f71bb8-1ubuntu2) bionic; urgency=medium
* Bug-fix release
- add patch 0001-Obtain-gsettings-transparency-key-value-before-showi.patch
This patch allows panel transparency gsettings to be overridden
* Packaging Changes
- debian/control: Bump debhelper version to v11
- debian/control: Bump Standards-Version (no changes required)
-- David Mohammed <fossfreedom@ubuntu.com> Tue, 06 Feb 2018 20:15:30 +0000
budgie-desktop (10.4+git20171031.10.g9f71bb8-1ubuntu1) bionic; urgency=medium
* Bug-fix release
- fix autopkgtest build failure; simplify to check that the exe
has been created correctly.
* Packaging Changes
- rename autopkgtest script
-- David Mohammed <fossfreedom@ubuntu.com> Tue, 07 Nov 2017 18:33:47 +0000
budgie-desktop (10.4+git20171031.10.g9f71bb8-1) unstable; urgency=medium
* Bug-fix release
- fix FTBFS due to meson v0.43; budgie desktop (upstream) have
released a signed tarball to resolve since it is not possible
to cherry-pick the appropriate git commit
https://github.com/budgie-desktop/budgie-desktop/issues/1228
* Packaging Changes
- debian/rules: support separate ubuntu and debian gsettings
overrides
- debian/rules: add bindnow hardening
- debian/rules: install Budgie gi-typelib to a multiarch location
- debian/control: Update standards version - add an autopkgtest
- debian/copyright: gvc file-location changed from src to subprojects
- debian/copyright: add Jeremy Bicha to packaging copyright
-- David Mohammed <fossfreedom@ubuntu.com> Tue, 31 Oct 2017 17:46:07 +0000
budgie-desktop (10.4-1.1) unstable; urgency=medium
* Non-maintainer upload.
* debian/control:
- Build-Depend on libmutter-1-dev for GNOME 3.26 transition
- Bump required gnome-settings-daemon to >= 3.25.4
-- Jeremy Bicha <jbicha@debian.org> Fri, 13 Oct 2017 17:52:23 -0400
budgie-desktop (10.4-1) unstable; urgency=medium
* New upstream release
* Packaging Changes
- remove all unneeded triggers
- refresh debian/patches/gsd.patch to merge in upstream changes
- drop all patches (except for gsd.patch) since now dealt with in new
release
- debian/control: standards version 4.0.1
- debian/control: Add build dependency sassc
- debian/control: add minimum meson version to build
- debian/control: Add Build-Depends alternate libmutter-1-dev
for GNOME 3.26 builds
- update library symbols files with 10.4 changes
- Rename binary package gir1.2-budgie-desktop-1.0 to
match the typelib gir1.2-budgie-1.0; To ensure a smooth upgrade,
debian/control updated with Replaces/Breaks for the new package
and budgie-desktop with a restriction for 10.4 and later for the
new package
- Add man-page for new binary budgie-desktop-settings
- Updated debian/copyright for all source files
- Merge changelog for 10.2.9-3 unstable bug-fix release;
10.2.9-3 is a hotfix for unstable released after the 10.3.x
series was uploaded to experimental
- debian/rules: add override_dh_installchangelogs with
debian/changelog-announcement.txt to describe
where to find the upstream announcement and description of changes
- add budgie-core.lintian-override with comment to describe
the rpath lintian error
-- David Mohammed <fossfreedom@ubuntu.com> Fri, 18 Aug 2017 17:48:21 +0100
budgie-desktop (10.3.1-5) unstable; urgency=high
* Bug fix release
- add patch gsd.patch (Closes: #869953)
Where gnome-settings-daemon version is greater than
libmutter, the build of budgie-desktop results in an
invalid gnome-session file. The patch ensures a valid file
is created by checking the version of gnome-settings-daemon
instead of mutter during the build.
* Packaging Changes:
- debian/control: Add build dependency for gnome-settings-daemon-dev
to ensure the patch can determine the version correctly
- debian/control: Fix the Vcs-Git location typo bugie --> budgie
-- David Mohammed <fossfreedom@ubuntu.com> Fri, 18 Aug 2017 00:37:52 +0100
budgie-desktop (10.3.1-4) unstable; urgency=medium
* New release for unstable
Use build 10.3.1-3 for experimental with the following changes:
- enforce gnome-settings-daemon minimum version >= 3.24
- release ensures there is a migration path for
budgie-core to GNOME stack 3.24 (Closes: #869953)
-- David Mohammed <fossfreedom@ubuntu.com> Fri, 28 Jul 2017 19:44:36 +0100
budgie-desktop (10.3.1-3) experimental; urgency=medium
* Bug-fix release
* Patches
- 0005-raven-Only-deal-with-a-device-card-when-it-actually-.patch
0006-raven-Mirror-the-last-fix-and-ensure-removed-Things-.patch
Both patches resolve crashes when audio devices such as
headphones are added.
* Packaging Changes:
- remove build-dependency on libc6-dev since this is
automatically pulled in by build-essential
-- David Mohammed <fossfreedom@ubuntu.com> Mon, 03 Jul 2017 23:39:14 +0100
budgie-desktop (10.3.1-2) experimental; urgency=medium
* Bug-fix release
* Patches
- include-menubar-theme.patch
correctly style budgie applets that
use a GTK+ MenuBar
- 0004-wm-Purge-old-backgrounds-from-the-cache.patch
resolve memory leak when desktop wallpaper changes
* Packaging Changes:
- simplified debian/rules
manpages moved to budgie-core.manpages; each executable in
budgie-core now includes a manpage which enables users to
man the exe name and additionally resolves lintian issues.
make target and install methods moved to a more their more
appropriate targets, auto_build and auto_install respectively.
deleted erroneous override_dh_prep
-- David Mohammed <fossfreedom@ubuntu.com> Sat, 10 Jun 2017 00:28:53 +0100
budgie-desktop (10.3.1-1) experimental; urgency=medium
* New upstream release
* Patches
- fortify: to support detecting run-time issues
- show_nm-applet_in_tray.patch: Ubuntu specific patch to display the
network-manager applet
- 0001-imports-natray-Enforce-minimum-size-of-22px.patch
Resolve system tray sizing issues
- 0002-Fix-typo-in-meson.build.patch
Correct development package build
- 0003-Work-around-serious-regressions-in-GTK3.22.13.patch
Add support for GTK+3.22.13 and later
- disable-popover-animations.patch
Panel popover animations cause flashes on some setups. Disabling
the panel popover animation resolves this.
* Packaging Changes:
- meson build dependency
- Add ubuntu specific build rule to enable network-manager to
correctly display in the system tray
- Add man-pages for each executable
- Update Copyright for new source structure
- Update control file to support only GTK+3.18 and later together
meson build dependency
- Update install files due to meson build
- Fix Conf-files lintian warnings
- Add library symbols
- Update watch file:
repo name change
detection of version format x.y as well as x.y.z
upstream maintainer GPG signed key pgpmangle
- Add maintainer GPG signed key
- add libmutter build dependency to GTK+3.24 libmutter-0-dev as
an alternate for libmutter-dev based build environments
- changed standards version to 3.9.8
- Update copyright year for all Ikey Doherty statements
-- David Mohammed <fossfreedom@ubuntu.com> Mon, 17 Apr 2017 09:43:19 +0000
budgie-desktop (10.2.9-3) unstable; urgency=medium
* Bug-fix release
- drop libc6-dev from build-depends since this is pulled in from
build-essential (Closes: #866730)
* Packaging changes:
- update VCS branch details for stable Debian package location
-- David Mohammed <fossfreedom@ubuntu.com> Sat, 01 Jul 2017 00:16:09 +0100
budgie-desktop (10.2.9-2) unstable; urgency=medium
* Bug-fix release
- drop the last two remaining patches since additional
testing with the new versions of gnome-menus and
network-manager now in Stretch makes these patches unnecessary
(Closes: #849595)
-- David Mohammed <fossfreedom@ubuntu.com> Mon, 02 Jan 2017 10:50:32 +0000
budgie-desktop (10.2.9-1) unstable; urgency=medium
* New upstream release
- maintenance release - changelog as per release tag
* Packaging changes:
- Drop all now obsolete previous patches names 000*
- add debian/ubuntu specific patch to stop panel crashes
stop_menu_refresh.diff
- refresh nm-applet.diff patch due to source filelayout change
- add to rules to delete non ISO639 zh-Hant locale
- update debian/copyright due to source filelayout change
- update debian/copyright to fix duplicate "Sam Sam" entry which
was causing lintian messages
- update package for debhelper 10
- update debian/control for new VCS repo name
- add network-manager-gnome as a dependency for budgie-desktop since
- budgie-desktop will crash without this being installed
- remove unneeded lintian override
- updated upstream/metadata to reflect new upstream repo name
-- David Mohammed <fossfreedom@ubuntu.com> Sat, 17 Dec 2016 09:46:49 +0000
budgie-desktop (10.2.8-1) unstable; urgency=medium
* New upstream release
- GTK+3.22 fixes
- new places indicator
- new ibus indicator
- refreshed panel icons
- updated translations
- general fixes for the desktop
* Packaging changes:
- Drop all now obsolete previous patches named 000*
- add new build dependency libibus-1.0-dev
- Updated debian/copyright with revised info for new source files
- add recommendation to install gnome-screensaver; screenlock capability
in budgie-desktop does not work without this package
* add patch upstream patch to allow the ibus applet to compile:
0001-Lower-the-ibus-requirement-to-1.5.11-for-our-Debuntu.patch
* add patch to ensure ibus is connected correctly if already running
0002-wm-ibus-Always-try-to-use-an-existing-ibus-daemon-if.patch
-- David Mohammed <fossfreedom@ubuntu.com> Wed, 19 Oct 2016 19:38:21 +0100
budgie-desktop (10.2.7-3) unstable; urgency=medium
* Drop patch to stop refresh of menus
* replace dropped patch with gsettings override to hide menu headers
- menu crash traced to menu headers; by hiding the menu header
panel does not crash when installing or removing applications
upstream issue #632
* Add upstream patch to stop spamming of log
- 0004-panel-Chain-methods-to-fix-GtkBox-allocation-spam-ev.patch
* Add upstream patch to fix GTK+3.22 theme display
- 0005-Fix-theme-for-GTK-3.22.patch
-- David Mohammed <fossfreedom@ubuntu.com> Sun, 09 Oct 2016 20:32:29 +0100
budgie-desktop (10.2.7-2) unstable; urgency=medium
* Add patch to fix crash
- 0003 - update to upower 0.99API to stop panel crash
-- David Mohammed <fossfreedom@ubuntu.com> Thu, 15 Sep 2016 21:43:21 +0100
budgie-desktop (10.2.7-1) unstable; urgency=medium
* New upstream release
- upstream release 10.2.7
* Add upstream recommended patch
- 0001 - fix icontask lisk spacing after reboot
* add patch to stop budgie-panel menu crash on apt refresh
* add volume patch
- 0002 - fix volume usability for panel indicator
* Packaging changes
- drop patches gtk-link and GNOME 3.22 build since
these are included in the 10.2.7 release
- add new dependency required for build libaccountsservice-dev
- revised debian/copyright
-- David Mohammed <fossfreedom@ubuntu.com> Mon, 12 Sep 2016 20:43:29 +0100
budgie-desktop (10.2.6-2) unstable; urgency=medium
* Bug-fix release
* bug-fix for GNOME 3.22 build (Closes: #837077)
- add upstream maintainer patch to enable build due to mutter api change
* bug-fix for nm-applet dbus-launch (Closes: #836083)
- replace dbus-launch with dbus-run-session to display nm-applet
on budgie-desktop panel
* Packaging changes
- maintainer change of email address
* inc patch to display budgie-icon for lightdm greeter (LP:#1562182)
-- David Mohammed <fossfreedom@ubuntu.com> Sat, 10 Sep 2016 12:36:58 +0100
budgie-desktop (10.2.6-1) unstable; urgency=medium
* Initial Release (Closes: #828765)
-- David Mohammed <foss.freedom@gmail.com> Fri, 15 Jul 2016 15:53:24 +0100
budgie-desktop (10.5~git20190308-0ubuntu1) disco; urgency=medium
* Bug fix release
- Fix broken custom keyboard shortcuts
gnome-3.32-compatibility.patch refreshed with fixes
- Create mkrelease tarball with latest available translations
- Fix for keyboard shortcuts occasionally stop working
(LP: #1818978) cleanup-keygrab.patch
- Add desktop-override.patch to ensure Budgie overrides do not
impact other GNOME based desktop settings
- Fix FTBFS due to incorrect Wnck WindowTypes
- Refresh 0001-Polkit-Correctly-handle-the-user-dismissing-the-auth.patch
due to changes to the gnome-3.32-compatibility.patch
- Start GNOME Calendar in normal window on launch - not maximised
-- David Mohammed <fossfreedom@ubuntu.com> Sat, 09 Mar 2019 23:32:08 +0000
budgie-desktop (10.5~git20190218-1+ubuntu2) disco; urgency=medium
* gnome-3.32-compatibility.patch: Fixes for mutter 3.31.91
-- Iain Lane <iain@orangesquash.org.uk> Wed, 06 Mar 2019 11:26:53 +0000
budgie-desktop (10.5~git20190218-1ubunu1) disco; urgency=medium
* d/p/gnome-3.30-compatability.patch:
- Dropped
* d/p/gnome-3.32-compatability.patch:
- Added patch to support building with libmutter-4
* debian/budgie-core.lintian-overrides:
- Updated override on budgie-wm rpath
-- Marco Trevisan (TreviƱo) <marco@ubuntu.com> Fri, 22 Feb 2019 12:22:09 +0100
budgie-desktop (10.5~git20190218-1) unstable; urgency=medium
* Bug-fix git and Translation release
- archive built from commit f62524110961cbbaf6e9
- Ensure polkit dialog cancel correctly dismisses rather
than hanging, with patch
0001-Polkit-Correctly-handle-the-user-dismissing-the-auth.patch
- refresh gnome-3.30-compatability.patch to build
against upstream tarball
-- David Mohammed <fossfreedom@ubuntu.com> Mon, 18 Feb 2019 12:58:45 +0000
budgie-desktop (10.5~git20190202-1) unstable; urgency=medium
* New upstream git release
- Version bump to reflect upstream budgie-desktop version change
pending upstream git version tag
- archive built from commit 73df80757c8b1781dc23
* Packaging Changes
- update libraven0 symbols for this release
- Copyright: Revised copyright for translations
- Control: Update to build-depends to include libnotify-dev
- Rules: Remove obsolete translation install removal
add optimization build LD_FLAG
-- David Mohammed <fossfreedom@ubuntu.com> Sat, 02 Feb 2019 21:28:58 +0000
budgie-desktop (10.4+git20190110.01.1f8eceaa58e-1) unstable; urgency=medium
* New upstream git release
- Release combines the git master release + gnome-3.30 patch work
- Resolve wishlist to open addition terminal windows (Closes: #897570)
* Bug fixes
- Resolve typo in panel translation (Closes: #880719)
- Add package lightdm suggestion to advise netinst installation
(Closes: #897601)
- Ensure budgie-core installs gnome-settings-daemon so that minimal
installs do not crash due to missing GNOME schemas (LP: #1688607)
* Packaging Changes
- control add new BD libasound2-dev
- copyright update copyright for new release together with year change
- control Bump Standards-Version - fixed symbols Build-Depends-Package
- Drop the following patches since they have been merged upstream
0006-Install-missing-notification-icon-1545.patch
0008-Add-copyright-for-notification-disabled-symbolic.svg.patch
- Drop 0007-Check-if-schema-is-defined-for-volume-slider-changes.patch
since this as not been accepted by upstream
- Merge remaining patches into one gnome-3.30-compatibility.patch
except for the following that has been kept local
1000-Obtain-gsettings-transparency-key-value-before-showi.patch
-- David Mohammed <fossfreedom@ubuntu.com> Thu, 10 Jan 2019 15:45:51 +0000
budgie-desktop (10.4+git20180830.02.f2dbc215fdb-3) unstable; urgency=medium
* Packaging Change
- simplify rules to ensure Debian and Ubuntu build without
desktop-icon support
-- David Mohammed <fossfreedom@ubuntu.com> Mon, 24 Dec 2018 12:06:53 +0000
budgie-desktop (10.4+git20180830.02.f2dbc215fdb-2) unstable; urgency=medium
* Bug-fix release
- Patch 0011-Override-new-mutter-vertical-workspace-layout.patch
Restore horizontal scrolling when switching workspaces
-- David Mohammed <fossfreedom@ubuntu.com> Sun, 07 Oct 2018 21:39:11 +0100
budgie-desktop (10.4+git20180830.02.f2dbc215fdb-1) unstable; urgency=medium
* Bug-fix release
- Add temporary gsettings override to disable animations to ensure
windows do not leave visual artifacts
- Patch 0009-Add-null-guards.patch
Fix occasional workspace switch crashes
- 0010-Ensure-focus-and-button-layout-keys-are-updated.patch
Fix right/left decoration placement and mouse over focus
issues
* Packaging Changes
- debian/rules - remove unneeded separate ubuntu/debian overrides
- regenerate tarball with git submodule GVC pointing to new
gitlab location
https://gitlab.gnome.org/GNOME/libgnome-volume-control.git
-- David Mohammed <fossfreedom@ubuntu.com> Wed, 26 Sep 2018 20:24:39 +0100
budgie-desktop (10.4+git20180830.01.f2dbc215fdb-3) unstable; urgency=medium
* Build desktop icon support with debian/rules update
- for Debian support is switched off (due to Nautilus 3.30
transition) since budgie desktop settings would crash
due to gsettings schema being missing
- for Ubuntu support is switched on since using older
version of Nautilus
-- David Mohammed <fossfreedom@ubuntu.com> Sat, 08 Sep 2018 09:16:56 +0100
budgie-desktop (10.4+git20180830.01.f2dbc215fdb-2) unstable; urgency=medium
* Release to unstable (Closes: #907939)
- copy experimental package + packaging changes as described
* Packaging Changes
- Copyright updates
-- David Mohammed <fossfreedom@ubuntu.com> Wed, 05 Sep 2018 14:59:49 +0100
budgie-desktop (10.4+git20180830.01.f2dbc215fdb-1) experimental; urgency=medium
* Release to experimental (Closes: #907616)
- base on ubuntu cosmic package; this includes a git release of
budgie-desktop that will form the forthcoming v10.5 release.
Includes additional patches to compile for mutter 3.30 plus
current work-in-progress stability patches
* Packaging Changes
- budgie-core.lintian-overrides - revise explanation of the lintian
false positive results with the objdump test to confirm the observations
- bump control Standards-Version; no additional changes required
- libraven0.symbols add two additional symbols for git release
-- David Mohammed <fossfreedom@ubuntu.com> Thu, 30 Aug 2018 21:38:21 +0100
budgie-desktop (10.4+git20180830.01.f2dbc215fdb-0ubuntu1) cosmic; urgency=medium
* Upstream Git release
* drop caffeine patch since now incorporated into git master
* 0003-Make-sure-vapi-workspace-def-use-real-c-header-filen.patch
Fix to resolve alt+tab crashes (LP: #1788721)
* 0004-Vala-0.41.92-does-not-allow-custom-getter-default-va.patch
Add fix for vala compilation issues
* 0005-Point-vapi-cheaders-to-their-upstream-equiv.patch
Ensure vapi matches the correct C header file names
* 0006-Install-missing-notification-icon-1545.patch
Add fallback icon for 'disable all notifications' capability
* 0007-Check-if-schema-is-defined-for-volume-slider-changes.patch
Do not check for gnome sound schema for microphone slider
* 0008-Add-copyright-for-notification-disabled-symbolic.svg.patch
Ensure notification icon has a copyright statement in the source
Packaging Changes:
- rename numeric order for patches to be sequential
- debian/copyright Add copyright for the additional git release icons
-- David Mohammed <fossfreedom@ubuntu.com> Thu, 30 Aug 2018 10:21:26 +0100
budgie-desktop (10.4+git20180820.01.cb35f5b4f1c-0ubuntu1) cosmic; urgency=medium
* Upstream Git release
* Revise mutter3.30 patch to fix focus issues
* Revise caffeine patch to use both fallback and actual theme icons if
available
* 0004-Correct-GNOME-button-layout-schema-path.patch
Fix path to point to a valid schema
* Packaging Changes:
- debian/rules - remove the rename of the caffeine icons
-- David Mohammed <fossfreedom@ubuntu.com> Mon, 20 Aug 2018 21:56:13 +0100
budgie-desktop (10.4+git20180806.02.933f78fc03d-0ubuntu1) cosmic; urgency=medium
[Adam Conrad]
* caffeine-cup-conflicts.patch: Avoid caffeine icon conflicts (LP: #1786107)
[David Mohammed]
* Upstream Git release
* Add patch to support GNOME 3.29.4 mutter
* Packaging Changes:
- Drop existing patches except
0001-Obtain-gsettings-transparency-key-value-before-showi.patch,
- refresh patch 0001*.patch
- debian/control - Bump Standards-Version (4.1.4): no changes required
- Add new patch 0003-Port-to-mutter-3-from-GNOME-3.30.patch
- Create unsigned tarball (dh_make) from upstream Git tree
- debian/control - build-depends on libmutter-3 and libglib2.0 2.57
- debian/control - add new libbudgie-private0 private ABI package
- create lintian-overrides for budgie-core-dev
- update lintian-overrides for budgie-core
-- David Mohammed <fossfreedom@ubuntu.com> Wed, 08 Aug 2018 23:33:56 +0100
budgie-desktop (10.4+git20171031.10.g9f71bb8-1.2ubuntu1) bionic; urgency=medium
* Bug fix release
- add patch to fix system tray black backgrounds
fix_black_tray_backgrounds.patch
-- David Mohammed <fossfreedom@ubuntu.com> Sun, 01 Apr 2018 20:28:30 +0100
budgie-desktop (10.4+git20171031.10.g9f71bb8-1.2) unstable; urgency=medium
* Non-maintainer upload
* Build-Depend on gnome-settings-daemon >= 3.28
-- Jeremy Bicha <jbicha@debian.org> Sat, 17 Mar 2018 11:41:00 -0400
budgie-desktop (10.4+git20171031.10.g9f71bb8-1.1) unstable; urgency=medium
* Non-maintainer upload.
* Upload Ubuntu changes to unstable for mutter transition.
* Depend on gnome-settings-daemon >= 3.26
-- Jeremy Bicha <jbicha@debian.org> Sat, 10 Mar 2018 19:44:52 -0500
budgie-desktop (10.4+git20171031.10.g9f71bb8-1ubuntu4) bionic; urgency=medium
* Mutter 3.28 transition (LP: #1751070)
- Add patch to support GSD 3.27.90 and later
- Add patch to support libmutter-2
* Packaging Changes
- Drop patch gsd.patch
- Add patch 0002-Switch-to-checking-GSD-version-for-the-build-1319.patch
- Add patch libmutter-2.patch
- debian/control - libmutter so-name bump build-depends >= 3.27.91
-- David Mohammed <fossfreedom@ubuntu.com> Sat, 03 Mar 2018 23:32:29 +0000
budgie-desktop (10.4+git20171031.10.g9f71bb8-1ubuntu3) bionic; urgency=medium
* No-change rebuild against latest gnome-desktop3
-- Jeremy Bicha <jbicha@ubuntu.com> Fri, 16 Feb 2018 08:10:38 -0500
budgie-desktop (10.4+git20171031.10.g9f71bb8-1ubuntu2) bionic; urgency=medium
* Bug-fix release
- add patch 0001-Obtain-gsettings-transparency-key-value-before-showi.patch
This patch allows panel transparency gsettings to be overridden
* Packaging Changes
- debian/control: Bump debhelper version to v11
- debian/control: Bump Standards-Version (no changes required)
-- David Mohammed <fossfreedom@ubuntu.com> Tue, 06 Feb 2018 20:15:30 +0000
budgie-desktop (10.4+git20171031.10.g9f71bb8-1ubuntu1) bionic; urgency=medium
* Bug-fix release
- fix autopkgtest build failure; simplify to check that the exe
has been created correctly.
* Packaging Changes
- rename autopkgtest script
-- David Mohammed <fossfreedom@ubuntu.com> Tue, 07 Nov 2017 18:33:47 +0000
budgie-desktop (10.4+git20171031.10.g9f71bb8-1) unstable; urgency=medium
* Bug-fix release
- fix FTBFS due to meson v0.43; budgie desktop (upstream) have
released a signed tarball to resolve since it is not possible
to cherry-pick the appropriate git commit
https://github.com/budgie-desktop/budgie-desktop/issues/1228
* Packaging Changes
- debian/rules: support separate ubuntu and debian gsettings
overrides
- debian/rules: add bindnow hardening
- debian/rules: install Budgie gi-typelib to a multiarch location
- debian/control: Update standards version - add an autopkgtest
- debian/copyright: gvc file-location changed from src to subprojects
- debian/copyright: add Jeremy Bicha to packaging copyright
-- David Mohammed <fossfreedom@ubuntu.com> Tue, 31 Oct 2017 17:46:07 +0000
budgie-desktop (10.4-1.1) unstable; urgency=medium
* Non-maintainer upload.
* debian/control:
- Build-Depend on libmutter-1-dev for GNOME 3.26 transition
- Bump required gnome-settings-daemon to >= 3.25.4
-- Jeremy Bicha <jbicha@debian.org> Fri, 13 Oct 2017 17:52:23 -0400
budgie-desktop (10.4-1) unstable; urgency=medium
* New upstream release
* Packaging Changes
- remove all unneeded triggers
- refresh debian/patches/gsd.patch to merge in upstream changes
- drop all patches (except for gsd.patch) since now dealt with in new
release
- debian/control: standards version 4.0.1
- debian/control: Add build dependency sassc
- debian/control: add minimum meson version to build
- debian/control: Add Build-Depends alternate libmutter-1-dev
for GNOME 3.26 builds
- update library symbols files with 10.4 changes
- Rename binary package gir1.2-budgie-desktop-1.0 to
match the typelib gir1.2-budgie-1.0; To ensure a smooth upgrade,
debian/control updated with Replaces/Breaks for the new package
and budgie-desktop with a restriction for 10.4 and later for the
new package
- Add man-page for new binary budgie-desktop-settings
- Updated debian/copyright for all source files
- Merge changelog for 10.2.9-3 unstable bug-fix release;
10.2.9-3 is a hotfix for unstable released after the 10.3.x
series was uploaded to experimental
- debian/rules: add override_dh_installchangelogs with
debian/changelog-announcement.txt to describe
where to find the upstream announcement and description of changes
- add budgie-core.lintian-override with comment to describe
the rpath lintian error
-- David Mohammed <fossfreedom@ubuntu.com> Fri, 18 Aug 2017 17:48:21 +0100
budgie-desktop (10.3.1-5) unstable; urgency=high
* Bug fix release
- add patch gsd.patch (Closes: #869953)
Where gnome-settings-daemon version is greater than
libmutter, the build of budgie-desktop results in an
invalid gnome-session file. The patch ensures a valid file
is created by checking the version of gnome-settings-daemon
instead of mutter during the build.
* Packaging Changes:
- debian/control: Add build dependency for gnome-settings-daemon-dev
to ensure the patch can determine the version correctly
- debian/control: Fix the Vcs-Git location typo bugie --> budgie
-- David Mohammed <fossfreedom@ubuntu.com> Fri, 18 Aug 2017 00:37:52 +0100
budgie-desktop (10.3.1-4) unstable; urgency=medium
* New release for unstable
Use build 10.3.1-3 for experimental with the following changes:
- enforce gnome-settings-daemon minimum version >= 3.24
- release ensures there is a migration path for
budgie-core to GNOME stack 3.24 (Closes: #869953)
-- David Mohammed <fossfreedom@ubuntu.com> Fri, 28 Jul 2017 19:44:36 +0100
budgie-desktop (10.3.1-3) experimental; urgency=medium
* Bug-fix release
* Patches
- 0005-raven-Only-deal-with-a-device-card-when-it-actually-.patch
0006-raven-Mirror-the-last-fix-and-ensure-removed-Things-.patch
Both patches resolve crashes when audio devices such as
headphones are added.
* Packaging Changes:
- remove build-dependency on libc6-dev since this is
automatically pulled in by build-essential
-- David Mohammed <fossfreedom@ubuntu.com> Mon, 03 Jul 2017 23:39:14 +0100
budgie-desktop (10.3.1-2) experimental; urgency=medium
* Bug-fix release
* Patches
- include-menubar-theme.patch
correctly style budgie applets that
use a GTK+ MenuBar
- 0004-wm-Purge-old-backgrounds-from-the-cache.patch
resolve memory leak when desktop wallpaper changes
* Packaging Changes:
- simplified debian/rules
manpages moved to budgie-core.manpages; each executable in
budgie-core now includes a manpage which enables users to
man the exe name and additionally resolves lintian issues.
make target and install methods moved to a more their more
appropriate targets, auto_build and auto_install respectively.
deleted erroneous override_dh_prep
-- David Mohammed <fossfreedom@ubuntu.com> Sat, 10 Jun 2017 00:28:53 +0100
budgie-desktop (10.3.1-1) experimental; urgency=medium
* New upstream release
* Patches
- fortify: to support detecting run-time issues
- show_nm-applet_in_tray.patch: Ubuntu specific patch to display the
network-manager applet
- 0001-imports-natray-Enforce-minimum-size-of-22px.patch
Resolve system tray sizing issues
- 0002-Fix-typo-in-meson.build.patch
Correct development package build
- 0003-Work-around-serious-regressions-in-GTK3.22.13.patch
Add support for GTK+3.22.13 and later
- disable-popover-animations.patch
Panel popover animations cause flashes on some setups. Disabling
the panel popover animation resolves this.
* Packaging Changes:
- meson build dependency
- Add ubuntu specific build rule to enable network-manager to
correctly display in the system tray
- Add man-pages for each executable
- Update Copyright for new source structure
- Update control file to support only GTK+3.18 and later together
meson build dependency
- Update install files due to meson build
- Fix Conf-files lintian warnings
- Add library symbols
- Update watch file:
repo name change
detection of version format x.y as well as x.y.z
upstream maintainer GPG signed key pgpmangle
- Add maintainer GPG signed key
- add libmutter build dependency to GTK+3.24 libmutter-0-dev as
an alternate for libmutter-dev based build environments
- changed standards version to 3.9.8
- Update copyright year for all Ikey Doherty statements
-- David Mohammed <fossfreedom@ubuntu.com> Mon, 17 Apr 2017 09:43:19 +0000
budgie-desktop (10.2.9-3) unstable; urgency=medium
* Bug-fix release
- drop libc6-dev from build-depends since this is pulled in from
build-essential (Closes: #866730)
* Packaging changes:
- update VCS branch details for stable Debian package location
-- David Mohammed <fossfreedom@ubuntu.com> Sat, 01 Jul 2017 00:16:09 +0100
budgie-desktop (10.2.9-2) unstable; urgency=medium
* Bug-fix release
- drop the last two remaining patches since additional
testing with the new versions of gnome-menus and
network-manager now in Stretch makes these patches unnecessary
(Closes: #849595)
-- David Mohammed <fossfreedom@ubuntu.com> Mon, 02 Jan 2017 10:50:32 +0000
budgie-desktop (10.2.9-1) unstable; urgency=medium
* New upstream release
- maintenance release - changelog as per release tag
* Packaging changes:
- Drop all now obsolete previous patches names 000*
- add debian/ubuntu specific patch to stop panel crashes
stop_menu_refresh.diff
- refresh nm-applet.diff patch due to source filelayout change
- add to rules to delete non ISO639 zh-Hant locale
- update debian/copyright due to source filelayout change
- update debian/copyright to fix duplicate "Sam Sam" entry which
was causing lintian messages
- update package for debhelper 10
- update debian/control for new VCS repo name
- add network-manager-gnome as a dependency for budgie-desktop since
- budgie-desktop will crash without this being installed
- remove unneeded lintian override
- updated upstream/metadata to reflect new upstream repo name
-- David Mohammed <fossfreedom@ubuntu.com> Sat, 17 Dec 2016 09:46:49 +0000
budgie-desktop (10.2.8-1) unstable; urgency=medium
* New upstream release
- GTK+3.22 fixes
- new places indicator
- new ibus indicator
- refreshed panel icons
- updated translations
- general fixes for the desktop
* Packaging changes:
- Drop all now obsolete previous patches named 000*
- add new build dependency libibus-1.0-dev
- Updated debian/copyright with revised info for new source files
- add recommendation to install gnome-screensaver; screenlock capability
in budgie-desktop does not work without this package
* add patch upstream patch to allow the ibus applet to compile:
0001-Lower-the-ibus-requirement-to-1.5.11-for-our-Debuntu.patch
* add patch to ensure ibus is connected correctly if already running
0002-wm-ibus-Always-try-to-use-an-existing-ibus-daemon-if.patch
-- David Mohammed <fossfreedom@ubuntu.com> Wed, 19 Oct 2016 19:38:21 +0100
budgie-desktop (10.2.7-3) unstable; urgency=medium
* Drop patch to stop refresh of menus
* replace dropped patch with gsettings override to hide menu headers
- menu crash traced to menu headers; by hiding the menu header
panel does not crash when installing or removing applications
upstream issue #632
* Add upstream patch to stop spamming of log
- 0004-panel-Chain-methods-to-fix-GtkBox-allocation-spam-ev.patch
* Add upstream patch to fix GTK+3.22 theme display
- 0005-Fix-theme-for-GTK-3.22.patch
-- David Mohammed <fossfreedom@ubuntu.com> Sun, 09 Oct 2016 20:32:29 +0100
budgie-desktop (10.2.7-2) unstable; urgency=medium
* Add patch to fix crash
- 0003 - update to upower 0.99API to stop panel crash
-- David Mohammed <fossfreedom@ubuntu.com> Thu, 15 Sep 2016 21:43:21 +0100
budgie-desktop (10.2.7-1) unstable; urgency=medium
* New upstream release
- upstream release 10.2.7
* Add upstream recommended patch
- 0001 - fix icontask lisk spacing after reboot
* add patch to stop budgie-panel menu crash on apt refresh
* add volume patch
- 0002 - fix volume usability for panel indicator
* Packaging changes
- drop patches gtk-link and GNOME 3.22 build since
these are included in the 10.2.7 release
- add new dependency required for build libaccountsservice-dev
- revised debian/copyright
-- David Mohammed <fossfreedom@ubuntu.com> Mon, 12 Sep 2016 20:43:29 +0100
budgie-desktop (10.2.6-2) unstable; urgency=medium
* Bug-fix release
* bug-fix for GNOME 3.22 build (Closes: #837077)
- add upstream maintainer patch to enable build due to mutter api change
* bug-fix for nm-applet dbus-launch (Closes: #836083)
- replace dbus-launch with dbus-run-session to display nm-applet
on budgie-desktop panel
* Packaging changes
- maintainer change of email address
* inc patch to display budgie-icon for lightdm greeter (LP:#1562182)
-- David Mohammed <fossfreedom@ubuntu.com> Sat, 10 Sep 2016 12:36:58 +0100
budgie-desktop (10.2.6-1) unstable; urgency=medium
* Initial Release (Closes: #828765)
-- David Mohammed <foss.freedom@gmail.com> Fri, 15 Jul 2016 15:53:24 +0100
|