<feed xmlns='http://www.w3.org/2005/Atom'>
<title>r-alacritty.git/alacritty/src/migrate, branch old-rahm</title>
<subtitle>My custom-patched version of alacritty.
</subtitle>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/'/>
<entry>
<title>Don't error on nonexistent TOML imports in migrate</title>
<updated>2024-11-28T15:41:23+00:00</updated>
<author>
<name>Kirill Chibisov</name>
<email>contact@kchibisov.com</email>
</author>
<published>2024-11-28T13:07:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=713e89a6c50ce461fc91245463974635f4940772'/>
<id>713e89a6c50ce461fc91245463974635f4940772</id>
<content type='text'>
YAML import migration was already properly ignoring nonexistent imports,
it was only missed for TOML ones.

Fixes #8330.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
YAML import migration was already properly ignoring nonexistent imports,
it was only missed for TOML ones.

Fixes #8330.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix recursion limit not working for toml migrate</title>
<updated>2024-11-28T15:41:23+00:00</updated>
<author>
<name>Kirill Chibisov</name>
<email>contact@kchibisov.com</email>
</author>
<published>2024-11-28T12:54:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=1be20fbe4a556598f1b7335f56f5350853652ce5'/>
<id>1be20fbe4a556598f1b7335f56f5350853652ce5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix racing condition in hint triggering</title>
<updated>2024-11-02T20:05:51+00:00</updated>
<author>
<name>Christian Duerr</name>
<email>contact@christianduerr.com</email>
</author>
<published>2024-11-02T20:05:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=fd745a9f4cb3ba81623167c9d1117747353db33a'/>
<id>fd745a9f4cb3ba81623167c9d1117747353db33a</id>
<content type='text'>
This fixes an issue with hints where it was possible that the terminal
content of highlighted hints changed between the highlighted hint update
and the activation of the hint.

This patch always validates the hint's text content against the hint
itself to ensure that the content is still valid for the original hint
which triggered the highlight.

Closes #8277.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes an issue with hints where it was possible that the terminal
content of highlighted hints changed between the highlighted hint update
and the activation of the hint.

This patch always validates the hint's text content against the hint
itself to ensure that the content is still valid for the original hint
which triggered the highlight.

Closes #8277.</pre>
</div>
</content>
</entry>
<entry>
<title>Remove dbg! in migration command</title>
<updated>2024-10-15T19:21:09+00:00</updated>
<author>
<name>Nathan Lilienthal</name>
<email>nathan@nixpulvis.com</email>
</author>
<published>2024-10-15T19:21:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=1cc08ebbf81de5ab65e7ede6a4df9a1d80861acf'/>
<id>1cc08ebbf81de5ab65e7ede6a4df9a1d80861acf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix panic on missing general config section</title>
<updated>2024-10-10T23:23:43+00:00</updated>
<author>
<name>Kirill Chibisov</name>
<email>contact@kchibisov.com</email>
</author>
<published>2024-10-10T23:23:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=a2653293a8e6ac5f5fb9f7e075656799d8df3488'/>
<id>a2653293a8e6ac5f5fb9f7e075656799d8df3488</id>
<content type='text'>
Fixes #8230.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #8230.</pre>
</div>
</content>
</entry>
<entry>
<title>Add migration support for TOML config changes</title>
<updated>2024-10-02T19:38:07+00:00</updated>
<author>
<name>Christian Duerr</name>
<email>contact@christianduerr.com</email>
</author>
<published>2024-09-23T00:15:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/r-alacritty.git/commit/?id=3db09595f31bd9f2f211d43d96f0acb887a68991'/>
<id>3db09595f31bd9f2f211d43d96f0acb887a68991</id>
<content type='text'>
This patch allows running `alacritty migrate` to automatically apply
configuration changes made to the TOML format, like moving `ipc_socket`
to `general.ipc_socket`.

This should reduce the friction of moving around individual options
significantly, while also persisting the format of the existing TOML
file thanks to `toml_edit`.

The YAML migration has been simplified significantly to only switch the
format of the file from YAML to TOML. The new TOML features are used for
everything else.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch allows running `alacritty migrate` to automatically apply
configuration changes made to the TOML format, like moving `ipc_socket`
to `general.ipc_socket`.

This should reduce the friction of moving around individual options
significantly, while also persisting the format of the existing TOML
file thanks to `toml_edit`.

The YAML migration has been simplified significantly to only switch the
format of the file from YAML to TOML. The new TOML features are used for
everything else.
</pre>
</div>
</content>
</entry>
</feed>
