<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mate-applets, branch master</title>
<subtitle>Applets for use with the MATE panel</subtitle>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-applets/'/>
<entry>
<title>build(deps): bump actions/cache from 5 to 6</title>
<updated>2026-06-25T15:39:43+00:00</updated>
<author>
<name>dependabot[bot]</name>
<email>49699333+dependabot[bot]@users.noreply.github.com</email>
</author>
<published>2026-06-25T15:33:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-applets/commit/?id=dab9d51f1145487eaac4312736fb275628a441d4'/>
<id>dab9d51f1145487eaac4312736fb275628a441d4</id>
<content type='text'>
Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/cache
  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/cache](https://github.com/actions/cache) from 5 to 6.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/cache
  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>drivemount: fix crash when the icon theme changes</title>
<updated>2026-06-18T23:32:03+00:00</updated>
<author>
<name>Cigydd</name>
<email>cigydd@gmail.com</email>
</author>
<published>2026-06-15T20:42:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-applets/commit/?id=db484d13c3bf7d527c0baa3b4ca7def54ec65d27'/>
<id>db484d13c3bf7d527c0baa3b4ca7def54ec65d27</id>
<content type='text'>
DriveButton connects a "changed" handler to the global default
GtkIconTheme but drive_button_dispose() never disconnected it. The icon
theme outlives the button, so after a button is destroyed (a volume or
mount is removed) a later "changed" emission runs the handler on freed
memory and schedules drive_button_update() via an idle source, crashing
the panel with a use-after-free.

Disconnect the handler in drive_button_dispose().

Assisted-by: Claude:claude-opus-4.8
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
DriveButton connects a "changed" handler to the global default
GtkIconTheme but drive_button_dispose() never disconnected it. The icon
theme outlives the button, so after a button is destroyed (a volume or
mount is removed) a later "changed" emission runs the handler on freed
memory and schedules drive_button_update() via an idle source, crashing
the panel with a use-after-free.

Disconnect the handler in drive_button_dispose().

Assisted-by: Claude:claude-opus-4.8
</pre>
</div>
</content>
</entry>
<entry>
<title>build(deps): bump actions/checkout from 6 to 7</title>
<updated>2026-06-18T16:59:42+00:00</updated>
<author>
<name>dependabot[bot]</name>
<email>49699333+dependabot[bot]@users.noreply.github.com</email>
</author>
<published>2026-06-18T15:33:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-applets/commit/?id=688ba3d6a6db6def69a965b5dba0d211d5407969'/>
<id>688ba3d6a6db6def69a965b5dba0d211d5407969</id>
<content type='text'>
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7.
- [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/v6...v7)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '7'
  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 6 to 7.
- [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/v6...v7)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '7'
  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>stickynotes: add fixed-size notes support</title>
<updated>2026-06-03T22:06:56+00:00</updated>
<author>
<name>Quintin Maldonado</name>
<email>qmaldonado@outlook.com</email>
</author>
<published>2022-09-05T19:08:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-applets/commit/?id=1c9a5e6751f8f101d780955e48ea4532710d7068'/>
<id>1c9a5e6751f8f101d780955e48ea4532710d7068</id>
<content type='text'>
Add a new preference to force fixed size on all notes to prevent
resizing. Also fix a bug where notes taller than the screen height would
not display scrollbars after applet restart.

Fixes #370
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add a new preference to force fixed size on all notes to prevent
resizing. Also fix a bug where notes taller than the screen height would
not display scrollbars after applet restart.

Fixes #370
</pre>
</div>
</content>
</entry>
<entry>
<title>netspeed: avoid glibtop warnings for non-existent network devices</title>
<updated>2026-05-27T19:55:54+00:00</updated>
<author>
<name>Victor Kareh</name>
<email>vkareh@redhat.com</email>
</author>
<published>2026-03-11T21:03:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-applets/commit/?id=bdf674770c36b708cc1397b93f9fe44c6aef2c53'/>
<id>bdf674770c36b708cc1397b93f9fe44c6aef2c53</id>
<content type='text'>
When a network interface is disabled at the kernel level, the applet
tries to read from a device that no longer exist, generating continuous
warning messages in syslog.

Check if the device exists before calling glibtop_get_netload in both
is_dummy_device and get_device_info. When the device doesn't exist,
get_device_info returns a non-running device info, allowing the existing
auto-change logic to find an active device.

Fixes #688
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When a network interface is disabled at the kernel level, the applet
tries to read from a device that no longer exist, generating continuous
warning messages in syslog.

Check if the device exists before calling glibtop_get_netload in both
is_dummy_device and get_device_info. When the device doesn't exist,
get_device_info returns a non-running device info, allowing the existing
auto-change logic to find an active device.

Fixes #688
</pre>
</div>
</content>
</entry>
<entry>
<title>fix invalid po files</title>
<updated>2026-04-29T20:19:53+00:00</updated>
<author>
<name>Olivier Schneider</name>
<email>olivier@oschneider.eu</email>
</author>
<published>2026-04-16T15:02:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-applets/commit/?id=d14b2ed05574c4fc8a7f52c671367c00da440d1f'/>
<id>d14b2ed05574c4fc8a7f52c671367c00da440d1f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>remove empty po files</title>
<updated>2026-04-29T20:19:53+00:00</updated>
<author>
<name>Olivier Schneider</name>
<email>olivier@oschneider.eu</email>
</author>
<published>2026-04-16T09:23:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-applets/commit/?id=c53e4d4d64d93d9d47b489f9944730b4d4059107'/>
<id>c53e4d4d64d93d9d47b489f9944730b4d4059107</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>remove invalid po files</title>
<updated>2026-04-29T20:19:53+00:00</updated>
<author>
<name>Olivier Schneider</name>
<email>olivier@oschneider.eu</email>
</author>
<published>2026-04-10T14:07:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-applets/commit/?id=1224040d613dfdf045b04b6a5a4f79e55ec97dfa'/>
<id>1224040d613dfdf045b04b6a5a4f79e55ec97dfa</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add translation coverage badge</title>
<updated>2026-04-29T20:19:53+00:00</updated>
<author>
<name>Olivier Schneider</name>
<email>olivier@oschneider.eu</email>
</author>
<published>2026-04-10T11:05:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-applets/commit/?id=f5740db8da2ff26fdba24060a7062e586f567f40'/>
<id>f5740db8da2ff26fdba24060a7062e586f567f40</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>retrieve last transifex translations</title>
<updated>2026-04-29T20:19:53+00:00</updated>
<author>
<name>Olivier Schneider</name>
<email>olivier@oschneider.eu</email>
</author>
<published>2026-04-09T14:46:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/mate-applets/commit/?id=194af151e498aefe5015edda0eb1c98fe3b58d14'/>
<id>194af151e498aefe5015edda0eb1c98fe3b58d14</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
