<feed xmlns='http://www.w3.org/2005/Atom'>
<title>marco/src/core, branch v1.22.1</title>
<subtitle>MATE default window manager</subtitle>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/marco/'/>
<entry>
<title>window: set atom__NET_WM_STATE_FOCUSED for meta_window_appears_focused</title>
<updated>2019-04-24T12:23:03+00:00</updated>
<author>
<name>raveit65</name>
<email>mate@raveit.de</email>
</author>
<published>2019-04-23T16:33:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/marco/commit/?id=b4bf3cc6e1a121230812113d6dad9b734109db7f'/>
<id>b4bf3cc6e1a121230812113d6dad9b734109db7f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>window: make docks and spashscreens appear focused</title>
<updated>2019-04-24T12:22:36+00:00</updated>
<author>
<name>raveit65</name>
<email>mate@raveit.de</email>
</author>
<published>2019-04-23T15:05:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/marco/commit/?id=6a18687be0037b1a203c1e8630918f1143fbbe6a'/>
<id>6a18687be0037b1a203c1e8630918f1143fbbe6a</id>
<content type='text'>
Set the NET_WM_STATE_FOCUSED property on windows of type dock or
spashscreen so that they don't get the state GTK_STATE_FLAG_BACKDROP
set by default.

Based on:
https://gitlab.gnome.org/GNOME/metacity/commit/b3ef887
origin xfwm4 commit:
https://git.xfce.org/xfce/xfwm4/commit/?id=0feb29e78bb3
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Set the NET_WM_STATE_FOCUSED property on windows of type dock or
spashscreen so that they don't get the state GTK_STATE_FLAG_BACKDROP
set by default.

Based on:
https://gitlab.gnome.org/GNOME/metacity/commit/b3ef887
origin xfwm4 commit:
https://git.xfce.org/xfce/xfwm4/commit/?id=0feb29e78bb3
</pre>
</div>
</content>
</entry>
<entry>
<title>Do not judge whether the window is decorated or not</title>
<updated>2019-03-06T14:12:59+00:00</updated>
<author>
<name>zhuyaliang</name>
<email>15132211195@163.com</email>
</author>
<published>2019-02-28T07:42:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/marco/commit/?id=369338fb864c1069b6e2a32906beafe96bfe3a6d'/>
<id>369338fb864c1069b6e2a32906beafe96bfe3a6d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>screen: Fix use of memory after it is freed</title>
<updated>2019-03-06T11:03:16+00:00</updated>
<author>
<name>Pablo Barciela</name>
<email>scow@riseup.net</email>
</author>
<published>2019-02-26T17:03:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/marco/commit/?id=230f96cbd29d45c970e3c107e99d468396e91c90'/>
<id>230f96cbd29d45c970e3c107e99d468396e91c90</id>
<content type='text'>
Fixes Clang static analyzer warning:

core/screen.c:754:16: warning: Use of memory after it is freed
      result = g_list_prepend (result, info);
               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes Clang static analyzer warning:

core/screen.c:754:16: warning: Use of memory after it is freed
      result = g_list_prepend (result, info);
               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
</pre>
</div>
</content>
</entry>
<entry>
<title>[Security] Use 'g_strlcpy' instead of 'strcpy'</title>
<updated>2019-03-05T00:53:35+00:00</updated>
<author>
<name>Pablo Barciela</name>
<email>scow@riseup.net</email>
</author>
<published>2019-02-28T15:11:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/marco/commit/?id=76a5cffd6f7e2cefc91c3e6e7e88eb156524a263'/>
<id>76a5cffd6f7e2cefc91c3e6e7e88eb156524a263</id>
<content type='text'>
Fixes Clang static analyzer warnings:

warning: Call to function 'strcpy' is insecure as it does not provide bounding of the memory buffer. Replace unbounded copy functions with analogous functions that support length arguments such as 'strlcpy'. CWE-119
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes Clang static analyzer warnings:

warning: Call to function 'strcpy' is insecure as it does not provide bounding of the memory buffer. Replace unbounded copy functions with analogous functions that support length arguments such as 'strlcpy'. CWE-119
</pre>
</div>
</content>
</entry>
<entry>
<title>screen: Remove get_current_monitor in favor of get_current_xinerama</title>
<updated>2019-01-31T20:00:19+00:00</updated>
<author>
<name>Victor Kareh</name>
<email>vkareh@redhat.com</email>
</author>
<published>2019-01-31T12:16:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/marco/commit/?id=fad23c9979d3ba04f377eb0704b6d78b9ebf43c4'/>
<id>fad23c9979d3ba04f377eb0704b6d78b9ebf43c4</id>
<content type='text'>
Since xinerama already contains information on the monitor and its rectangle, there is no need to go through Gdk to get this information again.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Since xinerama already contains information on the monitor and its rectangle, there is no need to go through Gdk to get this information again.
</pre>
</div>
</content>
</entry>
<entry>
<title>Increase icon size on tab and workspace popups</title>
<updated>2019-01-31T20:00:19+00:00</updated>
<author>
<name>Victor Kareh</name>
<email>vkareh@redhat.com</email>
</author>
<published>2019-01-22T15:54:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/marco/commit/?id=8abba9a150e4004004609ff7a1c72a188f170d5f'/>
<id>8abba9a150e4004004609ff7a1c72a188f170d5f</id>
<content type='text'>
Alt+Tab and Workspace popups should be sized relative to the monitor size.
This way they look nice and large regardless of the display resolution.

Also, given much larger modern resolutions, icon sizes should be larger by default.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Alt+Tab and Workspace popups should be sized relative to the monitor size.
This way they look nice and large regardless of the display resolution.

Also, given much larger modern resolutions, icon sizes should be larger by default.
</pre>
</div>
</content>
</entry>
<entry>
<title>screen: avoid 'NULL' in 'meta_error_trap...' functions</title>
<updated>2019-01-15T04:55:52+00:00</updated>
<author>
<name>Pablo Barciela</name>
<email>scow@riseup.net</email>
</author>
<published>2019-01-14T19:58:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/marco/commit/?id=a931b089754c0fc3e43705e9ac2137803274dced'/>
<id>a931b089754c0fc3e43705e9ac2137803274dced</id>
<content type='text'>
Fixes https://github.com/mate-desktop/marco/issues/445
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes https://github.com/mate-desktop/marco/issues/445
</pre>
</div>
</content>
</entry>
<entry>
<title>prefs: avoid deprecated 'g_settings_list_keys'</title>
<updated>2019-01-14T04:55:34+00:00</updated>
<author>
<name>Pablo Barciela</name>
<email>scow@riseup.net</email>
</author>
<published>2019-01-08T23:35:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/marco/commit/?id=c0be5a780b57e4e6133af6dc0c5637090517cd58'/>
<id>c0be5a780b57e4e6133af6dc0c5637090517cd58</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>'meta_error_trap_push' instead 'meta_error_trap_push_with_return'</title>
<updated>2019-01-07T00:44:52+00:00</updated>
<author>
<name>Pablo Barciela</name>
<email>scow@riseup.net</email>
</author>
<published>2019-01-06T11:44:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/marco/commit/?id=4940310cda91a4bea223deb7568fb77829518ded'/>
<id>4940310cda91a4bea223deb7568fb77829518ded</id>
<content type='text'>
both functions have the same code
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
both functions have the same code
</pre>
</div>
</content>
</entry>
</feed>
