From 934e277ccd2c907d096385315b3463f1ef6ed179 Mon Sep 17 00:00:00 2001 From: Patrick Ziegler Date: Mon, 23 Jul 2018 15:17:29 +0200 Subject: [PATCH] Release 3.2.0 (#1338) Breaking Changes: * `0 < label-NAME-maxlen < 3` will now throw an exception and disable the containing module, if ellipsis is enabled for that label. (#1198) Changelog: Deprecations: * `internal/volume` is now called `internal/alsa` (#967) * temperature: The `%temperature%` is deprecated in favor of `%temperature-c%`(#897) * mpd: `icon-repeatone` is deprecated in favor of `icon-single` (#1295), see #1279 Features: * feat(mpd): Add support for icon-consume (#861) * feat(bspwm): Add workspace separator (#942) * feat(i3): Add workspace separator (#938), see #929 * feat(build): Make polybar build on FreeBSD (#931, jaagr/xpp#8), see #239 * feat(volume): Add pulseaudio backend (#779) * feat(script): Add %pid% token for tail commands (#934) * feat(temp): Add temperature tokens without unit (#897) * feat(memory): Add memory used/free ramp (#1038), see #1037 * feat(memory): Add swap tokens (#1018) * feat(net): Add unknown-as-up option (#1077), see #457 * feat(config): Support fractional size and offset (#972), see #953 * feat(xwindow): Add label-empty (#1136) * feat(battery): Add animation-discharging (analog to animation-charging) (#1190) * feat(config): Support pixel offset for bar size and offset values (#1224) * feat(mpd): Add `%album-artist%` token (#1263) * feat(net): Add local_ip6 token (#1239), see #1234 * feat(net): Add nl80211 support (#1009), see #277 Fixes: * fix(mpd): Wrong elapsed time when after standby (#921), see #915 * fix(config): Wrong min, maxlen when using the same token multiple times (#974), see #971 * fix(battery): use power_now correctly (#958), see #928 * fix(mpd): Crash when mpd isn't running (#983), see #979 * fix(xworkspaces): Respect 'enable-scroll' (#1002) * fix(xbacklight): Respect 'enable-scroll' (#1014) * fix(build): support xcb-proto >=1.13 (jaagr/xpp#11), see #973 * fix(mpd): Respect MPD_HOST env variable (#1025), see #1007 * fix(i3): Reconnect i3 IPC socket on restart/error (#1099), see #762 * fix(cursor): Occasional crash on mouseover (#1124), see #1117 * fix(net): Mark 'not connected' on querying failure (#1171), see #1163 * fix(gcc): Fix -Wstringop-truncation warning (#1216, jaagr/i3ipcpp#7), see #1215 * fix(builder): Don't truncate colors with same channels (#1217), see #1183 * fix(bspwm): Consistent behavior when scrolling through multiple desktops (#986), see #981 * fix(builder): Respect label-ellipsis option (#1198), see #1194 --- README.md | 2 +- contrib/polybar-git.aur/PKGBUILD | 4 ++-- contrib/polybar.aur/PKGBUILD | 10 +++++----- include/version.hpp | 4 ++-- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 47916885..d3e0cd2a 100644 --- a/README.md +++ b/README.md @@ -121,7 +121,7 @@ Find a more complete list on the [dedicated wiki page](https://github.com/jaagr/ Please [report any problems](https://github.com/jaagr/polybar/issues/new) you run into when building the project. ~~~ sh - $ git clone --branch 3.1.0 --recursive https://github.com/jaagr/polybar + $ git clone --branch 3.2 --recursive https://github.com/jaagr/polybar $ mkdir polybar/build $ cd polybar/build $ cmake .. diff --git a/contrib/polybar-git.aur/PKGBUILD b/contrib/polybar-git.aur/PKGBUILD index b19240b9..06451acb 100644 --- a/contrib/polybar-git.aur/PKGBUILD +++ b/contrib/polybar-git.aur/PKGBUILD @@ -2,8 +2,8 @@ # Contributor: Michael Carlberg _pkgname=polybar pkgname="${_pkgname}-git" -pkgver=3.1.0 -pkgrel=3 +pkgver=3.2.0 +pkgrel=1 pkgdesc="A fast and easy-to-use status bar" arch=("i686" "x86_64") url="https://github.com/jaagr/polybar" diff --git a/contrib/polybar.aur/PKGBUILD b/contrib/polybar.aur/PKGBUILD index 8345c34a..a6802f89 100644 --- a/contrib/polybar.aur/PKGBUILD +++ b/contrib/polybar.aur/PKGBUILD @@ -1,16 +1,18 @@ # Maintainer: Michael Carlberg # Contributor: Michael Carlberg pkgname=polybar -pkgver=3.1.0 -pkgrel=4 +pkgver=3.2.0 +pkgrel=1 pkgdesc="A fast and easy-to-use status bar" arch=("i686" "x86_64") url="https://github.com/jaagr/polybar" license=("MIT") depends=("cairo" "xcb-util-image" "xcb-util-wm" "xcb-util-xrm" "xcb-util-cursor") optdepends=("alsa-lib: alsa module support" + "pulseaudio: pulseaudio module support" "libmpdclient: mpd module support" - "wireless_tools: network module support" + "libnl: network module support" + "wireless_tools: network module support (legacy)" "jsoncpp: i3 module support" "i3-wm: i3 module support" "ttf-unifont: Font used in example config" @@ -23,9 +25,7 @@ source=("${pkgname}::git+${url}.git#tag=${pkgver}") md5sums=("SKIP") prepare() { - git -C "${pkgname}" cherry-pick -n 8173a6473e50a3bb0ff15e56644fa45268be84a4 git -C "${pkgname}" submodule update --init --recursive - git -C "${pkgname}/lib/xpp" checkout 00165e1a6d5dd61bc153e1352b21ec07fc81245d mkdir -p "${pkgname}/build" } diff --git a/include/version.hpp b/include/version.hpp index f8057be6..963749bd 100644 --- a/include/version.hpp +++ b/include/version.hpp @@ -1,4 +1,4 @@ #pragma once -#define GIT_TAG "3.1.0" -#define GIT_TAG_NAMESPACE v3_1_0 +#define GIT_TAG "3.2.0" +#define GIT_TAG_NAMESPACE v3_2_0