From c3ef99b719307ca21683174dd361ef1c7367a038 Mon Sep 17 00:00:00 2001 From: Patrick Ziegler Date: Sun, 23 Dec 2018 21:36:30 +0100 Subject: [PATCH] Release 3.3.0 (#1543) ### Breaking Changes: None ### Changelog **New Config Options** The following config options were added In the `[settings]` section: * `pseudo-transparency` In `internal/cpu`: * `ramp-coreload-spacing`, spacing between elements in `` elements * `%percentage-sum%` in `label`. Shows sum of all percentages In `custom/script`: * `double-click-left` * `double-click-middle` * `double-click-right` In `internal/pulseaudio`: * `interval`, volume increase and decrease steps in percentage points In `internal/memory`: * `bar-swap-used` * `bar-swap-free` * `ramp-swap-used` * `ramp-swap-free` **Deprecations** * `tray-transparent` in the bar section is no longer used. The tray now always uses pseudo-transparency **Features** * volume: adjustable volume steps (#1364), see #1361 * memory: Add progress bars and ramps for swap (#1325) * render: pseudo-transparency (always used in the tray) (#595) * cpu: * Configurable spacing in between coreloads (#1472), see #1389 * Non-normalized cpu load (#1517), see #1516 * script: Double click actions (#1442) * net: Support for bridge interfaces (#1528), see #1522 * token: zero pad tokens when min-width value starts with a `0` (#1341), see #1332 **Fixes** * config: Use font patterns detected on system in sample config (#1350) * net: Disconnected module when SSID is only an emoji (#1371), see #1367 * tray: Tray overlapping with bar (#1392), see #591 * build: Several build errors (#1395, #1454, #1470, jaagr/xpp#12, #1493), see #1447, #1469, #750, #1492 * mpd: format-online-prefix not working (#1402), see #1399 * font: Crash for some font-patterns (#1451), see #1435 * script: * Only `%counter%` or `%pid%` token usable, never both (#1456) * click actions with colons in them (#1457), see #984 * renderer: Bar locks up when xorg composite extension is disabled (#1430), see #1425 --- README.md | 2 +- contrib/polybar-git.aur/PKGBUILD | 2 +- contrib/polybar.aur/PKGBUILD | 2 +- include/version.hpp | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index fac8727f..f4ff1387 100644 --- a/README.md +++ b/README.md @@ -130,7 +130,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/choose) you run into when building the project. ~~~ sh - $ git clone --branch 3.2 --recursive https://github.com/jaagr/polybar + $ git clone --branch 3.3 --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 dc85cc1b..c5036367 100644 --- a/contrib/polybar-git.aur/PKGBUILD +++ b/contrib/polybar-git.aur/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: Michael Carlberg _pkgname=polybar pkgname="${_pkgname}-git" -pkgver=3.2.0 +pkgver=3.3.0 pkgrel=1 pkgdesc="A fast and easy-to-use status bar" arch=("i686" "x86_64") diff --git a/contrib/polybar.aur/PKGBUILD b/contrib/polybar.aur/PKGBUILD index 1ee7497c..6819e1c7 100644 --- a/contrib/polybar.aur/PKGBUILD +++ b/contrib/polybar.aur/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Michael Carlberg # Contributor: Michael Carlberg pkgname=polybar -pkgver=3.2.0 +pkgver=3.3.0 pkgrel=1 pkgdesc="A fast and easy-to-use status bar" arch=("i686" "x86_64") diff --git a/include/version.hpp b/include/version.hpp index 963749bd..f4e680a1 100644 --- a/include/version.hpp +++ b/include/version.hpp @@ -1,4 +1,4 @@ #pragma once -#define GIT_TAG "3.2.0" -#define GIT_TAG_NAMESPACE v3_2_0 +#define GIT_TAG "3.3.0" +#define GIT_TAG_NAMESPACE v3_3_0