summaryrefslogtreecommitdiff
path: root/.git-hooks
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-10-22 17:26:58 +0100
committerCaolán McNamara <caolanm@redhat.com>2020-10-22 22:27:50 +0200
commit3b3c181e5010c7b1ef6f82f23101ce45f7f0a621 (patch)
tree53ef11abc76cf61422945f40c0bf7a96aeb5a95c /.git-hooks
parentd7c8799c14e16060a834dcaf50aa962a27d31314 (diff)
set all .ui min require version of gtk to 3.20
and update the version mentioned in our min req in the readme.xrm follow up to commit 0c9ccc7dbf6deb4d012e0d1e6eb934e54e0f19bc Author: Caolán McNamara <caolanm@redhat.com> Date: Fri Oct 2 21:21:45 2020 +0100 raise min version of gtk to 3.20.0 Change-Id: Ibae55c97e1ee577f4b7435d124cda6a21005ad0c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104692 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to '.git-hooks')
-rwxr-xr-x.git-hooks/pre-commit4
1 files changed, 2 insertions, 2 deletions
diff --git a/.git-hooks/pre-commit b/.git-hooks/pre-commit
index 5f9f5fc5eb2b..fd0cfeea2e62 100755
--- a/.git-hooks/pre-commit
+++ b/.git-hooks/pre-commit
@@ -105,9 +105,9 @@ sub check_whitespaces($)
{
bad_line("translatable .ui file line without context", $_, "ui");
}
- if ((/requires/) and (/lib="gtk+/) and not (/version="3.18/))
+ if ((/requires/) and (/lib="gtk+/) and not (/version="3.20/))
{
- bad_line("min supported version of gtk3 is 3.18", $_, "ui");
+ bad_line("min supported version of gtk3 is 3.20", $_, "ui");
}
if ((/<interface/) and not(/domain=/))
{