<feed xmlns='http://www.w3.org/2005/Atom'>
<title>xmobar/src, branch 0.19</title>
<subtitle>a minimalistic status bar</subtitle>
<id>https://jao.io/cgit/xmobar/atom?h=0.19</id>
<link rel='self' href='https://jao.io/cgit/xmobar/atom?h=0.19'/>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/xmobar/'/>
<updated>2013-10-27T15:20:25Z</updated>
<entry>
<title>New N/A string monitor option (cf. #119)</title>
<updated>2013-10-27T15:20:25Z</updated>
<author>
<name>Jose Antonio Ortega Ruiz</name>
<email>jao@gnu.org</email>
</author>
<published>2013-10-27T15:20:25Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/xmobar/commit/?id=3d2af8a47332235d6556d2d2a40f7392269cf0b0'/>
<id>urn:sha1:3d2af8a47332235d6556d2d2a40f7392269cf0b0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Using width options in wattage display (fixes #118)</title>
<updated>2013-10-27T14:24:37Z</updated>
<author>
<name>Jose Antonio Ortega Ruiz</name>
<email>jao@gnu.org</email>
</author>
<published>2013-10-27T14:24:37Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/xmobar/commit/?id=69a552a786d05011e3bad23f38add8f99c62468c'/>
<id>urn:sha1:69a552a786d05011e3bad23f38add8f99c62468c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Created UnsafeStdinReader plugin</title>
<updated>2013-09-12T01:05:12Z</updated>
<author>
<name>Thiago Negri</name>
<email>evohunz@gmail.com</email>
</author>
<published>2013-09-10T20:57:16Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/xmobar/commit/?id=b780acaeac9545199867405f6c14434e77baf1d7'/>
<id>urn:sha1:b780acaeac9545199867405f6c14434e77baf1d7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix for decoding problem in datetime plugin</title>
<updated>2013-08-29T15:55:50Z</updated>
<author>
<name>Jose Antonio Ortega Ruiz</name>
<email>jao@gnu.org</email>
</author>
<published>2013-08-29T15:55:50Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/xmobar/commit/?id=1d20b99ec742ce08a8083a01ccb15adb763815e1'/>
<id>urn:sha1:1d20b99ec742ce08a8083a01ccb15adb763815e1</id>
<content type='text'>
Should address issue #106
</content>
</entry>
<entry>
<title>Version bump</title>
<updated>2013-08-13T18:13:10Z</updated>
<author>
<name>Jose Antonio Ortega Ruiz</name>
<email>jao@gnu.org</email>
</author>
<published>2013-08-13T18:13:10Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/xmobar/commit/?id=fef0e7cb24f6b567c61c93cf8f5e13576a087b7c'/>
<id>urn:sha1:fef0e7cb24f6b567c61c93cf8f5e13576a087b7c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge branch 'safe-run-com' of https://github.com/00Davo/xmobar</title>
<updated>2013-08-11T21:04:34Z</updated>
<author>
<name>Jose Antonio Ortega Ruiz</name>
<email>jao@gnu.org</email>
</author>
<published>2013-08-11T21:04:34Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/xmobar/commit/?id=a4831ca74ebdcdc002650b3bb4ebf903984c4a33'/>
<id>urn:sha1:a4831ca74ebdcdc002650b3bb4ebf903984c4a33</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Plugins.Monitors.Weather: fix parsing of unknown station name</title>
<updated>2013-08-11T16:18:44Z</updated>
<author>
<name>Sergei Trofimovich</name>
<email>slyfox@gentoo.org</email>
</author>
<published>2013-08-11T16:18:44Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/xmobar/commit/?id=fd17a73ec470807adf1b21b6e328642f1a912aee'/>
<id>urn:sha1:fd17a73ec470807adf1b21b6e328642f1a912aee</id>
<content type='text'>
reported by thunderrd

Signed-off-by: Sergei Trofimovich &lt;slyfox@gentoo.org&gt;
</content>
</entry>
<entry>
<title>Run Coms using runInteractiveProcess, not runInteractiveCommand</title>
<updated>2013-08-11T04:29:18Z</updated>
<author>
<name>David McLean</name>
<email>gopsychonauts@gmail.com</email>
</author>
<published>2013-08-11T04:29:18Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/xmobar/commit/?id=281a73f0308afb85eea5b4d29422031c06132429'/>
<id>urn:sha1:281a73f0308afb85eea5b4d29422031c06132429</id>
<content type='text'>
The API exposed by Com is command -&gt; [arguments] -&gt; alias -&gt; timeout -&gt; Com.
Since the command and arguments are separated like this, one would assume that
the command is run "safely": The arguments are already separated in the arg
list, so the command should be run without passing through a shell, which
ensures that stray shell metacharacters in the arguments don't mess up
anything.

However, previous versions simply joined the command with its arguments into
one string and then passed that string into a shell to run. This is
counter-intuitive given the seemingly "safe" API exposed by Com, so using
runInteractiveProcess instead is the correct implementation.

Note that users may still run commands that need shells by being explicit about
it, like this:

	Run Com "/bin/bash" ["-c", "command | nextCommand &amp; parallelCommand"] 60
</content>
</entry>
<entry>
<title>Honouring -d in CoreTemp</title>
<updated>2013-07-20T11:52:58Z</updated>
<author>
<name>Jose Antonio Ortega Ruiz</name>
<email>jao@gnu.org</email>
</author>
<published>2013-07-20T11:52:58Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/xmobar/commit/?id=99069c2fe2c1af51224ca204c15705d5f7f076fa'/>
<id>urn:sha1:99069c2fe2c1af51224ca204c15705d5f7f076fa</id>
<content type='text'>
Fixes issue #115
</content>
</entry>
<entry>
<title>Back to regex-compat with a simpler POSIX regexp</title>
<updated>2013-07-12T20:11:03Z</updated>
<author>
<name>Jose Antonio Ortega Ruiz</name>
<email>jao@gnu.org</email>
</author>
<published>2013-07-12T20:11:03Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/xmobar/commit/?id=202ff98aac0c1c8029261e69c509f0c1e6390c59'/>
<id>urn:sha1:202ff98aac0c1c8029261e69c509f0c1e6390c59</id>
<content type='text'>
</content>
</entry>
</feed>
