summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Hergert <chergert@redhat.com>2019-09-04 12:16:11 -0700
committerChristian Hergert <chergert@redhat.com>2019-09-04 12:22:55 -0700
commit92fe708cc09a88987d3130e1da255851bc0910c2 (patch)
tree8fb31e0a019f3012a8b181517ed5d8be05e87297
parentac3c591eea2626dc2350b3709b4b9d07404f9104 (diff)
downloadgtksourceview-92fe708cc09a88987d3130e1da255851bc0910c2.tar.gz
Release GtkSourceView 4.3.924.3.92
This is a Release Candidate for 4.4.0 which is the next stable series in the GtkSourceView life-cycle.
-rw-r--r--NEWS21
-rw-r--r--README4
-rw-r--r--meson.build2
3 files changed, 24 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index c2aa8f65..1f714ecb 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,24 @@
+News in 4.3.92, 2019-09-04
+--------------------------
+* RC release for 4.4 scheduled for next week.
+* New syntax highlighting definition file for: ASCII Doc, Dockerfile
+* Improvements to the syntax highlighting of: CSS, Gradle, HTML, C, PHP,
+ YAML, and Grovvy.
+* Performance improvements in line number drawing.
+* GtkSourceView now requires GTK 3.22 or newer.
+* GtkSourceView no longer uses many deprecated APIs from GTK.
+* GtkSourceView now uses fribidi directly to determine bidriectional
+ direction for cursors.
+* GtkSourceView now relies on GObject for correct marsharllers as well
+ as va_marshallers or provides its own. This improves profiling with
+ kernel stack unwinders such as Linux's perf.
+* Visual column detection is improved to use the tab-width instead of
+ the indent-width.
+* Support for DnD from GIMPs color palette has been improved.
+* A performance optimization has been added to avoid painting mark
+ backgrounds if no GtkSourceMarks have been registered.
+* Translation updates.
+
News in 4.3.1, 2019-04-23
-------------------------
* Ported to meson build system, autotools will be phased out by next release.
diff --git a/README b/README
index 596657c5..6c8084ba 100644
--- a/README
+++ b/README
@@ -1,7 +1,7 @@
GtkSourceView
=============
-This is version 4.0.4 of GtkSourceView.
+This is version 4.3.92 of GtkSourceView.
GtkSourceView is a GNOME library that extends GtkTextView, the standard GTK+
widget for multiline text editing. GtkSourceView adds support for syntax
@@ -20,7 +20,7 @@ Dependencies
------------
* GLib >= 2.48
-* GTK+ >= 3.20
+* GTK+ >= 3.22
* libxml2 >= 2.6
* freebidi >= 0.19.7
diff --git a/meson.build b/meson.build
index 8eac4749..01996f31 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('gtksourceview', 'c',
- version: '4.3.2',
+ version: '4.3.92',
license: 'LGPL-2.1-or-later',
meson_version: '>= 0.49.0',
default_options: [ 'c_std=gnu99',