Codebase list dwm / 64a14ed
Prepare 6.1-4. * debian/control: - Bump Standards-Version to 4.0.0 (no changes needed). - Update debhelper dependency to >= 10 instead of >= 9. * debian/copyright: - Update copyright years. * Bump compat level to 10. * Revert changes to config.web.h introduced in 6.1-1 (Closes: #857174). Hugo Lefeuvre 6 years ago
5 changed file(s) with 19 addition(s) and 8 deletion(s). Raw diff Collapse all Expand all
0 dwm (6.1-4) unstable; urgency=medium
1
2 * debian/control:
3 - Bump Standards-Version to 4.0.0 (no changes needed).
4 - Update debhelper dependency to >= 10 instead of >= 9.
5 * debian/copyright:
6 - Update copyright years.
7 * Bump compat level to 10.
8 * Revert changes to config.web.h introduced in 6.1-1 (Closes: #857174).
9
10 -- Hugo Lefeuvre <hle@debian.org> Wed, 30 Aug 2017 12:12:50 +0200
11
012 dwm (6.1-3) unstable; urgency=low
113
214 * debian/control:
11 Section: x11
22 Priority: optional
33 Maintainer: Hugo Lefeuvre <hle@debian.org>
4 Build-Depends: debhelper (>= 9),
4 Build-Depends: debhelper (>= 10),
55 libx11-dev,
66 libxinerama-dev,
77 libxft-dev,
88 libfreetype6-dev,
99 dpkg-dev (>= 1.16.1.1)
10 Standards-Version: 3.9.8
10 Standards-Version: 4.0.0
1111 Homepage: http://dwm.suckless.org/
1212 Vcs-Git: https://anonscm.debian.org/git/collab-maint/dwm.git
1313 Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/dwm.git
1818 License: Expat
1919
2020 Files: debian/*
21 Copyright: (C) 2015-2016 Hugo Lefeuvre <hle@debian.org>
21 Copyright: (C) 2015-2017 Hugo Lefeuvre <hle@debian.org>
2222 (C) 2011 Vasudev Kamath <kamathvasudev@gmail.com>
2323 (C) 2010 Kai Hendry <hendry@iki.fi>
2424 (C) 2006-2010 Daniel Baumann <daniel@debian.org>
1010 static const char selfgcolor[] = "#000000";
1111 static unsigned int borderpx = 0;
1212 static unsigned int snap = 32;
13 static const int showbar = 1; /* 0 means no bar */
14 static const int topbar = 1; /* 0 means bottom bar */
13 static const int showbar = 0; /* 0 means no bar */
14 static const int topbar = 0; /* 0 means bottom bar */
1515
1616 /* tagging */
1717 static const char *tags[] = { "web" };
2323 /* layout(s) */
2424 static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
2525 static const int nmaster = 1; /* number of clients in master area */
26 static const int resizehints = 1; /* 1 means respect size hints in tiled resizals */
26 static const int resizehints = 0; /* 1 means respect size hints in tiled resizals */
2727
2828 static const Layout layouts[] = {
2929 /* symbol arrange function */
3636 /* commands */
3737 static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
3838 static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL };
39 //static const char *termcmd[] = { "x-terminal-emulator", NULL };
4039
4140 static Key keys[] = {
4241 /* modifier key function argument */ \