<feed xmlns='http://www.w3.org/2005/Atom'>
<title>dmenu.git/drw.c, branch master</title>
<subtitle>My fork of dmenu
</subtitle>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/dmenu.git/'/>
<entry>
<title>Fix memory leaks in drw</title>
<updated>2020-06-11T16:45:33+00:00</updated>
<author>
<name>Hiltjo Posthuma</name>
<email>hiltjo@codemadness.org</email>
</author>
<published>2020-06-11T16:45:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/dmenu.git/commit/?id=9b38fda6feda68f95754d5b8932b1a69471df960'/>
<id>9b38fda6feda68f95754d5b8932b1a69471df960</id>
<content type='text'>
Synced from dwm.
Patch by Alex Flierl &lt;shad0w73@freenet.de&gt;, thanks.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Synced from dwm.
Patch by Alex Flierl &lt;shad0w73@freenet.de&gt;, thanks.
</pre>
</div>
</content>
</entry>
<entry>
<title>Prepared 4.9 release.</title>
<updated>2019-02-02T12:54:15+00:00</updated>
<author>
<name>Anselm R Garbe</name>
<email>anselm@garbe.ca</email>
</author>
<published>2019-02-02T12:54:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/dmenu.git/commit/?id=65be875f5adf31e9c4762ac8a8d74b1dfdd78584'/>
<id>65be875f5adf31e9c4762ac8a8d74b1dfdd78584</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>drw: drw_scm_create: use Clr type</title>
<updated>2017-11-03T20:10:38+00:00</updated>
<author>
<name>Hiltjo Posthuma</name>
<email>hiltjo@codemadness.org</email>
</author>
<published>2017-11-03T20:10:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/dmenu.git/commit/?id=f0a5b75d6a0d2a62da45e9f65d92ea4a6a2d5831'/>
<id>f0a5b75d6a0d2a62da45e9f65d92ea4a6a2d5831</id>
<content type='text'>
in this context XftColor is a too low-level type.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
in this context XftColor is a too low-level type.
</pre>
</div>
</content>
</entry>
<entry>
<title>die() consistency: always add newline</title>
<updated>2016-08-12T12:39:30+00:00</updated>
<author>
<name>Hiltjo Posthuma</name>
<email>hiltjo@codemadness.org</email>
</author>
<published>2016-08-12T12:39:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/dmenu.git/commit/?id=026827fd65c1163a92a984c4eae3882a6d69f8df'/>
<id>026827fd65c1163a92a984c4eae3882a6d69f8df</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>import new drw from libsl and minor fixes.</title>
<updated>2016-06-03T17:13:15+00:00</updated>
<author>
<name>Markus Teich</name>
<email>markus.teich@stusta.mhn.de</email>
</author>
<published>2016-05-21T19:51:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/dmenu.git/commit/?id=44c7de3dcf49ee568863f55610f40c7a05b4dfe7'/>
<id>44c7de3dcf49ee568863f55610f40c7a05b4dfe7</id>
<content type='text'>
- extract drawitem function (code deduplication)
- fix bug where inputw was not correctly calculated from the widest item, but
  just from the one with the longest strlen() which is not the same. It's better
  now, but does not account for fallback fonts, since it would be too slow to
  calculate all the correct item widths on startup.
- minor code style fixes (indentation, useless line breaks)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- extract drawitem function (code deduplication)
- fix bug where inputw was not correctly calculated from the widest item, but
  just from the one with the longest strlen() which is not the same. It's better
  now, but does not account for fallback fonts, since it would be too slow to
  calculate all the correct item widths on startup.
- minor code style fixes (indentation, useless line breaks)
</pre>
</div>
</content>
</entry>
<entry>
<title>drw: cleanup drw_text, prevent gcc warning false-positive of unused var</title>
<updated>2015-10-20T20:56:57+00:00</updated>
<author>
<name>Hiltjo Posthuma</name>
<email>hiltjo@codemadness.org</email>
</author>
<published>2015-10-20T20:56:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/dmenu.git/commit/?id=44b242c76359e21b97418675f253d45feb7c04e0'/>
<id>44b242c76359e21b97418675f253d45feb7c04e0</id>
<content type='text'>
... we don't allow passing text is NULL anymore either, for that behaviour
just use drw_rect() (it is used in dwm).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
... we don't allow passing text is NULL anymore either, for that behaviour
just use drw_rect() (it is used in dwm).
</pre>
</div>
</content>
</entry>
<entry>
<title>drw: simplify drw_font_xcreate and prevent a potential unneeded allocation</title>
<updated>2015-10-20T20:55:39+00:00</updated>
<author>
<name>Hiltjo Posthuma</name>
<email>hiltjo@codemadness.org</email>
</author>
<published>2015-10-20T20:55:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/dmenu.git/commit/?id=e2e7fcb2198d40e2a50591932ee2b2a8f9969a5f'/>
<id>e2e7fcb2198d40e2a50591932ee2b2a8f9969a5f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>drw: a valid (non-NULL) Drw and Fnt context must be passed</title>
<updated>2015-10-20T20:53:55+00:00</updated>
<author>
<name>Hiltjo Posthuma</name>
<email>hiltjo@codemadness.org</email>
</author>
<published>2015-10-20T20:53:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/dmenu.git/commit/?id=1f2226df1380f178240bb81dddcad6c5ff2e9d62'/>
<id>1f2226df1380f178240bb81dddcad6c5ff2e9d62</id>
<content type='text'>
don't do these checks on this level. However for resource drw_*_free
we will allow it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
don't do these checks on this level. However for resource drw_*_free
we will allow it.
</pre>
</div>
</content>
</entry>
<entry>
<title>add sbase-style ecalloc(), calloc: or die</title>
<updated>2015-10-20T20:51:57+00:00</updated>
<author>
<name>Hiltjo Posthuma</name>
<email>hiltjo@codemadness.org</email>
</author>
<published>2015-10-20T20:51:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/dmenu.git/commit/?id=5a20b409c673a6736c3f9326cb54edc32908f717'/>
<id>5a20b409c673a6736c3f9326cb54edc32908f717</id>
<content type='text'>
... remove intermediary variables
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
... remove intermediary variables
</pre>
</div>
</content>
</entry>
<entry>
<title>drw style improvements</title>
<updated>2015-09-27T21:56:02+00:00</updated>
<author>
<name>Hiltjo Posthuma</name>
<email>hiltjo@codemadness.org</email>
</author>
<published>2015-09-27T21:56:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cacharle.com/dmenu.git/commit/?id=03cb1ec55abebb6355858f582d68e33dabcfe6f5'/>
<id>03cb1ec55abebb6355858f582d68e33dabcfe6f5</id>
<content type='text'>
this makes the code-style more consistent aswell.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
this makes the code-style more consistent aswell.
</pre>
</div>
</content>
</entry>
</feed>
