<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mate-control-center/capplets, branch master</title>
<subtitle>Utilities to configure the MATE desktop</subtitle>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-control-center/'/>
<entry>
<title>mate-about-me: handle additional pam errors</title>
<updated>2026-04-08T20:20:06+00:00</updated>
<author>
<name>Alexander Pyhalov</name>
<email>apyhalov@gmail.com</email>
</author>
<published>2018-11-08T12:49:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-control-center/commit/?id=0f0f519772e674b47bbe6f6c25d3269b426a4a97'/>
<id>0f0f519772e674b47bbe6f6c25d3269b426a4a97</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>mate-about-me: interact with passwd via /dev/ptmx</title>
<updated>2026-04-08T20:20:06+00:00</updated>
<author>
<name>Alexander Pyhalov</name>
<email>apyhalov@gmail.com</email>
</author>
<published>2018-11-06T11:23:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-control-center/commit/?id=47d60e9dcf10efc9b7d0bc1dcfe816d719081a2c'/>
<id>47d60e9dcf10efc9b7d0bc1dcfe816d719081a2c</id>
<content type='text'>
On illumos/Solaris, the passwd command requires a real terminal and
won't work over pipes. This adds a guarded code path so that the "Change
Password" dialog works on these platforms. The Linux/BSD behavior is
unchanged.

Fixes #384
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
On illumos/Solaris, the passwd command requires a real terminal and
won't work over pipes. This adds a guarded code path so that the "Change
Password" dialog works on these platforms. The Linux/BSD behavior is
unchanged.

Fixes #384
</pre>
</div>
</content>
</entry>
<entry>
<title>fix memleak</title>
<updated>2026-03-12T16:25:17+00:00</updated>
<author>
<name>mbkma</name>
<email>johannes.unruh@fau.de</email>
</author>
<published>2026-03-11T23:06:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-control-center/commit/?id=102d91c0d9463424777f02134c0cf065c4278e67'/>
<id>102d91c0d9463424777f02134c0cf065c4278e67</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>windows: Add UI for titlebar mouse actions</title>
<updated>2025-09-11T18:39:30+00:00</updated>
<author>
<name>Victor Kareh</name>
<email>vkareh@redhat.com</email>
</author>
<published>2025-08-15T11:23:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-control-center/commit/?id=206c90abd8b71d19bd7a072ce57ba5771873b930'/>
<id>206c90abd8b71d19bd7a072ce57ba5771873b930</id>
<content type='text'>
Expose new titlebar mouse actions in the window properties
dialog (middle-click, right-click, scroll wheel).

Note: requires the matching marco changes to work properly.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Expose new titlebar mouse actions in the window properties
dialog (middle-click, right-click, scroll wheel).

Note: requires the matching marco changes to work properly.
</pre>
</div>
</content>
</entry>
<entry>
<title>Update window layout</title>
<updated>2025-09-09T19:11:54+00:00</updated>
<author>
<name>luigifab</name>
<email>31816829+luigifab@users.noreply.github.com</email>
</author>
<published>2025-06-09T11:46:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-control-center/commit/?id=d26f436c9bce4a0174044695ac29f216f137ed68'/>
<id>d26f436c9bce4a0174044695ac29f216f137ed68</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix: support change password with passwdqc</title>
<updated>2025-09-08T20:54:05+00:00</updated>
<author>
<name>Oz Tiram</name>
<email>oz.tiram@gmail.com</email>
</author>
<published>2024-08-04T19:43:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-control-center/commit/?id=9fc83c5b22e5b4409ddfe31a36e8e42cc563499a'/>
<id>9fc83c5b22e5b4409ddfe31a36e8e42cc563499a</id>
<content type='text'>
This one was quite tricky ... On systems where pam_passwdqc
is installed the prompt for password after succesfully authenticating
is not:

```
New password:
```

But:

```
Enter new password:
```

See:

https://github.com/openwall/passwdqc/blob/7bf266fcf6ce9782b73722664e36dabd68f48c48/pam_passwdqc.c#L64

passwdqc is installed by default in Gentoo, but might be also installed
in other Linux distributions.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This one was quite tricky ... On systems where pam_passwdqc
is installed the prompt for password after succesfully authenticating
is not:

```
New password:
```

But:

```
Enter new password:
```

See:

https://github.com/openwall/passwdqc/blob/7bf266fcf6ce9782b73722664e36dabd68f48c48/pam_passwdqc.c#L64

passwdqc is installed by default in Gentoo, but might be also installed
in other Linux distributions.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove focus on close button</title>
<updated>2025-08-29T18:15:50+00:00</updated>
<author>
<name>luigifab</name>
<email>31816829+luigifab@users.noreply.github.com</email>
</author>
<published>2025-06-02T10:13:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-control-center/commit/?id=2b89f7111bf64577cf0502842bbac07dff29e3eb'/>
<id>2b89f7111bf64577cf0502842bbac07dff29e3eb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update layout of window-properties.ui</title>
<updated>2025-06-02T20:22:44+00:00</updated>
<author>
<name>luigifab</name>
<email>31816829+luigifab@users.noreply.github.com</email>
</author>
<published>2025-06-02T09:11:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-control-center/commit/?id=5ebedfa80a795da9e7a785bfa19250120426acf9'/>
<id>5ebedfa80a795da9e7a785bfa19250120426acf9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>keyboard: option to show/select extra layouts</title>
<updated>2025-04-23T12:33:19+00:00</updated>
<author>
<name>Oleksii Prudkyi</name>
<email>Oleksii.Prudkyi@gmail.com</email>
</author>
<published>2024-10-27T10:47:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-control-center/commit/?id=f4dcf5220b070d57609c85e6e10eaa638f7ce561'/>
<id>f4dcf5220b070d57609c85e6e10eaa638f7ce561</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>keybindings: Do not present junk shortcut for headers</title>
<updated>2025-04-01T23:36:28+00:00</updated>
<author>
<name>Colomban Wendling</name>
<email>cwendling@hypra.fr</email>
</author>
<published>2025-03-25T14:45:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-control-center/commit/?id=6b9a5c5348b5e3792e9ea92bfdfc71151bc1fcec'/>
<id>6b9a5c5348b5e3792e9ea92bfdfc71151bc1fcec</id>
<content type='text'>
For screen reader's sake, make the shortcut empty when hidden,
otherwise a more or less random value is presented.  The actual value
is whatever the render was last used with, remembering cell renderers
are reused for every row.

This could also be fixed in the accessibility implementation side, but
we rely on GTK's, so it's easier to clean it up here than modify GTK or
subclass it further.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
For screen reader's sake, make the shortcut empty when hidden,
otherwise a more or less random value is presented.  The actual value
is whatever the render was last used with, remembering cell renderers
are reused for every row.

This could also be fixed in the accessibility implementation side, but
we rely on GTK's, so it's easier to clean it up here than modify GTK or
subclass it further.
</pre>
</div>
</content>
</entry>
</feed>
