Skip to content

Commit 9a7bc56

Browse files
committed
prepare 1.7.0
1 parent 2c57184 commit 9a7bc56

File tree

22 files changed

+50
-33
lines changed

22 files changed

+50
-33
lines changed

ChangeLog

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
2023-03-08 Alexander Kulak <sa-dev@odd.systems>
2+
3+
version 1.7.0
4+
5+
Option -e to keep the switcher.
6+
Document usage on mobile devices.
7+
Configurable bordercolor.
8+
Build scripts for OpenBSD.
9+
Fix xpm icon bug.
10+
Feature: kill window by pressing 'k'.
11+
Feature: line at the bottom of tile.
12+
Show windows on scratchpad only: -d 4
13+
Disable icons: -s 4
14+
Prevent segfault on zero size tile or icon.
15+
16+
Closes: #132, #144, #146, #113, #139, #130, #115.
17+
118
2021-12-06 Alexander Kulak <sa-dev@odd.systems>
219

320
version 1.6.1

configure

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.69 for alttab 1.6.1.
3+
# Generated by GNU Autoconf 2.69 for alttab 1.7.0.
44
#
55
#
66
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
@@ -577,8 +577,8 @@ MAKEFLAGS=
577577
# Identity of this package.
578578
PACKAGE_NAME='alttab'
579579
PACKAGE_TARNAME='alttab'
580-
PACKAGE_VERSION='1.6.1'
581-
PACKAGE_STRING='alttab 1.6.1'
580+
PACKAGE_VERSION='1.7.0'
581+
PACKAGE_STRING='alttab 1.7.0'
582582
PACKAGE_BUGREPORT=''
583583
PACKAGE_URL=''
584584

@@ -1306,7 +1306,7 @@ if test "$ac_init_help" = "long"; then
13061306
# Omit some internal or obsolete options to make the list less imposing.
13071307
# This message is too long to be a string in the A/UX 3.1 sh.
13081308
cat <<_ACEOF
1309-
\`configure' configures alttab 1.6.1 to adapt to many kinds of systems.
1309+
\`configure' configures alttab 1.7.0 to adapt to many kinds of systems.
13101310
13111311
Usage: $0 [OPTION]... [VAR=VALUE]...
13121312
@@ -1373,7 +1373,7 @@ fi
13731373

13741374
if test -n "$ac_init_help"; then
13751375
case $ac_init_help in
1376-
short | recursive ) echo "Configuration of alttab 1.6.1:";;
1376+
short | recursive ) echo "Configuration of alttab 1.7.0:";;
13771377
esac
13781378
cat <<\_ACEOF
13791379
@@ -1485,7 +1485,7 @@ fi
14851485
test -n "$ac_init_help" && exit $ac_status
14861486
if $ac_init_version; then
14871487
cat <<\_ACEOF
1488-
alttab configure 1.6.1
1488+
alttab configure 1.7.0
14891489
generated by GNU Autoconf 2.69
14901490
14911491
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1737,7 +1737,7 @@ cat >config.log <<_ACEOF
17371737
This file contains any messages produced by compilers while
17381738
running configure, to aid debugging if configure makes a mistake.
17391739
1740-
It was created by alttab $as_me 1.6.1, which was
1740+
It was created by alttab $as_me 1.7.0, which was
17411741
generated by GNU Autoconf 2.69. Invocation command line was
17421742
17431743
$ $0 $@
@@ -2595,7 +2595,7 @@ fi
25952595
25962596
# Define the identity of the package.
25972597
PACKAGE='alttab'
2598-
VERSION='1.6.1'
2598+
VERSION='1.7.0'
25992599
26002600
26012601
cat >>confdefs.h <<_ACEOF
@@ -5368,7 +5368,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
53685368
# report actual input values of CONFIG_FILES etc. instead of their
53695369
# values after options handling.
53705370
ac_log="
5371-
This file was extended by alttab $as_me 1.6.1, which was
5371+
This file was extended by alttab $as_me 1.7.0, which was
53725372
generated by GNU Autoconf 2.69. Invocation command line was
53735373
53745374
CONFIG_FILES = $CONFIG_FILES
@@ -5434,7 +5434,7 @@ _ACEOF
54345434
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
54355435
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
54365436
ac_cs_version="\\
5437-
alttab config.status 1.6.1
5437+
alttab config.status 1.7.0
54385438
configured by $0, generated by GNU Autoconf 2.69,
54395439
with options \\"\$ac_cs_config\\"
54405440

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AC_INIT([alttab], [1.6.1])
1+
AC_INIT([alttab], [1.7.0])
22
AM_INIT_AUTOMAKE([foreign subdir-objects])
33
AC_CONFIG_SRCDIR([configure.ac])
44
AC_CONFIG_HEADERS([config.h])

doc/README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ If there are no WM at all, then start alttab in ~/.xsession or elsewhere.
3232
Source
3333
------
3434

35-
Copyright 2017-2021 Alexander Kulak <sa-dev AT odd POINT systems>.
35+
Copyright 2017-2023 Alexander Kulak <sa-dev AT odd POINT systems>.
3636
License: GPLv3 (see COPYING).
3737
Repository: https://github.com/sagb/alttab
3838
Chat: #alttab on Freenode

doc/alttab.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
.SH "NAME"
55
\fBalttab\fR \- the task switcher
66
.SH "SYNOPSIS"
7-
\fBalttab\fR [\fB\-w\fR \fIN\fR] [\fB\-d\fR \fIN\fR] [\fB\-sc\fR \fIN\fR] [\fB\-mk\fR \fIstr\fR] [\fB\-kk\fR \fIstr\fR] [\fB\-bk\fR \fIstr\fR] [\fB\-pk\fR \fIstr\fR] [\fB\-nk\fR \fIstr\fR] [\fB\-ck\fR \fIstr\fR] [\fB\-dk\fR \fIstr\fR] [\fB\-mm\fR \fIN\fR] [\fB\-bm\fR \fIN\fR] [\fB\-t\fR \fINxM\fR] [\fB\-i\fR \fINxM\fR] [\fB\-vp\fR \fIstr\fR] [\fB\-p\fR \fIstr\fR] [\fB\-s\fR \fIN\fR] [\fB\-theme\fR \fIname\fR] [\fB\-bg\fR \fIcolor\fR] [\fB\-fg\fR \fIcolor\fR] [\fB\-frame\fR \fIcolor\fR] [\fB\-inact\fR \fIcolor\fR] [\fB\-bc\fR \fIcolor\fR] [\fB\-bw\fR \fIN\fR] [\fB\-font\fR \fIname\fR] [\fB\-vertical\fR] [\fB\-e\fR] [\fB\-v\fR|\fB\-vv\fR]
7+
\fBalttab\fR [\fB\-w\fR \fIN\fR] [\fB\-d\fR \fIN\fR] [\fB\-sc\fR \fIN\fR] [\fB\-mk\fR \fIstr\fR] [\fB\-kk\fR \fIstr\fR] [\fB\-bk\fR \fIstr\fR] [\fB\-pk\fR \fIstr\fR] [\fB\-nk\fR \fIstr\fR] [\fB\-ck\fR \fIstr\fR] [\fB\-dk\fR \fIstr\fR] [\fB\-mm\fR \fIN\fR] [\fB\-bm\fR \fIN\fR] [\fB\-t\fR \fINxM\fR] [\fB\-i\fR \fINxM\fR] [\fB\-vp\fR \fIstr\fR] [\fB\-p\fR \fIstr\fR] [\fB\-s\fR \fIN\fR] [\fB\-theme\fR \fIname\fR] [\fB\-bg\fR \fIcolor\fR] [\fB\-fg\fR \fIcolor\fR] [\fB\-frame\fR \fIcolor\fR] [\fB\-inact\fR \fIcolor\fR] [\fB\-bc\fR \fIcolor\fR] [\fB\-bw\fR \fIN\fR] [\fB\-font\fR \fIname\fR] [\fB\-vertical\fR] [\fB\-e\fR] [\fB\-b\fR \fIN\fR] [\fB\-v\fR|\fB\-vv\fR]
88
.SH "DESCRIPTION"
99
The task switcher designed for minimalistic window managers or standalone X11 session\.
1010
.P
@@ -312,7 +312,7 @@ short help
312312
.SH "CAVEATS"
313313
Run alttab after WM, or autodetection will fail\.
314314
.SH "AUTHOR"
315-
Copyright 2017\-2021 Alexander Kulak \fB<sa\-dev AT odd POINT systems>\fR\.
315+
Copyright 2017\-2023 Alexander Kulak \fB<sa\-dev AT odd POINT systems>\fR\.
316316
.SH "REPORTING BUGS"
317317
Please report issues on github \fIhttps://github\.com/sagb/alttab/issues\fR\.
318318
.SH "SEE ALSO"

doc/alttab.1.ronn

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
The source of alttab.1. Read doc/development.md.
33
vim:ft=markdown
44
5-
Copyright 2017-2021 Alexander Kulak.
5+
Copyright 2017-2023 Alexander Kulak.
66
This file is part of alttab program.
77
88
Copying and distribution of this file, with or without modification,
@@ -16,7 +16,7 @@ alttab(1) -- the task switcher
1616

1717
## SYNOPSIS
1818

19-
`alttab` [`-w` <N>] [`-d` <N>] [`-sc` <N>] [`-mk` <str>] [`-kk` <str>] [`-bk` <str>] [`-pk` <str>] [`-nk` <str>] [`-ck` <str>] [`-dk` <str>] [`-mm` <N>] [`-bm` <N>] [`-t` <NxM>] [`-i` <NxM>] [`-vp` <str>] [`-p` <str>] [`-s` <N>] [`-theme` <name>] [`-bg` <color>] [`-fg` <color>] [`-frame` <color>] [`-inact` <color>] [`-bc` <color>] [`-bw` <N>] [`-font` <name>] [`-vertical`] [`-e`] [`-v`\|`-vv`]
19+
`alttab` [`-w` <N>] [`-d` <N>] [`-sc` <N>] [`-mk` <str>] [`-kk` <str>] [`-bk` <str>] [`-pk` <str>] [`-nk` <str>] [`-ck` <str>] [`-dk` <str>] [`-mm` <N>] [`-bm` <N>] [`-t` <NxM>] [`-i` <NxM>] [`-vp` <str>] [`-p` <str>] [`-s` <N>] [`-theme` <name>] [`-bg` <color>] [`-fg` <color>] [`-frame` <color>] [`-inact` <color>] [`-bc` <color>] [`-bw` <N>] [`-font` <name>] [`-vertical`] [`-e`] [`-b` <N>] [`-v`\|`-vv`]
2020

2121
## DESCRIPTION
2222

@@ -343,7 +343,7 @@ Run alttab after WM, or autodetection will fail.
343343

344344
##AUTHOR
345345

346-
Copyright 2017-2021 Alexander Kulak `<sa-dev AT odd POINT systems>`.
346+
Copyright 2017-2023 Alexander Kulak `<sa-dev AT odd POINT systems>`.
347347

348348
##REPORTING BUGS
349349

src/alttab.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Parsing options/resources, top-level keygrab functions and main().
33
4-
Copyright 2017-2021 Alexander Kulak.
4+
Copyright 2017-2023 Alexander Kulak.
55
This file is part of alttab program.
66
77
alttab is free software: you can redistribute it and/or modify

src/alttab.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Global includes.
33
4-
Copyright 2017-2021 Alexander Kulak.
4+
Copyright 2017-2023 Alexander Kulak.
55
This file is part of alttab program.
66
77
alttab is free software: you can redistribute it and/or modify

src/autil.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Helper functions specific to alttab.
33
4-
Copyright 2017-2021 Alexander Kulak.
4+
Copyright 2017-2023 Alexander Kulak.
55
This file is part of alttab program.
66
77
alttab is free software: you can redistribute it and/or modify

src/ewmh.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Interface with EWMH-compatible window managers.
33
Note: _WIN fallbacks are not part of EWMH or ICCCM, but kept here anyway.
44
5-
Copyright 2017-2021 Alexander Kulak.
5+
Copyright 2017-2023 Alexander Kulak.
66
This file is part of alttab program.
77
88
alttab is free software: you can redistribute it and/or modify

0 commit comments

Comments
 (0)