<feed xmlns='http://www.w3.org/2005/Atom'>
<title>pluma, branch meson</title>
<subtitle>Official text editor of the MATE desktop environment</subtitle>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/pluma/'/>
<entry>
<title>add meson support</title>
<updated>2026-03-22T21:08:28+00:00</updated>
<author>
<name>mbkma</name>
<email>johannes.unruh@fau.de</email>
</author>
<published>2026-03-22T09:18:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/pluma/commit/?id=4a14e878c1187d6cc1f76b87a24a6007314d996e'/>
<id>4a14e878c1187d6cc1f76b87a24a6007314d996e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>snippets: fix python 3.12+ invalid escape sequence warnings</title>
<updated>2026-03-18T15:14:51+00:00</updated>
<author>
<name>Marc Deslauriers</name>
<email>marc.deslauriers@canonical.com</email>
</author>
<published>2025-01-30T14:03:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/pluma/commit/?id=f1fd658bda21506fac8966821fcdb4c2a154b590'/>
<id>f1fd658bda21506fac8966821fcdb4c2a154b590</id>
<content type='text'>
In Python 3.12+, invalid escape sequences changed from a
DeprecationWarning to SyntaxWarning.

/usr/lib/x86_64-linux-gnu/pluma/plugins/snippets/Document.py:830: SyntaxWarning: invalid escape sequence '\/'
  prot1 = re.match('(^[a-z]+:\/\/|\/)(.*)', first)
/usr/lib/x86_64-linux-gnu/pluma/plugins/snippets/Document.py:831: SyntaxWarning: invalid escape sequence '\/'
  prot2 = re.match('(^[a-z]+:\/\/|\/)(.*)', second)
/usr/lib/x86_64-linux-gnu/pluma/plugins/snippets/SubstitutionParser.py:162: SyntaxWarning: invalid escape sequence '\s'
  match = re.match('\\\\?%s\s*' % self.REG_GROUP, tokens)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In Python 3.12+, invalid escape sequences changed from a
DeprecationWarning to SyntaxWarning.

/usr/lib/x86_64-linux-gnu/pluma/plugins/snippets/Document.py:830: SyntaxWarning: invalid escape sequence '\/'
  prot1 = re.match('(^[a-z]+:\/\/|\/)(.*)', first)
/usr/lib/x86_64-linux-gnu/pluma/plugins/snippets/Document.py:831: SyntaxWarning: invalid escape sequence '\/'
  prot2 = re.match('(^[a-z]+:\/\/|\/)(.*)', second)
/usr/lib/x86_64-linux-gnu/pluma/plugins/snippets/SubstitutionParser.py:162: SyntaxWarning: invalid escape sequence '\s'
  match = re.match('\\\\?%s\s*' % self.REG_GROUP, tokens)
</pre>
</div>
</content>
</entry>
<entry>
<title>fix memleak</title>
<updated>2026-03-12T16:24:58+00:00</updated>
<author>
<name>mbkma</name>
<email>johannes.unruh@fau.de</email>
</author>
<published>2026-03-11T22:58:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/pluma/commit/?id=319f7e77f7aed8e628e74559921bd94c095d432a'/>
<id>319f7e77f7aed8e628e74559921bd94c095d432a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>pluma-taglist-plugin: Move to right panel</title>
<updated>2026-03-09T12:37:00+00:00</updated>
<author>
<name>Victor Kareh</name>
<email>vkareh@redhat.com</email>
</author>
<published>2025-10-15T18:48:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/pluma/commit/?id=dacbaa9c15de32f1049d6954b5bb6ad7c10a37ff'/>
<id>dacbaa9c15de32f1049d6954b5bb6ad7c10a37ff</id>
<content type='text'>
Move the taglist plugin from the left side panel to the right panel.
This reflects the plugin's purpose better as a reference tool for tag
insertion and is more similar to how other IDEs have tags and symbols on
the right side.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Move the taglist plugin from the left side panel to the right panel.
This reflects the plugin's purpose better as a reference tool for tag
insertion and is more similar to how other IDEs have tags and symbols on
the right side.
</pre>
</div>
</content>
</entry>
<entry>
<title>pluma-window: Add right-side panel support</title>
<updated>2026-03-09T12:37:00+00:00</updated>
<author>
<name>Victor Kareh</name>
<email>vkareh@redhat.com</email>
</author>
<published>2025-10-15T18:36:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/pluma/commit/?id=5d0124afa9c8adc95f8ad3c163f7190d8d2690a3'/>
<id>5d0124afa9c8adc95f8ad3c163f7190d8d2690a3</id>
<content type='text'>
Add a third panel on the right side of the editor window, enabling
a three-panel layout with left, right, and bottom panes.

The right panel is hidden by default and its state persists across
sessions. The main use case is enabling plugins for previews, document
outline viewers, or tag lists, similar to other IDEs.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add a third panel on the right side of the editor window, enabling
a three-panel layout with left, right, and bottom panes.

The right panel is hidden by default and its state persists across
sessions. The main use case is enabling plugins for previews, document
outline viewers, or tag lists, similar to other IDEs.
</pre>
</div>
</content>
</entry>
<entry>
<title>build(deps): bump actions/checkout from 5 to 6</title>
<updated>2026-01-28T10:15:05+00:00</updated>
<author>
<name>dependabot[bot]</name>
<email>49699333+dependabot[bot]@users.noreply.github.com</email>
</author>
<published>2025-11-24T22:47:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/pluma/commit/?id=01ba5fede9ab601002c4e4d122b0585e16b3f3ce'/>
<id>01ba5fede9ab601002c4e4d122b0585e16b3f3ce</id>
<content type='text'>
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] &lt;support@github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] &lt;support@github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>CI: add missing dependency to fedora workflow</title>
<updated>2026-01-28T10:09:31+00:00</updated>
<author>
<name>raveit65</name>
<email>raveit65.sun@gmail.com</email>
</author>
<published>2026-01-26T09:06:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/pluma/commit/?id=e6f98eb4c2648dc479222463d5b8f8d62deec9ec'/>
<id>e6f98eb4c2648dc479222463d5b8f8d62deec9ec</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>configure: Only use girepository-2.0 if libpeas uses it too</title>
<updated>2026-01-26T19:38:39+00:00</updated>
<author>
<name>Victor Kareh</name>
<email>vkareh@redhat.com</email>
</author>
<published>2026-01-26T15:14:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/pluma/commit/?id=197c3e93b91e0f0ee6ba34a7887feafd2fa1651e'/>
<id>197c3e93b91e0f0ee6ba34a7887feafd2fa1651e</id>
<content type='text'>
Fixes header conflicts on systems where glib has girepository-2.0 but
libpeas still uses the old gobject-introspection-1.0 headers.

Fixes https://github.com/mate-desktop/pluma/issues/729
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes header conflicts on systems where glib has girepository-2.0 but
libpeas still uses the old gobject-introspection-1.0 headers.

Fixes https://github.com/mate-desktop/pluma/issues/729
</pre>
</div>
</content>
</entry>
<entry>
<title>Release 1.28.1</title>
<updated>2026-01-22T06:35:03+00:00</updated>
<author>
<name>lukefromdc</name>
<email>lukefromdc@hushmail.com</email>
</author>
<published>2026-01-22T06:35:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/pluma/commit/?id=837036d73ed49a390cae6bbaac9a4f1e6d5b6de9'/>
<id>837036d73ed49a390cae6bbaac9a4f1e6d5b6de9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>plugins: Fix compatibility with gobject-introspection</title>
<updated>2026-01-20T19:55:18+00:00</updated>
<author>
<name>Victor Kareh</name>
<email>vkareh@redhat.com</email>
</author>
<published>2026-01-19T20:50:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/pluma/commit/?id=009702fbf5ccc3c774bc8cb63fe78069aebca027'/>
<id>009702fbf5ccc3c774bc8cb63fe78069aebca027</id>
<content type='text'>
Starting with version 1.80, girepository moved from gobject
introspection into glib and bump the API version to 2.0. This change
adds flags to support both API versions.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Starting with version 1.80, girepository moved from gobject
introspection into glib and bump the API version to 2.0. This change
adds flags to support both API versions.
</pre>
</div>
</content>
</entry>
</feed>
