<feed xmlns='http://www.w3.org/2005/Atom'>
<title>aerc/commands, branch shivesh</title>
<subtitle>A pretty good email client (shivesh branch)</subtitle>
<link rel='alternate' type='text/html' href='https://cgit.shivesh.org/aerc/'/>
<entry>
<title>Implement interface for my custom IMAP flags</title>
<updated>2021-10-23T17:37:06+00:00</updated>
<author>
<name>Shivesh Mandalia</name>
<email>mail@shivesh.org</email>
</author>
<published>2021-10-23T17:37:06+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.shivesh.org/aerc/commit/?id=5c7d4873908f28dde33013d10543e4cf1417525b'/>
<id>5c7d4873908f28dde33013d10543e4cf1417525b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add mimeType to OriginalMail struct for both forward and reply</title>
<updated>2021-03-07T13:52:42+00:00</updated>
<author>
<name>Reto Brunner</name>
<email>reto@labrat.space</email>
</author>
<published>2021-02-26T21:08:49+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.shivesh.org/aerc/commit/?id=413fc431f76585b09845d6b2555f7d85d5667ee3'/>
<id>413fc431f76585b09845d6b2555f7d85d5667ee3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>send: fix missing error return</title>
<updated>2021-02-28T01:05:12+00:00</updated>
<author>
<name>Reto Brunner</name>
<email>reto@labrat.space</email>
</author>
<published>2021-02-28T01:04:58+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.shivesh.org/aerc/commit/?id=8cd2485170e97867321fac2f26ba876f377d5d8e'/>
<id>8cd2485170e97867321fac2f26ba876f377d5d8e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix linter warnings</title>
<updated>2021-02-26T21:14:58+00:00</updated>
<author>
<name>Reto Brunner</name>
<email>reto@labrat.space</email>
</author>
<published>2021-02-26T21:10:26+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.shivesh.org/aerc/commit/?id=8b4f2d148c8519326f306fd14ba872d7cb3101c6'/>
<id>8b4f2d148c8519326f306fd14ba872d7cb3101c6</id>
<content type='text'>
* Remove redundant return (code was never reached)
* Remove redundant type information
* Rename unused function parameters to "_"
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Remove redundant return (code was never reached)
* Remove redundant type information
* Rename unused function parameters to "_"
</pre>
</div>
</content>
</entry>
<entry>
<title>send: fix crash if invalid password is given</title>
<updated>2021-02-05T20:20:17+00:00</updated>
<author>
<name>Reto Brunner</name>
<email>reto@labrat.space</email>
</author>
<published>2021-02-05T20:20:17+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.shivesh.org/aerc/commit/?id=2d2010fd42708885f0da85835ce368dd1329e844'/>
<id>2d2010fd42708885f0da85835ce368dd1329e844</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Get rid of the aerc.PushError(" " + $string) idiom</title>
<updated>2021-01-30T13:04:23+00:00</updated>
<author>
<name>Reto Brunner</name>
<email>reto@labrat.space</email>
</author>
<published>2021-01-30T12:51:32+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.shivesh.org/aerc/commit/?id=8ea86cea41aa038a25a8fee9cd540a7336869dae'/>
<id>8ea86cea41aa038a25a8fee9cd540a7336869dae</id>
<content type='text'>
The individual callers should not be responsible for padding
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The individual callers should not be responsible for padding
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactor lib/open to accept user provided arguments</title>
<updated>2021-01-30T13:04:23+00:00</updated>
<author>
<name>Reto Brunner</name>
<email>reto@labrat.space</email>
</author>
<published>2021-01-30T10:33:31+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.shivesh.org/aerc/commit/?id=949781fa0a5f0654112b4f78558347ca991a89d3'/>
<id>949781fa0a5f0654112b4f78558347ca991a89d3</id>
<content type='text'>
* Get rid of open_darwin
	It just lead to code duplication for a simple one string change.
	Instead we query it during initialization
* Accept user provided arguments
	"open" on MacOS accepts things like -A to use a specific application
	Pass trough arguments the user provided in order to facilitate this
* Refactor the function to a struct
	This makes it more convenient for the caller and avoids signatures like
	lib.OpenFile(nil, u.String(), nil) which are fairly unreadable
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Get rid of open_darwin
	It just lead to code duplication for a simple one string change.
	Instead we query it during initialization
* Accept user provided arguments
	"open" on MacOS accepts things like -A to use a specific application
	Pass trough arguments the user provided in order to facilitate this
* Refactor the function to a struct
	This makes it more convenient for the caller and avoids signatures like
	lib.OpenFile(nil, u.String(), nil) which are fairly unreadable
</pre>
</div>
</content>
</entry>
<entry>
<title>send: don't block the UI thread during the sending</title>
<updated>2021-01-24T17:00:23+00:00</updated>
<author>
<name>Reto Brunner</name>
<email>reto@labrat.space</email>
</author>
<published>2021-01-24T17:00:23+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.shivesh.org/aerc/commit/?id=9385827cae7bab6534933718d21eeb489448c476'/>
<id>9385827cae7bab6534933718d21eeb489448c476</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>save: if part name is a path, only use the filename</title>
<updated>2021-01-14T06:17:23+00:00</updated>
<author>
<name>Robin Opletal</name>
<email>me@robinopletal.com</email>
</author>
<published>2021-01-12T20:58:54+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.shivesh.org/aerc/commit/?id=3720c8623687d7a3fb978492ecd1ab2180823cf4'/>
<id>3720c8623687d7a3fb978492ecd1ab2180823cf4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>update tcell to v2 and enable TrueColor support</title>
<updated>2020-12-18T06:23:22+00:00</updated>
<author>
<name>y0ast</name>
<email>joost@joo.st</email>
</author>
<published>2020-11-30T22:07:03+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.shivesh.org/aerc/commit/?id=03650474e2190ef6e54413d433b3d1f63dc9993e'/>
<id>03650474e2190ef6e54413d433b3d1f63dc9993e</id>
<content type='text'>
Also update to the tcell v2 PaletteColor api, which should keep the chosen
theme of the user intact.

Note, that if $TRUECOLOR is defined and a truecolor given, aerc will now stop
clipping the value to one of the theme colors.
Generally this is desired behaviour though.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also update to the tcell v2 PaletteColor api, which should keep the chosen
theme of the user intact.

Note, that if $TRUECOLOR is defined and a truecolor given, aerc will now stop
clipping the value to one of the theme colors.
Generally this is desired behaviour though.
</pre>
</div>
</content>
</entry>
</feed>
