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 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450
|
tmux (3.5a-3) unstable; urgency=medium
[ Kirill Rekhov ]
* d/u/metadata: add 'Documentation' field and update d/control
'Homepage' link field.
[ Romain Francoise ]
* Update Vcs-* fields to point to new location in the Debian group on Salsa.
* Transfer ownership to Sebastien Delafond, who has kindly accepted to
maintain tmux from now on.
-- Romain Francoise <rfrancoise@debian.org> Fri, 07 Feb 2025 18:25:06 +0100
tmux (3.5a-2) unstable; urgency=medium
* Cherry-pick commit 934035db71 from upstream.
* Stop building with utempter support (closes: #1084952).
-- Romain Francoise <rfrancoise@debian.org> Tue, 15 Oct 2024 22:09:35 +0200
tmux (3.5a-1) unstable; urgency=medium
* New upstream bugfix release.
-- Romain Francoise <rfrancoise@debian.org> Sat, 05 Oct 2024 10:36:25 +0200
tmux (3.5-2) unstable; urgency=low
* Include upstream regression fixes from the `tmux-3.5a' hotfix branch.
-- Romain Francoise <rfrancoise@debian.org> Fri, 04 Oct 2024 22:25:21 +0200
tmux (3.5-1) unstable; urgency=low
* New upstream release.
* Merge packaging changes from experimental.
-- Romain Francoise <rfrancoise@debian.org> Sat, 28 Sep 2024 11:19:20 +0200
tmux (3.5~git20240823-2) experimental; urgency=medium
* Cherry-pick commit 6e9a914014 on top of previous snapshot to fix
broken layout key bindings.
-- Romain Francoise <rfrancoise@debian.org> Fri, 23 Aug 2024 15:15:58 +0200
tmux (3.5~git20240823-1) experimental; urgency=medium
* New upstream snapshot, from Git commit 7990e5fa8f.
* Set branch to `experimental' in Vcs-Git.
-- Romain Francoise <rfrancoise@debian.org> Fri, 23 Aug 2024 10:10:36 +0200
tmux (3.5~git20240720-1) experimental; urgency=medium
* New upstream snapshot, from Git commit 3c2621b41b.
* Build with jemalloc memory allocator on Linux architectures.
* Add new autopkgtest checking that tmux is built against jemalloc.
-- Romain Francoise <rfrancoise@debian.org> Sat, 20 Jul 2024 10:55:10 +0200
tmux (3.4-8) unstable; urgency=medium
* Cherry-pick commit 2ac0faf119 from upstream.
* Add missing Origin field to db1665868f patch.
-- Romain Francoise <rfrancoise@debian.org> Fri, 23 Aug 2024 16:05:05 +0200
tmux (3.4-7) unstable; urgency=medium
* Cherry-pick commit db1665868f from upstream to fix memory usage of
grid data (closes: #1073981).
-- Romain Francoise <rfrancoise@debian.org> Mon, 24 Jun 2024 21:03:23 +0200
tmux (3.4-6) unstable; urgency=medium
[ Aurelien Jarno ]
* Drop kfreebsd-* specific build-depends, the ports have been removed.
[ Romain Francoise ]
* Drop kFreeBSD-specific parts of debian/patches/platform-quirks.diff.
* Cherry-pick commit 692ce59bce to fix wrong escaping of '$'.
* Add more patch metadata to upstream patches.
-- Romain Francoise <rfrancoise@debian.org> Sun, 09 Jun 2024 13:08:36 +0200
tmux (3.4-5) unstable; urgency=medium
* Cherry-pick more upstream fixes:
+ 3823fa2c57: start systemd scope with SendSIGHUP=yes to prevent hang
on system shutdown.
+ 424f13fe13: don't crash server when calling switch-client from
pane-died hook.
* Revert upstream commit 43e5e80343 which breaks search of wrapped lines.
* Version build-dependency on libncurses-dev to ensure we pick up updated
symbol versions for ncurses 6.5.
-- Romain Francoise <rfrancoise@debian.org> Thu, 09 May 2024 17:43:16 +0200
tmux (3.4-4) unstable; urgency=medium
* Add tmpfiles.d configuration file to prevent automatic removal of tmux
user directories under /tmp (closes: #1070724).
* Update metadata on upstream patches.
* Bump Standards-Version to 4.7.0.
-- Romain Francoise <rfrancoise@debian.org> Wed, 08 May 2024 18:46:48 +0200
tmux (3.4-3) unstable; urgency=medium
* Cherry-pick commit aa17f0e0c1 from upstream to fix crash on invalid
Sixel input.
* Re-enable Sixel support.
-- Romain Francoise <rfrancoise@debian.org> Sat, 23 Mar 2024 17:07:31 +0100
tmux (3.4-2) unstable; urgency=medium
[ Sven Joachim ]
* Only enable systemd support on Linux architectures.
[ Romain Francoise ]
* Disable Sixel support for now due to possible server crash on invalid
input (GitHub issue #3839).
* Cherry-pick commit bd29a48b56 from upstream to fix split-window -p
flag confusion.
* Cherry-pick changes from upstream PR #3860 fixing a use-after-free
when manipulating zoomed windows.
* Drop obsolete build-depends (lintian warning).
-- Romain Francoise <rfrancoise@debian.org> Sat, 09 Mar 2024 12:16:21 +0100
tmux (3.4-1) unstable; urgency=low
* New upstream release (closes: #1063838).
+ Fixes crash when pasting into dead panes (closes: #1063237).
* Import packaging from experimental, enabling support for Sixel,
systemd integration, and management of /etc/shells using dpkg
triggers.
-- Romain Francoise <rfrancoise@debian.org> Tue, 13 Feb 2024 18:42:59 +0100
tmux (3.4~git20240106-1) experimental; urgency=medium
* New upstream snapshot, from Git commit e809c2ec35.
-- Romain Francoise <rfrancoise@debian.org> Sat, 06 Jan 2024 16:55:56 +0100
tmux (3.4~git20230924-1) experimental; urgency=medium
* New upstream snapshot, from Git commit b777780720.
* Enable Sixel support.
-- Romain Francoise <rfrancoise@debian.org> Sun, 24 Sep 2023 13:12:42 +0200
tmux (3.4~git20230722-1) experimental; urgency=medium
* New upstream snapshot, from Git commit fda3937734.
* Apply changes by Helmut Grohne <helmut@subdivi.de> to manage
/etc/shells using dpkg triggers (closes: #1023315), avoiding
issues related to remove/reinstall cycles (closes: #939889).
* Drop now-obsolete debian/preinst.
* Silence lintian warning about Tg macro, which is from mandoc
1.14.6 and is not a typo.
-- Romain Francoise <rfrancoise@debian.org> Sat, 22 Jul 2023 23:22:31 +0200
tmux (3.4~git20230617-1) experimental; urgency=medium
* New upstream snapshot, from Git commit f41c536ff3.
* Enable systemd integration (for socket activation and cgroups support).
* Build-depend on libncurses-dev, not libncurses5-dev.
* Bump Standards-Version to 4.6.2.
-- Romain Francoise <rfrancoise@debian.org> Sat, 17 Jun 2023 12:11:52 +0200
tmux (3.3a-5) unstable; urgency=medium
* Fix backport of commit bf636d9575 which breaks OSC 52 clipboard
access, with thanks to Claudio Leite (LP: #2040080).
-- Romain Francoise <rfrancoise@debian.org> Sun, 22 Oct 2023 16:34:17 +0200
tmux (3.3a-4) unstable; urgency=medium
* Backport upstream changes related to ncurses tparm handling.
With thanks to Sven Joachim <svenjoac@gmx.de>, who had independently
also worked on this backport (closes: #1038269).
* Build-depend on libncurses-dev, not libncurses5-dev.
* Bump Standards-Version to 4.6.2.
-- Romain Francoise <rfrancoise@debian.org> Sat, 17 Jun 2023 17:08:17 +0200
tmux (3.3a-3) unstable; urgency=medium
* debian/source/lintian-overrides: Update renamed lintian tag names in
lintian overrides.
* debian/copyright: Update copyright year.
* debian/watch: use Github tags page instead of releases.
-- Romain Francoise <rfrancoise@debian.org> Mon, 31 Oct 2022 17:55:13 +0100
tmux (3.3a-2) unstable; urgency=medium
[ Pino Toscano ]
* Cherry-pick commit 19344efa78 from upstream to fix the fallback
implementation of getpeereid() (used on Hurd).
* Drop the local defines for MAXPATHLEN & MAXHOSTNAMELEN for platforms that
do not have them (i.e. Hurd), as they are not used anymore in generic code.
[ Gioele Barabucci ]
* debian/postinst: Remove test for ancient version.
-- Romain Francoise <rfrancoise@debian.org> Mon, 29 Aug 2022 22:53:06 +0200
tmux (3.3a-1) unstable; urgency=medium
* New upstream bugfix release.
-- Romain Francoise <rfrancoise@debian.org> Thu, 09 Jun 2022 20:04:26 +0200
tmux (3.3-2) unstable; urgency=medium
* Cherry-pick fixes from upstream Git:
+ 0f6227f46b: don't silently delete or rename the most recent buffer
+ 18838fbc87: fix crash when using `run-shell' in config file
+ 3edda3c5e7: do not unintentionally turn off all mouse mode
* Remove obsolete field Name from debian/upstream/metadata.
* Upload to unstable.
-- Romain Francoise <rfrancoise@debian.org> Sat, 04 Jun 2022 17:08:29 +0200
tmux (3.3-1) experimental; urgency=medium
* New upstream release, fixes size setting when detached (LP: #1976110).
* Drop all upstream patches.
* Bump Standards-Version to 4.6.1.
* debian/watch: Mangle Debian version rather than upstream's.
-- Romain Francoise <rfrancoise@debian.org> Wed, 01 Jun 2022 22:40:47 +0200
tmux (3.3~rc1-2) experimental; urgency=medium
* Add my own patch from GitHub PR #2899 to fix cross-compilation again.
* debian/watch: Add mangle rules to correctly handle -rc releases (which
we number -rc1 in Debian).
* Set branch to `experimental' in Vcs-Git.
-- Romain Francoise <rfrancoise@debian.org> Sun, 19 Sep 2021 12:50:47 +0200
tmux (3.3~rc1-1) experimental; urgency=medium
* New upstream release candidate (3.3-rc).
* Update debian/copyright (closes: #904407).
-- Romain Francoise <rfrancoise@debian.org> Sat, 18 Sep 2021 12:35:01 +0200
tmux (3.2a-4) unstable; urgency=medium
* Cherry-pick commit b1a8c0fe022e from upstream to fix cross-compilation
(closes: #992949).
* Switch to debhelper compat level 13.
* Update watch file to version 4; no changes.
* Set `Rules-Requires-Root' to "no".
* Bump Standards-Version to 4.6.0.
-- Romain Francoise <rfrancoise@debian.org> Sun, 12 Sep 2021 00:18:18 +0200
tmux (3.2a-3) unstable; urgency=medium
* Upload to unstable.
-- Romain Francoise <rfrancoise@debian.org> Sun, 15 Aug 2021 12:43:08 +0200
tmux (3.2a-2) experimental; urgency=medium
* Cherry-pick upstream commit 32f2d9d089ce (closes: #990215).
-- Romain Francoise <rfrancoise@debian.org> Sat, 10 Jul 2021 19:16:19 +0200
tmux (3.2a-1) experimental; urgency=medium
* New upstream release.
* Remove obsolete debian/maintscript stanza, thanks to the Janitor bot.
* Add basic autopkgtest test suite, thanks to Athos Ribeiro (LP: #1679410).
-- Romain Francoise <rfrancoise@debian.org> Thu, 10 Jun 2021 12:10:55 +0200
tmux (3.2~rc4-1) experimental; urgency=medium
* New upstream release candidate.
* Bump Standards-Version to 4.5.1.
-- Romain Francoise <rfrancoise@debian.org> Thu, 04 Mar 2021 20:14:01 +0100
tmux (3.2~rc3-1) experimental; urgency=medium
* New upstream release candidate.
-- Romain Francoise <rfrancoise@debian.org> Sun, 08 Nov 2020 21:37:02 +0100
tmux (3.2~rc2-1) experimental; urgency=medium
* New upstream release candidate.
* The specified target window for 'new-window -t' no longer needs to
exist, reverting to pre-3.0 behavior (closes: #944778).
-- Romain Francoise <rfrancoise@debian.org> Fri, 24 Jul 2020 13:22:01 +0200
tmux (3.2~rc1-1) experimental; urgency=medium
* New upstream release candidate.
-- Romain Francoise <rfrancoise@debian.org> Wed, 24 Jun 2020 11:04:14 +0200
tmux (3.1c-1) unstable; urgency=medium
* New upstream release.
* Drop security fix patch included upstream.
* Set upstream metadata fields: Bug-Submit.
-- Romain Francoise <rfrancoise@debian.org> Sun, 01 Nov 2020 13:45:43 +0100
tmux (3.1b-2) unstable; urgency=high
* Cherry-pick upstream commit a868bacb46 to fix a stack overflow in CSI
parsing (corresponding to OpenBSD 6.8 errata 003).
-- Romain Francoise <rfrancoise@debian.org> Fri, 30 Oct 2020 12:39:34 +0100
tmux (3.1b-1) unstable; urgency=medium
* New upstream bugfix release.
* Clarify 3.1~rc1-1 NEWS entry about protocol change (closes: #959698).
-- Romain Francoise <rfrancoise@debian.org> Mon, 04 May 2020 19:18:57 +0200
tmux (3.1a-1) unstable; urgency=medium
* New upstream bugfix release.
* Cherry-pick commit 6a33a12798 from the upcoming 3.1b bugfix release.
-- Romain Francoise <rfrancoise@debian.org> Sat, 02 May 2020 14:37:43 +0200
tmux (3.1-1) unstable; urgency=medium
* New upstream release (with no code changes compared to RC4).
* debian/rules: Remove LDFLAGS settings for --as-needed, no longer
required in bullseye.
-- Romain Francoise <rfrancoise@debian.org> Sun, 26 Apr 2020 21:14:52 +0200
tmux (3.1~rc4-1) experimental; urgency=medium
* New upstream release candidate.
-- Romain Francoise <rfrancoise@debian.org> Sun, 12 Apr 2020 19:53:23 +0200
tmux (3.1~rc3-1) experimental; urgency=medium
* New upstream release candidate.
-- Romain Francoise <rfrancoise@debian.org> Mon, 23 Mar 2020 19:47:56 +0100
tmux (3.1~rc2-1) experimental; urgency=medium
* New upstream release candidate.
-- Romain Francoise <rfrancoise@debian.org> Sun, 15 Mar 2020 18:49:41 +0100
tmux (3.1~rc1-1) experimental; urgency=medium
* New upstream release candidate.
* Bump Standards-Version to 4.5.0.
-- Romain Francoise <rfrancoise@debian.org> Tue, 11 Feb 2020 21:07:09 +0100
tmux (3.0a-2) unstable; urgency=medium
* Minor packaging fixes courtesy of the Janitor bot and lintian-brush:
+ Set debhelper-compat version in Build-Depends.
+ Update renamed lintian tag names in lintian overrides.
+ Set upstream metadata fields: Name (from ./configure), Repository,
Repository-Browse.
+ Set upstream metadata fields: Bug-Database.
* Switch to debhelper compatibility level 12.
-- Romain Francoise <rfrancoise@debian.org> Tue, 31 Dec 2019 19:45:11 +0100
tmux (3.0a-1) unstable; urgency=medium
* New upstream release.
-- Romain Francoise <rfrancoise@debian.org> Tue, 03 Dec 2019 21:49:28 +0100
tmux (3.0-1) unstable; urgency=medium
* New upstream release.
* Bump Standards-Version to 4.4.1.
* Upload to unstable.
-- Romain Francoise <rfrancoise@debian.org> Tue, 26 Nov 2019 22:35:52 +0100
tmux (3.0~rc5-2) experimental; urgency=medium
* Add Build-Depends on bison (closes: #943648).
-- Romain Francoise <rfrancoise@debian.org> Sun, 27 Oct 2019 19:36:11 +0100
tmux (3.0~rc5-1) experimental; urgency=medium
* New upstream release candidate.
-- Romain Francoise <rfrancoise@debian.org> Sun, 06 Oct 2019 18:18:36 +0200
tmux (3.0~rc4-1) experimental; urgency=medium
* New upstream release candidate.
-- Romain Francoise <rfrancoise@debian.org> Thu, 01 Aug 2019 22:14:18 +0200
tmux (3.0~rc3-1) experimental; urgency=medium
* New upstream release candidate (from 3.0-rc branch, commit 5a501a8ae2).
-- Romain Francoise <rfrancoise@debian.org> Sat, 13 Jul 2019 11:57:41 +0200
tmux (2.9a-3) unstable; urgency=medium
* Cherry-pick commit 26f274011096 from upstream to fix issues with
horizontal splits in xterm 348.
-- Romain Francoise <rfrancoise@debian.org> Mon, 05 Aug 2019 12:50:34 +0200
tmux (2.9a-2) unstable; urgency=medium
* Cherry-pick commit 38b8a198bac6 from upstream to fix server crash with
some layouts.
* Bump Standards-Version to 4.4.0.
* Upload to unstable.
-- Romain Francoise <rfrancoise@debian.org> Fri, 12 Jul 2019 23:10:46 +0200
tmux (2.9a-1) experimental; urgency=medium
* New upstream release.
-- Romain Francoise <rfrancoise@debian.org> Fri, 03 May 2019 22:12:30 +0200
tmux (2.9-1) experimental; urgency=medium
* New upstream release.
-- Romain Francoise <rfrancoise@debian.org> Thu, 25 Apr 2019 13:25:25 +0200
tmux (2.8-3) unstable; urgency=medium
* Merge GNU/kFreeBSD changes from James Clarke (via upstream).
* Bump Standards-Version to 4.3.0.
-- Romain Francoise <rfrancoise@debian.org> Sun, 10 Feb 2019 17:14:02 +0100
tmux (2.8-2) unstable; urgency=medium
* Cherry-pick commit 3a7b9d5735 from upstream to fix handling of PWD
when it doesn't match the actual working directory (closes: #914816).
* Stop overriding 'package-lacks-versioned-build-depends-on-debhelper 9'.
* Bump Standards-Version to 4.2.1.
-- Romain Francoise <rfrancoise@debian.org> Sat, 01 Dec 2018 22:16:15 +0100
tmux (2.8-1) unstable; urgency=medium
* New upstream release.
-- Romain Francoise <rfrancoise@debian.org> Thu, 18 Oct 2018 22:10:02 +0200
tmux (2.7-1) unstable; urgency=medium
* New upstream release (identical to 8a81993ae1).
* Upload to unstable.
-- Romain Francoise <rfrancoise@debian.org> Fri, 13 Apr 2018 23:48:11 +0200
tmux (2.7~git20180331-1) experimental; urgency=medium
* New upstream snapshot, from Git commit 8a81993ae1.
* Switch to debhelper compatibility level 11.
* Bump Standards-Version to 4.1.3.
-- Romain Francoise <rfrancoise@debian.org> Sat, 31 Mar 2018 21:47:17 +0200
tmux (2.6-3) unstable; urgency=medium
* Use new URLs on salsa.debian.org for Vcs-* fields.
-- Romain Francoise <rfrancoise@debian.org> Sun, 31 Dec 2017 15:34:49 +0100
tmux (2.6-2) unstable; urgency=medium
* debian/docs: Remove FAQ, no longer shipped upstream (closes: #883117).
* Bump Standards-Version to 4.1.2.
-- Romain Francoise <rfrancoise@debian.org> Sun, 31 Dec 2017 13:38:35 +0100
tmux (2.6-1) unstable; urgency=medium
* New upstream release (with a single fix compared to RC3).
-- Romain Francoise <rfrancoise@debian.org> Fri, 06 Oct 2017 19:07:13 +0200
tmux (2.6~rc3-1) unstable; urgency=medium
* New upstream release candidate (closes: #875444).
-- Romain Francoise <rfrancoise@debian.org> Mon, 11 Sep 2017 19:17:12 +0200
tmux (2.6~rc2-1) unstable; urgency=medium
* New upstream release candidate.
* Bump Standards-Version to 4.1.0.
* Upload to unstable.
-- Romain Francoise <rfrancoise@debian.org> Sun, 10 Sep 2017 21:33:18 +0200
tmux (2.6~git20170902-1) experimental; urgency=medium
* New upstream snapshot, from Git commit e941e532fa and roughly
equivalent to 2.6-rc1 (closes: #865756).
-- Romain Francoise <rfrancoise@debian.org> Sat, 02 Sep 2017 10:24:23 +0200
tmux (2.5-3) unstable; urgency=medium
* Cherry-pick commit 42285ac989 from upstream to try C.UTF-8 in addition
to en_US.UTF-8 at startup, and drop dependency on locales added in
2.4~git20161101-1 (see #841755).
* Bump Standards-Version to 4.0.0.
-- Romain Francoise <rfrancoise@debian.org> Sat, 08 Jul 2017 16:36:41 +0200
tmux (2.5-2) unstable; urgency=medium
* Upload to unstable.
-- Romain Francoise <rfrancoise@debian.org> Sun, 18 Jun 2017 10:59:40 +0200
tmux (2.5-1) experimental; urgency=medium
* New upstream release (no changes compared to RC2).
-- Romain Francoise <rfrancoise@debian.org> Tue, 30 May 2017 22:24:21 +0200
tmux (2.5~rc2-1) experimental; urgency=medium
* New upstream release candidate.
-- Romain Francoise <rfrancoise@debian.org> Sat, 13 May 2017 17:00:34 +0200
tmux (2.4-1) experimental; urgency=medium
* New upstream release.
-- Romain Francoise <rfrancoise@debian.org> Thu, 20 Apr 2017 20:03:02 +0200
tmux (2.4~git20170318-1) experimental; urgency=medium
* New upstream snapshot, from Git commit 4eec3270ec.
-- Romain Francoise <rfrancoise@debian.org> Sat, 18 Mar 2017 12:08:11 +0100
tmux (2.4~git20170311-1) experimental; urgency=medium
* New upstream snapshot, from Git commit 266e662fae.
-- Romain Francoise <rfrancoise@debian.org> Sat, 11 Mar 2017 18:20:02 +0100
tmux (2.4~git20170226-1) experimental; urgency=medium
* New upstream snapshot, from Git commit 14dc2acc25.
-- Romain Francoise <rfrancoise@debian.org> Sun, 26 Feb 2017 15:50:55 +0100
tmux (2.4~git20170211-1) experimental; urgency=medium
* New upstream snapshot, from Git commit c75cced07d.
-- Romain Francoise <rfrancoise@debian.org> Sat, 11 Feb 2017 17:40:00 +0100
tmux (2.4~git20170115-1) experimental; urgency=medium
* New upstream snapshot, from Git commit 4f077fe62c.
+ Shell globs are now supported in source-file (closes: #629620).
* Explicitly enable utempter support.
* Adjust to lintian override rename, add new override for debian/watch
signature check (upstream doesn't provide signatures).
* Switch Vcs-Git URL to the https one.
-- Romain Francoise <rfrancoise@debian.org> Sun, 15 Jan 2017 12:28:55 +0100
tmux (2.4~git20161210-1) experimental; urgency=medium
* New upstream snapshot, from Git commit a64b7cfe5d.
-- Romain Francoise <rfrancoise@debian.org> Sat, 10 Dec 2016 11:00:03 +0100
tmux (2.4~git20161126-1) experimental; urgency=medium
* New upstream snapshot, from Git commit 2864a31311.
-- Romain Francoise <rfrancoise@debian.org> Sat, 26 Nov 2016 17:15:56 +0100
tmux (2.4~git20161101-1) experimental; urgency=medium
* New upstream snapshot, from Git commit 5da94182ae.
* tmux requires a UTF-8 locale to be used, so add dependency on locales
to make this more explicit (closes: #841755).
-- Romain Francoise <rfrancoise@debian.org> Tue, 01 Nov 2016 16:10:55 +0100
tmux (2.4~git20161023-1) experimental; urgency=medium
* New upstream snapshot, from Git commit 5f9ba2f223.
-- Romain Francoise <rfrancoise@debian.org> Sun, 23 Oct 2016 17:59:34 +0200
tmux (2.4~git20161016-1) experimental; urgency=medium
* New upstream snapshot, from Git commit 3d8efdf310.
-- Romain Francoise <rfrancoise@debian.org> Sun, 16 Oct 2016 17:57:08 +0200
tmux (2.3-4) unstable; urgency=medium
* Cherry pick one additional fix from upstream Git:
+ c2f88373e7: store the right size in the pipe offset for pipe-pane
-- Romain Francoise <rfrancoise@debian.org> Sun, 23 Oct 2016 12:48:32 +0200
tmux (2.3-3) unstable; urgency=medium
* Cherry-pick fixes from upstream Git:
+ 4160df4ca4: redraw selection when redrawing whole pane
+ e0add119ea: do not draw pane status if pane is not visible
-- Romain Francoise <rfrancoise@debian.org> Fri, 14 Oct 2016 22:04:41 +0200
tmux (2.3-2) unstable; urgency=low
* Cherry-pick fixes from upstream Git:
+ 30086e504c: remove wrong optimization in screen_write_copy
+ 44449b305b: don't crash on long prompts in window_copy_write_line
+ 48dd250af1: handle NULL window or session for user options
+ 1db6d6fea6: pass file/line to new if-shell commands
+ b8f2dd8237: fix redraw of pane status lines
-- Romain Francoise <rfrancoise@debian.org> Sun, 09 Oct 2016 19:44:35 +0200
tmux (2.3-1) unstable; urgency=medium
* New upstream release.
-- Romain Francoise <rfrancoise@debian.org> Sat, 01 Oct 2016 12:00:58 +0200
tmux (2.3~git20160916-1) experimental; urgency=medium
* New upstream snapshot, from Git commit 895f1d93d5.
-- Romain Francoise <rfrancoise@debian.org> Fri, 16 Sep 2016 19:22:25 +0200
tmux (2.3~git20160903-1) experimental; urgency=medium
* New upstream snapshot, from Git commit 999c1c771b.
-- Romain Francoise <rfrancoise@debian.org> Sat, 03 Sep 2016 16:16:49 +0200
tmux (2.3~git20160707-1) experimental; urgency=medium
* New upstream snapshot, from Git commit 2d843b5021.
-- Romain Francoise <rfrancoise@debian.org> Thu, 07 Jul 2016 19:29:50 +0200
tmux (2.3~git20160529-1) experimental; urgency=medium
* New upstream snapshot, from Git commit 7a2fed494b.
-- Romain Francoise <rfrancoise@debian.org> Sun, 29 May 2016 19:42:51 +0200
tmux (2.3~git20160512-1) experimental; urgency=medium
* New upstream snapshot, from Git commit 6cb74f4b7d (closes: #823527).
-- Romain Francoise <rfrancoise@debian.org> Thu, 12 May 2016 19:36:29 +0200
tmux (2.3~git20160506-1) experimental; urgency=medium
* New upstream snapshot, from Git commit fe4e9470bb.
* Bump Standards-Version to 3.9.8.
-- Romain Francoise <rfrancoise@debian.org> Fri, 06 May 2016 17:20:30 +0200
tmux (2.2-3) unstable; urgency=medium
* Cherry-pick commit 7411f21c5f from upstream to restore the correct
libevent configuration (2.2 regression).
-- Romain Francoise <rfrancoise@debian.org> Thu, 02 Jun 2016 20:09:38 +0200
tmux (2.2-2) unstable; urgency=medium
* Cherry-pick commit 373b13b240 from upstream to fix window flags with
`monitor-activity' enabled (closes: #823527).
-- Romain Francoise <rfrancoise@debian.org> Thu, 12 May 2016 19:50:13 +0200
tmux (2.2-1) unstable; urgency=medium
* New upstream release.
-- Romain Francoise <rfrancoise@debian.org> Mon, 18 Apr 2016 20:18:16 +0200
tmux (2.2~git20160406-1) experimental; urgency=medium
* New upstream snapshot, from Git commit ad2532c3f4.
* Bump Standards-Version to 3.9.7.
-- Romain Francoise <rfrancoise@debian.org> Wed, 06 Apr 2016 19:34:28 +0200
tmux (2.2~git20160306-1) experimental; urgency=medium
* New upstream snapshot, from Git commit 5fc5c03dad.
-- Romain Francoise <rfrancoise@debian.org> Sun, 06 Mar 2016 18:58:34 +0100
tmux (2.2~git20160206-1) experimental; urgency=medium
* New upstream snapshot, from Git commit 7669cfb330.
* debian/docs: use new merged example configuration file, the examples
directory has been removed upstream (closes: #644366, #648867).
-- Romain Francoise <rfrancoise@debian.org> Sat, 06 Feb 2016 19:10:40 +0100
tmux (2.1-3) unstable; urgency=medium
* Cherry-pick fixes from upstream Git:
+ 374e273df5: make paste detection trigger after two characters
+ 933929cd62: fix a memory leak in if-shell -F
-- Romain Francoise <rfrancoise@debian.org> Sat, 21 Nov 2015 19:47:32 +0100
tmux (2.1-2) unstable; urgency=medium
* Cherry-pick fixes from upstream Git:
+ 8c8cddbe02: don't cache key table when looking up keys (closes: #803393)
+ ddbc4a0f6c: add back default binding for mouse wheel up
+ a05c27a7e1: unzoom before select-pane -LRUD
+ 2e2b8a95bd: skip mouse sequences when looking for pastes
+ 3faa51a0ca: pass output from jobs through format_expand() again
+ 380a1ea8ef: add back bindings to change window with mouse wheel on
status line
+ 640c6fdd5f: pass mouse events to the correct pane
+ 3fc001d0a2: scroll the correct pane from mouse bindings
+ 5577535891: pass through right click to the application
-- Romain Francoise <rfrancoise@debian.org> Thu, 05 Nov 2015 18:53:44 +0100
tmux (2.1-1) unstable; urgency=medium
* New upstream release.
-- Romain Francoise <rfrancoise@debian.org> Sun, 18 Oct 2015 20:06:36 +0200
tmux (2.1~git20151017-1) experimental; urgency=medium
* New upstream snapshot, from Git commit a204595e4c.
-- Romain Francoise <rfrancoise@debian.org> Sat, 17 Oct 2015 19:07:51 +0200
tmux (2.1~git20150920-1) experimental; urgency=medium
* New upstream snapshot, from Git commit 983357603a.
* Sessions and windows can now be selected exactly with a '=' prefix
(closes: #718559).
* Adjust Homepage control field and watch file; tmux is now hosted on Github.
* Use cgit URL for Vcs-Browser.
-- Romain Francoise <rfrancoise@debian.org> Sun, 20 Sep 2015 11:22:43 +0200
tmux (2.0-3) unstable; urgency=medium
* Cherry-pick more fixes from upstream Git:
+ f60d88cd24: use standout instead of italics for SGR3, like screen does
(closes: #756353)
+ a0cfbf8522: set up client signal handler earlier to avoid zombies
+ 8c0867fce0: use-after-free in paste/window-copy
+ 70f783ff56: doc fix for set-titles-string
-- Romain Francoise <rfrancoise@debian.org> Sat, 23 May 2015 12:40:52 +0200
tmux (2.0-2) unstable; urgency=medium
* Cherry-pick 2c53b23d59 from upstream Git to fix missing cursor in Emacs
when running in a nested session.
* Update lintian-manpage-hyphen.diff against new upstream.
* Remove Karl Ferdinand Ebert from Uploaders, with his permission.
-- Romain Francoise <rfrancoise@debian.org> Thu, 21 May 2015 20:21:33 +0200
tmux (2.0-1) unstable; urgency=medium
* New upstream release.
* Drop all upstream patches.
* Enable libutempter support.
* Bump Standards-Version to 3.9.6.
-- Romain Francoise <rfrancoise@debian.org> Sat, 09 May 2015 18:25:50 +0200
tmux (1.9-6) unstable; urgency=medium
* Cherry-pick fixes from upstream Git:
+ 189017c078: memory leak in find-window
+ 8e4ae12b4d: locking was broken in move to lockf, move back to flock
+ f117c7d94a: crash if a client is killed while suspended
-- Romain Francoise <rfrancoise@debian.org> Thu, 14 Aug 2014 21:31:23 +0200
tmux (1.9-5) unstable; urgency=medium
* Cherry-pick 8880bdb67c from upstream Git to fix escaping of '#' in
status formats (closes: #747133).
-- Romain Francoise <rfrancoise@debian.org> Tue, 13 May 2014 22:41:09 +0200
tmux (1.9-4) unstable; urgency=low
* Cherry-pick fixes from upstream Git:
+ 030437e33e: server crash due to wrong snprintf() usage
+ 0d14f81d76: change osdep_get_cwd() logic on Linux to also try sid
+ 0f0db07c49: incorrect handling of 4-byte UTF-8 sequences
+ 57f2de093a: use O_TRUNC in save-buffer
+ 806cc11008: don't leak two fds on subjob fork() failure
-- Romain Francoise <rfrancoise@debian.org> Sat, 26 Apr 2014 18:05:47 +0200
tmux (1.9-3) unstable; urgency=low
* Cherry-pick fixes from upstream Git:
+ 0bb9d51965: crash at startup with MALLOC_CHECK_=2
+ 78e783e786: server crash with swap-pane
* Upload to unstable.
-- Romain Francoise <rfrancoise@debian.org> Thu, 06 Mar 2014 20:32:38 +0100
tmux (1.9-2) experimental; urgency=low
* Add urgent fixes from upstream version 1.9a:
+ 315d45a0eb: crash in last active pane handling
+ c7f3599ebc: -fg/-bg/-style broken on 256-color terminals
-- Romain Francoise <rfrancoise@debian.org> Sun, 23 Feb 2014 00:45:15 +0100
tmux (1.9-1) experimental; urgency=low
* New upstream release.
* Warn about protocol change in debian/NEWS.
* Bump Standards-Version to 3.9.5.
-- Romain Francoise <rfrancoise@debian.org> Sat, 22 Feb 2014 17:49:33 +0100
tmux (1.8-5) unstable; urgency=low
* Cherry-pick fixes from upstream Git:
+ 5532766b19: fix last after movew -r
+ c103f2fbcb: consistently clear window flags for all sessions
+ 21bca549d3: consider only visible panes for resize-pane-mouse
-- Romain Francoise <rfrancoise@debian.org> Sun, 13 Oct 2013 12:48:38 +0200
tmux (1.8-4) unstable; urgency=low
* Cherry-pick fixes from upstream Git:
+ 9fb9f78e43: UTF-8 mangled in send-keys
+ 965edf8a5c: crash when window in a grouped session is killed
+ b0b5cad496: memory leak when grouped sessions are destroyed
+ 27364345bf: avoid processing NULL client formats
+ 939f796f08: memory leak with repeated formats
-- Romain Francoise <rfrancoise@debian.org> Fri, 02 Aug 2013 19:39:29 +0200
tmux (1.8-3) unstable; urgency=low
* Cherry-pick additional fixes from upstream Git:
+ 772d61f3ed: reset focus reporting on hard reset
+ 25c430b1cd: off-by-one buffer overflow in cmd_print()
+ 88a4da9747: cursor position overflow when reflowing
-- Romain Francoise <rfrancoise@debian.org> Sat, 25 May 2013 18:53:11 +0200
tmux (1.8-2) unstable; urgency=low
* Cherry-pick important fixes from upstream Git:
+ 9fcda95a6f: hang in if-shell/run-shell
+ caa8290510: missing client context in source-file
+ 5dda1abc32: server crash with `remain-on-exit' and focus reporting
+ 46c7dbef0f: grouped window sizes not properly recalculated
* debian/control: Use canonical locations in Vcs-* fields.
-- Romain Francoise <rfrancoise@debian.org> Tue, 23 Apr 2013 20:19:26 +0200
tmux (1.8-1) unstable; urgency=low
* New upstream release.
* Bump Standards-Version to 3.9.4.
* With Ferdinand's blessing, set myself as maintainer to better reflect
reality.
-- Romain Francoise <rfrancoise@debian.org> Tue, 26 Mar 2013 22:33:39 +0100
tmux (1.7-3) unstable; urgency=low
* Upload to unstable.
-- Romain Francoise <rfrancoise@debian.org> Fri, 19 Oct 2012 20:06:08 +0200
tmux (1.7-2) experimental; urgency=low
* Add build-dep on pkg-config for dh-autoreconf.
-- Romain Francoise <rfrancoise@debian.org> Sat, 13 Oct 2012 15:37:36 +0200
tmux (1.7-1) experimental; urgency=low
* New upstream release.
* Use dh-autoreconf to update upstream's old config.{guess,sub} scripts.
-- Romain Francoise <rfrancoise@debian.org> Sat, 13 Oct 2012 14:55:38 +0200
tmux (1.7~z20121007-1) experimental; urgency=low
* New upstream snapshot, from Git commit 43d2b6a648.
-- Romain Francoise <rfrancoise@debian.org> Sun, 07 Oct 2012 12:43:23 +0200
tmux (1.7~z20120929-1) experimental; urgency=low
* New upstream snapshot, from Git commit 80b5c0e076.
-- Romain Francoise <rfrancoise@debian.org> Sat, 29 Sep 2012 16:36:18 +0200
tmux (1.7~svn2867-1) experimental; urgency=low
* New upstream snapshot from Subversion (r2867).
-- Romain Francoise <rfrancoise@debian.org> Fri, 31 Aug 2012 18:03:41 +0200
tmux (1.7~svn2845-1) experimental; urgency=low
* New upstream snapshot from Subversion (r2845).
-- Romain Francoise <rfrancoise@debian.org> Wed, 11 Jul 2012 21:57:13 +0200
tmux (1.7~svn2829-1) experimental; urgency=low
* New upstream snapshot from Subversion (r2829).
-- Romain Francoise <rfrancoise@debian.org> Sun, 24 Jun 2012 21:39:54 +0200
tmux (1.7~svn2819-1) experimental; urgency=low
* New upstream snapshot from Subversion (r2819).
* Warn about protocol change in debian/NEWS.
-- Romain Francoise <rfrancoise@debian.org> Wed, 30 May 2012 19:49:57 +0200
tmux (1.7~svn2788-1) experimental; urgency=low
* New upstream snapshot from Subversion (r2788).
-- Romain Francoise <rfrancoise@debian.org> Fri, 04 May 2012 18:03:11 +0200
tmux (1.7~svn2773-2) experimental; urgency=low
* Revert automatic-rename changes from r2773.
-- Romain Francoise <rfrancoise@debian.org> Tue, 10 Apr 2012 19:14:58 +0200
tmux (1.7~svn2773-1) experimental; urgency=low
* New upstream snapshot from Subversion (r2773).
-- Romain Francoise <rfrancoise@debian.org> Tue, 10 Apr 2012 18:49:54 +0200
tmux (1.7~svn2760-1) experimental; urgency=low
* New upstream snapshot from Subversion (r2760).
-- Romain Francoise <rfrancoise@debian.org> Fri, 30 Mar 2012 19:11:50 +0200
tmux (1.7~svn2749-1) experimental; urgency=low
* New upstream snapshot from Subversion (r2749).
-- Romain Francoise <rfrancoise@debian.org> Sun, 18 Mar 2012 12:42:10 +0100
tmux (1.7~svn2717-1) experimental; urgency=low
* New upstream snapshot from Subversion (r2717).
* Quote backslash in examples/screen-keys.conf to avoid syntax error
(closes: #662250).
* Bump Standards-Version to 3.9.3.
-- Romain Francoise <rfrancoise@debian.org> Thu, 08 Mar 2012 20:19:30 +0100
tmux (1.7~svn2703-1) experimental; urgency=low
[ Romain Francoise ]
* New upstream snapshot from Subversion (r2703).
[ Colin Watson ]
* Use maintscript support in dh_installdeb rather than writing out
dpkg-maintscript-helper commands by hand. We now simply Pre-Depend on a
new enough version of dpkg rather than using 'dpkg-maintscript-helper
supports' guards, leading to more predictable behaviour on upgrades
(closes: #659794).
-- Romain Francoise <rfrancoise@debian.org> Mon, 20 Feb 2012 21:15:09 +0100
tmux (1.7~svn2691-1) experimental; urgency=low
* New upstream snapshot from Subversion (r2691).
-- Romain Francoise <rfrancoise@debian.org> Tue, 31 Jan 2012 20:22:50 +0100
tmux (1.6-2) unstable; urgency=low
[ Colin Watson ]
* Use maintscript support in dh_installdeb rather than writing out
dpkg-maintscript-helper commands by hand. We now simply Pre-Depend on a
new enough version of dpkg rather than using 'dpkg-maintscript-helper
supports' guards, leading to more predictable behaviour on upgrades
(closes: #659794).
[ Romain Francoise ]
* Quote backslash in examples/screen-keys.conf to avoid syntax error
(closes: #662250).
* Bump Standards-Version to 3.9.3.
-- Romain Francoise <rfrancoise@debian.org> Sat, 17 Mar 2012 11:42:28 +0100
tmux (1.6-1) unstable; urgency=low
* New upstream release (closes: #657026).
-- Romain Francoise <rfrancoise@debian.org> Mon, 23 Jan 2012 19:20:48 +0100
tmux (1.6~svn2670-1) experimental; urgency=low
* New upstream snapshot from Subversion (r2670).
* The new window option 'allow-rename' can be used to disable the screen
title setting escape sequence (closes: #654882).
-- Romain Francoise <rfrancoise@debian.org> Sat, 21 Jan 2012 21:38:18 +0100
tmux (1.6~svn2647-2) experimental; urgency=low
* Disable cwd detection in FreeBSD osdep code to fix FTBFS on kfreebsd.
* Refresh, clean up and add DEP-3 headers to patches.
-- Romain Francoise <rfrancoise@debian.org> Sat, 10 Dec 2011 19:38:48 +0100
tmux (1.6~svn2647-1) experimental; urgency=low
* New upstream snapshot from Subversion (r2647).
* The working directory for new processes is now taken from the active
window if there is one (closes: #644781).
-- Romain Francoise <rfrancoise@debian.org> Fri, 09 Dec 2011 20:51:42 +0100
tmux (1.6~svn2642-1) experimental; urgency=low
* New upstream snapshot from Subversion (r2642).
* Add -Wl,--as-needed to LDFLAGS to lose extra dependency on libncurses5.
-- Romain Francoise <rfrancoise@debian.org> Fri, 25 Nov 2011 18:04:01 +0100
tmux (1.6~svn2630-2) experimental; urgency=low
* Redo build flags handling:
+ Enable hardening flags via dpkg-buildflags, not hardening-includes.
+ Switch to debhelper compat level 9 to have build flags exported
automatically. This adds back -O2, which had gone missing.
+ Adjust build-depends accordingly.
* Enable parallel build in debhelper.
-- Romain Francoise <rfrancoise@debian.org> Thu, 03 Nov 2011 22:55:04 +0100
tmux (1.6~svn2630-1) experimental; urgency=low
* New upstream snapshot from Subversion (r2630).
-- Romain Francoise <rfrancoise@debian.org> Tue, 01 Nov 2011 10:42:03 +0100
tmux (1.6~svn2608-2) experimental; urgency=low
* Switch to libevent 2.0 and disable the epoll backend (closes: #631984).
* Add /usr/bin/tmux to /etc/shells (closes: #644813).
-- Romain Francoise <rfrancoise@debian.org> Sun, 09 Oct 2011 17:52:50 +0200
tmux (1.6~svn2608-1) experimental; urgency=low
* New upstream snapshot from Subversion (r2608).
-- Romain Francoise <rfrancoise@debian.org> Mon, 03 Oct 2011 21:13:21 +0200
tmux (1.5-3) unstable; urgency=low
* Add /usr/bin/tmux to /etc/shells (closes: #644813).
* Switch to libevent 2.0 and disable the epoll backend (closes: #631984).
* Redo build flags handling:
+ Enable hardening flags via dpkg-buildflags, not hardening-includes.
+ Switch to debhelper compat level 9 to have build flags exported
automatically. This adds back -O2, which had gone missing.
+ Adjust build-depends accordingly.
* Enable parallel build in debhelper.
* Add -Wl,--as-needed to LDFLAGS to lose extra dependency on libncurses5.
-- Romain Francoise <rfrancoise@debian.org> Mon, 28 Nov 2011 21:07:12 +0100
tmux (1.5-2) unstable; urgency=low
* Disable the tmux-cleanup init script on upgrade (the file was removed
in 1.4-7).
* Fix typo in examples/screen-keys.conf (closes: #635349).
-- Romain Francoise <rfrancoise@debian.org> Sat, 17 Sep 2011 14:58:54 +0200
tmux (1.5-1) unstable; urgency=low
[ Karl Ferdinand Ebert ]
* New upstream version 1.5 which fixes incorrect result from tmux
has-session (Closes: #621138).
* Rearrange all patches:
- Remove 08_layout_set.diff (applied upstream).
- Remove 09_fix_gnome_terminal_keycodes (included in upstream).
- Remove 99_upstream.diff (no difference now).
- New configure scripts forces to set install_prefix and support for HURD
and kFreeBSD else where.
- Refresh 07_fix_hyphen.diff and update series.
[ Romain Francoise ]
* debian/rules: Don't override dh_auto_clean.
* Remove debian/patches/01_install_prefix.diff.
-- Romain Francoise <rfrancoise@debian.org> Sun, 10 Jul 2011 13:10:23 +0200
tmux (1.4-9) unstable; urgency=low
[ Dustin Kirkland ]
* debian/patches/09_fix_gnome_terminal_keycodes.diff:
- enable tmux handling of gnome-terminal's shift/ctrl/alt + F1-F4
- patch submitted and accepted upstream
[ Karl Ferdinand Ebert ]
* Bump standard version to 3.9.2 (no changes).
-- Karl Ferdinand Ebert <kfebert@gmail.com> Sat, 25 Jun 2011 11:47:11 +0200
tmux (1.4-8) unstable; urgency=low
* Fix "tmux segfaults with [lost server] if second pane is closed
after third pane has been broke out" by patch 99_upstream.diff
(Closes: #622677).
-- Karl Ferdinand Ebert <kfebert@gmail.com> Tue, 10 May 2011 23:39:17 +0200
tmux (1.4-7) unstable; urgency=low
[ Karl Ferdinand Ebert ]
* Drop Debian-specific socket handling changes:
+ debian/patches/03_proper_socket_handling.diff,
debian/patches/04_dropping_unnecessary_privileges.diff: Dropped.
+ debian/{init,tmux.lintian-overrides}: Removed, no longer necessary.
+ debian/rules: Remove dh_installinit and dh_fixperms invocations.
[ Romain Francoise ]
* debian/control: Remove reference to /var/run as socket location.
* debian/copyright: Remove references to screen init script.
* debian/{preinst,postinst,postrm}: Deal with disappearance of the
/etc/init.d/tmux-cleanup script.
* debian/NEWS: Mention socket handling changes.
* Drop disabled patch debian/patches/06_hardening_write_return.diff.
-- Romain Francoise <rfrancoise@debian.org> Sat, 16 Apr 2011 19:41:04 +0200
tmux (1.4-6) unstable; urgency=high
* Fix "Incorrect dropping of privileges allows users to obtain utmp
group privileges" by adjusting patch 04_drop_unnecessary_privileges.diff
to drop privileges at the caller side (Closes: #620304).
-- Karl Ferdinand Ebert <kfebert@gmail.com> Sun, 03 Apr 2011 18:28:42 +0200
tmux (1.4-5) unstable; urgency=low
* Fix "tmux segfaults with [lost server] if two panes are closed with
tiled layout" by patch 08_layout_set.diff (Closes: #616641).
* Update debian/copyright with regard to dropped upstream patches.
-- Karl Ferdinand Ebert <kfebert@gmail.com> Sun, 06 Mar 2011 22:02:46 +0100
tmux (1.4-4) unstable; urgency=low
* Drop build-conflicts against libevent-dev (>> 2.0).
* Upload to unstable.
-- Romain Francoise <rfrancoise@debian.org> Wed, 16 Feb 2011 20:35:31 +0100
tmux (1.4-3) experimental; urgency=low
* Move back to epoll on Linux until libevent's poll backend gets fixed
(see #609444).
* Add build-conflicts on libevent 2.0 for the time being, Debian's
version is too old.
-- Romain Francoise <rfrancoise@debian.org> Thu, 13 Jan 2011 21:39:15 +0100
tmux (1.4-2) experimental; urgency=low
* Cherry-pick upstream fix disabling epoll support in libevent to avoid
server hangs.
* Define PATH_MAX if it's missing to fix FTBFS on GNU/Hurd, thanks to
Justus Winter (closes: #609333).
-- Romain Francoise <rfrancoise@debian.org> Sat, 08 Jan 2011 23:41:00 +0100
tmux (1.4-1) experimental; urgency=low
* New upstream version; windows are no longer inappropriately set as
hidden when sizes are recalculated (closes: #575193).
* Drop debian/patches/99_upstream.diff.
* debian/control: use versioned build-dependency on libevent-dev.
-- Romain Francoise <rfrancoise@debian.org> Tue, 28 Dec 2010 12:25:29 +0100
tmux (1.3-2) unstable; urgency=low
[ Karl Ferdinand Ebert ]
* Fix "/usr/bin/tmux: tmux crashes on attach-session" by deactivating
06_hardening_write_return.diff patch (Closes: #603542)
* Fix FTBFS on hurd-i386, MAXHOSTNAMELEN isn't defined there.
* Bump to standard version 3.9.1 (no changes needed).
[ Romain Francoise ]
* Combine upstream patches in a single 99_upstream.diff file.
* Fix reference to /tmp as socket directory in the man page; we use
/var/run/tmux.
-- Karl Ferdinand Ebert <kfebert@gmail.com> Tue, 16 Nov 2010 22:29:30 +0100
tmux (1.3-1) unstable; urgency=low
* New upstream version, fixes "tmux does not refresh console" (Closes:
#575193).
* Drop cherry-picked patches from upstream: 08_avoid_double_free.diff,
09_show_dead_windows.diff and 11_fix_crash_multiple_commands.diff.
* Include cherry-picked patches from upstream: 13_server-client.c.diff,
14_server-window.c.diff and 15_window-copy.c.diff.
* Refresh rest of patches.
* Update debian/copyright.
* Bump to standard version 3.9.0, no changes needed.
* Document server protocol change in NEWS.Debian.
-- Karl Ferdinand Ebert <kfebert@gmail.com> Fri, 23 Jul 2010 08:09:03 +0200
tmux (1.2-4) unstable; urgency=low
* Add patch 11_fix_crash_multiple_commands.diff from upstream CVS.
-- Karl Ferdinand Ebert <kfebert@gmail.com> Wed, 05 May 2010 12:53:51 +0200
tmux (1.2-3) unstable; urgency=low
* Drop 10_no_zombies.diff, it causes a regression far worse than the bug
it fixes (closes: #579353).
-- Romain Francoise <rfrancoise@debian.org> Tue, 27 Apr 2010 18:57:03 +0200
tmux (1.2-2) unstable; urgency=low
* Make Homepage point to the website, not the SF project page.
* Add patches 09_show_dead_windows.diff and 10_no_zombies.diff, both
cherry-picked from upstream CVS.
-- Romain Francoise <rfrancoise@debian.org> Sun, 25 Apr 2010 15:59:14 +0200
tmux (1.2-1) unstable; urgency=low
[ Karl Ferdinand Ebert ]
* New upstream release, fixes "cannot find opposite of break-window"
(Closes: #573616, #575989)
* New build-depend on libevent-dev as upstream needs this now.
* Bump to standard version 3.8.4 (no changes needed), adopted new source
format and switched parts of debian/rules to dh_auto_*.
* Add year 2010 to debian/copyright.
* Refreshed patch 06_hardening_write_return.diff with help from Micah Cowan.
* Add hardening-wrapper to build-depends (Closes: #576157)
[ Romain Francoise ]
* Add myself to Uploaders.
* Add Vcs-Browser and Vcs-Git fields in debian/control.
* Use hardening-includes rather than hardening-wrapper.
* Simplify debian/rules further using dh(1).
* Bump debhelper build-depends to >= 7.0.50~ for dh overrides.
* Add debian/patches/08_avoid_double_free.diff.
-- Romain Francoise <rfrancoise@debian.org> Wed, 14 Apr 2010 21:50:36 +0200
tmux (1.1-1) unstable; urgency=low
[ Karl Ferdinand Ebert ]
* New upstream release fixes "tmux does not support screen-256color like
it claims". Thanks very much Tim Allen for pointing this out.
(Closes: #550701).
-- Karl Ferdinand Ebert <kfebert@gmail.com> Fri, 06 Nov 2009 17:03:29 +0100
tmux (1.0-1) unstable; urgency=low
* New upstream release
+ fixes "add a setenv command like in Screen" (Closes: #531151)
+ and "Omit tmux-generated line-wrapping newlines from paste buffer"
(Closes: #531497)
* Fix lintian info with 07_fix_hyphen.diff.
-- Karl Ferdinand Ebert <kfebert@gmail.com> Thu, 24 Sep 2009 09:52:15 +0200
tmux (0.9-2) unstable; urgency=low
* Fixing FTBFS for kfreebsd and hurd with 05_build_kfreebsd_hurd.dpatch
* with DEB_BUILD_HARDENING=1 detected minor unchecked return values, fixed
with 06_hardening_write_return.dpatch
* added README.source from azureus package to satisfy lintian
-- Karl Ferdinand Ebert <kfebert@gmail.com> Wed, 26 Aug 2009 18:43:47 +0200
tmux (0.9-1) unstable; urgency=low
* New upstream release (Closes: #536087)
* better handling of UTF8, therefore dropping hint in README.Debian
* Dropping patch 01_fix_wring_location (applied upstream)
* Modified patches 02_fix_wring_location and
03_proper_socket_handling to fit in.
-- Karl Ferdinand Ebert <kfebert@gmail.com> Tue, 07 Jul 2009 17:05:31 +0200
tmux (0.8-5) unstable; urgency=low
* Fix "Bad sockethandling" sockets are now created in /var/run/tmux with
sgid flag and utmp group. Modified program drops these privileges
immediately. (Closes: #529082)
* contains now a README.Debian as a hint for UTF-8
* using dpatch system and a clean debian/rules
* mentioned scripts from screen in debian/copyright which cover now an
init-script that cleans /var/run/tmux after reboot
-- Karl Ferdinand Ebert <kfebert@gmail.com> Sun, 17 May 2009 21:24:02 +0200
tmux (0.8-4) unstable; urgency=low
* included statement towards BSD-2,BSD-3 in debian/copyright
* filed a bugreport (Closes: #519339: ITP: tmux -- an alternative to
screen, licensed under BSD)
-- Karl Ferdinand Ebert <kfebert@gmail.com> Sun, 26 Apr 2009 08:12:03 +0200
tmux (0.8-3) unstable; urgency=low
* corrected debian/copyright file
-- Karl Ferdinand Ebert <kfebert@gmail.com> Sat, 25 Apr 2009 19:40:55 +0200
tmux (0.8-2) unstable; urgency=low
* changed debian/rules
-- Karl Ferdinand Ebert <kfebert@gmail.com> Sat, 25 Apr 2009 17:04:33 +0200
tmux (0.8-1) unstable; urgency=low
* New upstream release
-- Karl Ferdinand Ebert <kfebert@gmail.com> Fri, 24 Apr 2009 16:33:16 +0200
tmux (0.7-3) unstable; urgency=low
* extended documentation and long description
* mentioned BSD license in debian/copyright
* manpage is now free of hyphen
-- Karl Ferdinand Ebert <kfebert@gmail.com> Thu, 12 Mar 2009 09:17:30 +0100
tmux (0.7-2) unstable; urgency=low
* corrected changelog's first entry with useful bug number.
-- Karl Ferdinand Ebert <kfebert@gmail.com> Thu, 12 Mar 2009 00:01:18 +0100
tmux (0.7-1) unstable; urgency=low
* New upstream release
-- Karl Ferdinand Ebert <kfebert@gmail.com> Wed, 11 Mar 2009 19:40:26 +0100
tmux (0.5-1) unstable; urgency=low
* New upstream release
-- Karl Ferdinand Ebert <kfebert@gmail.com> Tue, 16 Dec 2008 10:16:40 +0100
tmux (0.4a-3) unstable; urgency=low
* Fixed Upstream-Maintainer in debian/copyright
-- Karl Ferdinand Ebert <kfebert@gmail.com> Wed, 24 Sep 2008 10:53:16 +0200
tmux (0.4a-2) unstable; urgency=low
* debian/copyright in appropriate format
-- Karl Ferdinand Ebert <kfebert@gmail.com> Tue, 16 Sep 2008 08:28:17 +0200
tmux (0.4a-1) unstable; urgency=low
* New upstream release
-- Karl Ferdinand Ebert <kfebert@gmail.com> Mon, 15 Sep 2008 18:46:54 +0200
tmux (0.4-1) unstable; urgency=low
* New upstream release
-- Karl Ferdinand Ebert <kfebert@gmail.com> Fri, 29 Aug 2008 12:01:45 +0200
tmux (0.2-1) unstable; urgency=low
* Initial release.
-- Karl Ferdinand Ebert <kfebert@gmail.com> Mon, 02 Jun 2008 21:17:30 +0200
|