-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathChangeLog
More file actions
6400 lines (5223 loc) · 270 KB
/
ChangeLog
File metadata and controls
6400 lines (5223 loc) · 270 KB
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
byobu (5.124) unreleased; urgency=medium
* UNRELEASED
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 25 Sep 2017 10:28:42 -0500
byobu (5.123-0ubuntu1) artful; urgency=medium
[ @cripton ]
* po/es.po:
- fix typos and errors in the spanish translation
- https://github.com/dustinkirkland/byobu/pull/21
[ Sujeevan Vijayakumaran ]
* usr/bin/wifi-status:
- use iw and ip rather than ifconfig and iwconfig, which are deprecated
- https://github.com/dustinkirkland/byobu/pull/24
[ Javier Merino ]
* usr/bin/byobu.in:
- add support for a BYOBU_ALT_TITLE variable, which enables users to
set an alternate window title for their byobu session
- https://github.com/dustinkirkland/byobu/pull/23
[ Mitsuya Shibata ]
* usr/bin/byobu-ctrl-a.in: LP: #1710780
- set prefix2 to F12 in screen-compat ctrl-a mode
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 25 Sep 2017 10:28:38 -0500
byobu (5.122-0ubuntu1) artful; urgency=medium
[ Tiago Stürmer Daitx ]
* usr/lib/byobu/include/config.py.in, usr/lib/byobu/include/select-
session.py: LP: #1711026
- Byobu currently FTBFS on artful during pep8 verification due to
the newly introduced E722 - ie. a 'try:/except:' block with a
bare except that should be replaced by a 'try:except Exception:' block.
-- Dustin Kirkland <kirkland@ubuntu.com> Thu, 17 Aug 2017 18:44:22 -0500
byobu (5.121-0ubuntu1) artful; urgency=medium
[ Dustin Kirkland ]
* usr/bin/wifi-status:
- timestamp the pings
* debian/control:
- lower screen to a suggests
[ Elan Ruusamäe ]
* autogen.sh, .bzrignore, configure.ac:
- modernize autoconf, add .bzrignore
- my intent is to add autogen.sh as next step as seems you currently
produce release tarballs manually, so it contains random unneeded
crap like autom4te.cache
-- Dustin Kirkland <kirkland@ubuntu.com> Wed, 09 Aug 2017 16:53:44 -0500
byobu (5.120-0ubuntu1) artful; urgency=medium
* usr/lib/byobu/include/shutil:
- revert the last two changes; that was a wild goose chase
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 05 Jun 2017 11:43:52 -0500
byobu (5.119-0ubuntu1) artful; urgency=medium
* usr/lib/byobu/include/shutil:
- fix regression in distro detection
-- Dustin Kirkland <kirkland@ubuntu.com> Thu, 01 Jun 2017 17:18:44 -0500
byobu (5.118-0ubuntu1) artful; urgency=medium
* usr/lib/byobu/include/shutil:
- use /etc/lsb-release, if it exists
fixes detection of Linux Mint
-- Dustin Kirkland <kirkland@ubuntu.com> Thu, 01 Jun 2017 11:45:46 -0500
byobu (5.117-0ubuntu1) artful; urgency=medium
* usr/bin/purge-old-kernels, usr/share/man/man1/purge-old-kernels.1: LP: #1686138
- deprecate the logic in purge-old-kernel, as apt autoremove is supposed
to work properly now
-- Dustin Kirkland <kirkland@ubuntu.com> Thu, 27 Apr 2017 16:26:14 -0500
byobu (5.116-0ubuntu1) zesty; urgency=medium
[ Dustin Kirkland ]
* usr/bin/purge-old-kernels:
- need to do some extra grepping when using efi kernels
* usr/share/byobu/profiles/tmux:
- save 100K lines of scrollback, rather than 10K, which I find gets
eclipsed too often when you actually need it
[ janvonde ]
* usr/bin/purge-old-kernels, usr/share/man/man1/purge-old-kernels.1:
- add a --quiet option for cronjobs
- add note in the manpage
-- Dustin Kirkland <kirkland@ubuntu.com> Sat, 18 Mar 2017 12:05:56 -0500
byobu (5.115-0ubuntu1) zesty; urgency=medium
* debian/control:
- depend on net-tools, for ifconfig
* usr/bin/purge-old-kernels:
- fix $APT_OPS position, thanks Benjamin J. Stassart
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 06 Feb 2017 12:22:24 -0600
byobu (5.114-0ubuntu1) zesty; urgency=medium
[ Dustin Kirkland ]
* usr/bin/purge-old-kernels:
- use apt-get, rather than apt, for compatibility with trusty/precise apt
[ Simon Quigley ]
* usr/lib/byobu/include/select-session.py:
- fix pep8 error, E305 expected 2 blank lines...
[ @alexm ]
* usr/bin/purge-old-kernels:
- Use dpkg first when APT is broken #16
- https://github.com/dustinkirkland/byobu/pull/16
-- Dustin Kirkland <kirkland@ubuntu.com> Fri, 27 Jan 2017 08:30:59 -0600
byobu (5.113-0ubuntu1) zesty; urgency=medium
* usr/bin/wifi-status:
- ping the router, too, to verify at least local connectivity
* usr/lib/byobu/include/shutil:
- use a prime here, too
* usr/lib/byobu/include/select-session.py: LP: #1548384
- when selecting a session, if only empty sessions exist, then create
a new one; the bug was that tmux considers a null string argument
still an argument
* usr/bin/purge-old-kernels:
- ensure that we keep the current running kernel
* usr/share/man/man1/byobu.1:
- fix minor nitpick about disk/memory measurement documentation
* usr/share/byobu/desktop/byobu.desktop.old,
usr/share/byobu/desktop/Makefile.am, usr/share/man/man1/byobu.1: LP: #1639836
- resurrect byobu-desktop.old, which is needed on Debian and other
systems, where gnome-terminal may not exist
-- Dustin Kirkland <kirkland@ubuntu.com> Wed, 07 Dec 2016 08:18:09 -0600
byobu (5.112-0ubuntu1) yakkety; urgency=medium
[ Mohamed Elawadi ]
* usr/bin/byobu.in, usr/bin/byobu-janitor.in, usr/bin/byobu-launch.in,
usr/bin/byobu-select-profile.in, usr/bin/byobu-status.in,
usr/lib/byobu/battery, usr/lib/byobu/disk_io,
usr/lib/byobu/include/common, usr/lib/byobu/include/constants,
usr/lib/byobu/include/shutil, usr/lib/byobu/ip_address,
usr/lib/byobu/memory, usr/lib/byobu/release,
usr/lib/byobu/updates_available:
- https://github.com/dustinkirkland/byobu/pull/15
- Fixing BYOBU_TEST issues
- The first issue was that command -v, which and type were always
returning an error code when executed without an extra argument.
so BYOBU_TEST was always falling to which because it was the last one.
- The second issue was, command -v didn't work because of a different
reason. When executed in a shell (at least my shell) using variable
substitution, the shell was trying to find a binary called
"command -v" so it was failing.
-- Dustin Kirkland <kirkland@ubuntu.com> Fri, 16 Sep 2016 10:13:05 -0500
byobu (5.111-0ubuntu1) yakkety; urgency=medium
[ Dustin Kirkland ]
* usr/lib/byobu/battery:
- battery color when black-on-red is hard to read; change to
white on red.
- test 256 colors with vim (:runtime syntax/colortest.vim) and
http://www.robmeerman.co.uk/_media/unix/256colors2.pl
+ seem to be working okay here
[ Jeffery To ]
* usr/bin/byobu.in, usr/share/byobu/profiles/tmux:
- use screen-256color if possible, for both screen and tmux
- allow the user to override our term choices, by setting
BYOBU_TERM, BYOBU_DEFAULT_TERM and/or BYOBU_COLOR_TERM
-- Dustin Kirkland <kirkland@ubuntu.com> Tue, 09 Aug 2016 15:23:17 -0500
byobu (5.110-0ubuntu1) yakkety; urgency=medium
[ Dustin Kirkland ]
* usr/lib/byobu/logo:
- added a logo for AlpineLinux, which has published an apk for Byobu
* usr/share/byobu/status/status, usr/share/byobu/status/statusrc:
- default to showing disk space
- fix DISTRO to BYOBU_DISTRO in template
* debian/control: LP: #1596364
- add |xterm to suggests
* usr/bin/purge-old-kernels: LP: #1595977
- modify the kernel purge algorithm slightly to better handle efi
and virtual kernels
* usr/bin/purge-old-kernels: LP: #1532153
- run autoremove afterwards, to clean up anything else
* usr/lib/byobu/include/select-session.py: LP: #1583590
- fix default window selection by just hitting enter
* usr/share/man/man1/byobu.1:
- add some whitespace in the manpage
[ ironstorm ]
* usr/lib/byobu/cpu_temp: LP: #1587139
- add cpu temp support for rpi1, rpi2, and rpi3
-- Dustin Kirkland <kirkland@ubuntu.com> Fri, 29 Jul 2016 12:29:04 -0500
byobu (5.109-0ubuntu1) yakkety; urgency=medium
[ Dustin Kirkland ]
* usr/lib/byobu/include/icons, usr/lib/byobu/reboot_required,
usr/lib/byobu/updates_available:
- add an checkbox icon
- fix formatting again
* usr/share/byobu/desktop/byobu.desktop.old,
usr/share/byobu/desktop/Makefile.am:
- deprecated
[ Grant Likely ]
* usr/lib/byobu/include/select-session.py:
- Add support for tmux grouped sessions
- select-session.py: Pass command name in argument list
-- Dustin Kirkland <kirkland@ubuntu.com> Tue, 05 Jul 2016 10:47:22 -0500
byobu (5.108-0ubuntu1) yakkety; urgency=medium
[ Dustin Kirkland ]
* usr/lib/byobu/updates_available:
- remove trailing whitespace
* usr/lib/byobu/battery:
- only use POWER_SUPPLY_CAPACITY if neither POWER_SUPPLY_ENERGY_NOW nor
POWER_SUPPLY_CHARGE_NOW are available; important for summing
multiple batteries
[ Kevin Mark and Dustin Kirkland ]
* usr/lib/byobu/uptime:
- fix uptime status on MacOS
-- Dustin Kirkland <kirkland@ubuntu.com> Tue, 31 May 2016 10:03:12 -0500
byobu (5.107-0ubuntu1) yakkety; urgency=medium
* usr/bin/manifest:
- remove http, breaks pastebinit
* usr/bin/manifest:
- fix manifest url
* usr/bin/wifi-status:
- use tmux target pane
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 09 May 2016 18:26:20 -0500
byobu (5.106-0ubuntu1) xenial; urgency=medium
* usr/lib/byobu/include/tmux-send-command-to-all-panes:
- fix breakage on sending command to all panes
-- Dustin Kirkland <kirkland@ubuntu.com> Thu, 14 Apr 2016 11:21:49 -0500
byobu (5.105-0ubuntu1) xenial; urgency=medium
[ Dustin Kirkland ]
* usr/share/man/man1/byobu.1:
- update examples
* debian/control:
- pastebinit needs to be in the recommends
* usr/lib/byobu/swap, usr/share/man/man1/byobu.1:
- switch swap to black on green, white on green
was unreadable
* usr/bin/byobu-ctrl-a.in:
- silence stderr
* usr/share/byobu/profiles/bashrc:
- fix color comment
* usr/bin/byobu-janitor.in:
- no longer default to enabling ec2 status, LP: #1564320
- institute better timeouts for metadata wgets, LP: #1564320
* usr/bin/byobu-select-session.in: LP: #1555446
- exec the select-session command, to keep from having an sh
hanging around
* Applications/Byobu.app/Contents/MacOS/Byobu, AUTHORS,
debian/copyright, debian/source_byobu.py, etc/profile.d/Z97-
byobu.sh.in, experimental/byobu-classroom, po/bg.po, po/sv.po,
usr/bin/byobu-config.in, usr/bin/byobu-ctrl-a.in, usr/bin/byobu-
disable.in, usr/bin/byobu-disable-prompt.in, usr/bin/byobu-
enable.in, usr/bin/byobu-enable-prompt.in, usr/bin/byobu-export.in,
usr/bin/byobu.in, usr/bin/byobu-janitor.in, usr/bin/byobu-
keybindings, usr/bin/byobu-launcher.in, usr/bin/byobu-launcher-
install.in, usr/bin/byobu-launcher-uninstall.in, usr/bin/byobu-
launch.in, usr/bin/byobu-layout.in, usr/bin/byobu-prompt.in,
usr/bin/byobu-quiet.in, usr/bin/byobu-reconnect-sockets.in,
usr/bin/byobu-select-backend.in, usr/bin/byobu-select-profile.in,
usr/bin/byobu-select-session.in, usr/bin/byobu-shell.in,
usr/bin/byobu-silent.in, usr/bin/byobu-status-detail.in,
usr/bin/byobu-status.in, usr/bin/manifest, usr/lib/byobu/apport,
usr/lib/byobu/arch, usr/lib/byobu/battery, usr/lib/byobu/color,
usr/lib/byobu/cpu_count, usr/lib/byobu/cpu_freq,
usr/lib/byobu/cpu_temp, usr/lib/byobu/custom, usr/lib/byobu/date,
usr/lib/byobu/disk, usr/lib/byobu/disk_io, usr/lib/byobu/distro,
usr/lib/byobu/ec2_cost, usr/lib/byobu/entropy,
usr/lib/byobu/fan_speed, usr/lib/byobu/hostname,
usr/lib/byobu/include/colors, usr/lib/byobu/include/common,
usr/lib/byobu/include/config.py.in, usr/lib/byobu/include/constants,
usr/lib/byobu/include/cycle-status, usr/lib/byobu/include/dirs.in,
usr/lib/byobu/include/icons, usr/lib/byobu/include/mondrian,
usr/lib/byobu/include/notify_osd, usr/lib/byobu/include/select-
session.py, usr/lib/byobu/include/shutil, usr/lib/byobu/include/tmux-
detach-all-but-current-client, usr/lib/byobu/include/tmux-send-
command-to-all-panes, usr/lib/byobu/include/tmux-send-command-to-all-
windows, usr/lib/byobu/include/toggle-utf8.in,
usr/lib/byobu/ip_address, usr/lib/byobu/load_average,
usr/lib/byobu/logo, usr/lib/byobu/mail, usr/lib/byobu/memory,
usr/lib/byobu/menu, usr/lib/byobu/network, usr/lib/byobu/notify_osd,
usr/lib/byobu/processes, usr/lib/byobu/raid,
usr/lib/byobu/reboot_required, usr/lib/byobu/release,
usr/lib/byobu/services, usr/lib/byobu/session, usr/lib/byobu/swap,
usr/lib/byobu/time, usr/lib/byobu/time_utc, usr/lib/byobu/trash,
usr/lib/byobu/updates_available, usr/lib/byobu/uptime,
usr/lib/byobu/users, usr/lib/byobu/whoami,
usr/lib/byobu/wifi_quality, usr/share/byobu/keybindings/f-
keys.screen, usr/share/byobu/keybindings/f-keys.screen.disable,
usr/share/byobu/keybindings/f-keys.tmux,
usr/share/byobu/keybindings/f-keys.tmux.disable,
usr/share/byobu/profiles/bashrc, usr/share/byobu/profiles/byoburc,
usr/share/byobu/profiles/classroom, usr/share/byobu/profiles/common,
usr/share/byobu/profiles/NONE, usr/share/byobu/profiles/screenrc,
usr/share/byobu/profiles/tmux, usr/share/byobu/profiles/tmuxrc,
usr/share/byobu/status/status, usr/share/byobu/status/statusrc,
usr/share/byobu/tests/byobu-time-notifications.in, usr/share/dbus-
1/services/us.kirkland.terminals.byobu.service,
usr/share/man/man1/byobu-export.1:
- update byobu.co email addresses to byobu.org
* CONTRIBUTING:
- added a contributing file
[ Mark King ]
* usr/lib/byobu/battery:
- Use `POWER_SUPPLY_CAPACITY` for battery if available
-- Dustin Kirkland <kirkland@ubuntu.com> Thu, 07 Apr 2016 18:50:55 -0500
byobu (5.104-0ubuntu1) xenial; urgency=medium
* debian/control:
- suggest pastebinit, drop w3m
-- Dustin Kirkland <kirkland@ubuntu.com> Sun, 28 Feb 2016 23:46:22 -0600
byobu (5.103-0ubuntu1) xenial; urgency=medium
* usr/bin/Makefile.am, usr/bin/manifest, usr/bin/tmpfsffs,
usr/share/man/man1/Makefile.am, usr/share/man/man1/manifest.1:
- added the manifest command
* debian/control, usr/bin/Makefile.am, usr/bin/purge-old-kernels,
usr/share/man/man1/Makefile.am, usr/share/man/man1/purge-old-
kernels.1:
- move purge-old-kernels over from bikeshed into byobu
* usr/lib/byobu/include/select-session.py: LP: #1550687
- make sure input/eval is compatible with both python2 and 3
* usr/share/byobu/keybindings/f-keys.screen,
usr/share/byobu/keybindings/f-keys.tmux: LP: #1543903
- use $EDITOR rather than 'view'
* usr/lib/byobu/include/icons, usr/lib/byobu/reboot_required,
usr/share/man/man1/byobu.1:
- add an indicator for an unattended upgrade in progress
-- Dustin Kirkland <kirkland@ubuntu.com> Sun, 28 Feb 2016 23:24:31 -0600
byobu (5.102-0ubuntu1) xenial; urgency=medium
[ Dustin Kirkland ]
* usr/share/byobu/keybindings/mouse.tmux.disable,
usr/share/byobu/keybindings/mouse.tmux.enable: LP: #1514377
- use tmux 2.1's new 'mouse' option, add some comments,
support old and new
* configure.ac, debian/control, NEWS, README, usr/lib/byobu/rcs_cost,
usr/share/appdata/byobu.appdata.xml, usr/share/man/man1/byobu.1,
usr/share/man/man1/byobu-config.1, usr/share/man/man1/byobu-ctrl-
a.1, usr/share/man/man1/byobu-enable.1, usr/share/man/man1/byobu-
janitor.1, usr/share/man/man1/byobu-keybindings.1,
usr/share/man/man1/byobu-launcher.1, usr/share/man/man1/byobu-
launcher-install.1, usr/share/man/man1/byobu-launcher-uninstall.1,
usr/share/man/man1/byobu-layout.1, usr/share/man/man1/byobu-
prompt.1, usr/share/man/man1/byobu-quiet.1, usr/share/man/man1/byobu-
reconnect-sockets.1, usr/share/man/man1/byobu-screen.1,
usr/share/man/man1/byobu-select-backend.1, usr/share/man/man1/byobu-
select-profile.1, usr/share/man/man1/byobu-select-session.1,
usr/share/man/man1/byobu-shell.1, usr/share/man/man1/byobu-silent.1,
usr/share/man/man1/byobu-status.1, usr/share/man/man1/byobu-status-
detail.1, usr/share/man/man1/byobu-tmux.1, usr/share/man/man1/byobu-
ugraph.1, usr/share/man/man1/byobu-ulevel.1:
- replace http://byobu.co links to newly registered http://byobu.org
[ Jeffrey To ]
* usr/share/byobu/keybindings/tmux-screen-keys.conf:
- This adds '-c "#{pane_current_path}"' to new-window/split-window calls
in tmux-screen-keys.conf, matching similar calls in f-keys.tmux.
-- Dustin Kirkland <kirkland@ubuntu.com> Thu, 04 Feb 2016 16:29:44 -0600
byobu (5.101-0ubuntu1) xenial; urgency=medium
* usr/lib/byobu/arch:
- need a trailing whitespace
* README: LP: #1526844
- add a note about installing coreutils
* usr/bin/byobu-shell.in: LP: #1500109
- respect ~/.hushlogin file
-- Dustin Kirkland <kirkland@ubuntu.com> Thu, 14 Jan 2016 08:55:21 +0200
byobu (5.100-0ubuntu1) xenial; urgency=medium
[ David Personette ]
* usr/lib/byobu/include/config.py.in,
usr/lib/byobu/include/ec2instancespricing.py,
usr/lib/byobu/include/select-session.py:
- https://github.com/dustinkirkland/byobu/pull/11
- Python scripts 'futurize'd to support python3
[ Dustin Kirkland ]
* usr/share/applications/byobu.desktop:
- Revert upstream .desktop changes to match against
gnome-terminal-server, LP: #1512498
* === added directory usr/share/byobu/desktop, === added directory
usr/share/dbus-1, === added directory usr/share/dbus-1/services,
configure.ac, debian/control, debian/postinst, debian/postrm,
Makefile.am, usr/share/applications/byobu.desktop =>
usr/share/byobu/desktop/byobu.desktop,
usr/share/applications/Makefile.am =>
usr/share/byobu/desktop/Makefile.am,
usr/share/byobu/desktop/byobu.desktop.old, usr/share/dbus-
1/services/Makefile.am, usr/share/dbus-
1/services/us.kirkland.terminals.byobu.service: LP: #1512498, #1503418
- huge work around the mess that is gnome-terminal-server
- install two different desktop files to /usr/share/byobu/desktops/*
- in postinst, symlink the correct one into /usr/share/applications
- clean up that conditionally installed symlink in postinst
- suggest gnome-terminal package, as our new desktop file hardcodes
gnome-terminal (this kind of sucks)
- in byobu.desktop, exec gnome-terminal with a --app-id hint, and
drop the Terminal=true, as gnome-terminal will take care of that
- install a dbus service, as new gnome-terminal expects to launch
via dbus
- fqdn namespace that service to us.kirkland.terminals.byobu
+ this is stupid, btw
* usr/lib/byobu/include/select-session.py:
- fix regression introduced by r2448
-- Dustin Kirkland <kirkland@ubuntu.com> Wed, 02 Dec 2015 13:44:20 -0600
byobu (5.99-0ubuntu1) xenial; urgency=medium
* usr/share/byobu/pixmaps/byobu.svg:
- cleaned up vector image from Nobuto Murata
* configure.ac, debian/install, debian/postinst, debian/postrm,
etc/profile.d/Makefile.am, usr/share/byobu/profiles/Makefile.am,
usr/share/byobu/profiles/Z97-byobu.sh.in => etc/profile.d/Z97-
byobu.sh.in:
- fix some recent regressions on byobu auto launching
-- Dustin Kirkland <kirkland@ubuntu.com> Sat, 14 Nov 2015 16:59:53 -0600
byobu (5.98-0ubuntu1) xenial; urgency=medium
[ Dustin Kirkland ]
* usr/bin/vigpg:
- specify stdin for input file
* usr/bin/vigpg:
- get vigpg working with the new release of gpg in wily
- clean up encrypted copies of the file
* usr/share/applications/byobu.desktop: LP: #1503418
- use byobu icon rather than gnome-terminal
[ Roman Inflianskas ]
* usr/lib/byobu/include/config.py.in:
- fix help for openSUSE
-- Dustin Kirkland <kirkland@ubuntu.com> Wed, 28 Oct 2015 09:48:44 +0900
byobu (5.97-0ubuntu1) wily; urgency=medium
* usr/bin/byobu-launcher.in: LP: #1338260
- fix byobu autolaunch for TERM=screen-256color users
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 31 Aug 2015 13:32:36 -0500
byobu (5.96-0ubuntu1) wily; urgency=medium
* configure.ac, debian/install, debian/postinst, debian/postrm,
etc/profile.d/Makefile.am, etc/profile.d/Z97-byobu.sh.in =>
usr/share/byobu/profiles/Z97-byobu.sh.in, usr/bin/byobu.in,
usr/bin/byobu-launcher-install.in,
usr/lib/byobu/include/config.py.in,
usr/share/byobu/profiles/Makefile.am:
- fix some discrepancies between Z97- and Z98-
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 31 Aug 2015 12:33:09 -0500
byobu (5.95-0ubuntu1) wily; urgency=medium
[ Dustin Kirkland ]
* usr/lib/byobu/battery:
- sum together all batteries
* usr/bin/byobu.in:
- ensure we start tmux with unicode support, LP: #1268072
* usr/bin/byobu.in, usr/share/man/man1/byobu.1: LP: #1483394
- byobu -h|--help enters manpage, place this code with -v|--version
* usr/bin/byobu-shell.in: LP: #1458941
- find the motd
* usr/share/byobu/keybindings/f-keys.tmux.disable: LP: #1453037
- ensure that we source user's keybindings
* experimental/byobu-classroom, usr/bin/byobu-ctrl-a.in, usr/bin/byobu-
disable-prompt.in, usr/bin/byobu-janitor.in, usr/bin/byobu-launcher-
uninstall.in, usr/bin/byobu-quiet.in, usr/bin/byobu-silent.in,
usr/bin/byobu-status.in, usr/lib/byobu/include/constants,
usr/share/byobu/keybindings/f-keys.screen: LP: #1068580
- create BYOBU_SED_INLINE variable, to handle inline sed's, using
--follow-symlinks when possible (not always available)
* usr/lib/byobu/logo:
- fix minor logic typo (reversed logic)
* usr/bin/byobu.in: LP: #1369783
- respect user's custom default-command and/or default-shell
in the first window launched
* usr/bin/byobu-launcher.in: LP: #1338260
- add some helpful information about nested sessions
* debian/control:
- bump standards
[ Fortunato Ventre ]
* usr/lib/byobu/include/constants:
- Fix check for sed's follow-symlinks feature
+ https://github.com/dustinkirkland/byobu/pull/9
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 31 Aug 2015 12:03:12 -0500
byobu (5.94-0ubuntu1) wily; urgency=medium
* debian/control, usr/bin/vigpg, usr/share/man/man1/vigpg.1:
- after the Lastpass breach, more people could use vigpg,
so move it over to Bybou from Bikeshed
* usr/bin/Makefile.am, usr/share/man/man1/Makefile.am:
- add vigpg to build
* usr/share/man/man1/vigpg.1:
- fix typo
-- Dustin Kirkland <kirkland@ubuntu.com> Wed, 17 Jun 2015 20:21:39 -0500
byobu (5.93-0ubuntu1) wily; urgency=medium
* usr/bin/byobu.in: LP: #1417323
- fix broken mv call
* usr/lib/byobu/swap:
- clear swap status when swap usage returns to zero
-- Dustin Kirkland <kirkland@ubuntu.com> Thu, 21 May 2015 08:27:04 -0700
byobu (5.92-0ubuntu1) vivid; urgency=medium
* usr/bin/byobu-launcher-install.in: LP: #1396959
- silence warnings if byobu-launch doesn't exist (e.g., uninstalled it)
* usr/bin/byobu-config.in: LP: #1383669
- revert commit to LP: #1316050, which hardcoded LANG=C
- this should fix rendering of Japanese characters in the menu
* usr/share/byobu/keybindings/f-keys.tmux: LP: #1350813
- handle tmux 1.9's default path changes, per:
https://sourceforge.net/p/tmux/tmux-code/ci/1.9/tree/CHANGES
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 23 Mar 2015 12:50:56 -0500
byobu (5.91-0ubuntu1) vivid; urgency=medium
[ Thibaut Broggi ]
* po/fr.po:
- Improve french translation
- Remove some spelling mistakes and I made it more coherent
(sometimes the word "exécuter" was used, sometimes it was
"lancer", or "utiliser" ; all of this words mean the same
thing in this context).
[ Dustin Kirkland ]
* README:
- improve readme build instructions, with thanks to:
+ https://github.com/dustinkirkland/byobu/pull/8
-- Dustin Kirkland <kirkland@ubuntu.com> Sat, 07 Mar 2015 18:59:35 -0500
byobu (5.90-0ubuntu1) vivid; urgency=medium
[ Mike Miller ]
* usr/lib/byobu/include/select-session.py: LP: #1411122
- don't print when attaching and restoring environment variables
-- Dustin Kirkland <kirkland@ubuntu.com> Thu, 15 Jan 2015 08:09:24 -0600
byobu (5.89-0ubuntu1) vivid; urgency=medium
* debian/rules, usr/bin/byobu.in, usr/bin/byobu-launcher.in,
usr/bin/ctail, usr/lib/byobu/include/select-session.py:
- silence some checkbashisms false positives
- handle nesting a bit differently
- allow nesting, by default
- detect the infinite loop situation, where we're ssh'ing into
ourselves, and handle it gracefully
- ensure we have access to 256 colors, even when nesting
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 12 Jan 2015 17:39:37 -0600
byobu (5.88-0ubuntu1) vivid; urgency=medium
[ Ruben Laguna ]
* usr/share/byobu/keybindings/f-keys.tmux: LP: #1392693
- The previous binding will not work with shells that don't allow
variables as commands (fish shell being one of those)
- Use `sh -c` to explicitly use a POSIX shell to interpret the command
[ dmayle ]
* usr/bin/byobu.in:
- Don't pollute output with title if calling from script
- https://github.com/dustinkirkland/byobu/pull/6
-- Dustin Kirkland <kirkland@ubuntu.com> Thu, 08 Jan 2015 16:01:24 -0600
byobu (5.87-0ubuntu1) utopic; urgency=medium
[ Fazle AREFIN ]
* usr/share/byobu/keybindings/f-keys.tmux,
usr/share/byobu/keybindings/f-keys.tmux.disable,
usr/share/doc/byobu/help.tmux.txt: LP: #1375794
- enable toggling of sending input to all splits
-- Dustin Kirkland <kirkland@ubuntu.com> Tue, 30 Sep 2014 08:38:35 -0500
byobu (5.86-0ubuntu1) utopic; urgency=medium
* usr/bin/byobu.in:
- bikeshed scripts broke and quit incrementing the version number,
when I moved byobu to byobu.in
-- Dustin Kirkland <kirkland@ubuntu.com> Thu, 14 Aug 2014 00:34:44 -0500
byobu (5.85-0ubuntu1) utopic; urgency=medium
[ Pedro Romano ]
* usr/lib/byobu/include/select-session.py:
- This branch adds named sessions starting with an underscore also as
hidden sessions in alternative to named sessions starting with a dot,
since tmux doesn't support session names starting with a dot. In the
process it also adds support for hidden session in tmux if the
session names start with an underscore, adding this feature to tmux
based byobu.
[ Srdjan Grubor ]
* usr/bin/byobu-layout.in:
- add a list-layouts command
[ Dustin Kirkland ]
* usr/bin/byobu.in, usr/share/man/man1/byobu.1: LP: #907363
- fix custom window support for byobu-tmux
-- Dustin Kirkland <kirkland@ubuntu.com> Tue, 05 Aug 2014 23:21:29 +0200
byobu (5.84-0ubuntu1) utopic; urgency=medium
* usr/lib/byobu/include/dirs.in:
- make the custom scripts bin dir
* usr/lib/byobu/custom:
- ensure we clear the cache for custom scripts
* usr/bin/byobu-status.in:
- restore the ability to toggle date and time on and off from the config
interface, as well as hand editing the config file
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 28 Jul 2014 09:12:11 +0100
byobu (5.83-0ubuntu1) utopic; urgency=medium
[ Dustin Kirkland ]
* usr/bin/byobu-config.in: LP: #1316050
- hard code LANG=C before launching byobu-config
* usr/lib/byobu/include/dirs.in: LP: #1346869
- be little smarter about detecting a usable /dev/shm
* === added directory usr/share/appdata,
usr/share/appdata/byobu.appdata.xml: LP: #1322556
* usr/share/byobu/profiles/tmuxrc: LP: #1315204
- fix a couple of spots that should use $BYOBU_CONFIG_DIR
* usr/lib/byobu/apport: LP: #1308696
- clear out the apport cache files, to detect when the crashes
have been cleared
-- Dustin Kirkland <kirkland@ubuntu.com> Sat, 26 Jul 2014 16:13:20 -0500
byobu (5.82-0ubuntu1) utopic; urgency=medium
* usr/bin/byobu-ctrl-a.in:
- add bindkey line back, this line is *essential*; there was a
syntax error in it previously, but removing the line was not
the correct fix for LP: #1313209, #814172
-- Dustin Kirkland <kirkland@ubuntu.com> Tue, 22 Jul 2014 07:21:54 -0700
byobu (5.81-0ubuntu1) utopic; urgency=medium
* usr/bin/byobu-enable.in, usr/share/man/man1/byobu-enable.1:
- no need to launch byobu in byobu-enable (no idea why I did it
that way originally)
* debian/control, usr/bin/ctail, usr/share/man/man1/ctail.1:
- move the ctail command over to byobu, from bikeshed
- ctail will tail and colorize log files
* debian/control, usr/bin/wifi-status, usr/share/man/man1/wifi-
status.1:
- move the wifi-status command to byobu, from bikeshed
- fantastic demonstration of byobu split screens
* debian/links, usr/bin/col1, usr/share/man/man1/col1.1:
- move the col1..col9 utilities over from bikeshed
- super handy, minimal way of awking out a particular column
* usr/bin/Makefile.am, usr/share/man/man1/Makefile.am:
- update automake files to install new utilities
* usr/bin/ctail:
- use command -v to test for ccze existence
* debian/control, etc/profile.d/Z97-byobu.sh.in (properties changed:
+x to -x):
- update package description to better reflect modern Byobu
- fix lintian complaint about profile script
-- Dustin Kirkland <kirkland@ubuntu.com> Sun, 06 Jul 2014 15:51:15 -0500
byobu (5.80-0ubuntu1) utopic; urgency=medium
* usr/lib/byobu/include/mondrian:
- simplify and cleanup the mondrian squares easter egg, and idempotent
* usr/bin/byobu-reconnect-sockets.in:
- let's make sure that we name our temp directory
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 28 Apr 2014 09:36:53 -0700
byobu (5.79-0ubuntu1) unstable; urgency=medium
[ Dustin Kirkland ]
* usr/bin/byobu-ctrl-a.in: LP: #1313209
- fix syntax error, remove unnecessary bindkey line
- also fixes LP: #814172
* usr/share/byobu/profiles/tmuxrc:
- tmux windows still aren't working right; disable for now
[ Kosuke Asami ]
* usr/lib/byobu/include/config.py.in: LP: #1303218
-- Dustin Kirkland <kirkland@ubuntu.com> Sun, 27 Apr 2014 09:22:25 -0500
byobu (5.78-0ubuntu1) unstable; urgency=medium
* usr/share/byobu/profiles/dircolors:
- give executables just a little more pop
- use a light grey underline for symlinks
- add whitespace before inline comment
* usr/share/byobu/profiles/bashrc:
- Enable Ubuntu-themed dircolors on Ubuntu systems
* usr/bin/byobu-janitor.in: LP: #1311919
- ensure that windows.tmux exists; fixes warning with F5
* usr/bin/byobu-ctrl-a.in: LP: #1311177, #1274720
- revert r2317 as this is breaking ctrl-a in byobu-screen in a bad way
-- Dustin Kirkland <kirkland@ubuntu.com> Wed, 23 Apr 2014 18:24:21 -0500
byobu (5.77-0ubuntu1) trusty; urgency=medium
* usr/share/byobu/profiles/dircolors,
usr/share/byobu/profiles/Makefile.am,
usr/share/byobu/profiles/tmuxrc:
- add a dircolors file
* usr/share/byobu/profiles/bashrc, usr/share/byobu/profiles/dircolors:
- LP: #1299964
- swap orange and aubergine on the command prompt
- aubergine is now the directory, orange is the hostname
- still working on dircolors, use an aubergine (like our prompt)
for directories
* usr/lib/byobu/logo: LP: #1299964
- use an orange background for the UTF-8, 256-colour Ubuntu logo
-- Dustin Kirkland <kirkland@ubuntu.com> Sun, 30 Mar 2014 20:42:08 -0500
byobu (5.76-0ubuntu1) trusty; urgency=medium
* usr/share/byobu/profiles/tmux:
- use nice, subtle, thin pane border, a separate color from the active
highlighted one
* usr/share/byobu/keybindings/f-keys.tmux,
usr/share/doc/byobu/help.tmux.txt: LP: #1294139
- change Shift-F11 to zoom in/out of splits
-- Dustin Kirkland <kirkland@ubuntu.com> Tue, 18 Mar 2014 23:25:05 +0900
byobu (5.75-0ubuntu1) trusty; urgency=medium
[ Dustin Kirkland ]
* debian/control:
- bump standards
* usr/lib/byobu/include/shutil, usr/lib/byobu/release: LP: #1278016
- /etc/issue might be modified to display corporate banners or
legal warnings; try to use /etc/os-release if available
* usr/bin/byobu-janitor.in, usr/lib/byobu/include/colors,
usr/lib/byobu/include/constants, usr/lib/byobu/include/Makefile.am,
usr/lib/byobu/include/shutil, usr/share/byobu/profiles/tmux:
- split the color definitions into their own file
- have the constants source that file
- use that file when creating the user's local color palette
- use a bit more orange
* usr/bin/byobu-launcher-uninstall.in, usr/bin/byobu-launch.in: LP: #1292228
- allow byobu-launch to pass arguments through to byobu-launcher
- fix up the uninstallation of byobu launcher
* usr/lib/byobu/include/select-session.py: LP: #1279533
- quick hack to fix crashes when python can't figure out the encoding
* usr/bin/byobu-layout.in: LP: #1278277
- fix layout saving, which broke in tmux 1.8
- incrementally rearrange while building our windows up to restore,
as sometimes we run out of room; tiling in between seems to work
* usr/bin/byobu-janitor.in, usr/lib/byobu/include/colors,
usr/lib/byobu/include/constants:
- fix profile color breakage
* usr/bin/byobu-ctrl-a.in: LP: #814172
- fix issues with F5 refresh in byobu-screen, when the user has changed
the default escape key
* usr/share/byobu/profiles/bashrc: LP: #1259621
- ensure that if the root user is in byobu, and we're using the
fancy new colored prompt, that we use a # to indicate root
* usr/share/man/man1/byobu.1: LP: #1248901
- add note to manpage about putty resizing to 1-character tall and
causing byobu-screen to crash
[ Kosuke Asami ]
* usr/lib/byobu/battery: LP: #1289157, #1289157
- Mac OS X battery indicator support
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 17 Mar 2014 13:00:02 +0900
byobu (5.74-0ubuntu1) trusty; urgency=low
[ Dustin Kirkland ]
* usr/lib/byobu/include/ec2instancespricing.py: LP: #1286367
- merged in updated instance pricing script from
https://github.com/erans/ec2instancespricing
* usr/share/byobu/profiles/tmux: LP: #1273685
- remove double sourcing of local .tmux.conf
* usr/lib/byobu/battery: LP: #1270451
- add support for yet another batter type (Android)
- thanks to Felix Krull for the initial patch
* usr/share/byobu/profiles/tmux: LP: #1270551
- enable ctrl-left and ctrl-right to move among words
[ Chris Johnston ]
* usr/share/man/man1/byobu-layout.1: LP: #1288738
- fix manpage typo
[ Mike Miller ]
* usr/lib/byobu/logo: LP: #1278006
- fix RHEL detection for logo
[ Daniel Hahler ]
* usr/bin/byobu-keybindings: LP: #1258093
- fix toggling of f-keys
* usr/share/byobu/profiles/tmux: LP: #1258534
- ensure that we respect BYOBU_NO_TITLE in tmux
[ Ryo ONODERA ]
* configure.ac, etc/profile.d/Z97-byobu.sh => etc/profile.d/Z97-
byobu.sh.in, usr/bin/byobu-config => usr/bin/byobu-config.in,
usr/bin/byobu-ctrl-a => usr/bin/byobu-ctrl-a.in, usr/bin/byobu-
disable-prompt => usr/bin/byobu-disable-prompt.in, usr/bin/byobu-
disable => usr/bin/byobu-disable.in, usr/bin/byobu-enable-prompt =>
usr/bin/byobu-enable-prompt.in, usr/bin/byobu-enable =>
usr/bin/byobu-enable.in, usr/bin/byobu-export => usr/bin/byobu-
export.in, usr/bin/byobu-janitor => usr/bin/byobu-janitor.in,
usr/bin/byobu-launcher-install => usr/bin/byobu-launcher-install.in,
usr/bin/byobu-launcher-uninstall => usr/bin/byobu-launcher-
uninstall.in, usr/bin/byobu-launcher => usr/bin/byobu-launcher.in,
usr/bin/byobu-launch => usr/bin/byobu-launch.in, usr/bin/byobu-
layout => usr/bin/byobu-layout.in, usr/bin/byobu-prompt =>
usr/bin/byobu-prompt.in, usr/bin/byobu-quiet => usr/bin/byobu-
quiet.in, usr/bin/byobu-reconnect-sockets => usr/bin/byobu-
reconnect-sockets.in, usr/bin/byobu-select-backend => usr/bin/byobu-
select-backend.in, usr/bin/byobu-select-profile => usr/bin/byobu-
select-profile.in, usr/bin/byobu-select-session => usr/bin/byobu-
select-session.in, usr/bin/byobu-shell => usr/bin/byobu-shell.in,
usr/bin/byobu-silent => usr/bin/byobu-silent.in, usr/bin/byobu-
status-detail => usr/bin/byobu-status-detail.in, usr/bin/byobu-
status => usr/bin/byobu-status.in, usr/bin/byobu-ugraph =>
usr/bin/byobu-ugraph.in, usr/bin/byobu-ulevel => usr/bin/byobu-
ulevel.in, usr/bin/byobu => usr/bin/byobu.in,
usr/lib/byobu/include/config.py =>
usr/lib/byobu/include/config.py.in, usr/lib/byobu/include/dirs =>
usr/lib/byobu/include/dirs.in, usr/lib/byobu/include/toggle-utf8 =>
usr/lib/byobu/include/toggle-utf8.in, usr/share/byobu/tests/byobu-
time-notifications => usr/share/byobu/tests/byobu-time-
notifications.in: LP: #1264978, #1289157
- use @prefix@ rather than hardcoding /usr, makes code
more portable and easier to build with ./config --prefix
[ Arminius Silvanus ]
* usr/share/byobu/profiles/bashrc: LP: #1280550
- test the $BASH variable, rather than $SHELL, to tell if we're
running in a bash environment
[ Jan Klepek ]
* usr/lib/byobu/include/config.py: LP: #1286249
- fall back to using the distro status file, fixes
crash in config if status file disappears
-- Dustin Kirkland <kirkland@ubuntu.com> Sun, 16 Mar 2014 12:46:33 -0700
byobu (5.73-0ubuntu1) trusty; urgency=low
* usr/lib/byobu/include/Makefile.am, usr/lib/byobu/include/tmux-send-
command-to-all-panes, usr/lib/byobu/include/tmux-send-command-to-
all-windows, usr/share/byobu/keybindings/f-keys.tmux,
usr/share/byobu/keybindings/f-keys.tmux.disable,
usr/share/doc/byobu/help.tmux.txt:
- add two new keybindings for byobu-tmux, Shift-F9 and Ctrl-F9
- these will prompt you for a command, and then run that command
in all splits or windows (respectively)
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 17 Feb 2014 15:06:58 -0600
byobu (5.72-0ubuntu1) trusty; urgency=low
* usr/lib/byobu/include/constants:
- make sure we export this variable, so that we only need to
do the expensive test once
-- Dustin Kirkland <kirkland@ubuntu.com> Wed, 12 Feb 2014 14:30:38 -0600
byobu (5.71-0ubuntu1) trusty; urgency=low
* usr/bin/byobu-janitor, usr/lib/byobu/date,
usr/lib/byobu/include/constants, usr/lib/byobu/include/shutil,
usr/lib/byobu/time, usr/share/byobu/profiles/tmux,
usr/share/byobu/profiles/tmuxrc, usr/share/man/man1/byobu.1:
- LP: #1059127
- fix longstanding "date and time flash on and off" bug
- this isn't a great fix, but it's a start
- basically, we need to use the tmux status native support
for timestamps
- support configuration through ~/.byobu/datetime.tmux
- this will be a difference between byobu-tmux and byobu-screen,
which is a bummer
- also, there's more work to be done, in order to enable/disable
this via F9/byobu-config
* usr/lib/byobu/include/constants: LP: #1278446
- ensure that we pick a python that has a proper snack module
installed
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 10 Feb 2014 15:38:22 -0600
byobu (5.70-0ubuntu1) trusty; urgency=low
* usr/share/byobu/keybindings/f-keys.tmux:
- fix navigation among sessions
* usr/share/byobu/keybindings/f-keys.tmux,
usr/share/byobu/keybindings/f-keys.tmux.disable,
usr/share/doc/byobu/help.tmux.txt:
- change the rarely used Ctrl-F8 keybinding to rename the current
session
- move the restore-a-split-layout to Shift-Alt-F8
* usr/lib/byobu/session, usr/share/byobu/keybindings/f-keys.screen,
usr/share/byobu/keybindings/f-keys.screen.disable,
usr/share/byobu/status/status: LP: #1255139
- add support for screen session names in the status item
- only display when more than one session in tmux, always displayed by
default in screen, where we have more real estate
- support the Ctrl-F8 hotkey in screen too, to rename session
-- Dustin Kirkland <kirkland@ubuntu.com> Thu, 16 Jan 2014 17:48:33 -0600
byobu (5.69-0ubuntu1) trusty; urgency=low
* debian/control:
- revert build-dep on python-support, lintian is dumb sometimes
-- Dustin Kirkland <kirkland@ubuntu.com> Tue, 17 Dec 2013 14:27:41 -0700
byobu (5.68-0ubuntu1) trusty; urgency=low
* usr/lib/byobu/include/shutil, usr/lib/byobu/Makefile.am,
usr/lib/byobu/session, usr/share/byobu/status/status,
usr/share/man/man1/byobu.1: LP: #1255139
- add a new status item, to show the session name
* usr/lib/byobu/include/icons, usr/lib/byobu/session:
- use an icon for the session status item
* debian/control, debian/rules, README, usr/bin/byobu-config,
usr/bin/byobu-config => usr/lib/byobu/include/config.py,
usr/bin/byobu-select-session, usr/bin/byobu-select-session =>
usr/lib/byobu/include/select-session.py,