From: Michael Stapelberg Date: Tue, 21 Apr 2015 06:31:40 +0000 (+0200) Subject: Merge pull request #1636 from Deiz/update-notices X-Git-Tag: 4.11~125 X-Git-Url: https://git.sur5r.net/?p=i3%2Fi3;a=commitdiff_plain;h=b1974a469f2dec2af753ea4735f1b1c5d37161da;hp=884214f14fdbd0a4a368d2a36d5e50324fa1d52a Merge pull request #1636 from Deiz/update-notices Update copyright notices and get rid of ranges --- diff --git a/docs/debugging b/docs/debugging index 1253b0c5..b8031036 100644 --- a/docs/debugging +++ b/docs/debugging @@ -10,10 +10,10 @@ Thank you for being interested in debugging i3. It really means something to us to get your bug fixed. If you have any questions about the process and/or need further help, do not hesitate to contact us! -== Verify you are using i3 ≥ 4.7 +== Verify you are using i3 ≥ 4.10 -Only the latest major version of i3 is supported, i.e. version 4.7 currently. -To verify which version you are running, use: +Only the latest major version of i3 is supported. To verify which version +you are running, use: --------------- $ i3 --moreversion 2>&- || i3 --version diff --git a/release.sh b/release.sh index 16227111..4dd02777 100755 --- a/release.sh +++ b/release.sh @@ -147,6 +147,7 @@ git add downloads/i3-${RELEASE_VERSION}.tar.bz2* cp ${TMPDIR}/i3/RELEASE-NOTES-${RELEASE_VERSION} downloads/RELEASE-NOTES-${RELEASE_VERSION}.txt git add downloads/RELEASE-NOTES-${RELEASE_VERSION}.txt sed -i "s,

Documentation for i3 v[^<]*

,

Documentation for i3 v${RELEASE_VERSION}

,g" docs/index.html +sed -i "s,Verify you are using i3 ≥ .*,Verify you are using i3 ≥ ${RELEASE_VERSION},g" docs/debugging.html sed -i "s,[^<]*,${RELEASE_VERSION},g" index.html sed -i "s,The current stable version is .*$,The current stable version is ${RELEASE_VERSION}.,g" downloads/index.html sed -i "s,,\n \n ${RELEASE_VERSION}\n i3-${RELEASE_VERSION}.tar.bz2\n $(ls -lh ../i3/i3-${RELEASE_VERSION}.tar.bz2 | awk -F " " {'print $5'} | sed 's/K$/ KiB/g')\n signature\n $(date +'%Y-%m-%d')\n release notes\n \n,g" downloads/index.html diff --git a/src/handlers.c b/src/handlers.c index 56e29607..532ab189 100644 --- a/src/handlers.c +++ b/src/handlers.c @@ -880,7 +880,7 @@ static void handle_client_message(xcb_client_message_event_t *event) { floating_drag_window(con->parent, &fake); break; case _NET_WM_MOVERESIZE_SIZE_TOPLEFT... _NET_WM_MOVERESIZE_SIZE_LEFT: - floating_resize_window(con->parent, FALSE, &fake); + floating_resize_window(con->parent, false, &fake); break; default: DLOG("_NET_WM_MOVERESIZE direction %d not implemented\n", direction);