1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-20 04:02:27 +00:00

Update to 4.15

This commit is contained in:
Baptiste Daroussin 2018-03-20 17:25:58 +00:00
parent b78695d91f
commit 4293ae249b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=465099
3 changed files with 4 additions and 32 deletions

View File

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= i3
DISTVERSION= 4.14.1
PORTREVISION= 1
DISTVERSION= 4.15
CATEGORIES= x11-wm
MASTER_SITES= http://i3wm.org/downloads/

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1506347730
SHA256 (i3-4.14.1.tar.bz2) = d0063ac561f3aa8d7e31e137356815bad781bd6ad774030362c89abe96ab5fb1
SIZE (i3-4.14.1.tar.bz2) = 1173560
TIMESTAMP = 1521566408
SHA256 (i3-4.15.tar.bz2) = 217d524d1fbc85ae346b25f6848d1b7bcd2c23184ec88d29114bf5a621385326
SIZE (i3-4.15.tar.bz2) = 1196263

View File

@ -1,27 +0,0 @@
From bfc6e1217265c8c77a8382f5c7970d049e958250 Mon Sep 17 00:00:00 2001
From: Dan Elkouby <streetwalkermc@gmail.com>
Date: Sun, 30 Jul 2017 18:49:42 +0300
Subject: [PATCH] Create a new split container when switching a workspace
container to split layout
The behavior before 52ce8c8 was to do it regardless of what layout we're
switching to.
Fixes #2846
---
src/con.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/con.c b/src/con.c
index d346b9f45..94bfa6e9e 100644
--- src/con.c.orig
+++ src/con.c
@@ -1719,7 +1719,7 @@ void con_set_layout(Con *con, layout_t layout) {
con->workspace_layout = ws_layout;
DLOG("Setting layout to %d\n", layout);
con->layout = layout;
- } else if (layout == L_STACKED || layout == L_TABBED) {
+ } else if (layout == L_STACKED || layout == L_TABBED || layout == L_SPLITV || layout == L_SPLITH) {
DLOG("Creating new split container\n");
/* 1: create a new split container */
Con *new = con_new(NULL, NULL);