<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ilhare/main.ha, branch master</title>
<subtitle>Interactive list TUI</subtitle>
<link rel='alternate' type='text/html' href='https://grim.freemyip.com/cgit/ilhare/'/>
<entry>
<title>Update for nomem</title>
<updated>2025-10-27T15:09:38+00:00</updated>
<author>
<name>Julian Hurst</name>
<email>ark@mansus.space</email>
</author>
<published>2025-10-27T15:09:38+00:00</published>
<link rel='alternate' type='text/html' href='https://grim.freemyip.com/cgit/ilhare/commit/?id=5a913273e2682058475362ae21500dd32d8f3482'/>
<id>5a913273e2682058475362ae21500dd32d8f3482</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove debug log</title>
<updated>2024-09-20T09:18:42+00:00</updated>
<author>
<name>Julian Hurst</name>
<email>ark@mansus.space</email>
</author>
<published>2024-09-20T09:18:42+00:00</published>
<link rel='alternate' type='text/html' href='https://grim.freemyip.com/cgit/ilhare/commit/?id=c6b9f354faabb6d65186fafc4e5626301213f2a1'/>
<id>c6b9f354faabb6d65186fafc4e5626301213f2a1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix crash on resize</title>
<updated>2024-09-16T18:01:54+00:00</updated>
<author>
<name>Julian Hurst</name>
<email>ark@mansus.space</email>
</author>
<published>2024-09-16T18:01:54+00:00</published>
<link rel='alternate' type='text/html' href='https://grim.freemyip.com/cgit/ilhare/commit/?id=d31ca475a5cffd05b171a1bed920afd9aa8412fa'/>
<id>d31ca475a5cffd05b171a1bed920afd9aa8412fa</id>
<content type='text'>
readable was being called without the associated file being "consumed"
leading to a crash. Furthermore their was some misbehaving casts between
size and u16 (maybe bug in hare?). This led to the frame sizes being set
to very large incorrect values that messed up printing the list.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
readable was being called without the associated file being "consumed"
leading to a crash. Furthermore their was some misbehaving casts between
size and u16 (maybe bug in hare?). This led to the frame sizes being set
to very large incorrect values that messed up printing the list.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use hare-ev to handle the event loop</title>
<updated>2024-09-12T10:00:51+00:00</updated>
<author>
<name>Julian Hurst</name>
<email>ark@mansus.space</email>
</author>
<published>2024-09-12T10:00:51+00:00</published>
<link rel='alternate' type='text/html' href='https://grim.freemyip.com/cgit/ilhare/commit/?id=7f4f36b214b23bee44b80574ec08f54c3723982d'/>
<id>7f4f36b214b23bee44b80574ec08f54c3723982d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix casting issue</title>
<updated>2024-02-26T16:25:37+00:00</updated>
<author>
<name>Julian Hurst</name>
<email>ark@mansus.space</email>
</author>
<published>2024-02-26T16:25:37+00:00</published>
<link rel='alternate' type='text/html' href='https://grim.freemyip.com/cgit/ilhare/commit/?id=b3ddfa2345dcb4def08fd6c35e23e43db414415f'/>
<id>b3ddfa2345dcb4def08fd6c35e23e43db414415f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix non-exhaustive switch</title>
<updated>2023-09-11T15:17:44+00:00</updated>
<author>
<name>Julian Hurst</name>
<email>ark@mansus.space</email>
</author>
<published>2023-09-08T11:59:06+00:00</published>
<link rel='alternate' type='text/html' href='https://grim.freemyip.com/cgit/ilhare/commit/?id=694b20431da403e2dda240794926921623cb1197'/>
<id>694b20431da403e2dda240794926921623cb1197</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Bump hare version (Hare dev+9705222-alpine)</title>
<updated>2023-09-06T21:31:11+00:00</updated>
<author>
<name>Julian Hurst</name>
<email>ark@mansus.space</email>
</author>
<published>2023-09-06T21:31:11+00:00</published>
<link rel='alternate' type='text/html' href='https://grim.freemyip.com/cgit/ilhare/commit/?id=8253708cff8a22695d2dd465d43d98d972995ed8'/>
<id>8253708cff8a22695d2dd465d43d98d972995ed8</id>
<content type='text'>
This changes stuff like signal::SIGWINCH -&gt; signal::sig::WINCH and poll
now returns a poll:error instead of errors::error (it actually wraps an
rt::errno in an errors::error using errors::errno and poll::error is
actually a errors::error)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This changes stuff like signal::SIGWINCH -&gt; signal::sig::WINCH and poll
now returns a poll:error instead of errors::error (it actually wraps an
rt::errno in an errors::error using errors::errno and poll::error is
actually a errors::error)
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove unused mainUI and sighandler function</title>
<updated>2023-09-06T21:29:18+00:00</updated>
<author>
<name>Julian Hurst</name>
<email>ark@mansus.space</email>
</author>
<published>2023-09-06T21:29:18+00:00</published>
<link rel='alternate' type='text/html' href='https://grim.freemyip.com/cgit/ilhare/commit/?id=d4641633d2c293f492bd56db3e7d95232bdb4142'/>
<id>d4641633d2c293f492bd56db3e7d95232bdb4142</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add -s flag for search on open support</title>
<updated>2022-12-17T17:46:27+00:00</updated>
<author>
<name>Julian Hurst</name>
<email>ark@mansus.space</email>
</author>
<published>2022-12-17T17:46:27+00:00</published>
<link rel='alternate' type='text/html' href='https://grim.freemyip.com/cgit/ilhare/commit/?id=fd23c61da94a5e15d2cd47cb28c1654bd6fb9fd7'/>
<id>fd23c61da94a5e15d2cd47cb28c1654bd6fb9fd7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add -m flag</title>
<updated>2022-12-16T10:31:21+00:00</updated>
<author>
<name>Julian Hurst</name>
<email>ark@mansus.space</email>
</author>
<published>2022-12-16T10:31:21+00:00</published>
<link rel='alternate' type='text/html' href='https://grim.freemyip.com/cgit/ilhare/commit/?id=341e258208647cacca59c324fc658ac9c068c7c5'/>
<id>341e258208647cacca59c324fc658ac9c068c7c5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
