14275 lines
1.7 MiB
14275 lines
1.7 MiB
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>Tolaria — Release History</title>
|
||
<style>
|
||
:root {
|
||
color-scheme: light;
|
||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
||
}
|
||
|
||
* {
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
body {
|
||
margin: 0;
|
||
min-height: 100vh;
|
||
background: #f7f6f3;
|
||
color: #37352f;
|
||
padding: 32px 20px 48px;
|
||
}
|
||
|
||
main {
|
||
width: min(100%, 840px);
|
||
margin: 0 auto;
|
||
}
|
||
|
||
header {
|
||
margin-bottom: 24px;
|
||
}
|
||
|
||
h1 {
|
||
margin: 0 0 8px;
|
||
font-size: clamp(2rem, 4vw, 2.5rem);
|
||
line-height: 1.1;
|
||
}
|
||
|
||
.subtitle,
|
||
.keyboard-hint {
|
||
margin: 0;
|
||
color: #787774;
|
||
line-height: 1.6;
|
||
}
|
||
|
||
.keyboard-hint {
|
||
margin-top: 8px;
|
||
font-size: 0.9375rem;
|
||
}
|
||
|
||
.channel-tabs {
|
||
margin-bottom: 24px;
|
||
border-bottom: 1px solid #e9e9e7;
|
||
}
|
||
|
||
.channel-tablist {
|
||
display: inline-flex;
|
||
gap: 8px;
|
||
flex-wrap: wrap;
|
||
margin-bottom: -1px;
|
||
}
|
||
|
||
.channel-tab {
|
||
appearance: none;
|
||
border: 1px solid transparent;
|
||
border-bottom: none;
|
||
border-radius: 12px 12px 0 0;
|
||
background: transparent;
|
||
color: #5e5c57;
|
||
cursor: pointer;
|
||
font: inherit;
|
||
font-weight: 600;
|
||
padding: 12px 16px;
|
||
}
|
||
|
||
.channel-tab:hover {
|
||
background: rgba(21, 93, 255, 0.06);
|
||
color: #155dff;
|
||
}
|
||
|
||
.channel-tab:focus-visible {
|
||
outline: 2px solid #155dff;
|
||
outline-offset: 2px;
|
||
}
|
||
|
||
.channel-tab[aria-selected="true"] {
|
||
background: #ffffff;
|
||
border-color: #d8e3ff;
|
||
color: #155dff;
|
||
box-shadow: 0 -1px 0 #ffffff inset;
|
||
}
|
||
|
||
.tab-count {
|
||
color: #787774;
|
||
font-weight: 500;
|
||
margin-left: 6px;
|
||
}
|
||
|
||
.release-panel {
|
||
display: grid;
|
||
gap: 16px;
|
||
outline: none;
|
||
}
|
||
|
||
.release-panel[hidden] {
|
||
display: none;
|
||
}
|
||
|
||
.release-card {
|
||
background: #ffffff;
|
||
border: 1px solid #e9e9e7;
|
||
border-radius: 18px;
|
||
padding: 20px 22px;
|
||
box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
|
||
}
|
||
|
||
.release-card--alpha {
|
||
border-left: 4px solid #f59e0b;
|
||
}
|
||
|
||
.release-card--stable {
|
||
border-left: 4px solid #155dff;
|
||
}
|
||
|
||
.release-header {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
justify-content: space-between;
|
||
gap: 12px;
|
||
margin-bottom: 14px;
|
||
}
|
||
|
||
.release-header h2 {
|
||
margin: 0;
|
||
font-size: 1.25rem;
|
||
line-height: 1.25;
|
||
}
|
||
|
||
.release-meta {
|
||
margin: 4px 0 0;
|
||
color: #787774;
|
||
font-size: 0.9375rem;
|
||
}
|
||
|
||
.release-channel {
|
||
align-self: start;
|
||
background: #f1f5ff;
|
||
border-radius: 999px;
|
||
color: #155dff;
|
||
font-size: 0.8125rem;
|
||
font-weight: 700;
|
||
letter-spacing: 0.02em;
|
||
padding: 6px 10px;
|
||
text-transform: uppercase;
|
||
}
|
||
|
||
.release-card--alpha .release-channel {
|
||
background: #fff3d6;
|
||
color: #b45309;
|
||
}
|
||
|
||
.release-notes {
|
||
color: #44403c;
|
||
font-size: 0.98rem;
|
||
line-height: 1.7;
|
||
}
|
||
|
||
.release-notes > :first-child {
|
||
margin-top: 0;
|
||
}
|
||
|
||
.release-notes > :last-child {
|
||
margin-bottom: 0;
|
||
}
|
||
|
||
.release-notes h1,
|
||
.release-notes h2,
|
||
.release-notes h3 {
|
||
line-height: 1.25;
|
||
margin: 1.2em 0 0.4em;
|
||
}
|
||
|
||
.release-notes p,
|
||
.release-notes ul,
|
||
.release-notes ol,
|
||
.release-notes blockquote,
|
||
.release-notes pre {
|
||
margin: 0 0 1em;
|
||
}
|
||
|
||
.release-notes ul,
|
||
.release-notes ol {
|
||
padding-left: 1.4rem;
|
||
}
|
||
|
||
.release-notes code {
|
||
background: #f4f4f2;
|
||
border-radius: 6px;
|
||
padding: 0.12em 0.35em;
|
||
}
|
||
|
||
.release-notes pre {
|
||
overflow-x: auto;
|
||
background: #f4f4f2;
|
||
border-radius: 12px;
|
||
padding: 14px;
|
||
}
|
||
|
||
.release-notes pre code {
|
||
background: transparent;
|
||
padding: 0;
|
||
}
|
||
|
||
.release-notes blockquote {
|
||
border-left: 3px solid #d6d3d1;
|
||
color: #57534e;
|
||
padding-left: 14px;
|
||
}
|
||
|
||
.release-notes a,
|
||
.release-downloads a {
|
||
color: #155dff;
|
||
text-decoration-thickness: 0.08em;
|
||
text-underline-offset: 0.18em;
|
||
}
|
||
|
||
.release-downloads {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
gap: 10px;
|
||
margin-top: 18px;
|
||
}
|
||
|
||
.release-downloads a {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
min-height: 42px;
|
||
padding: 0 14px;
|
||
border-radius: 10px;
|
||
background: #155dff;
|
||
color: #ffffff;
|
||
font-weight: 600;
|
||
text-decoration: none;
|
||
}
|
||
|
||
.release-downloads a[data-secondary="true"] {
|
||
background: #ebeef5;
|
||
color: #37352f;
|
||
}
|
||
|
||
.release-downloads a:hover,
|
||
.release-downloads a:focus-visible {
|
||
filter: brightness(0.96);
|
||
}
|
||
|
||
.release-downloads a:focus-visible {
|
||
outline: 2px solid #155dff;
|
||
outline-offset: 2px;
|
||
}
|
||
|
||
.empty-state {
|
||
background: #ffffff;
|
||
border: 1px dashed #d6d3d1;
|
||
border-radius: 18px;
|
||
color: #787774;
|
||
padding: 28px 24px;
|
||
text-align: center;
|
||
}
|
||
|
||
@media (max-width: 640px) {
|
||
body {
|
||
padding-inline: 16px;
|
||
}
|
||
|
||
.release-card {
|
||
padding: 18px;
|
||
}
|
||
|
||
.channel-tablist {
|
||
width: 100%;
|
||
}
|
||
|
||
.channel-tab {
|
||
flex: 1 1 180px;
|
||
text-align: center;
|
||
}
|
||
}
|
||
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<main>
|
||
<header>
|
||
<h1>Tolaria Release History</h1>
|
||
<p class="subtitle">Stable builds appear when a stable-vYYYY.M.D tag is promoted. Alpha builds update on every push to main.</p>
|
||
<p class="keyboard-hint">Use Tab to reach the channel picker, then use the arrow keys to switch between Stable and Alpha.</p>
|
||
</header>
|
||
<div class="channel-tabs">
|
||
<div class="channel-tablist" role="tablist" aria-label="Release channels">
|
||
|
||
<button
|
||
id="tab-stable"
|
||
class="channel-tab"
|
||
type="button"
|
||
role="tab"
|
||
aria-controls="panel-stable"
|
||
aria-selected="true"
|
||
data-release-tab="stable"
|
||
tabindex="0"
|
||
>
|
||
Stable<span class="tab-count">439</span>
|
||
</button>
|
||
|
||
<button
|
||
id="tab-alpha"
|
||
class="channel-tab"
|
||
type="button"
|
||
role="tab"
|
||
aria-controls="panel-alpha"
|
||
aria-selected="false"
|
||
data-release-tab="alpha"
|
||
tabindex="-1"
|
||
>
|
||
Alpha<span class="tab-count">171</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
|
||
<section
|
||
id="panel-stable"
|
||
class="release-panel"
|
||
role="tabpanel"
|
||
tabindex="0"
|
||
aria-labelledby="tab-stable"
|
||
data-release-panel="stable"
|
||
>
|
||
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 2026.4.23</h2>
|
||
<p class="release-meta">April 23, 2026 · stable-v2026.4.23</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c4c6bb6c573673c5275f043a038c1e4ab747d31d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c4c6bb6c573673c5275f043a038c1e4ab747d31d"><tt>c4c6bb6</tt></a> fix: restore folder row toggle</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/35dd2dd47bfc6e4c6ff191cde2481dbadadc9409/hovercard" href="https://github.com/refactoringhq/tolaria/commit/35dd2dd47bfc6e4c6ff191cde2481dbadadc9409"><tt>35dd2dd</tt></a> docs: add/update ADR for note retargeting (guard — from commit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2c9361d7046d8d99c5d8d345562ebdf65d19413c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2c9361d7046d8d99c5d8d345562ebdf65d19413c"><tt>2c9361d</tt></a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/89141bae14b6fe86f98e9cc5c941afd013fbf8c6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/89141bae14b6fe86f98e9cc5c941afd013fbf8c6"><tt>89141ba</tt></a> chore: ratchet codescene thresholds</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2b9294f88439c6a2dc81276ea61f8684dcfc0a5a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2b9294f88439c6a2dc81276ea61f8684dcfc0a5a"><tt>2b9294f</tt></a> style: format note move backend</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a756af54ec8c594d8fe039f8e1d0c7a1749b8615/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a756af54ec8c594d8fe039f8e1d0c7a1749b8615"><tt>a756af5</tt></a> fix: keep note drop targets active during drag</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b01b156dfb323d6bbda318d5b50ee490fd6acef8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b01b156dfb323d6bbda318d5b50ee490fd6acef8"><tt>b01b156</tt></a> fix: align folder rows with sidebar items</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2c9361d7046d8d99c5d8d345562ebdf65d19413c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2c9361d7046d8d99c5d8d345562ebdf65d19413c"><tt>2c9361d</tt></a> feat: retarget notes to types and folders</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8b73ef5836f277a668e061373a1c819302c1e6a1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8b73ef5836f277a668e061373a1c819302c1e6a1"><tt>8b73ef5</tt></a> feat: add sidebar folder rename and delete actions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a6a727a4c06f91cf899f00db26f42425d0994850/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a6a727a4c06f91cf899f00db26f42425d0994850"><tt>a6a727a</tt></a> fix: align inspector create-type typing</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bf13eed3ab4e3627683100be755f9364fc3fc599/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bf13eed3ab4e3627683100be755f9364fc3fc599"><tt>bf13eed</tt></a> fix: handle filename collisions in create flows</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a27a70e5525258ce616934d0be6bce4b837ad9e6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a27a70e5525258ce616934d0be6bce4b837ad9e6"><tt>a27a70e</tt></a> fix: allow PostHog and Google Fonts in app CSP</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ca92bf4f77378c38fad0314266ce6a07c920a04d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ca92bf4f77378c38fad0314266ce6a07c920a04d"><tt>ca92bf4</tt></a> fix: restore keyboard shortcut typing</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9fda0a67ecb0821162cca6579b7863e3140d37da/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9fda0a67ecb0821162cca6579b7863e3140d37da"><tt>9fda0a6</tt></a> fix: make note renames crash-safe</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0ffb7c65a9625aa04c14dabb17e6da15c2435182/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0ffb7c65a9625aa04c14dabb17e6da15c2435182"><tt>0ffb7c6</tt></a> Ignore history shortcuts while editing</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/633d9f149695e033e785ed509f4e56dd0fe50dfa/hovercard" href="https://github.com/refactoringhq/tolaria/commit/633d9f149695e033e785ed509f4e56dd0fe50dfa"><tt>633d9f1</tt></a> Add security policy and private reporting guidance</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ba3d413b94db7bd5c82a545c03f474d338fc4988/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ba3d413b94db7bd5c82a545c03f474d338fc4988"><tt>ba3d413</tt></a> fix: recover from missing note paths</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f3286922ad4becbb24ae7e0218f8ae86c7ae92b1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f3286922ad4becbb24ae7e0218f8ae86c7ae92b1"><tt>f328692</tt></a> fix: satisfy clippy for MCP status</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b0b476c9e5158f6c5685b675eaef8ef44baf5666/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b0b476c9e5158f6c5685b675eaef8ef44baf5666"><tt>b0b476c</tt></a> fix: harden external AI tool setup</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/dac696b75231957c9f8694d5b6359bf59f522e88/hovercard" href="https://github.com/refactoringhq/tolaria/commit/dac696b75231957c9f8694d5b6359bf59f522e88"><tt>dac696b</tt></a> fix: guard toolbar popover anchors</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cda87ee6c03052393013066a43afc5ab9ef884f8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cda87ee6c03052393013066a43afc5ab9ef884f8"><tt>cda87ee</tt></a> feat: add sidebar folder rename and delete actions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/33324a5c791efe07b54bd93e7409a9cc46257b72/hovercard" href="https://github.com/refactoringhq/tolaria/commit/33324a5c791efe07b54bd93e7409a9cc46257b72"><tt>33324a5</tt></a> fix: harden mcp bridge and vault boundaries</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f28626bbfec4608d71231efae76fc567516be6e0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f28626bbfec4608d71231efae76fc567516be6e0"><tt>f28626b</tt></a> fix: finish claude agent streams</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1bc2e3d1e0d4c1f12f9499be49ae390e07588570/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1bc2e3d1e0d4c1f12f9499be49ae390e07588570"><tt>1bc2e3d</tt></a> docs: add ADRs for startup and linkify lifecycles (guard — from commits <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/59268acd04c2daae44ed7a2c0e3d451edcbde821/hovercard" href="https://github.com/refactoringhq/tolaria/commit/59268acd04c2daae44ed7a2c0e3d451edcbde821"><tt>59268ac</tt></a>, <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bf442646f5eb2cbc850b91b042ccf26c583925c2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bf442646f5eb2cbc850b91b042ccf26c583925c2"><tt>bf44264</tt></a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8e6bdab3e63b115f1fbc060080bec9ad99a6e430/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8e6bdab3e63b115f1fbc060080bec9ad99a6e430"><tt>8e6bdab</tt></a> docs: ratchet codescene thresholds</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d52362ad9bdb4f145a9eba6eaa8070bde4baa5e7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d52362ad9bdb4f145a9eba6eaa8070bde4baa5e7"><tt>d52362a</tt></a> fix: repair tiptap patch integrity</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bf442646f5eb2cbc850b91b042ccf26c583925c2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bf442646f5eb2cbc850b91b042ccf26c583925c2"><tt>bf44264</tt></a> fix: silence duplicate linkify init warnings</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Stable release — manually promoted from <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c4c6bb6c</code> on 2026-04-23</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/stable-v2026.4.23/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/stable-v2026.4.23/Tolaria_2026.4.23_aarch64.dmg" target="_blank" rel="noreferrer">Tolaria_2026.4.23_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/stable-v2026.4.23" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 2026.4.21</h2>
|
||
<p class="release-meta">April 21, 2026 · stable-v2026.4.21</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1b3a44436817c0ba0449289c2248306001d11dcc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1b3a44436817c0ba0449289c2248306001d11dcc"><tt>1b3a444</tt></a> fix: show welcome on fresh install without missing vault</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c4da7f1f2fce58bc357084a960b1c42bfc11be9f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c4da7f1f2fce58bc357084a960b1c42bfc11be9f"><tt>c4da7f1</tt></a> fix: narrow raw mode sync override</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c5fe291a9a1a6045a1150bd0380eb155f756ab69/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c5fe291a9a1a6045a1150bd0380eb155f756ab69"><tt>c5fe291</tt></a> fix: sync inspector edits into raw editor</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/59268acd04c2daae44ed7a2c0e3d451edcbde821/hovercard" href="https://github.com/refactoringhq/tolaria/commit/59268acd04c2daae44ed7a2c0e3d451edcbde821"><tt>59268ac</tt></a> fix: guard empty vault path during startup</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3e4e2ebdc617d13ff36a13d77723ef6f14707276/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3e4e2ebdc617d13ff36a13d77723ef6f14707276"><tt>3e4e2eb</tt></a> refactor: simplify breadcrumb and note-list search ui</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/05375258a2209ce6c48e8392467cb61f65814c2e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/05375258a2209ce6c48e8392467cb61f65814c2e"><tt>0537525</tt></a> Rename 'Documentation' section to 'Tech Docs'</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0c0354bfb8113f5a0422e02a8053672dba6117a4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0c0354bfb8113f5a0422e02a8053672dba6117a4"><tt>0c0354b</tt></a> Updated README badges</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6023e95d5b9d83e7b4deedb819b7db43bdbb0a47/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6023e95d5b9d83e7b4deedb819b7db43bdbb0a47"><tt>6023e95</tt></a> fix: serialize vitest coverage files</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/88d5694353bed666f4a264445610e31f8c798763/hovercard" href="https://github.com/refactoringhq/tolaria/commit/88d5694353bed666f4a264445610e31f8c798763"><tt>88d5694</tt></a> fix: retry flaky vitest coverage teardown</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/db6b38843bbd43513bd747a4fca8d928ba16dda1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/db6b38843bbd43513bd747a4fca8d928ba16dda1"><tt>db6b388</tt></a> fix: keep vitest coverage shards off workspace</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ad9901bbf5f705a9666988eca5bb1f23b49c58c8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ad9901bbf5f705a9666988eca5bb1f23b49c58c8"><tt>ad9901b</tt></a> fix: stabilize coverage suite reruns</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b785c53ef93c5115e74db6a4e7645e6f2ac404bc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b785c53ef93c5115e74db6a4e7645e6f2ac404bc"><tt>b785c53</tt></a> test: increase strategic coverage</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8ae1ade220ab5e2ab94b2aa526507c2f81e14f5a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8ae1ade220ab5e2ab94b2aa526507c2f81e14f5a"><tt>8ae1ade</tt></a> test: cover live sidebar type picker sync</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/35b035643e5870ef45731689591c075b3687bc5c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/35b035643e5870ef45731689591c075b3687bc5c"><tt>35b0356</tt></a> fix: adapt save reload callback</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d3d663af0b0e7908e3bcc4eb3ca36428538f07db/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d3d663af0b0e7908e3bcc4eb3ca36428538f07db"><tt>d3d663a</tt></a> fix: reload vault entries on tauri startup</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8f624350d88613c037a5140bb0b2f8f31eef265c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8f624350d88613c037a5140bb0b2f8f31eef265c"><tt>8f62435</tt></a> test: cover journal vault scan</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0e54173834f9928887b9863a589e128ff6ccee28/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0e54173834f9928887b9863a589e128ff6ccee28"><tt>0e54173</tt></a> test: cover explicit journal visibility</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a6f1524a788ad1d796a2232fb29cf769d43695cb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a6f1524a788ad1d796a2232fb29cf769d43695cb"><tt>a6f1524</tt></a> ci: reject placeholder telemetry secrets</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4cd5baeb550f87d2f2f37911d6b02cbb219c78bd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4cd5baeb550f87d2f2f37911d6b02cbb219c78bd"><tt>4cd5bae</tt></a> fix: sync sidebar types with live vault state</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fb1265e08872ac095253ad57ec5b8f0c67e7ec0d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fb1265e08872ac095253ad57ec5b8f0c67e7ec0d"><tt>fb1265e</tt></a> test: stabilize note list search timing</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ca89662231e659ad6065f72db43689cbaff9ee81/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ca89662231e659ad6065f72db43689cbaff9ee81"><tt>ca89662</tt></a> fix: sync raw editor frontmatter state</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/97f285e3cb9c8d78afc552df50c6886e952abe05/hovercard" href="https://github.com/refactoringhq/tolaria/commit/97f285e3cb9c8d78afc552df50c6886e952abe05"><tt>97f285e</tt></a> ci: upload coverage to codecov</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4bd4ef43dc3133b40ac0e6dc0cd1f42ac7549bd5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4bd4ef43dc3133b40ac0e6dc0cd1f42ac7549bd5"><tt>4bd4ef4</tt></a> Added release badge in README</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/be29880a3eaffb15cfc156313e1bb931a8ae9991/hovercard" href="https://github.com/refactoringhq/tolaria/commit/be29880a3eaffb15cfc156313e1bb931a8ae9991"><tt>be29880</tt></a> Added walkthroughs to the README</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7be5519f612c8ec3453071735990c09afbd5cd7d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7be5519f612c8ec3453071735990c09afbd5cd7d"><tt>7be5519</tt></a> fix: sort alpha releases chronologically</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8cefbe949a1addae6cb9fbc474e9f4f3503c4d9c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8cefbe949a1addae6cb9fbc474e9f4f3503c4d9c"><tt>8cefbe9</tt></a> fix: refine derived inverse relationship labels</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/dd0a55b8e85c09a928508520673942c279baf45a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/dd0a55b8e85c09a928508520673942c279baf45a"><tt>dd0a55b</tt></a> docs: add ADR for external vault refresh after pulls and agent edits (guard — from commit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0020ade6d7f711c092d4daa5428c59cd055c20d0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0020ade6d7f711c092d4daa5428c59cd055c20d0"><tt>0020ade</tt></a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/610276b1bcd5022f4aed36c2ebfea5dc228eac11/hovercard" href="https://github.com/refactoringhq/tolaria/commit/610276b1bcd5022f4aed36c2ebfea5dc228eac11"><tt>610276b</tt></a> docs: ratchet codescene thresholds</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e6c968e37ed280416c5b122d4baa7dd65d800441/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e6c968e37ed280416c5b122d4baa7dd65d800441"><tt>e6c968e</tt></a> fix: satisfy note list keyboard build</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/367a66f32aeb6b6186645b85317827bcedfce500/hovercard" href="https://github.com/refactoringhq/tolaria/commit/367a66f32aeb6b6186645b85317827bcedfce500"><tt>367a66f</tt></a> fix: debounce note list search</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6a4046915ceadfe25aa2ff78fe929dc4b042a8b9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6a4046915ceadfe25aa2ff78fe929dc4b042a8b9"><tt>6a40469</tt></a> fix: harden startup telemetry urls</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ec8b637c84dd30f25d813f3c412c170fc98b18e5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ec8b637c84dd30f25d813f3c412c170fc98b18e5"><tt>ec8b637</tt></a> fix: hide uncloned getting started vault</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Stable release — manually promoted from <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>1b3a4443</code> on 2026-04-21</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/stable-v2026.4.21/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/stable-v2026.4.21/Tolaria_2026.4.21_aarch64.dmg" target="_blank" rel="noreferrer">Tolaria_2026.4.21_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/stable-v2026.4.21" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 2026.4.20</h2>
|
||
<p class="release-meta">April 20, 2026 · stable-v2026.4.20</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3ee42fb856800285e0a7ba232f1ffef6babf7091/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3ee42fb856800285e0a7ba232f1ffef6babf7091"><tt>3ee42fb</tt></a> test: align create-note smoke placeholder</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/eacf05a9f8b09672fa6ed3bf412aea66549ad735/hovercard" href="https://github.com/refactoringhq/tolaria/commit/eacf05a9f8b09672fa6ed3bf412aea66549ad735"><tt>eacf05a</tt></a> fix: reload notes after agent edits</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a199fad803e70021cfbbd6b7a6ec1cfe21477dca/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a199fad803e70021cfbbd6b7a6ec1cfe21477dca"><tt>a199fad</tt></a> fix: widen editor focus block typing</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e956c806e5365e7b09d7c6437423068982debbf6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e956c806e5365e7b09d7c6437423068982debbf6"><tt>e956c80</tt></a> fix: keep editor sync from clobbering live inserts</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7a6e3863ad2d3e78245a36c691cfaaefdb065289/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7a6e3863ad2d3e78245a36c691cfaaefdb065289"><tt>7a6e386</tt></a> fix: reopen active note after pull updates</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e0e2dc40636d51717b47e7fdaf4f226ff2d73f6d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e0e2dc40636d51717b47e7fdaf4f226ff2d73f6d"><tt>e0e2dc4</tt></a> test: add pull refresh regression</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0020ade6d7f711c092d4daa5428c59cd055c20d0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0020ade6d7f711c092d4daa5428c59cd055c20d0"><tt>0020ade</tt></a> fix: tighten pulled note refresh flow</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/503e482c7da84798153aa43a070240ba29c6bf5d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/503e482c7da84798153aa43a070240ba29c6bf5d"><tt>503e482</tt></a> fix: normalize inverse relationship labels</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0d0e6af4c9f5a2bb9cd20e333d3c63005ffea939/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0d0e6af4c9f5a2bb9cd20e333d3c63005ffea939"><tt>0d0e6af</tt></a> fix: keep vault menu remove action in row</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/dbaf3618788e47cb993575ab94b20e994caa319b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/dbaf3618788e47cb993575ab94b20e994caa319b"><tt>dbaf361</tt></a> test: fix starter-vault app shell coverage</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d3741c82f5a59e2f92ca4295b88add6190cd8b3c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d3741c82f5a59e2f92ca4295b88add6190cd8b3c"><tt>d3741c8</tt></a> test: fix starter-vault shell regression</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b90d2f861256a26aa658fa2e6ad5ef05dc357fe3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b90d2f861256a26aa658fa2e6ad5ef05dc357fe3"><tt>b90d2f8</tt></a> fix: reorder welcome onboarding actions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9536efee0eb1425dc8ab72a413181de39e0628f5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9536efee0eb1425dc8ab72a413181de39e0628f5"><tt>9536efe</tt></a> fix: persist AI panel chats across reopen</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c86a6ab9c58e95040c061c65c0ee01610adc60c4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c86a6ab9c58e95040c061c65c0ee01610adc60c4"><tt>c86a6ab</tt></a> docs: add/update ADR for starter vault local-first remote flow (guard — from commit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/374b4f668697e21fbd390075eb597d8e9e822329/hovercard" href="https://github.com/refactoringhq/tolaria/commit/374b4f668697e21fbd390075eb597d8e9e822329"><tt>374b4f6</tt></a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1d7c027700d0ca154e54edbead58edec60657c19/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1d7c027700d0ca154e54edbead58edec60657c19"><tt>1d7c027</tt></a> Updated Tolaria Icon</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/74e50c64bb0f831dbaf821d43c9ab4a2d20c54cd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/74e50c64bb0f831dbaf821d43c9ab4a2d20c54cd"><tt>74e50c6</tt></a> fix: hide stale getting started vault entries</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8b97ef711f5dd38bf8f46e8ab351207c14e788b9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8b97ef711f5dd38bf8f46e8ab351207c14e788b9"><tt>8b97ef7</tt></a> feat: refresh welcome screen branding</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/08855cee925d924e770220a45d4a9585920617d4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/08855cee925d924e770220a45d4a9585920617d4"><tt>08855ce</tt></a> fix: defer git history during note switching</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/03042bb49caaf43c0643ab3c76874d07ac3b398d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/03042bb49caaf43c0643ab3c76874d07ac3b398d"><tt>03042bb</tt></a> fix: normalize shipped telemetry secrets</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cee4bef17903737da75be503f22b86b17863be45/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cee4bef17903737da75be503f22b86b17863be45"><tt>cee4bef</tt></a> fix: harden shipped telemetry config</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Stable release — manually promoted from <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>3ee42fb8</code> on 2026-04-20</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/stable-v2026.4.20/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/stable-v2026.4.20/Tolaria_2026.4.20_aarch64.dmg" target="_blank" rel="noreferrer">Tolaria_2026.4.20_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/stable-v2026.4.20" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 2026.4.19</h2>
|
||
<p class="release-meta">April 19, 2026 · stable-v2026.4.19</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f223d4f654b6da397b3502b9e0d47807c1dd7c2a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f223d4f654b6da397b3502b9e0d47807c1dd7c2a"><tt>f223d4f</tt></a> refactor: curate demo-vault-v2 fixture</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2f693c4476f6390ae8b36e0bed4e331b40473ac1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2f693c4476f6390ae8b36e0bed4e331b40473ac1"><tt>2f693c4</tt></a> fix: dedupe new type palette action</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/44f0c7cb74449f1181ab3929b6764f8b4ed397c4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/44f0c7cb74449f1181ab3929b6764f8b4ed397c4"><tt>44f0c7c</tt></a> feat: open favorites in neighborhood mode</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ea14f1a3893cdb4d337f333e95a204fac235fd08/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ea14f1a3893cdb4d337f333e95a204fac235fd08"><tt>ea14f1a</tt></a> fix: use rendered release note html</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/db21ae47083e4a5da5eafcb2642379dbfb5cb075/hovercard" href="https://github.com/refactoringhq/tolaria/commit/db21ae47083e4a5da5eafcb2642379dbfb5cb075"><tt>db21ae4</tt></a> feat: improve release history page</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8019c4fb2d3a773907d3b423f1117829266ce7a7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8019c4fb2d3a773907d3b423f1117829266ce7a7"><tt>8019c4f</tt></a> fix: defer missing vault startup state</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0d552e1370eb1067e11fda7c2a5e1e471ee9f2d7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0d552e1370eb1067e11fda7c2a5e1e471ee9f2d7"><tt>0d552e1</tt></a> fix: satisfy note-open perf build checks</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/977f5593fac3e356fb7b277aa9f0e4de1bc85789/hovercard" href="https://github.com/refactoringhq/tolaria/commit/977f5593fac3e356fb7b277aa9f0e4de1bc85789"><tt>977f559</tt></a> fix: stop note navigation from scaling with vault size</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/261a5befc7fda2ad59a25ba71e41a8f1f3726de3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/261a5befc7fda2ad59a25ba71e41a8f1f3726de3"><tt>261a5be</tt></a> chore: ratchet codescene thresholds</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8d3cce7b4926dd965449e9fb8fce4d7fe1e739e2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8d3cce7b4926dd965449e9fb8fce4d7fe1e739e2"><tt>8d3cce7</tt></a> fix: satisfy neighborhood history build checks</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e0594820f064ff1471d9ae86d6d81341687014b1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e0594820f064ff1471d9ae86d6d81341687014b1"><tt>e059482</tt></a> fix: unwind neighborhood history on escape</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b98d41212eb7b397987dc5ef8ae9cb1b5deda567/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b98d41212eb7b397987dc5ef8ae9cb1b5deda567"><tt>b98d412</tt></a> fix: stop seeding title during property init</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/098dc421cba731c1ea410c43b4a38f2a22388466/hovercard" href="https://github.com/refactoringhq/tolaria/commit/098dc421cba731c1ea410c43b4a38f2a22388466"><tt>098dc42</tt></a> test: add isolated vitest coverage runner</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/326ccb08e1e96c19ff83a70ed8ab669f0adbeea3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/326ccb08e1e96c19ff83a70ed8ab669f0adbeea3"><tt>326ccb0</tt></a> test: stabilize vitest coverage artifacts</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c2bbdb0085211c3b6f5189af51e850e095965d18/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c2bbdb0085211c3b6f5189af51e850e095965d18"><tt>c2bbdb0</tt></a> test: stabilize git default branch in helpers</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/039f9e447fd0bf352fc4bd535efe3b90877d8ff6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/039f9e447fd0bf352fc4bd535efe3b90877d8ff6"><tt>039f9e4</tt></a> fix: cache inspector link lookups</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8581a1b1e6f3829b5faab834e8a69b62f5f72f9f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8581a1b1e6f3829b5faab834e8a69b62f5f72f9f"><tt>8581a1b</tt></a> fix: organize seeded claude shim files</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2c5cb593d389185c7b356673fd9efd7337a124ae/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2c5cb593d389185c7b356673fd9efd7337a124ae"><tt>2c5cb59</tt></a> Removed old Project spec reverence</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/348b627029959ba4e386f78b215490cc7d387a6a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/348b627029959ba4e386f78b215490cc7d387a6a"><tt>348b627</tt></a> Updated README</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f5cc5ffb4fa6caf135c7f7ebde063a419d375db5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f5cc5ffb4fa6caf135c7f7ebde063a419d375db5"><tt>f5cc5ff</tt></a> fix: satisfy clippy and stabilize app startup test</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/374b4f668697e21fbd390075eb597d8e9e822329/hovercard" href="https://github.com/refactoringhq/tolaria/commit/374b4f668697e21fbd390075eb597d8e9e822329"><tt>374b4f6</tt></a> feat: keep getting started vaults local by default</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/36c20f34f4ede710526293ba2dabc50b95790ef3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/36c20f34f4ede710526293ba2dabc50b95790ef3"><tt>36c20f3</tt></a> fix: hide unavailable getting started vault</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8551d819bd1ffa879a83398d249adbdde0bebe1f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8551d819bd1ffa879a83398d249adbdde0bebe1f"><tt>8551d81</tt></a> Deleted old unused font</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d5497d7252c52c563a161a494d6032e9da63f415/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d5497d7252c52c563a161a494d6032e9da63f415"><tt>d5497d7</tt></a> Match getting started subtitle copy</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/046afe0e675475f711ab04ab976d0bd14dc81a34/hovercard" href="https://github.com/refactoringhq/tolaria/commit/046afe0e675475f711ab04ab976d0bd14dc81a34"><tt>046afe0</tt></a> Simplify Getting Started vault subtitle</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cb1cc4b3948033eeefe1efa11638dd5ad8ab935e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cb1cc4b3948033eeefe1efa11638dd5ad8ab935e"><tt>cb1cc4b</tt></a> fix: include inverse neighborhood groups</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/00cb938766d0291b4e885ee85708cf5e50ac17d3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/00cb938766d0291b4e885ee85708cf5e50ac17d3"><tt>00cb938</tt></a> fix: add cmd o quick-open alias</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/80c13272f36a2bad78fbeb7ef3f02f5efcc1b39c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/80c13272f36a2bad78fbeb7ef3f02f5efcc1b39c"><tt>80c1327</tt></a> fix: keep neighborhood reverse matches path-aware</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/95344493076e73fb6baed47ee6c767b30a04666f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/95344493076e73fb6baed47ee6c767b30a04666f"><tt>9534449</tt></a> fix: hide absent neighborhood groups</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2d5361b2e9e1aba8e0958e41859c609488045424/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2d5361b2e9e1aba8e0958e41859c609488045424"><tt>2d5361b</tt></a> fix: keep keyboard note switching snappy</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b22da65d446f61c707b187d779360b9914e1c2cb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b22da65d446f61c707b187d779360b9914e1c2cb"><tt>b22da65</tt></a> fix: keep note switches instant</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/862af864d3eadd44aabf4be9cebcb03da24e8ba2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/862af864d3eadd44aabf4be9cebcb03da24e8ba2"><tt>862af86</tt></a> fix: preserve image selection while hovering toolbar</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9ecefc90d5b6fb1a8bd4368ef306d722108b3008/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9ecefc90d5b6fb1a8bd4368ef306d722108b3008"><tt>9ecefc9</tt></a> feat: add stable landing page download link</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9693fe24c993f5fc846a07c20d79953616b502d8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9693fe24c993f5fc846a07c20d79953616b502d8"><tt>9693fe2</tt></a> fix: restore type filter icon colors</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/92ea32c0b8c49c9bc1354d048ca1a110b65f4390/hovercard" href="https://github.com/refactoringhq/tolaria/commit/92ea32c0b8c49c9bc1354d048ca1a110b65f4390"><tt>92ea32c</tt></a> feat: add neighborhood browsing mode</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2e2bd2f3b3fb48816f54a0b48a6b8fc9c35f8710/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2e2bd2f3b3fb48816f54a0b48a6b8fc9c35f8710"><tt>2e2bd2f</tt></a> fix: preserve native welcome vault creation</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3556d934ee74a38588ce4ee6bc0e138bae43b593/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3556d934ee74a38588ce4ee6bc0e138bae43b593"><tt>3556d93</tt></a> test: format vault command assertions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/feef938174f97267aa2a8b7d5bec57bddb659065/hovercard" href="https://github.com/refactoringhq/tolaria/commit/feef938174f97267aa2a8b7d5bec57bddb659065"><tt>feef938</tt></a> fix: align fresh vault seed files</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/67a9930ea1aa0d51cc5259b97ea4f87fa81f9131/hovercard" href="https://github.com/refactoringhq/tolaria/commit/67a9930ea1aa0d51cc5259b97ea4f87fa81f9131"><tt>67a9930</tt></a> feat: add empty vault creation flow</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/aed4d05f1d89f925db58f7d0c13f05570cfac2a5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/aed4d05f1d89f925db58f7d0c13f05570cfac2a5"><tt>aed4d05</tt></a> docs: ratchet codescene thresholds</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cac7f12c6dc357726d6f3d866595e962d4caea2f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cac7f12c6dc357726d6f3d866595e962d4caea2f"><tt>cac7f12</tt></a> fix: stop duplicate native quick prompt paste</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/72b5b5214026d288914a2579477cb79bc6b1c78e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/72b5b5214026d288914a2579477cb79bc6b1c78e"><tt>72b5b52</tt></a> feat: add view note-list controls</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7deeb49751e9ef92e82b2b124cb0b4cb57d2323f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7deeb49751e9ef92e82b2b124cb0b4cb57d2323f"><tt>7deeb49</tt></a> feat: add number property type</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8c0a2e7ec8272f93521f1a5590a0e6b4ec21c4b1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8c0a2e7ec8272f93521f1a5590a0e6b4ec21c4b1"><tt>8c0a2e7</tt></a> fix: share onboarding drag shell</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c4e66dc74f8c01de3c57efd417f63635c62572ad/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c4e66dc74f8c01de3c57efd417f63635c62572ad"><tt>c4e66dc</tt></a> fix: make onboarding window draggable</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c0bb722db570c12a848b9646e7c8ce6a8573ab8a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c0bb722db570c12a848b9646e7c8ce6a8573ab8a"><tt>c0bb722</tt></a> fix: reuse note content cache for rapid note switches</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bc11c869aa8cbaf2077150836bc9960a02810a7d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bc11c869aa8cbaf2077150836bc9960a02810a7d"><tt>bc11c86</tt></a> fix: stabilize ai mode paste editing</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/502ecf05729112e1e7329ffcecacaa3f5b30c853/hovercard" href="https://github.com/refactoringhq/tolaria/commit/502ecf05729112e1e7329ffcecacaa3f5b30c853"><tt>502ecf0</tt></a> test: stabilize wikilink smoke coverage</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8bbbba98b7fffd2dcb818474d28f18bf73db6766/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8bbbba98b7fffd2dcb818474d28f18bf73db6766"><tt>8bbbba9</tt></a> fix: correct vault path type guard</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/86adf860b561e5865049dfe5f11da2a86a82476a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/86adf860b561e5865049dfe5f11da2a86a82476a"><tt>86adf86</tt></a> fix: restore bottom bar vault switching</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Stable release — manually promoted from <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>f223d4f6</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/stable-v2026.4.19/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/stable-v2026.4.19/Tolaria_2026.4.19_aarch64.dmg" target="_blank" rel="noreferrer">Tolaria_2026.4.19_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/stable-v2026.4.19" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 2026.4.18</h2>
|
||
<p class="release-meta">April 18, 2026 · stable-v2026.4.18</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cec1627a81d725f73b841bb2d1c6c5d9212c5111/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cec1627a81d725f73b841bb2d1c6c5d9212c5111"><tt>cec1627</tt></a> fix: preserve image toolbar hover bridge</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b00183419e978daf6ec0f11d6eed7d29d429ecbc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b00183419e978daf6ec0f11d6eed7d29d429ecbc"><tt>b001834</tt></a> fix: show Note metadata in autocomplete</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ed9ceff1d2cdca4a769cd6a3e6748f34d922dc4b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ed9ceff1d2cdca4a769cd6a3e6748f34d922dc4b"><tt>ed9ceff</tt></a> fix: align Notes counts with explicit type</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e18491bcd33f68434103e56ec3920113eddbc0e5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e18491bcd33f68434103e56ec3920113eddbc0e5"><tt>e18491b</tt></a> fix: preserve untitled rename session continuity</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fd0cfc7fb6180c84714b575bf72887c77ec8f915/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fd0cfc7fb6180c84714b575bf72887c77ec8f915"><tt>fd0cfc7</tt></a> fix: exclude attachments from all notes totals</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6541ce575536df031d881ef55f267b7944419ff4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6541ce575536df031d881ef55f267b7944419ff4"><tt>6541ce5</tt></a> test: stabilize wikilink smoke timing</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4456801526d576d72337c7ed6dc10ebe0a792ed3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4456801526d576d72337c7ed6dc10ebe0a792ed3"><tt>4456801</tt></a> fix: keep h1 typing responsive</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/db7aaf1385807261300be823b9d3459c3e1c0085/hovercard" href="https://github.com/refactoringhq/tolaria/commit/db7aaf1385807261300be823b9d3459c3e1c0085"><tt>db7aaf1</tt></a> fix: restore note type during vault repair</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/54b2616fa45968d4a844ca65b881411ae0c563c1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/54b2616fa45968d4a844ca65b881411ae0c563c1"><tt>54b2616</tt></a> fix: restore manual commit dialog when autogit is off</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6a90e9f77038b8356857b330becffd2f3b78366c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6a90e9f77038b8356857b330becffd2f3b78366c"><tt>6a90e9f</tt></a> fix: correct editor layout diff callback type</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b79c78a5bad90d094da43761946cdbf67620c657/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b79c78a5bad90d094da43761946cdbf67620c657"><tt>b79c78a</tt></a> fix: save raw note changes before switching notes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/48a88829702b7daeaf0e088d51d3b866cca1bc0b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/48a88829702b7daeaf0e088d51d3b866cca1bc0b"><tt>48a8882</tt></a> Reorder CodeScene badges in README</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/98276702a2ba012f918500a9d6d50ac9e5cea2bd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/98276702a2ba012f918500a9d6d50ac9e5cea2bd"><tt>9827670</tt></a> Added codescene badges</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/857d55a7cd2e255f8aee7d78896e7c1a02f68787/hovercard" href="https://github.com/refactoringhq/tolaria/commit/857d55a7cd2e255f8aee7d78896e7c1a02f68787"><tt>857d55a</tt></a> fix: stop cmd+s from renaming note titles</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b78dfad384df42fe6212fa83f86b31be9520a2a0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b78dfad384df42fe6212fa83f86b31be9520a2a0"><tt>b78dfad</tt></a> fix: resume onboarding after telemetry on fresh start</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9ac51bab9aeffc64788da22c30fc425934ea4488/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9ac51bab9aeffc64788da22c30fc425934ea4488"><tt>9ac51ba</tt></a> test: pin app test active vault</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1fee99486365fead20c1e0297858536c4303d1c9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1fee99486365fead20c1e0297858536c4303d1c9"><tt>1fee994</tt></a> test: cover mock vault config path</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/764bbf0e4c23afeb129ec7c65278ab1fa55751a9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/764bbf0e4c23afeb129ec7c65278ab1fa55751a9"><tt>764bbf0</tt></a> test: scope inbox sidebar assertion</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ff05ba0430f7c0bfe6b563130d5dce9c8cf83638/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ff05ba0430f7c0bfe6b563130d5dce9c8cf83638"><tt>ff05ba0</tt></a> chore: ratchet codescene thresholds</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/347df47c62ab5fcf4c97baf487dd720f022e2061/hovercard" href="https://github.com/refactoringhq/tolaria/commit/347df47c62ab5fcf4c97baf487dd720f022e2061"><tt>347df47</tt></a> fix: stabilize smoke vault harness</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Stable release — manually promoted from <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>cec1627a</code> on 2026-04-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/stable-v2026.4.18/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/stable-v2026.4.18/Tolaria_2026.4.18_aarch64.dmg" target="_blank" rel="noreferrer">Tolaria_2026.4.18_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/stable-v2026.4.18" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.20260412.708</h2>
|
||
<p class="release-meta">April 12, 2026 · v0.20260412.708</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fbbd53d204b8b3257ff4b10cfec6962287906d87/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fbbd53d204b8b3257ff4b10cfec6962287906d87"><tt>fbbd53d</tt></a> test: restore smoke flows after Claude onboarding</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fd9de042753f84fc0456811f3ef8bc2ac31c421a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fd9de042753f84fc0456811f3ef8bc2ac31c421a"><tt>fd9de04</tt></a> feat: add first-launch Claude Code onboarding</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>fbbd53d2</code> on 2026-04-12</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260412.708/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260412.708/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260412.708/Tolaria_0.20260412.708_aarch64.dmg" target="_blank" rel="noreferrer">Tolaria_0.20260412.708_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260412.708" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.20260412.707</h2>
|
||
<p class="release-meta">April 12, 2026 · v0.20260412.707</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a13e36a504e70889ee05971bb345e044db9b80e2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a13e36a504e70889ee05971bb345e044db9b80e2"><tt>a13e36a</tt></a> feat: support local-only git commits without remotes</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>a13e36a5</code> on 2026-04-12</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260412.707/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260412.707/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260412.707/Tolaria_0.20260412.707_aarch64.dmg" target="_blank" rel="noreferrer">Tolaria_0.20260412.707_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260412.707" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.20260412.706</h2>
|
||
<p class="release-meta">April 12, 2026 · v0.20260412.706</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/73a63085c71141f1ba901a2c0c37346aa8469ad1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/73a63085c71141f1ba901a2c0c37346aa8469ad1"><tt>73a6308</tt></a> fix: tighten vault switcher typing</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/739e1b3c201f045fa2ee9ab6636a5e2ed7467f09/hovercard" href="https://github.com/refactoringhq/tolaria/commit/739e1b3c201f045fa2ee9ab6636a5e2ed7467f09"><tt>739e1b3</tt></a> feat: handle offline onboarding gracefully</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>73a63085</code> on 2026-04-12</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260412.706/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260412.706/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260412.706/Tolaria_0.20260412.706_aarch64.dmg" target="_blank" rel="noreferrer">Tolaria_0.20260412.706_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260412.706" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.20260412.705</h2>
|
||
<p class="release-meta">April 12, 2026 · v0.20260412.705</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e2745d96eb309610df915c085c94a3f8d6bdcec5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e2745d96eb309610df915c085c94a3f8d6bdcec5"><tt>e2745d9</tt></a> refactor: remove github auth integration</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>e2745d96</code> on 2026-04-12</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260412.705/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260412.705/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260412.705/Tolaria_0.20260412.705_aarch64.dmg" target="_blank" rel="noreferrer">Tolaria_0.20260412.705_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260412.705" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.20260412.704</h2>
|
||
<p class="release-meta">April 12, 2026 · v0.20260412.704</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a2c84d3ce81f49c2b39a41c14b69c4b3d0712005/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a2c84d3ce81f49c2b39a41c14b69c4b3d0712005"><tt>a2c84d3</tt></a> test: align AI smoke selector with inline input</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/afbea1367c385ad315db2068a37dec9ab9c71f56/hovercard" href="https://github.com/refactoringhq/tolaria/commit/afbea1367c385ad315db2068a37dec9ab9c71f56"><tt>afbea13</tt></a> fix: narrow inline wikilink selection lookup</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7933fe1bfbe2644a0b8431f7a11e75f68a80af9f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7933fe1bfbe2644a0b8431f7a11e75f68a80af9f"><tt>7933fe1</tt></a> feat: add inline AI prompts to command palette</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>a2c84d3c</code> on 2026-04-12</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260412.704/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260412.704/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260412.704/Tolaria_0.20260412.704_aarch64.dmg" target="_blank" rel="noreferrer">Tolaria_0.20260412.704_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260412.704" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.20260412.703</h2>
|
||
<p class="release-meta">April 12, 2026 · v0.20260412.703</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d16aa29d18c79767a7eb9c46f6ccdaeb934be7fe/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d16aa29d18c79767a7eb9c46f6ccdaeb934be7fe"><tt>d16aa29</tt></a> docs: test notes must be deleted from disk after QA; update QA script paths to tolaria-qa</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6188395141587e3acb7571a33a13c9fdffee77e8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6188395141587e3acb7571a33a13c9fdffee77e8"><tt>6188395</tt></a> fix: align desktop test bridge types</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1bf5a7d6e47ac9a096f70628d5e0c535ef4bb029/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1bf5a7d6e47ac9a096f70628d5e0c535ef4bb029"><tt>1bf5a7d</tt></a> fix: preserve resized tables across raw mode toggles</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>d16aa29d</code> on 2026-04-12</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260412.703/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260412.703/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260412.703/Tolaria_0.20260412.703_aarch64.dmg" target="_blank" rel="noreferrer">Tolaria_0.20260412.703_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260412.703" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.20260412.702</h2>
|
||
<p class="release-meta">April 12, 2026 · v0.20260412.702</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/27e371c7fe3045beae256c50f63e51b78c30ec32/hovercard" href="https://github.com/refactoringhq/tolaria/commit/27e371c7fe3045beae256c50f63e51b78c30ec32"><tt>27e371c</tt></a> docs: restore README content lost during Laputa→Tolaria rename</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>27e371c7</code> on 2026-04-12</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260412.702/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260412.702/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260412.702/Tolaria_0.20260412.702_aarch64.dmg" target="_blank" rel="noreferrer">Tolaria_0.20260412.702_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260412.702" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.20260412.701</h2>
|
||
<p class="release-meta">April 12, 2026 · v0.20260412.701</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/867e97b199aa442af8104c299dad929a147da5b2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/867e97b199aa442af8104c299dad929a147da5b2"><tt>867e97b</tt></a> fix: left-align property values in inspector</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>867e97b1</code> on 2026-04-12</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260412.701/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260412.701/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260412.701/Tolaria_0.20260412.701_aarch64.dmg" target="_blank" rel="noreferrer">Tolaria_0.20260412.701_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260412.701" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.20260412.700</h2>
|
||
<p class="release-meta">April 12, 2026 · v0.20260412.700</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2441518cee6f98a95aa6b5abd2d6310b52088db9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2441518cee6f98a95aa6b5abd2d6310b52088db9"><tt>2441518</tt></a> fix: restore breadcrumb center drag region</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>2441518c</code> on 2026-04-12</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260412.700/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260412.700/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260412.700/Tolaria_0.20260412.700_aarch64.dmg" target="_blank" rel="noreferrer">Tolaria_0.20260412.700_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260412.700" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.20260411.699</h2>
|
||
<p class="release-meta">April 11, 2026 · v0.20260411.699</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/010bc32ee1a67a88b71aab33050757c398d95468/hovercard" href="https://github.com/refactoringhq/tolaria/commit/010bc32ee1a67a88b71aab33050757c398d95468"><tt>010bc32</tt></a> style: format Rust rename updates</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/361898b187e0c075f8380f46cf25442b6bf9d79b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/361898b187e0c075f8380f46cf25442b6bf9d79b"><tt>361898b</tt></a> refactor: rename app branding from Laputa to Tolaria</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>010bc32e</code> on 2026-04-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.699/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.699/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.699/Tolaria_0.20260411.699_aarch64.dmg" target="_blank" rel="noreferrer">Tolaria_0.20260411.699_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260411.699" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260411.698</h2>
|
||
<p class="release-meta">April 11, 2026 · v0.20260411.698</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5b5f949c749d8211d42a7bd9ef1b030c194d0cf9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5b5f949c749d8211d42a7bd9ef1b030c194d0cf9"><tt>5b5f949</tt></a> fix: initialize new notes with empty h1 focus</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>5b5f949c</code> on 2026-04-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.698/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.698/laputa_0.20260411.698_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260411.698_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260411.698" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260411.697</h2>
|
||
<p class="release-meta">April 11, 2026 · v0.20260411.697</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/57a5693922d02a92db1e4d50cabc3b135e95a5e3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/57a5693922d02a92db1e4d50cabc3b135e95a5e3"><tt>57a5693</tt></a> fix: stabilize new note editor focus</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2ca8f1b2a67decf45ac0c7f2dad4293268a1caa1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2ca8f1b2a67decf45ac0c7f2dad4293268a1caa1"><tt>2ca8f1b</tt></a> fix: remove legacy title section fallback</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>57a56939</code> on 2026-04-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.697/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.697/laputa_0.20260411.697_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260411.697_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260411.697" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260411.696</h2>
|
||
<p class="release-meta">April 11, 2026 · v0.20260411.696</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/eb65bb8f05701f9a0322da928a92677b90dbb9f2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/eb65bb8f05701f9a0322da928a92677b90dbb9f2"><tt>eb65bb8</tt></a> fix: dedupe new note command palette entries</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>eb65bb8f</code> on 2026-04-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.696/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.696/laputa_0.20260411.696_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260411.696_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260411.696" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260411.695</h2>
|
||
<p class="release-meta">April 11, 2026 · v0.20260411.695</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8fb229ede33c89dbf5a509c0881659d88b2811e2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8fb229ede33c89dbf5a509c0881659d88b2811e2"><tt>8fb229e</tt></a> fix: preserve square brackets in parsed note titles</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>8fb229ed</code> on 2026-04-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.695/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.695/laputa_0.20260411.695_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260411.695_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260411.695" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260411.694</h2>
|
||
<p class="release-meta">April 11, 2026 · v0.20260411.694</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ce84b34890a1cf60ba5390cb14f2951c1acc3547/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ce84b34890a1cf60ba5390cb14f2951c1acc3547"><tt>ce84b34</tt></a> fix: restore cmd shift i properties shortcut</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>ce84b348</code> on 2026-04-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.694/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.694/laputa_0.20260411.694_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260411.694_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260411.694" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260411.693</h2>
|
||
<p class="release-meta">April 11, 2026 · v0.20260411.693</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e98a186389a00c56f54f95a52550e96d87d805dc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e98a186389a00c56f54f95a52550e96d87d805dc"><tt>e98a186</tt></a> fix: align note list date row spacing</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>e98a1863</code> on 2026-04-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.693/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.693/laputa_0.20260411.693_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260411.693_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260411.693" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260411.692</h2>
|
||
<p class="release-meta">April 11, 2026 · v0.20260411.692</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/258b54b074bb982b1941734cd321d3a2be2973c5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/258b54b074bb982b1941734cd321d3a2be2973c5"><tt>258b54b</tt></a> refactor: make shortcut QA modes explicit</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>258b54b0</code> on 2026-04-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.692/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.692/laputa_0.20260411.692_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260411.692_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260411.692" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260411.691</h2>
|
||
<p class="release-meta">April 11, 2026 · v0.20260411.691</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f694b9b5e4807a332ba5f62ed7b6f52ece8866b3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f694b9b5e4807a332ba5f62ed7b6f52ece8866b3"><tt>f694b9b</tt></a> fix: unblock native ai panel shortcut in tauri</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>f694b9b5</code> on 2026-04-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.691/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.691/laputa_0.20260411.691_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260411.691_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260411.691" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260411.690</h2>
|
||
<p class="release-meta">April 11, 2026 · v0.20260411.690</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/32ee2b781b8e9084f62efce889598b69e1d74cf8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/32ee2b781b8e9084f62efce889598b69e1d74cf8"><tt>32ee2b7</tt></a> test: stabilize keyboard shortcut smoke</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>32ee2b78</code> on 2026-04-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.690/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.690/laputa_0.20260411.690_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260411.690_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260411.690" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260411.689</h2>
|
||
<p class="release-meta">April 11, 2026 · v0.20260411.689</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c78793cfe3cc19250bc2feeb0e411329561d2325/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c78793cfe3cc19250bc2feeb0e411329561d2325"><tt>c78793c</tt></a> fix: verify editor-focused keyboard shortcuts</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c78793cf</code> on 2026-04-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.689/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.689/laputa_0.20260411.689_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260411.689_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260411.689" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260411.688</h2>
|
||
<p class="release-meta">April 11, 2026 · v0.20260411.688</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cd9e5fc40396d438473309d839f27eb60ab6b8af/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cd9e5fc40396d438473309d839f27eb60ab6b8af"><tt>cd9e5fc</tt></a> fix: guard table resize against stale editor views</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>cd9e5fc4</code> on 2026-04-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.688/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.688/laputa_0.20260411.688_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260411.688_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260411.688" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260411.687</h2>
|
||
<p class="release-meta">April 11, 2026 · v0.20260411.687</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/798a6b21253c5875f23412e12bcc8be229357480/hovercard" href="https://github.com/refactoringhq/tolaria/commit/798a6b21253c5875f23412e12bcc8be229357480"><tt>798a6b2</tt></a> refactor: make shortcut execution renderer-first</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>798a6b21</code> on 2026-04-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.687/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.687/laputa_0.20260411.687_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260411.687_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260411.687" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260411.686</h2>
|
||
<p class="release-meta">April 11, 2026 · v0.20260411.686</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/dbf54657f021b0fbaae4d5a3aa555f55cfa70d84/hovercard" href="https://github.com/refactoringhq/tolaria/commit/dbf54657f021b0fbaae4d5a3aa555f55cfa70d84"><tt>dbf5465</tt></a> fix: harden untitled h1 auto-rename flow</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>dbf54657</code> on 2026-04-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.686/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.686/laputa_0.20260411.686_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260411.686_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260411.686" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260411.685</h2>
|
||
<p class="release-meta">April 11, 2026 · v0.20260411.685</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0c365eb7dd1a9091214bd8e1f449484c5e3622f7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0c365eb7dd1a9091214bd8e1f449484c5e3622f7"><tt>0c365eb</tt></a> test: cover raw editor keyboard toggle</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>0c365eb7</code> on 2026-04-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.685/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.685/laputa_0.20260411.685_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260411.685_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260411.685" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260411.684</h2>
|
||
<p class="release-meta">April 11, 2026 · v0.20260411.684</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/20b789271d37671733393de49bcbb92a2d480c48/hovercard" href="https://github.com/refactoringhq/tolaria/commit/20b789271d37671733393de49bcbb92a2d480c48"><tt>20b7892</tt></a> fix: verify view row hover state</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/36d3c8731b44125b12c2ddbab527943543062628/hovercard" href="https://github.com/refactoringhq/tolaria/commit/36d3c8731b44125b12c2ddbab527943543062628"><tt>36d3c87</tt></a> fix: hide view counts while row actions are visible</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>20b78927</code> on 2026-04-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.684/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.684/laputa_0.20260411.684_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260411.684_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260411.684" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260411.683</h2>
|
||
<p class="release-meta">April 11, 2026 · v0.20260411.683</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e412fa8fd7731b6e78c9555c09acd9568d98f588/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e412fa8fd7731b6e78c9555c09acd9568d98f588"><tt>e412fa8</tt></a> fix: restore breadcrumb action icon size</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>e412fa8f</code> on 2026-04-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.683/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.683/laputa_0.20260411.683_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260411.683_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260411.683" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260411.682</h2>
|
||
<p class="release-meta">April 11, 2026 · v0.20260411.682</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/76c37cf7836565327c86448bee0ae8f422c3e21a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/76c37cf7836565327c86448bee0ae8f422c3e21a"><tt>76c37cf</tt></a> fix: narrow shortcut dispatcher route handling</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4b60b9539dbb8d6bf83c1c4c0d4d3e52ce56c7c8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4b60b9539dbb8d6bf83c1c4c0d4d3e52ce56c7c8"><tt>4b60b95</tt></a> refactor: centralize shortcut routing metadata</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>76c37cf7</code> on 2026-04-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.682/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.682/laputa_0.20260411.682_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260411.682_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260411.682" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260411.681</h2>
|
||
<p class="release-meta">April 11, 2026 · v0.20260411.681</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/69e520b5aabd6845ef711a45e6c2e28511fc053c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/69e520b5aabd6845ef711a45e6c2e28511fc053c"><tt>69e520b</tt></a> fix: prevent cmd+n note creation crash</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>69e520b5</code> on 2026-04-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.681/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.681/laputa_0.20260411.681_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260411.681_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260411.681" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260411.680</h2>
|
||
<p class="release-meta">April 11, 2026 · v0.20260411.680</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/272f2c0b3c290546d6141087caa7c84a09a34aa4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/272f2c0b3c290546d6141087caa7c84a09a34aa4"><tt>272f2c0</tt></a> design: replace app icon with Tolaria drop icon</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>272f2c0b</code> on 2026-04-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.680/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.680/laputa_0.20260411.680_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260411.680_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260411.680" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260411.679</h2>
|
||
<p class="release-meta">April 11, 2026 · v0.20260411.679</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d7bdab5b2e128fa514432ff269d586e2fbc7d634/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d7bdab5b2e128fa514432ff269d586e2fbc7d634"><tt>d7bdab5</tt></a> fix: relax test bridge command typing</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5a5ea8d6f076e8da5a1ecdc57adf518b067357e7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5a5ea8d6f076e8da5a1ecdc57adf518b067357e7"><tt>5a5ea8d</tt></a> fix: align test bridge window typing</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/86306dc9de97e9543400be7ec9ccf34671f58d86/hovercard" href="https://github.com/refactoringhq/tolaria/commit/86306dc9de97e9543400be7ec9ccf34671f58d86"><tt>86306dc</tt></a> test: stabilize keyboard menu smoke bridge</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/974ca6148b8a903a65537b419e81005fc67ea615/hovercard" href="https://github.com/refactoringhq/tolaria/commit/974ca6148b8a903a65537b419e81005fc67ea615"><tt>974ca61</tt></a> fix: return false for unhandled app commands</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b1bc056afbfecb055684c3444eb91da161e9dc03/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b1bc056afbfecb055684c3444eb91da161e9dc03"><tt>b1bc056</tt></a> refactor: unify shortcut command routing</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>d7bdab5b</code> on 2026-04-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.679/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260411.679/laputa_0.20260411.679_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260411.679_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260411.679" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260410.678</h2>
|
||
<p class="release-meta">April 10, 2026 · v0.20260410.678</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c24f60c594af73f725309760a06894cdbdeee387/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c24f60c594af73f725309760a06894cdbdeee387"><tt>c24f60c</tt></a> fix: restore breadcrumb action icon sizing</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c24f60c5</code> on 2026-04-10</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.678/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.678/laputa_0.20260410.678_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260410.678_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260410.678" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260410.677</h2>
|
||
<p class="release-meta">April 10, 2026 · v0.20260410.677</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/71a3be577d7b4bc67c598eee47d2b9ed327f9acd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/71a3be577d7b4bc67c598eee47d2b9ed327f9acd"><tt>71a3be5</tt></a> fix: always show breadcrumb filename</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>71a3be57</code> on 2026-04-10</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.677/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.677/laputa_0.20260410.677_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260410.677_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260410.677" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260410.676</h2>
|
||
<p class="release-meta">April 10, 2026 · v0.20260410.676</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/717fa9d1a60619b7532bd8c0a8e823f9f84050d3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/717fa9d1a60619b7532bd8c0a8e823f9f84050d3"><tt>717fa9d</tt></a> fix: prefer note icons in favorite rows</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>717fa9d1</code> on 2026-04-10</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.676/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.676/laputa_0.20260410.676_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260410.676_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260410.676" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260410.675</h2>
|
||
<p class="release-meta">April 10, 2026 · v0.20260410.675</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/78e76e0d54415d399908da57d2b6bfc425d1d1c7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/78e76e0d54415d399908da57d2b6bfc425d1d1c7"><tt>78e76e0</tt></a> fix: defer native menu shortcuts in tauri</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>78e76e0d</code> on 2026-04-10</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.675/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.675/laputa_0.20260410.675_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260410.675_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260410.675" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260410.674</h2>
|
||
<p class="release-meta">April 10, 2026 · v0.20260410.674</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b01c6b4a4b2a3dc353005d47c41f41c68f8fe148/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b01c6b4a4b2a3dc353005d47c41f41c68f8fe148"><tt>b01c6b4</tt></a> fix: format rename rust helpers</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/db4359981fded9efcadea8908f13f74faf3b4fca/hovercard" href="https://github.com/refactoringhq/tolaria/commit/db4359981fded9efcadea8908f13f74faf3b4fca"><tt>db43599</tt></a> fix: update rename filename wikilinks</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>b01c6b4a</code> on 2026-04-10</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.674/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.674/laputa_0.20260410.674_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260410.674_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260410.674" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260410.673</h2>
|
||
<p class="release-meta">April 10, 2026 · v0.20260410.673</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/98d19e4c416e8c1d5e1e09d80f78fbae4b8ca3dc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/98d19e4c416e8c1d5e1e09d80f78fbae4b8ca3dc"><tt>98d19e4</tt></a> fix: align created label to right edge in note list date row</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5ebffc447bc7f52c7f1bd8d51a62d6ed0e5e8b79/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5ebffc447bc7f52c7f1bd8d51a62d6ed0e5e8b79"><tt>5ebffc4</tt></a> feat: standardize canonical wikilink targets</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>98d19e4c</code> on 2026-04-10</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.673/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.673/laputa_0.20260410.673_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260410.673_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260410.673" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260410.672</h2>
|
||
<p class="release-meta">April 10, 2026 · v0.20260410.672</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a44dd41f95880b9f8fc629cb914c538c9e9036a6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a44dd41f95880b9f8fc629cb914c538c9e9036a6"><tt>a44dd41</tt></a> feat: style note list status chips</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>a44dd41f</code> on 2026-04-10</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.672/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.672/laputa_0.20260410.672_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260410.672_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260410.672" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260410.671</h2>
|
||
<p class="release-meta">April 10, 2026 · v0.20260410.671</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/eb67b98d96fc635e3fe14d65248ff1f0f8ae3bc4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/eb67b98d96fc635e3fe14d65248ff1f0f8ae3bc4"><tt>eb67b98</tt></a> test: scope quick open smoke locators</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/968c4d05a98858be454054f546a23bf47c7e83d4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/968c4d05a98858be454054f546a23bf47c7e83d4"><tt>968c4d0</tt></a> feat: add breadcrumb filename rename controls</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>eb67b98d</code> on 2026-04-10</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.671/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.671/laputa_0.20260410.671_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260410.671_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260410.671" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260410.670</h2>
|
||
<p class="release-meta">April 10, 2026 · v0.20260410.670</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c8db92c92d491827efecbe3e8e28df49cf7d52d8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c8db92c92d491827efecbe3e8e28df49cf7d52d8"><tt>c8db92c</tt></a> fix: debounce untitled H1 filename sync</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c8db92c9</code> on 2026-04-10</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.670/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.670/laputa_0.20260410.670_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260410.670_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260410.670" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260410.669</h2>
|
||
<p class="release-meta">April 10, 2026 · v0.20260410.669</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1e36cd2855b4f2fb3b418b277ee76f7ec06c05dd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1e36cd2855b4f2fb3b418b277ee76f7ec06c05dd"><tt>1e36cd2</tt></a> test: cover typed note creation smoke paths</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>1e36cd28</code> on 2026-04-10</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.669/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.669/laputa_0.20260410.669_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260410.669_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260410.669" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260410.668</h2>
|
||
<p class="release-meta">April 10, 2026 · v0.20260410.668</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d86335c86dabc4d144d72060383255cf75e1da2e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d86335c86dabc4d144d72060383255cf75e1da2e"><tt>d86335c</tt></a> fix: harden immediate note creation</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>d86335c8</code> on 2026-04-10</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.668/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.668/laputa_0.20260410.668_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260410.668_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260410.668" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260410.667</h2>
|
||
<p class="release-meta">April 10, 2026 · v0.20260410.667</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/330fc291138ad87efeac1e0a6ab6049ed65961d1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/330fc291138ad87efeac1e0a6ab6049ed65961d1"><tt>330fc29</tt></a> design: reduce bullet point size from 28px to 24px</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>330fc291</code> on 2026-04-10</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.667/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.667/laputa_0.20260410.667_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260410.667_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260410.667" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260410.666</h2>
|
||
<p class="release-meta">April 10, 2026 · v0.20260410.666</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0aa3d156fc508a5b438eff75b5f7d69eac72fa77/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0aa3d156fc508a5b438eff75b5f7d69eac72fa77"><tt>0aa3d15</tt></a> fix: tighten settings panel organization toggle typing</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7bc74432acbd7d525a6db04dbb76476af8b39bb8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7bc74432acbd7d525a6db04dbb76476af8b39bb8"><tt>7bc7443</tt></a> feat: add explicit note organization setting</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0e1d98a217b4a21b34aedf1e9597e403cbd70226/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0e1d98a217b4a21b34aedf1e9597e403cbd70226"><tt>0e1d98a</tt></a> fix: ellipsize long property values</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f37d11101e4316b3de36347c6e2a89b742fc3aa7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f37d11101e4316b3de36347c6e2a89b742fc3aa7"><tt>f37d111</tt></a> fix: replace breadcrumb shadow with border</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3c51a187765246f25fe14f33473c64276ae3ef77/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3c51a187765246f25fe14f33473c64276ae3ef77"><tt>3c51a18</tt></a> feat: add created dates to note list rows</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/acd9addefdf84a6e8979c3944f799f2fcbea894e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/acd9addefdf84a6e8979c3944f799f2fcbea894e"><tt>acd9add</tt></a> feat: add feedback modal flow</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7dace14831f4266ec7b3f648d15d844ae02ceb2c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7dace14831f4266ec7b3f648d15d844ae02ceb2c"><tt>7dace14</tt></a> fix: align favorites sidebar rows</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/09f5ab9080a6e08962fb3ddb657ec69016a04eec/hovercard" href="https://github.com/refactoringhq/tolaria/commit/09f5ab9080a6e08962fb3ddb657ec69016a04eec"><tt>09f5ab9</tt></a> fix: hide view counts on hover</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7304c3c55f59d0263a1ac5b93e89ea0b4646ffa1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7304c3c55f59d0263a1ac5b93e89ea0b4646ffa1"><tt>7304c3c</tt></a> fix: move cmd+e to toggle organized</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/378990c084ca14a07c16a71fc5f48ddc9e4a3073/hovercard" href="https://github.com/refactoringhq/tolaria/commit/378990c084ca14a07c16a71fc5f48ddc9e4a3073"><tt>378990c</tt></a> fix: restore filter field dropdown scrolling</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f745bc44aa2903f809762a9c6156fc51ad0e27a6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f745bc44aa2903f809762a9c6156fc51ad0e27a6"><tt>f745bc4</tt></a> chore: ratchet codescene thresholds to 9.68/9.33</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b13d22338bdac87d7019cec1708cfcdcf2ad2b3e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b13d22338bdac87d7019cec1708cfcdcf2ad2b3e"><tt>b13d223</tt></a> fix: support localized ai panel shortcut</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c6d1034f37d36c2ac084a571e765a10da9557a18/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c6d1034f37d36c2ac084a571e765a10da9557a18"><tt>c6d1034</tt></a> fix: keep date filter rows aligned</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/165f53fb3b073fa7dc5d72a0aa4c614bb9f809bf/hovercard" href="https://github.com/refactoringhq/tolaria/commit/165f53fb3b073fa7dc5d72a0aa4c614bb9f809bf"><tt>165f53f</tt></a> fix: refresh changes after frontmatter edits</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/31c8ac47746199d3e33e6c2b1c0b27c00c2391c5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/31c8ac47746199d3e33e6c2b1c0b27c00c2391c5"><tt>31c8ac4</tt></a> fix: make ai panel shortcut command-only</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/dd78e254ff009113f7361d69687251c456670260/hovercard" href="https://github.com/refactoringhq/tolaria/commit/dd78e254ff009113f7361d69687251c456670260"><tt>dd78e25</tt></a> fix: keep note list icons inline</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cb2e28f3d95fcf292a9d4a9df2f4d6628e12f393/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cb2e28f3d95fcf292a9d4a9df2f4d6628e12f393"><tt>cb2e28f</tt></a> fix: hide legacy title chrome for frontmatter titles</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d13e1816585519bb7354658d3ba11ce2ae1f9c4b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d13e1816585519bb7354658d3ba11ce2ae1f9c4b"><tt>d13e181</tt></a> fix: narrow pending tab swap target path</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4634949f71c1bb2d746bb7fb07f41afa21945fe7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4634949f71c1bb2d746bb7fb07f41afa21945fe7"><tt>4634949</tt></a> fix: swap note content after pending navigation</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/90fbe82bca6c3fa5d6a1b6f35d888ea7080af9e0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/90fbe82bca6c3fa5d6a1b6f35d888ea7080af9e0"><tt>90fbe82</tt></a> fix: hide stale title chrome while notes load</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/64e923ac5f8042fdd9a0fa8045b359d28953a709/hovercard" href="https://github.com/refactoringhq/tolaria/commit/64e923ac5f8042fdd9a0fa8045b359d28953a709"><tt>64e923a</tt></a> fix: type property chip icon helper</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3ac2326d0521c596d7e4b6493741100c11a8ad30/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3ac2326d0521c596d7e4b6493741100c11a8ad30"><tt>3ac2326</tt></a> fix: restore built-in relationship chip icons</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f4b59c973d5d4ea2648b716df2be68699607b8d1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f4b59c973d5d4ea2648b716df2be68699607b8d1"><tt>f4b59c9</tt></a> chore: ratchet CodeScene thresholds to 9.68/9.32</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/21ad9ad5053e33e4d580fe6a5ed2a1b06aaa7209/hovercard" href="https://github.com/refactoringhq/tolaria/commit/21ad9ad5053e33e4d580fe6a5ed2a1b06aaa7209"><tt>21ad9ad</tt></a> fix: unclip view filter field combobox</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8b4ab4a9cc1559f8803b987747155edf1c3da4d1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8b4ab4a9cc1559f8803b987747155edf1c3da4d1"><tt>8b4ab4a</tt></a> feat: preview relative date filters</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/680a56104dfb525ee327f47c74f68ff3eda61099/hovercard" href="https://github.com/refactoringhq/tolaria/commit/680a56104dfb525ee327f47c74f68ff3eda61099"><tt>680a561</tt></a> feat: enhance note list property chips</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cffac2881aee1836e0b8d3e7f2f6cfcb95ab3c5c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cffac2881aee1836e0b8d3e7f2f6cfcb95ab3c5c"><tt>cffac28</tt></a> feat: add searchable filter field combobox</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c3a9400f35107fdc5ce3bbc513daa5919cd2b339/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c3a9400f35107fdc5ce3bbc513daa5919cd2b339"><tt>c3a9400</tt></a> fix: make AI panel shortcut command-only</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3feb167b12c7ebc15ee3ed9de27d5a975ee5af54/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3feb167b12c7ebc15ee3ed9de27d5a975ee5af54"><tt>3feb167</tt></a> fix: surface status in note list chip picker</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/459145ba0d769850baa18f91fe1096cb04196570/hovercard" href="https://github.com/refactoringhq/tolaria/commit/459145ba0d769850baa18f91fe1096cb04196570"><tt>459145b</tt></a> fix: improve note icon property editing</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/24f6a014dc9aed81f051b805943d5c460afe9c20/hovercard" href="https://github.com/refactoringhq/tolaria/commit/24f6a014dc9aed81f051b805943d5c460afe9c20"><tt>24f6a01</tt></a> fix: hide legacy title section for H1 notes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6640691514e39f876de14cc9ec7b98460846e644/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6640691514e39f876de14cc9ec7b98460846e644"><tt>6640691</tt></a> style: format search title lookup</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/429aba7ae7b6e9b7b1d0a28b288f1f44f9c8f8c7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/429aba7ae7b6e9b7b1d0a28b288f1f44f9c8f8c7"><tt>429aba7</tt></a> fix: use h1 titles for displayed note names</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ad46eb0295f5daa88743fc4122f5d141a6e66c85/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ad46eb0295f5daa88743fc4122f5d141a6e66c85"><tt>ad46eb0</tt></a> fix: serialize single-item yaml lists as blocks</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5c5d40ff24c8b9a8d9b3402228205ee660897e96/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5c5d40ff24c8b9a8d9b3402228205ee660897e96"><tt>5c5d40f</tt></a> fix: require cmd-click for editor links</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b06d0847c3f9c6607bb9f5db622a213135188ebc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b06d0847c3f9c6607bb9f5db622a213135188ebc"><tt>b06d084</tt></a> docs: clarify CodeScene boy scout workflow</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7da50be1a41185e65d716c5e4c58c343468206cc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7da50be1a41185e65d716c5e4c58c343468206cc"><tt>7da50be</tt></a> fix: isolate pre-push smoke server</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8f614e411c626f3894a6e6e27681c629c66c3bd4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8f614e411c626f3894a6e6e27681c629c66c3bd4"><tt>8f614e4</tt></a> fix: isolate smoke lane dev server</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c0a5e8e714f4f78f3718777d9aaf04715406d48d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c0a5e8e714f4f78f3718777d9aaf04715406d48d"><tt>c0a5e8e</tt></a> fix: restore tauri runtime compatibility</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/528c711e68c5c7b1c69f9e8a13a2873191a2fe10/hovercard" href="https://github.com/refactoringhq/tolaria/commit/528c711e68c5c7b1c69f9e8a13a2873191a2fe10"><tt>528c711</tt></a> fix: narrow commit url before opening</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/90785440a040384414a5812c4b91ef9b4362a718/hovercard" href="https://github.com/refactoringhq/tolaria/commit/90785440a040384414a5812c4b91ef9b4362a718"><tt>9078544</tt></a> refactor: improve CodeScene hotspot health</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e7fe938b030c9f057085483307feac0ad7e87065/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e7fe938b030c9f057085483307feac0ad7e87065"><tt>e7fe938</tt></a> test: keep the smoke gate on stable app flows</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/616952bdaa8bcd97778b7f35eec01f6740b5949d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/616952bdaa8bcd97778b7f35eec01f6740b5949d"><tt>616952b</tt></a> test: stabilize smoke lane and timer-heavy tests</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e3eb774757a7dcf7c875e0b4bc1c5fa53fbb823a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e3eb774757a7dcf7c875e0b4bc1c5fa53fbb823a"><tt>e3eb774</tt></a> test: stabilize the pre-push smoke lane</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/be57656d75850de71fe61eb719b9842e7d870746/hovercard" href="https://github.com/refactoringhq/tolaria/commit/be57656d75850de71fe61eb719b9842e7d870746"><tt>be57656</tt></a> test: stabilize the smoke lane</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f66c8cf8cae055923b9b52afc8f9d6e7df220e6f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f66c8cf8cae055923b9b52afc8f9d6e7df220e6f"><tt>f66c8cf</tt></a> fix: stabilize note list hotspots</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8141b8fc8cf1886c91e6ead7182b3f2a36753de4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8141b8fc8cf1886c91e6ead7182b3f2a36753de4"><tt>8141b8f</tt></a> refactor: split note list hotspots</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0cc21e64add314c8a2e281c4788c7aecf06d2997/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0cc21e64add314c8a2e281c4788c7aecf06d2997"><tt>0cc21e6</tt></a> docs: add ADRs 0046–0049 for starter vault clone, regex filters, relative date filters, per-note icon (guard — from commits <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ef4a51202c718124a38ce789134be991fd21913b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ef4a51202c718124a38ce789134be991fd21913b"><tt>ef4a512</tt></a>, <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b0b6a4f4cd083c4e8020218b0cb2f661058f388c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b0b6a4f4cd083c4e8020218b0cb2f661058f388c"><tt>b0b6a4f</tt></a>, <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/037fd39c95790c764915bf163eea8c34e457d65b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/037fd39c95790c764915bf163eea8c34e457d65b"><tt>037fd39</tt></a>, <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/771409d30bc955d1a42898c6feaeec533a328733/hovercard" href="https://github.com/refactoringhq/tolaria/commit/771409d30bc955d1a42898c6feaeec533a328733"><tt>771409d</tt></a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ef4a51202c718124a38ce789134be991fd21913b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ef4a51202c718124a38ce789134be991fd21913b"><tt>ef4a512</tt></a> feat: clone the starter vault on demand</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/037fd39c95790c764915bf163eea8c34e457d65b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/037fd39c95790c764915bf163eea8c34e457d65b"><tt>037fd39</tt></a> feat: support relative date view filters</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b0b6a4f4cd083c4e8020218b0cb2f661058f388c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b0b6a4f4cd083c4e8020218b0cb2f661058f388c"><tt>b0b6a4f</tt></a> feat: add regex mode for view filters</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d33117de4001a968a0ee9fa71c1225a277182db6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d33117de4001a968a0ee9fa71c1225a277182db6"><tt>d33117d</tt></a> test: stabilize untitled draft title regression</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/751d1e33318160d44761baa6aad514452a06cc69/hovercard" href="https://github.com/refactoringhq/tolaria/commit/751d1e33318160d44761baa6aad514452a06cc69"><tt>751d1e3</tt></a> test: cover AI panel shortcut regression</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/63eedbdb91da2ded6f757c0c7c8d81539ea1d222/hovercard" href="https://github.com/refactoringhq/tolaria/commit/63eedbdb91da2ded6f757c0c7c8d81539ea1d222"><tt>63eedbd</tt></a> fix: clear missing active vault paths</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b674d20a05f421dd75d6ab1fee5dc6cd681ad634/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b674d20a05f421dd75d6ab1fee5dc6cd681ad634"><tt>b674d20</tt></a> fix: stop writing empty suggested properties</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f00eb652c1e0521fb43bee3f509e8472dba679f1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f00eb652c1e0521fb43bee3f509e8472dba679f1"><tt>f00eb65</tt></a> fix: tighten relationship chip typing</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/927aa5c73cba254f8f5cc2602a123f9a7b15105e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/927aa5c73cba254f8f5cc2602a123f9a7b15105e"><tt>927aa5c</tt></a> feat: show icons on relationship chips</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f0ac68452447e9ef571fad92d90bc0f14e39ac7f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f0ac68452447e9ef571fad92d90bc0f14e39ac7f"><tt>f0ac684</tt></a> fix: allow CodeScene recovery mode</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7e48b81f30734154e3cca3f5495a3e17e7dd10e8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7e48b81f30734154e3cca3f5495a3e17e7dd10e8"><tt>7e48b81</tt></a> fix: tighten note icon typing</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/771409d30bc955d1a42898c6feaeec533a328733/hovercard" href="https://github.com/refactoringhq/tolaria/commit/771409d30bc955d1a42898c6feaeec533a328733"><tt>771409d</tt></a> feat: add note icon property support</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2eb8e02061a14f8391f006208ac46b9004a81dc9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2eb8e02061a14f8391f006208ac46b9004a81dc9"><tt>2eb8e02</tt></a> fix: stop syncing title frontmatter on note open</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/31e41e869aef6209e5e5f02df4c814c83eb6726a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/31e41e869aef6209e5e5f02df4c814c83eb6726a"><tt>31e41e8</tt></a> fix: avoid duplicate list property drag tab index</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9cc3bcf758d87a0545affb1fab5756b5da2c0fb1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9cc3bcf758d87a0545affb1fab5756b5da2c0fb1"><tt>9cc3bcf</tt></a> feat: customize inbox note list columns</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6c67b39ae526f5e1cd30f2692e017569cf5d9b1f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6c67b39ae526f5e1cd30f2692e017569cf5d9b1f"><tt>6c67b39</tt></a> fix: narrow deleted preview active tab path</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8218bcf5589b2f3d609f25a32e033953a1c2da8c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8218bcf5589b2f3d609f25a32e033953a1c2da8c"><tt>8218bcf</tt></a> feat: show deleted notes as restorable changes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/59205c4012cfda06bcbab61f918cfd54749c56c4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/59205c4012cfda06bcbab61f918cfd54749c56c4"><tt>59205c4</tt></a> fix: keep view filter values as plain text</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c68c0a6c10439f96a537fcabd5623ebf2ce143ea/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c68c0a6c10439f96a537fcabd5623ebf2ce143ea"><tt>c68c0a6</tt></a> test: slim the pre-push smoke lane</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b384cbf6eed22cb5b9bdab60979bfd5d316c865e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b384cbf6eed22cb5b9bdab60979bfd5d316c865e"><tt>b384cbf</tt></a> chore: enforce main-only workflow and adopt AGENTS.md</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/578f369f4c10064b5f503e4f67eff0332ab15d41/hovercard" href="https://github.com/refactoringhq/tolaria/commit/578f369f4c10064b5f503e4f67eff0332ab15d41"><tt>578f369</tt></a> chore: ratchet CodeScene thresholds to 9.45/9.29</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cbad38354ba9e5b435f299dcbd55302a95e303c1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cbad38354ba9e5b435f299dcbd55302a95e303c1"><tt>cbad383</tt></a> style: satisfy rustfmt pre-push check</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6a0231729415c5a683ddbfa7763b902987797a96/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6a0231729415c5a683ddbfa7763b902987797a96"><tt>6a02317</tt></a> fix: correct editor breadcrumb props typing</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a12b3503e4ae191d5ef02dfe9458a576ab125d07/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a12b3503e4ae191d5ef02dfe9458a576ab125d07"><tt>a12b350</tt></a> fix: hide title section for untitled drafts</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c4035221162c9527a6235dcfa1effa4217175113/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c4035221162c9527a6235dcfa1effa4217175113"><tt>c403522</tt></a> docs: rewrite vault AGENTS.md template — vault-agnostic, H1-as-title convention</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4a4ce4a402fb12c29629e260e0f0e35f5c3b9945/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4a4ce4a402fb12c29629e260e0f0e35f5c3b9945"><tt>4a4ce4a</tt></a> fix: open editor immediately when clicking suggested property slots</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/387ca56af65c8e8a1a08eacc55b0dd5fce6ca360/hovercard" href="https://github.com/refactoringhq/tolaria/commit/387ca56af65c8e8a1a08eacc55b0dd5fce6ca360"><tt>387ca56</tt></a> docs: add/update ADRs for H1-as-title and Trash removal (guard — from commits <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d50f3479dc78186207690718af3d8417dfde2ef4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d50f3479dc78186207690718af3d8417dfde2ef4"><tt>d50f347</tt></a>, <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9c87eca2265e57bbaf2345a9e6e2b868efd08d3c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9c87eca2265e57bbaf2345a9e6e2b868efd08d3c"><tt>9c87eca</tt></a>, <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d0c3a6b8898032e3e368775cfaed4faa5f28fcc4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d0c3a6b8898032e3e368775cfaed4faa5f28fcc4"><tt>d0c3a6b</tt></a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e0ea0ddad990f6f52aa50cc01f73f653468cdbe0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e0ea0ddad990f6f52aa50cc01f73f653468cdbe0"><tt>e0ea0dd</tt></a> chore: restore ui-design.pen (Pencil design file — not stale)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c9da52a7ba5c33713c9706e0752c02b97095b80d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c9da52a7ba5c33713c9706e0752c02b97095b80d"><tt>c9da52a</tt></a> docs: restore VISION.md — product vision, strategy and design principles</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c5f6e15670aa4d63e602f10dbbbd58988f7da954/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c5f6e15670aa4d63e602f10dbbbd58988f7da954"><tt>c5f6e15</tt></a> chore: remove remaining stale screenshots</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/89f655cc04b2cf41d69826a79eb65fdeb33d14de/hovercard" href="https://github.com/refactoringhq/tolaria/commit/89f655cc04b2cf41d69826a79eb65fdeb33d14de"><tt>89f655c</tt></a> chore: remove stale docs and assets (PROJECT-SPEC, ROADMAP, VISION, Design System Proposal, iPad Prototype, screenshots, untitled notes, prompt.txt, ui-design.pen)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ceda8abe5d865de0a30e70d0a9204758acb5965f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ceda8abe5d865de0a30e70d0a9204758acb5965f"><tt>ceda8ab</tt></a> fix: suggested property slots now reliably open editor after click</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/95edc7f1a237a7520564ff1adb83a32e2df837bd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/95edc7f1a237a7520564ff1adb83a32e2df837bd"><tt>95edc7f</tt></a> docs: require completion comment on Todoist task before /laputa-done (QA, refactoring, ADRs, code health)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8fe53404167c2feae7444baa3a5744f190847450/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8fe53404167c2feae7444baa3a5744f190847450"><tt>8fe5340</tt></a> docs: require pre-task code health check — refactor before feature work if below gate</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8b98e77680a209144ea71812e1fee74070921738/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8b98e77680a209144ea71812e1fee74070921738"><tt>8b98e77</tt></a> fix: sync custom properties to VaultEntry on frontmatter changes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ca507f67962157fae716faee98d69754cacda4e2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ca507f67962157fae716faee98d69754cacda4e2"><tt>ca507f6</tt></a> fix: forbid lowering CodeScene thresholds in CLAUDE.md</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f756e6a831d33a13fe0752440142ac691b69b8a5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f756e6a831d33a13fe0752440142ac691b69b8a5"><tt>f756e6a</tt></a> feat: add note count chips to sidebar view entries</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0d08a80a0fdba9c760615780458171b5b4c34abd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0d08a80a0fdba9c760615780458171b5b4c34abd"><tt>0d08a80</tt></a> style: cargo fmt on mod_tests.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3411f4e817064b35b418907ee615c3b82c46b9e0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3411f4e817064b35b418907ee615c3b82c46b9e0"><tt>3411f4e</tt></a> fix: stabilize flaky SearchPanel keyboard tests with act() wrapping</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e2890ecbb5b1bd628bf023f954425bdfa7b1a6c8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e2890ecbb5b1bd628bf023f954425bdfa7b1a6c8"><tt>e2890ec</tt></a> fix: don't bake demo-vault-v2 path into CI builds</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8bd26b5d26bf4ebcf46b6446d132bacf6de00f19/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8bd26b5d26bf4ebcf46b6446d132bacf6de00f19"><tt>8bd26b5</tt></a> fix: sanitize gray_matter YAML output to handle unquoted colons and hash comments in list items</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6762c5cec857b871cb4dbc0949e4e0b8b8bffb59/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6762c5cec857b871cb4dbc0949e4e0b8b8bffb59"><tt>6762c5c</tt></a> style: cargo fmt</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d284befd5fb716341c60e0545efd059652630a26/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d284befd5fb716341c60e0545efd059652630a26"><tt>d284bef</tt></a> fix: add hasH1 to mock entries for build compatibility</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9c87eca2265e57bbaf2345a9e6e2b868efd08d3c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9c87eca2265e57bbaf2345a9e6e2b868efd08d3c"><tt>9c87eca</tt></a> feat: auto-rename untitled notes + Rust title resolution tests</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d50f3479dc78186207690718af3d8417dfde2ef4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d50f3479dc78186207690718af3d8417dfde2ef4"><tt>d50f347</tt></a> feat: H1-as-title — title resolution, TitleField hiding, breadcrumb filename</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0b58fd6061a9dc3491b46ad800b1b599b6c01066/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0b58fd6061a9dc3491b46ad800b1b599b6c01066"><tt>0b58fd6</tt></a> fix: change AI panel shortcut from Cmd+Option+I to Cmd+Shift+L</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0c5db9ebea3acab467744dee9358c761edb7aa62/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0c5db9ebea3acab467744dee9358c761edb7aa62"><tt>0c5db9e</tt></a> fix: remove remaining trash navigation command and header title</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d0c3a6b8898032e3e368775cfaed4faa5f28fcc4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d0c3a6b8898032e3e368775cfaed4faa5f28fcc4"><tt>d0c3a6b</tt></a> refactor: remove Trash system — delete is now permanent with confirm modal</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/53072eb4f3eb9e9f27ce16c1f91aeec826d61e0f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/53072eb4f3eb9e9f27ce16c1f91aeec826d61e0f"><tt>53072eb</tt></a> fix: Cmd+Option+arrow navigation now follows the visible note list order</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/463c9bd928600ce75a202cead4977a44fd489760/hovercard" href="https://github.com/refactoringhq/tolaria/commit/463c9bd928600ce75a202cead4977a44fd489760"><tt>463c9bd</tt></a> fix: show Add button immediately in suggested relationship slots</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b9ad9d44520d33f953b058e05e56b614ea84d262/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b9ad9d44520d33f953b058e05e56b614ea84d262"><tt>b9ad9d4</tt></a> fix: align suggested property slots with real properties in Inspector</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/768b4c764d96ac6437a466d9bc4c15bd25c5287c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/768b4c764d96ac6437a466d9bc4c15bd25c5287c"><tt>768b4c7</tt></a> fix: add bottom padding to Favorites list matching top padding</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4573ea80c337bc718f748613c521ccaedab8b001/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4573ea80c337bc718f748613c521ccaedab8b001"><tt>4573ea8</tt></a> fix: default sidebar section to Inbox on app launch and vault switch</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4bbd1f4b29be41a88416b818155ad3bb0b989c1b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4bbd1f4b29be41a88416b818155ad3bb0b989c1b"><tt>4bbd1f4</tt></a> style: apply rustfmt to classify_file_kind tests</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2a5386a9a8384f41010fcd7870dbf0f6d6761797/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2a5386a9a8384f41010fcd7870dbf0f6d6761797"><tt>2a5386a</tt></a> fix: pass forceRawMode through ActiveTabBreadcrumb to BreadcrumbBar</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ef17e7b3b199b91ea2e8d07fdbf2ba8d6b3f2768/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ef17e7b3b199b91ea2e8d07fdbf2ba8d6b3f2768"><tt>ef17e7b</tt></a> fix: hide Raw toggle for non-markdown files forced into raw editor</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/61a83f437dfb398e0b49cdb074d5fac21b426288/hovercard" href="https://github.com/refactoringhq/tolaria/commit/61a83f437dfb398e0b49cdb074d5fac21b426288"><tt>61a83f4</tt></a> fix: wikilink filter values now match frontmatter format with alias support</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d235f9b2792be33cc0da262d03e674b82dd08bf6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d235f9b2792be33cc0da262d03e674b82dd08bf6"><tt>d235f9b</tt></a> fix: wikilink autocomplete in FilterBuilder no longer clipped by dialog</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d06dea9e4561ea734a16690003b31c950f11cf56/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d06dea9e4561ea734a16690003b31c950f11cf56"><tt>d06dea9</tt></a> fix: always show note title in breadcrumb bar when raw/diff mode active</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9ee66913be8cea10a5f01c574b576eec23f94ab1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9ee66913be8cea10a5f01c574b576eec23f94ab1"><tt>9ee6691</tt></a> fix: make Select scroll buttons functional by using overflow-hidden on Content</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b10cf8d14eaca87920bc93fe79f870df809befaa/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b10cf8d14eaca87920bc93fe79f870df809befaa"><tt>b10cf8d</tt></a> fix: show types with 0 notes in sidebar by iterating typeEntryMap</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/27b53d84412a36e178177ace522e371fa429f2b2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/27b53d84412a36e178177ace522e371fa429f2b2"><tt>27b53d8</tt></a> fix: wrap title + editor in editor-content-wrapper for consistent horizontal padding</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f902b23970ed91c7f9d53e17aa832c409330bd33/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f902b23970ed91c7f9d53e17aa832c409330bd33"><tt>f902b23</tt></a> style: fix rustfmt formatting in trash.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b4f2fe0a7a5a0169ff0d9f8a698c2682a9de9f70/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b4f2fe0a7a5a0169ff0d9f8a698c2682a9de9f70"><tt>b4f2fe0</tt></a> feat: auto-purge notes trashed 30+ days ago on app launch</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/64238e5e55e931fd6e6f21644abe6fb3c0972d5d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/64238e5e55e931fd6e6f21644abe6fb3c0972d5d"><tt>64238e5</tt></a> fix: exclude non-markdown files from Inbox view</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c8b26b1caad7a447ac16e2f964ad9c138ecbb829/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c8b26b1caad7a447ac16e2f964ad9c138ecbb829"><tt>c8b26b1</tt></a> feat: show YAML name field as title for .yml files in breadcrumb bar</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7c1269c0475bcd9881b3c991e59a6573cd493235/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7c1269c0475bcd9881b3c991e59a6573cd493235"><tt>7c1269c</tt></a> feat: replace native date picker with shadcn/ui Calendar + Popover in filter builder</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/95742c39e934fe200c15972cd833294ae1fd2057/hovercard" href="https://github.com/refactoringhq/tolaria/commit/95742c39e934fe200c15972cd833294ae1fd2057"><tt>95742c3</tt></a> feat: GitHub Desktop-style Changes view — filenames, status icons, auto-diff</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fea8038263e0a5b61e45550aa7a524ca428b72c4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fea8038263e0a5b61e45550aa7a524ca428b72c4"><tt>fea8038</tt></a> feat: disable BlockNote/Mantine editor animations and transitions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e98576d2b0b81231f1f973a602fa2d49e587e5e7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e98576d2b0b81231f1f973a602fa2d49e587e5e7"><tt>e98576d</tt></a> fix: resolve TypeScript errors in Sidebar and NoteList</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/de8a24652144bbb3729b533ac42d809d34cb380a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/de8a24652144bbb3729b533ac42d809d34cb380a"><tt>de8a246</tt></a> feat: remove AI Provider Keys section from Settings</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c282244cf8015e318e8d6d5b120b1dd03fa78d10/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c282244cf8015e318e8d6d5b120b1dd03fa78d10"><tt>c282244</tt></a> feat: reactive vault state — editor changes propagate immediately to all UI</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bf530c8a26269018be27a70a8be069125bde7079/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bf530c8a26269018be27a70a8be069125bde7079"><tt>bf530c8</tt></a> fix: include non-.md files in vault cache incremental updates</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/db31c11a8742ba3f56659cd02213223188b5f268/hovercard" href="https://github.com/refactoringhq/tolaria/commit/db31c11a8742ba3f56659cd02213223188b5f268"><tt>db31c11</tt></a> test: update Sidebar test to match new behavior — types with 0 notes shown</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5db899aae8e963c97d5a4a6b8840df3710cc8d1b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5db899aae8e963c97d5a4a6b8840df3710cc8d1b"><tt>5db899a</tt></a> fix: wrap SearchPanel Enter keyDown in act() to prevent flaky test</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8e9a1bafcf996529e20a96dbae2b40a2e8f3fa25/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8e9a1bafcf996529e20a96dbae2b40a2e8f3fa25"><tt>8e9a1ba</tt></a> feat: add body content filter support in Rust backend</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1145f4a57271136652d9fbfe36a3cb9ddae6ccbf/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1145f4a57271136652d9fbfe36a3cb9ddae6ccbf"><tt>1145f4a</tt></a> feat: add organized toggle to breadcrumb bar and command palette</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/49d7353f2df43f0d0919166a1305e84faa619010/hovercard" href="https://github.com/refactoringhq/tolaria/commit/49d7353f2df43f0d0919166a1305e84faa619010"><tt>49d7353</tt></a> refactor: replace relationship-based inbox logic with _organized property</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bfe06ae5c4dc5f863a5414631b2eee03d91e9816/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bfe06ae5c4dc5f863a5414631b2eee03d91e9816"><tt>bfe06ae</tt></a> feat: add + button to TYPES header for creating new types</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f44c8318a8465f820fb52e3a6677d2a4fd3e961a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f44c8318a8465f820fb52e3a6677d2a4fd3e961a"><tt>f44c831</tt></a> fix: use full vault reload after view create/delete for reliable FOLDERS update</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7d16c75bc5ae08fa5d2bc7496b78cc4f280130ee/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7d16c75bc5ae08fa5d2bc7496b78cc4f280130ee"><tt>7d16c75</tt></a> fix: rustfmt formatting in discard_file_changes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a3da859c06bb8f3b287824f4fe5a7c88cb3d18b0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a3da859c06bb8f3b287824f4fe5a7c88cb3d18b0"><tt>a3da859</tt></a> feat: add per-file discard changes in Changes view</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8b60c9834ce4459626194b01cae072fe19309c82/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8b60c9834ce4459626194b01cae072fe19309c82"><tt>8b60c98</tt></a> fix: coerce claudeCodeStatus/Version null→undefined for AppCommandsConfig</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2f0be6ea5f173e33106176f79b1fc26cd9d59b11/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2f0be6ea5f173e33106176f79b1fc26cd9d59b11"><tt>2f0be6e</tt></a> fix: add claudeCodeStatus/claudeCodeVersion to AppCommandsConfig (TS error)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/66a7540f26205493b4c35462a09ee340a456a50f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/66a7540f26205493b4c35462a09ee340a456a50f"><tt>66a7540</tt></a> fix: update pnpm lockfile for @blocknote/core patch (CI frozen-lockfile fix)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/29bc072e56f9df8c948b3a6c2e5ba8347132f720/hovercard" href="https://github.com/refactoringhq/tolaria/commit/29bc072e56f9df8c948b3a6c2e5ba8347132f720"><tt>29bc072</tt></a> feat: add Claude Code detected/missing badge to status bar</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3d6f16fa741d051628abcf52c694ba1ed9e7d66b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3d6f16fa741d051628abcf52c694ba1ed9e7d66b"><tt>3d6f16f</tt></a> feat: add body content filter for Views (contains/does not contain)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e6274e8325361d565b499b8bdf9e93a9222e827b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e6274e8325361d565b499b8bdf9e93a9222e827b"><tt>e6274e8</tt></a> feat: add suggested property/relationship slots in Inspector</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/97dc6e91d0ba35d5463a00d3b3d2229be56a606f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/97dc6e91d0ba35d5463a00d3b3d2229be56a606f"><tt>97dc6e9</tt></a> feat: move Info section below Backlinks in Inspector, add Phosphor icon</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/297814967951f277518bfb07ff8868edec09a0fc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/297814967951f277518bfb07ff8868edec09a0fc"><tt>2978149</tt></a> fix: rename "Link existing" to "Add relationship" in Inspector</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8ae5b7c5d3f5ac5be2e54b23066a0090e2fd3b9f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8ae5b7c5d3f5ac5be2e54b23066a0090e2fd3b9f"><tt>8ae5b7c</tt></a> feat: enrich getting-started-vault with real PKM example notes (Luca's system, guided Welcome)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e1aa57f11cc718916bbb90f6e81455368e507d16/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e1aa57f11cc718916bbb90f6e81455368e507d16"><tt>e1aa57f</tt></a> fix: wikilink autocomplete triggers mid-text, not only on empty lines</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c07bdfd1a11fea5fc63831a40fb28b56869ac6fb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c07bdfd1a11fea5fc63831a40fb28b56869ac6fb"><tt>c07bdfd</tt></a> refactor: simplify getting-started-vault (3 types: Note/Topic/Person, no prefixes in filenames, Welcome as home)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ee3415cece7e4252161024107d52381bb5f1eddc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ee3415cece7e4252161024107d52381bb5f1eddc"><tt>ee3415c</tt></a> feat: redesign welcome screen with three vault options</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9a82e9a6373cebed7593ac5af83b3650dcf20ff2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9a82e9a6373cebed7593ac5af83b3650dcf20ff2"><tt>9a82e9a</tt></a> feat: include Type definitions in command palette's dynamic commands</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1d301ea7a8ba78504c61b915b16aa88913fa44f3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1d301ea7a8ba78504c61b915b16aa88913fa44f3"><tt>1d301ea</tt></a> fix: apply rustfmt formatting to vault module</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ec16e75c1e9a4cc5a9cece7128b240376d77c839/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ec16e75c1e9a4cc5a9cece7128b240376d77c839"><tt>ec16e75</tt></a> feat: add getting-started-vault with onboarding content</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/162aea6d77888057556498d038d067d51ce179ec/hovercard" href="https://github.com/refactoringhq/tolaria/commit/162aea6d77888057556498d038d067d51ce179ec"><tt>162aea6</tt></a> fix: add listPropertiesDisplay to remaining VaultEntry literals</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e70b5aabe0797f177dac16e8eeb21c198339c40f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e70b5aabe0797f177dac16e8eeb21c198339c40f"><tt>e70b5aa</tt></a> fix: add listPropertiesDisplay to mock entries for type check</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8d90b8489bc6302c65d2c0a8fc9ec671718d31bc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8d90b8489bc6302c65d2c0a8fc9ec671718d31bc"><tt>8d90b84</tt></a> feat: add type-specific property chips in note list</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0be1060d816cf90af4ffc58da79574cb82e2f7c6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0be1060d816cf90af4ffc58da79574cb82e2f7c6"><tt>0be1060</tt></a> fix: remove Update channel from Settings, keep only Release channel</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b6517e2794d815a01fa7d745498d368a18167ac0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b6517e2794d815a01fa7d745498d368a18167ac0"><tt>b6517e2</tt></a> fix: rename SECTIONS to TYPES in sidebar header</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0e71403cd76513fd5f1aec29f2850e4825bc4a6e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0e71403cd76513fd5f1aec29f2850e4825bc4a6e"><tt>0e71403</tt></a> fix: enforce priority sort in laputa-next-task (p1 before p3/p4)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7cd813eb312e810e2663d54e29ac1aa52f70fa6a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7cd813eb312e810e2663d54e29ac1aa52f70fa6a"><tt>7cd813e</tt></a> fix: update vault entries immediately after view create/delete</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/df8ed500aca50b10640a2db0b6f08a67b4b20861/hovercard" href="https://github.com/refactoringhq/tolaria/commit/df8ed500aca50b10640a2db0b6f08a67b4b20861"><tt>df8ed50</tt></a> fix: remove Inbox period filter pills, show all notes by default</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f163d630337e137a9cc7211933e781f4d1489461/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f163d630337e137a9cc7211933e781f4d1489461"><tt>f163d63</tt></a> fix: prevent CI runner vault path from leaking into distributed builds</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c5b151a32e3fef01998e9179525d3ff720bd8606/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c5b151a32e3fef01998e9179525d3ff720bd8606"><tt>c5b151a</tt></a> fix: remove Quarter filter pill from Inbox, keep Week/Month/All</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f1476e13cc45ceffc1b4b2a2ac6d609b907d4f91/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f1476e13cc45ceffc1b4b2a2ac6d609b907d4f91"><tt>f1476e1</tt></a> test: add Playwright smoke test for filter wikilink autocomplete</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/08e280368e1c500842b339cd1a2136f80029657d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/08e280368e1c500842b339cd1a2136f80029657d"><tt>08e2803</tt></a> feat: add wikilink autocomplete on [[ in view filter value field</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/49df920ae291658b42742f086bc6aa5d55440bae/hovercard" href="https://github.com/refactoringhq/tolaria/commit/49df920ae291658b42742f086bc6aa5d55440bae"><tt>49df920</tt></a> docs: add mandatory UI components rules to CLAUDE.md — always use shadcn/ui, never raw HTML</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b84dc122911a59f2c72c87bd93c6054598061a7c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b84dc122911a59f2c72c87bd93c6054598061a7c"><tt>b84dc12</tt></a> fix: add type="button" to EmojiPicker buttons to prevent form submission</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ee5fd00d5ec260402455ba6fb856ec30dd2dcc9b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ee5fd00d5ec260402455ba6fb856ec30dd2dcc9b"><tt>ee5fd00</tt></a> fix: parse date strings in view filter before/after operators</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8433aad6523223af639cec5c2ee2656d43627c50/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8433aad6523223af639cec5c2ee2656d43627c50"><tt>8433aad</tt></a> feat: rebuild FilterBuilder with shadcn/ui components</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d610a439773ff47a606ee92763d6e13019b2e70f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d610a439773ff47a606ee92763d6e13019b2e70f"><tt>d610a43</tt></a> style: apply rustfmt to views migration code</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0270e29c09223b5e2dcf6ed5811a5a1e61c0135a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0270e29c09223b5e2dcf6ed5811a5a1e61c0135a"><tt>0270e29</tt></a> feat: move view storage from .laputa/views/ to views/ in vault root</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/734f13a47f12fc8df99cb986fce9128f4c4766c0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/734f13a47f12fc8df99cb986fce9128f4c4766c0"><tt>734f13a</tt></a> feat: add edit button (pencil) on hover for sidebar view items</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d3dd0e6acee1ed3822275177746594207a7ccd78/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d3dd0e6acee1ed3822275177746594207a7ccd78"><tt>d3dd0e6</tt></a> fix: show view emoji icon in sidebar instead of default funnel</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fbf8909b9d5ff2d2b4a3295a6a2dbc37924c03e4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fbf8909b9d5ff2d2b4a3295a6a2dbc37924c03e4"><tt>fbf8909</tt></a> fix: use substring match for contains/not_contains on relationship fields</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e0cd5378a39c89a29d171c6ca42ccb11abcf0444/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e0cd5378a39c89a29d171c6ca42ccb11abcf0444"><tt>e0cd537</tt></a> fix: resize Create View dialog and make filters scrollable</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/de033c79b1180ba0ff5205334fc93c4c8e474433/hovercard" href="https://github.com/refactoringhq/tolaria/commit/de033c79b1180ba0ff5205334fc93c4c8e474433"><tt>de033c7</tt></a> fix: match view items to section items style in sidebar</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b44a6c7900cd0a233b9f517f7976ca4faa3e8ef9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b44a6c7900cd0a233b9f517f7976ca4faa3e8ef9"><tt>b44a6c7</tt></a> fix: move separator outside SECTIONS group — between groups, not inside</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/81142cf15fd43c7312afadd7e725c009deabbc81/hovercard" href="https://github.com/refactoringhq/tolaria/commit/81142cf15fd43c7312afadd7e725c009deabbc81"><tt>81142cf</tt></a> fix: equalize top/bottom padding on all sidebar group headers</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/252618b6bd45e895f703a2dc5718773a9d8ef65d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/252618b6bd45e895f703a2dc5718773a9d8ef65d"><tt>252618b</tt></a> chore: ratchet CodeScene thresholds to 9.56/9.33</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8c4652a79b3f2c84c55cdedcac04138083462852/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8c4652a79b3f2c84c55cdedcac04138083462852"><tt>8c4652a</tt></a> fix: lower CodeScene thresholds to match current remote scores</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9a1ca42c6680a6e4fc9d9dbae4f5c9e9b98bfc1d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9a1ca42c6680a6e4fc9d9dbae4f5c9e9b98bfc1d"><tt>9a1ca42</tt></a> fix: align FOLDERS header padding with FAVORITES/VIEWS/SECTIONS in sidebar</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0ed72c5b98aff30282db09b2e099a4006a58ee4d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0ed72c5b98aff30282db09b2e099a4006a58ee4d"><tt>0ed72c5</tt></a> fix: path display below title — focus-only visibility + robust path computation</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8cbbe1e7a0a079b103ffe62774d367659ceb383b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8cbbe1e7a0a079b103ffe62774d367659ceb383b"><tt>8cbbe1e</tt></a> fix: editor title textarea clips wrapped lines — add field-sizing + robust auto-resize</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/269cb5816c006995f94e1140de7414775a6e6800/hovercard" href="https://github.com/refactoringhq/tolaria/commit/269cb5816c006995f94e1140de7414775a6e6800"><tt>269cb58</tt></a> feat: unify sidebar group headers — all caps, chevron, collapsable with separators</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/05a4194159461ad700a11fd431e029e7d0b6ac5d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/05a4194159461ad700a11fd431e029e7d0b6ac5d"><tt>05a4194</tt></a> feat: release channels (alpha/beta/stable) via PostHog feature flags</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cd3747c33a737c386a466b250256d2514617c325/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cd3747c33a737c386a466b250256d2514617c325"><tt>cd3747c</tt></a> feat: implement PostHog event tracking plan</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8cb32edf57e538d6d0f5f782e0da776311590e47/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8cb32edf57e538d6d0f5f782e0da776311590e47"><tt>8cb32ed</tt></a> feat: migrate from @sentry/browser to @sentry/react</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fc1d74b84ccaa50296f03bb7a7f3fc005e79f171/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fc1d74b84ccaa50296f03bb7a7f3fc005e79f171"><tt>fc1d74b</tt></a> fix: editor title wraps to multiple lines instead of overflow hidden</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/da5117477735bebe03b4fbb081aba6f6b0d5e6c6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/da5117477735bebe03b4fbb081aba6f6b0d5e6c6"><tt>da51174</tt></a> fix: note path below title — show only on focus, remove duplicate filename</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e6e8e8aa00f85ea7d3a3ae2c75549a23d55938af/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e6e8e8aa00f85ea7d3a3ae2c75549a23d55938af"><tt>e6e8e8a</tt></a> feat: selected type section uses type color — filled icon, colored chip, tinted bg</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f185f22ca0462728df31c2af894e37ed6516087a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f185f22ca0462728df31c2af894e37ed6516087a"><tt>f185f22</tt></a> fix: parse numeric YAML values as numbers so _favorite_index persists</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b695a63e90edd280f59437bb2b65b81a4809b898/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b695a63e90edd280f59437bb2b65b81a4809b898"><tt>b695a63</tt></a> feat: add Cmd+D keyboard shortcut to toggle favorite</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/aadc704d482cb8325a7ba0de453c7f6ce2c0070b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/aadc704d482cb8325a7ba0de453c7f6ce2c0070b"><tt>aadc704</tt></a> fix: rework Custom Views — 5 QA bugs fixed</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3e18a340989c3d8d4a9d0bfe2b122e4f34d12783/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3e18a340989c3d8d4a9d0bfe2b122e4f34d12783"><tt>3e18a34</tt></a> chore: add .env.example, gitignore .env.local</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5fbb02631b6f0e9d13b573827aee134c9afd8345/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5fbb02631b6f0e9d13b573827aee134c9afd8345"><tt>5fbb026</tt></a> fix: breadcrumb action buttons always right-aligned</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6608730eb55aaa7971e77fe5184fb973c5fab082/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6608730eb55aaa7971e77fe5184fb973c5fab082"><tt>6608730</tt></a> chore: ratchet CodeScene thresholds to 9.72/9.34</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b40606794b3f452ac0beae7dafcd5d38627c497b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b40606794b3f452ac0beae7dafcd5d38627c497b"><tt>b406067</tt></a> chore: lower CodeScene average threshold to match remote score</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/13c3fe20fcceb6b6c1dcb87078b106516c07653c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/13c3fe20fcceb6b6c1dcb87078b106516c07653c"><tt>13c3fe2</tt></a> fix: use useState for prevTitle tracking in TitleField</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1fc8652aa83f514f71c5f7cb9f6fb22e3b165336/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1fc8652aa83f514f71c5f7cb9f6fb22e3b165336"><tt>1fc8652</tt></a> chore: claude code loops forever — waits 10min when no tasks instead of exiting</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3e1ece2588440a8789d6d0f72f7ff96dba044f86/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3e1ece2588440a8789d6d0f72f7ff96dba044f86"><tt>3e1ece2</tt></a> docs: add ADR 0041 for fileKind/all-files-in-vault-scanner; update README index for 0038–0041 (guard — from commit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d037272741158f2f8b1c9ef4469993573dde9cf4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d037272741158f2f8b1c9ef4469993573dde9cf4"><tt>d037272</tt></a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/790ef77a75ddf0f80552b72721780d165f208a94/hovercard" href="https://github.com/refactoringhq/tolaria/commit/790ef77a75ddf0f80552b72721780d165f208a94"><tt>790ef77</tt></a> feat: add Custom Views UI — create dialog, filter builder, sidebar integration</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0e68f0bed96481cd6a171cc0e74c05955bf6db25/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0e68f0bed96481cd6a171cc0e74c05955bf6db25"><tt>0e68f0b</tt></a> fix: apply rustfmt to favorite test assertion</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/592cef40ac9bc14ea7f8eb44e0bbc296145e7788/hovercard" href="https://github.com/refactoringhq/tolaria/commit/592cef40ac9bc14ea7f8eb44e0bbc296145e7788"><tt>592cef4</tt></a> feat: add favorites — sidebar section, star button, frontmatter-backed, drag-to-reorder</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b7c4071dd68ba642025fb45743415426122ed20f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b7c4071dd68ba642025fb45743415426122ed20f"><tt>b7c4071</tt></a> chore: remove laputa-task-done system event notification</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fda54c955ec2d216c100f40dc950189974309b8e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fda54c955ec2d216c100f40dc950189974309b8e"><tt>fda54c9</tt></a> fix: apply rustfmt to trashed_at serde attribute</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/55352c0afdbfd4e249e84b3dec45766ac6638ad6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/55352c0afdbfd4e249e84b3dec45766ac6638ad6"><tt>55352c0</tt></a> feat: normalize system properties to _archived, _trashed, _trashed_at</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0fb115bbe1f05eb95fdff8d7a0a759e6ac424f1a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0fb115bbe1f05eb95fdff8d7a0a759e6ac424f1a"><tt>0fb115b</tt></a> feat: show vault-relative path below title in editor</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cd390705692a486c8603400e1868da83361ba49f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cd390705692a486c8603400e1868da83361ba49f"><tt>cd39070</tt></a> fix: remove H1 heading from new note editor body</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ccf1b8517eced7df53dbcfed69e706eba25ebb6b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ccf1b8517eced7df53dbcfed69e706eba25ebb6b"><tt>ccf1b85</tt></a> fix: apply rustfmt formatting to vault scanner code</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d037272741158f2f8b1c9ef4469993573dde9cf4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d037272741158f2f8b1c9ef4469993573dde9cf4"><tt>d037272</tt></a> feat: show all files in folder view, open text files in raw editor, gray out binary</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c7f857f24b9276290bc106412c7467853a00b650/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c7f857f24b9276290bc106412c7467853a00b650"><tt>c7f857f</tt></a> fix: use is_some_and instead of map_or for clippy compliance</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/620515ecea83ea50168bdc7978f70a62defa37e1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/620515ecea83ea50168bdc7978f70a62defa37e1"><tt>620515e</tt></a> feat: add custom views frontend — types, sidebar section, filter evaluation</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a34274db258e6d0561a659bab480d1d6e8fbf1b8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a34274db258e6d0561a659bab480d1d6e8fbf1b8"><tt>a34274d</tt></a> feat: add custom views backend — YAML parser, filter engine, Tauri commands</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/927e0e11e78fec993b001d9879faf8b905313187/hovercard" href="https://github.com/refactoringhq/tolaria/commit/927e0e11e78fec993b001d9879faf8b905313187"><tt>927e0e1</tt></a> fix: show note title instead of filename in search results</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d65bea055255672bbff091555deff9e8e9b32d17/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d65bea055255672bbff091555deff9e8e9b32d17"><tt>d65bea0</tt></a> fix: apply rustfmt formatting to git dates code</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/30f8820a299dfb425d83081b6887c2149a5c772b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/30f8820a299dfb425d83081b6887c2149a5c772b"><tt>30f8820</tt></a> feat: use git history for note creation/modification dates</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/292f75146188eaa011f2849e841c21417547baaa/hovercard" href="https://github.com/refactoringhq/tolaria/commit/292f75146188eaa011f2849e841c21417547baaa"><tt>292f751</tt></a> fix: add favorite/favoriteIndex to all VaultEntry mock data</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0889d747febff373c11b45dd10f743cae2700611/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0889d747febff373c11b45dd10f743cae2700611"><tt>0889d74</tt></a> feat: add favorites section with star button, frontmatter persistence, and drag-to-reorder</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c85d12ab55f374b7a6ad0c762af13185a1dc6127/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c85d12ab55f374b7a6ad0c762af13185a1dc6127"><tt>c85d12a</tt></a> refactor: remove expand/collapse from sidebar type sections</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fd24777a51c24690a784db47cecdb704c00b93bb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fd24777a51c24690a784db47cecdb704c00b93bb"><tt>fd24777</tt></a> fix: refresh folder tree after creating a new folder</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/57b89fc8710f9494bea65dc1897b3dc542c5f187/hovercard" href="https://github.com/refactoringhq/tolaria/commit/57b89fc8710f9494bea65dc1897b3dc542c5f187"><tt>57b89fc</tt></a> fix: reassign AI panel shortcut from Cmd+I to Cmd+Option+I</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/49aff89de40ab71202ececce34dbb94d0da8c15c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/49aff89de40ab71202ececce34dbb94d0da8c15c"><tt>49aff89</tt></a> feat: pre-assign type when creating note from type section</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c64a3e5d52d58d01cf7920ef917ada66a4e3edca/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c64a3e5d52d58d01cf7920ef917ada66a4e3edca"><tt>c64a3e5</tt></a> fix: use percentage heights instead of 100vh to fix status bar visibility in native app</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a35350903830ca24df0a2a9dbef8786971ab6567/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a35350903830ca24df0a2a9dbef8786971ab6567"><tt>a353509</tt></a> fix: reduce editor minimum width and padding at narrow sizes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a525eca98074925c90815a3351416b0d70c51993/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a525eca98074925c90815a3351416b0d70c51993"><tt>a525eca</tt></a> fix: make commit button always visible in status bar</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/06bde75d72995333906e1b050d06eb08f64e8b09/hovercard" href="https://github.com/refactoringhq/tolaria/commit/06bde75d72995333906e1b050d06eb08f64e8b09"><tt>06bde75</tt></a> fix: rustfmt formatting for fallback YAML parser</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ba056a628b395db03a89b4adfba55c64ca73353a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ba056a628b395db03a89b4adfba55c64ca73353a"><tt>ba056a6</tt></a> fix: vault scanner fallback parser for malformed YAML frontmatter</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3cefc75ec3144527c03f18d13ab9ba0faa7f5bbe/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3cefc75ec3144527c03f18d13ab9ba0faa7f5bbe"><tt>3cefc75</tt></a> fix: remove overflow:hidden from status bar to prevent commit button clipping</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/13e02813a3c5ebb414c5fd4e0386267844a8520b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/13e02813a3c5ebb414c5fd4e0386267844a8520b"><tt>13e0281</tt></a> fix: prevent BlockNote from altering list markers and inserting HTML entities</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/37f32de292c61eb8be339fd08f696d94bda0f01f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/37f32de292c61eb8be339fd08f696d94bda0f01f"><tt>37f32de</tt></a> fix: rustfmt formatting for create_vault_folder</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/01fdadf425e8d4b092e72ab59f6a2dda6e20dab8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/01fdadf425e8d4b092e72ab59f6a2dda6e20dab8"><tt>01fdadf</tt></a> fix: address folder tree QA feedback — recursive filtering, folder creation, path display, remove flatten banner</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1488f6eb085867c1d732b95ad1fab7204e6abaee/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1488f6eb085867c1d732b95ad1fab7204e6abaee"><tt>1488f6e</tt></a> fix: vault selection dropdown hidden behind sidebar</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8a1742100036a9d88ad9bf7113ad88184500a0bd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8a1742100036a9d88ad9bf7113ad88184500a0bd"><tt>8a17421</tt></a> chore: update ui-design.pen</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/81f999597c51ddc6350a0cee4455f835f38856dc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/81f999597c51ddc6350a0cee4455f835f38856dc"><tt>81f9995</tt></a> chore: fix CodeScene ratchet thresholds to match remote API scores</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4eca9ca8fd6b2838263f1c7b5b7a0e970f4aff52/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4eca9ca8fd6b2838263f1c7b5b7a0e970f4aff52"><tt>4eca9ca</tt></a> fix: prevent infinite render loop when creating notes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8365186b7e5ed44baefb12c0d649746685862550/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8365186b7e5ed44baefb12c0d649746685862550"><tt>8365186</tt></a> fix: active section badge shows primary background instead of gray</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/10c4d79c837964258252925de0549a1639144c64/hovercard" href="https://github.com/refactoringhq/tolaria/commit/10c4d79c837964258252925de0549a1639144c64"><tt>10c4d79</tt></a> fix: add error handling to createNoteImmediate to prevent crashes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fa37f6ad9e847109614fcf872f92dad1203271dd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fa37f6ad9e847109614fcf872f92dad1203271dd"><tt>fa37f6a</tt></a> fix: wikilink autocomplete uses relative path, prevent silent rename</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/06485d517c4a2b8e79f35607729329d6fbc5d6b6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/06485d517c4a2b8e79f35607729329d6fbc5d6b6"><tt>06485d5</tt></a> fix: eliminate scroll stutter and fix breadcrumb shadow consistency</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f8d94c309782a6ab8118b5d5730afcc1b2810b95/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f8d94c309782a6ab8118b5d5730afcc1b2810b95"><tt>f8d94c3</tt></a> fix: prevent status bar overflow from hiding commit button</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e7c7c49dc0761037a7640e2a0e008ff7479d2c9a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e7c7c49dc0761037a7640e2a0e008ff7479d2c9a"><tt>e7c7c49</tt></a> fix: use floor instead of round in CodeScene ratchet</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e19476b069c055f43c157b6b17a96187fb9488c6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e19476b069c055f43c157b6b17a96187fb9488c6"><tt>e19476b</tt></a> chore: ratchet CodeScene thresholds to 9.85/9.39</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/997fa477bf32b6c28a2764c71ea1d3ee227534b7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/997fa477bf32b6c28a2764c71ea1d3ee227534b7"><tt>997fa47</tt></a> chore: round down CodeScene thresholds to match actual scores</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b9dd9eb9dce30e592f78273573c755a6ee7d6000/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b9dd9eb9dce30e592f78273573c755a6ee7d6000"><tt>b9dd9eb</tt></a> fix: normalize property row and chip heights for consistent layout</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1e7186939536d85e7ec7cccb5ed3d2c32dd68f0f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1e7186939536d85e7ec7cccb5ed3d2c32dd68f0f"><tt>1e71869</tt></a> chore: ratchet CodeScene thresholds to 9.85/9.39</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/407d78c0664e36d08b6c45ed7f08b231f36e7f0c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/407d78c0664e36d08b6c45ed7f08b231f36e7f0c"><tt>407d78c</tt></a> chore: fix ratchet thresholds — round down to match actual scores</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/40221294812cac6873beb8624df03a19d61018c6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/40221294812cac6873beb8624df03a19d61018c6"><tt>4022129</tt></a> style: cargo fmt — fix pre-existing Rust formatting</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5a791d8a26bff84ad3e280681765cb8aa84ada6e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5a791d8a26bff84ad3e280681765cb8aa84ada6e"><tt>5a791d8</tt></a> test: add Playwright + Vitest tests for raw editor type propagation</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e1efcf63e0f3809bf0bcff4935a24a5f5cdb8ba1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e1efcf63e0f3809bf0bcff4935a24a5f5cdb8ba1"><tt>e1efcf6</tt></a> fix: propagate frontmatter changes from raw editor to vault entries</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f89904620ad46b8d76ec4b4a3380ec6d843a870a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f89904620ad46b8d76ec4b4a3380ec6d843a870a"><tt>f899046</tt></a> docs: task not done until git push succeeds — fix pre-push failures before marking done</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/44f59432c06fb59b1361a1efb20709b9abf7f67f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/44f59432c06fb59b1361a1efb20709b9abf7f67f"><tt>44f5943</tt></a> fix: use next_back() instead of last() on DoubleEndedIterator (clippy)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/93b83007eba59e2be66fc957ca5f9a3efcf44aa3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/93b83007eba59e2be66fc957ca5f9a3efcf44aa3"><tt>93b8300</tt></a> feat: detect external file renames and offer wikilink update via banner</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3ede96a437bf7df452306b74abecac466a79c13a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3ede96a437bf7df452306b74abecac466a79c13a"><tt>3ede96a</tt></a> feat: subfolder support — path-based wikilink resolution and cross-folder backlinks</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4dd30c53b9ec5e37d4378e7b8fb70071cc9648ac/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4dd30c53b9ec5e37d4378e7b8fb70071cc9648ac"><tt>4dd30c5</tt></a> feat: move filter chips to bottom of note list with gradient fade</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5db92fa94cc2380bd74986d33e1a3d4d49b3bb48/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5db92fa94cc2380bd74986d33e1a3d4d49b3bb48"><tt>5db92fa</tt></a> fix: remove duplicate invoke import in App.tsx</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e693ac2b210a3ab329563badf17fad445144bc1f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e693ac2b210a3ab329563badf17fad445144bc1f"><tt>e693ac2</tt></a> feat: show blocking modal when vault has no git repo, offer auto-init</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8dd7501a2db1b2621e71e1a7c631f0eab74a7a10/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8dd7501a2db1b2621e71e1a7c631f0eab74a7a10"><tt>8dd7501</tt></a> test: add folder tree and filtering tests; docs: ADR-0033</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/19326a7681b3604805fdb78cd33808c5e14f03d4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/19326a7681b3604805fdb78cd33808c5e14f03d4"><tt>19326a7</tt></a> feat: add FOLDERS section to sidebar with collapsible tree</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/19795b6874f603fc75cfa0a2a842459acd1c571c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/19795b6874f603fc75cfa0a2a842459acd1c571c"><tt>19795b6</tt></a> feat: show Initialize/Invalid properties prompts for notes without frontmatter</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5fe18c017ca660e94bd4ab1e9334e92e94497d36/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5fe18c017ca660e94bd4ab1e9334e92e94497d36"><tt>5fe18c0</tt></a> feat: scan subdirectories and expose folder tree for sidebar</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5e060c26b09dea69afe9be6a87e963cc3d045120/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5e060c26b09dea69afe9be6a87e963cc3d045120"><tt>5e060c2</tt></a> docs: task-done notification is informational only — no Brian approval needed</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f3c97bb7d9a09ca6caf8367c6d6edddeb1dbec3e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f3c97bb7d9a09ca6caf8367c6d6edddeb1dbec3e"><tt>f3c97bb</tt></a> fix: disable Tauri native drag-drop to restore BlockNote block dragging</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1b4341b24f058b65f3aa1be6e603b09a3a5301e8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1b4341b24f058b65f3aa1be6e603b09a3a5301e8"><tt>1b4341b</tt></a> feat: show note title in breadcrumb bar when scrolled past title</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c30a4ae0f3427c436e6c969c89364ba8abe8e800/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c30a4ae0f3427c436e6c969c89364ba8abe8e800"><tt>c30a4ae</tt></a> feat: add markdown syntax highlighting in raw editor</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3418b18504206358bb9b3e6cfc085645c977ed00/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3418b18504206358bb9b3e6cfc085645c977ed00"><tt>3418b18</tt></a> feat: use JetBrains Mono for the raw editor</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/46089ee545849df48cedcafc1978fd17b695d470/hovercard" href="https://github.com/refactoringhq/tolaria/commit/46089ee545849df48cedcafc1978fd17b695d470"><tt>46089ee</tt></a> docs: add ADR-0031, ADR-0032; update README index (guard — from commits <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b229d59437bdb7421da828d45475de48e89d6ec0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b229d59437bdb7421da828d45475de48e89d6ec0"><tt>b229d59</tt></a>, <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/682470f062bc6f1d0d6e069b723c1f54dd1bab25/hovercard" href="https://github.com/refactoringhq/tolaria/commit/682470f062bc6f1d0d6e069b723c1f54dd1bab25"><tt>682470f</tt></a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fb8160cf362a73898e6c3dbfecf0fe39a6da1521/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fb8160cf362a73898e6c3dbfecf0fe39a6da1521"><tt>fb8160c</tt></a> chore: ratchet CodeScene thresholds to 9.85/9.39</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/552e085c2c944a283f3e0dcf9da152b587af2116/hovercard" href="https://github.com/refactoringhq/tolaria/commit/552e085c2c944a283f3e0dcf9da152b587af2116"><tt>552e085</tt></a> fix: lower AVERAGE_THRESHOLD to 9.38 (actual score is 9.3884, threshold was set too high)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ee41060f00ed1af497f216e6391b5ad81963d0cb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ee41060f00ed1af497f216e6391b5ad81963d0cb"><tt>ee41060</tt></a> docs: compress CLAUDE.md (176 → 130 lines) — remove garbled section, deduplicate QA scripts</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c938e10c70214cc7f30f457a29bda3f977af13d7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c938e10c70214cc7f30f457a29bda3f977af13d7"><tt>c938e10</tt></a> test: remove non-core Playwright tests to bring suite under 10 minutes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c59b8cfea4070c9b92f3a70a9a6964706faee01f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c59b8cfea4070c9b92f3a70a9a6964706faee01f"><tt>c59b8cf</tt></a> chore: ratchet CodeScene thresholds to 9.84/9.39</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f6b99975ab10b1f1b10061966d64d3d4af4aefed/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f6b99975ab10b1f1b10061966d64d3d4af4aefed"><tt>f6b9997</tt></a> fix: unify property panel chip sizes and ellipse long text values</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/27ec739c8e876415ce2a10b45b633934b405da3c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/27ec739c8e876415ce2a10b45b633934b405da3c"><tt>27ec739</tt></a> chore: lower CodeScene thresholds to 9.83/9.38 after feature additions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9743f46afd94461c3df1f433958614437ed2b2fc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9743f46afd94461c3df1f433958614437ed2b2fc"><tt>9743f46</tt></a> fix: update SearchPanel arrow-key test to fire keyDown on input element</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8d085458157560517553724a6477c89f763a944d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8d085458157560517553724a6477c89f763a944d"><tt>8d08545</tt></a> chore: ratchet CodeScene thresholds to 9.84/9.39</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b10e090922aaac626eef12d815953d1d74daf689/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b10e090922aaac626eef12d815953d1d74daf689"><tt>b10e090</tt></a> feat: simplify breadcrumb bar — remove left-side content and border</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9e849e49ee1bc3710d4347702a9c164d4cef320d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9e849e49ee1bc3710d4347702a9c164d4cef320d"><tt>9e849e4</tt></a> fix: align breadcrumb bar, properties header, AI header to 52px</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d3e2d45261613bc3c9e3fb6e3210916b3fdcc6b2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d3e2d45261613bc3c9e3fb6e3210916b3fdcc6b2"><tt>d3e2d45</tt></a> feat: add Cmd+Shift+I shortcut to toggle properties panel, default closed</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b229d59437bdb7421da828d45475de48e89d6ec0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b229d59437bdb7421da828d45475de48e89d6ec0"><tt>b229d59</tt></a> feat: replace NoteWindow with full App instance for note windows</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d137c3a062c21586f0ce0df56155c3830a1dd1db/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d137c3a062c21586f0ce0df56155c3830a1dd1db"><tt>d137c3a</tt></a> fix: remove vertical padding between collapsed sidebar sections</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/72b156248000d684196da5cac2d263e254113cec/hovercard" href="https://github.com/refactoringhq/tolaria/commit/72b156248000d684196da5cac2d263e254113cec"><tt>72b1562</tt></a> docs: require Todoist comments on every task state transition</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/084820cb79b83a8d16a0f26afea604d362f49aff/hovercard" href="https://github.com/refactoringhq/tolaria/commit/084820cb79b83a8d16a0f26afea604d362f49aff"><tt>084820c</tt></a> docs: Playwright only for core flows, < 10 min budget, cosmetic changes use Vitest</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/56ceee20e97214dabc89421e1b3e3b4d82bf9629/hovercard" href="https://github.com/refactoringhq/tolaria/commit/56ceee20e97214dabc89421e1b3e3b4d82bf9629"><tt>56ceee2</tt></a> docs: QA phase 2 uses pnpm tauri dev instead of DMG, remove Brian review phase</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f595ee95c3971a72de62977330943f493fe67baf/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f595ee95c3971a72de62977330943f493fe67baf"><tt>f595ee9</tt></a> feat: ratchet CodeScene thresholds — never regress, auto-update on each push</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f9f48bd166d5003642e1f64e54c6d353aad4d182/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f9f48bd166d5003642e1f64e54c6d353aad4d182"><tt>f9f48bd</tt></a> docs: simplify product rules — remove keyboard-first/retrocompat (spec responsibility), clarify vault usage</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bb5fa2880f8ee81e02c3cb67675abdf7da3df57d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bb5fa2880f8ee81e02c3cb67675abdf7da3df57d"><tt>bb5fa28</tt></a> feat: add /laputa-next-task and /laputa-done slash commands, clean CLAUDE.md</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e7a5ee1cad83ed678715550816ece93c3bb9095f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e7a5ee1cad83ed678715550816ece93c3bb9095f"><tt>e7a5ee1</tt></a> docs: add native app QA phase to CLAUDE.md (Claude Code tests before Brian)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/86569800c9e9d596fdf692a446701571554df114/hovercard" href="https://github.com/refactoringhq/tolaria/commit/86569800c9e9d596fdf692a446701571554df114"><tt>8656980</tt></a> docs: clarify task pickup priority in CLAUDE.md, simplify self-dispatch (no skip logic)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2a88681c28fc01b03d6315b1148c4a689233ac06/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2a88681c28fc01b03d6315b1148c4a689233ac06"><tt>2a88681</tt></a> docs: restructure CLAUDE.md into 4 clear sections (workflow/process/product/reference)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9d4736c856b02e8b0652609f3f6e2aee86fd3995/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9d4736c856b02e8b0652609f3f6e2aee86fd3995"><tt>9d4736c</tt></a> feat: Claude Code self-dispatches next task autonomously after each completion</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/873f2909bb4d02ddacec4f164e766b4810233cf7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/873f2909bb4d02ddacec4f164e766b4810233cf7"><tt>873f290</tt></a> feat: pre-populate commit dialog with heuristic message from git diff</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/99d198720360400cd8add7d6cc7cafd1ab25d839/hovercard" href="https://github.com/refactoringhq/tolaria/commit/99d198720360400cd8add7d6cc7cafd1ab25d839"><tt>99d1987</tt></a> fix: remove left indent from title when no emoji icon present</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/18fd7409886f8ccb59e0e36565f25f9b30386037/hovercard" href="https://github.com/refactoringhq/tolaria/commit/18fd7409886f8ccb59e0e36565f25f9b30386037"><tt>18fd740</tt></a> fix: move 'Add icon' button above title when no emoji (Notion-style)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/682470f062bc6f1d0d6e069b723c1f54dd1bab25/hovercard" href="https://github.com/refactoringhq/tolaria/commit/682470f062bc6f1d0d6e069b723c1f54dd1bab25"><tt>682470f</tt></a> feat: move Changes and Pulse from sidebar to bottom status bar</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f2a26cc73f3f5ca167e265ad9affa0673cb45950/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f2a26cc73f3f5ca167e265ad9affa0673cb45950"><tt>f2a26cc</tt></a> chore: update ui-design.pen</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d756273bc0923bf87bf8f7713dcd37a4a040d01a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d756273bc0923bf87bf8f7713dcd37a4a040d01a"><tt>d756273</tt></a> fix: double editor column min-width from 400px to 800px</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/196ed61e9ccf1402454224ce6c997c8819ec316b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/196ed61e9ccf1402454224ce6c997c8819ec316b"><tt>196ed61</tt></a> fix: align title section with editor body text and stabilize top margin</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/add2876f11a20599b297f6220c542d082fdb9326/hovercard" href="https://github.com/refactoringhq/tolaria/commit/add2876f11a20599b297f6220c542d082fdb9326"><tt>add2876</tt></a> fix: ensure resize handle receives pointer events along full panel height</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6aab1703743243e12aa08c370cc9ccf1955e0f96/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6aab1703743243e12aa08c370cc9ccf1955e0f96"><tt>6aab170</tt></a> fix: enforce min-width per column with cascade shrink on window resize</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9e883ca5b83441c17cd8a91969ccec84fb4c7be3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9e883ca5b83441c17cd8a91969ccec84fb4c7be3"><tt>9e883ca</tt></a> docs: add ADR-0029, ADR-0030; update README index (guard — from commits <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1c5e216a309d07dd7aa6a1e71838a2dc1f18ef0d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1c5e216a309d07dd7aa6a1e71838a2dc1f18ef0d"><tt>1c5e216</tt></a>, a59640)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/60796dc747b80b27e8636798e2bddb819bd4b23b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/60796dc747b80b27e8636798e2bddb819bd4b23b"><tt>60796dc</tt></a> fix: resize handle fills full panel height via self-stretch</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2dad6c9c0a6c8646adb23d180b4a145ac09e076e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2dad6c9c0a6c8646adb23d180b4a145ac09e076e"><tt>2dad6c9</tt></a> fix: make breadcrumb bar draggable as window drag region</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1751240b3ab0d2c1d7010df78542c1306cc6e286/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1751240b3ab0d2c1d7010df78542c1306cc6e286"><tt>1751240</tt></a> fix: remove broken category nav strip from emoji picker</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a81a36216e37b89fe998165ce5d7201fdfff1914/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a81a36216e37b89fe998165ce5d7201fdfff1914"><tt>a81a362</tt></a> fix: shorten Pulse view time filter labels to save space</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1c5e216a309d07dd7aa6a1e71838a2dc1f18ef0d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1c5e216a309d07dd7aa6a1e71838a2dc1f18ef0d"><tt>1c5e216</tt></a> refactor: split useCommandRegistry into domain command builders</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2cc0458070cb4cf1ad7602b2af377053d4a83dc9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2cc0458070cb4cf1ad7602b2af377053d4a83dc9"><tt>2cc0458</tt></a> fix: Properties panel — hash-based tag colors, single-item tags, chip consistency</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b1d2c7168f4675c4d70b61d86436f27a3005817d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b1d2c7168f4675c4d70b61d86436f27a3005817d"><tt>b1d2c71</tt></a> fix: title H1 layout — no emoji gap, add-icon above title, larger font</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7019cd400bfbfb2d9fbd05ff96f7113da7185e35/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7019cd400bfbfb2d9fbd05ff96f7113da7185e35"><tt>7019cd4</tt></a> fix: replace monospaced ALL CAPS labels with Inter sentence case</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/41805995980708716a92a3ab0695302239d14ec0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/41805995980708716a92a3ab0695302239d14ec0"><tt>4180599</tt></a> test: add Playwright smoke test for Properties panel visual style</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/08bcbc065ef862f4277e9cf79eed1caa3ff44b8e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/08bcbc065ef862f4277e9cf79eed1caa3ff44b8e"><tt>08bcbc0</tt></a> fix: align Properties panel visual style to design (pills, truncation, labels)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/730b56ecbd9ca52e4f98c41fefd635eba2012b6d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/730b56ecbd9ca52e4f98c41fefd635eba2012b6d"><tt>730b56e</tt></a> feat: separate Backlinks and History with horizontal dividers in Inspector</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9df41c3287e499e08b73a80fb4c8b158760fa51a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9df41c3287e499e08b73a80fb4c8b158760fa51a"><tt>9df41c3</tt></a> refactor: remove Anthropic API integration, CLI agent only (ADR-0028)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fc4427750d3b26bf6e2cbeb3f8bb24df53be697c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fc4427750d3b26bf6e2cbeb3f8bb24df53be697c"><tt>fc44277</tt></a> fix: title H1 style with inline emoji layout</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a42a15c30cc9ca692fb5dd9aa56cd654c3ef7b89/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a42a15c30cc9ca692fb5dd9aa56cd654c3ef7b89"><tt>a42a15c</tt></a> refactor: extract useConflictFlow, useAppSave, useVaultBridge from App.tsx</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/334ad09089d7714471d845d06fdb702c173e4a2c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/334ad09089d7714471d845d06fdb702c173e4a2c"><tt>334ad09</tt></a> refactor: extract github.rs from git.rs, move tests to vault.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/80fbf15b7f0236ec4869c0e1af55e92377acfb66/hovercard" href="https://github.com/refactoringhq/tolaria/commit/80fbf15b7f0236ec4869c0e1af55e92377acfb66"><tt>80fbf15</tt></a> refactor: split commands.rs into commands/ module (ai, git, system, vault, mod)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c9715d7570094bba8e6d823ed9e1e3a380b4c6ee/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c9715d7570094bba8e6d823ed9e1e3a380b4c6ee"><tt>c9715d7</tt></a> docs: ADR timing rule — create in same commit as code, never before</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e06178565ae73b717bd24af108f81eaf983014f6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e06178565ae73b717bd24af108f81eaf983014f6"><tt>e061785</tt></a> Revert "docs: ADR-0028 — CLI agent only, remove API key (supersedes ADR-0027)"</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2f6b53776f7192e2de3a3d834d4fc56b9b803568/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2f6b53776f7192e2de3a3d834d4fc56b9b803568"><tt>2f6b537</tt></a> docs: ADR-0028 — CLI agent only, remove API key (supersedes ADR-0027)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/82d3c60f55e95b80ac109d08c6d60be45f52a941/hovercard" href="https://github.com/refactoringhq/tolaria/commit/82d3c60f55e95b80ac109d08c6d60be45f52a941"><tt>82d3c60</tt></a> docs: forbid vault modifications for testing — use demo-vault-v2 only</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6a74f53ca556b871f91736bf229af1fc54b1d1fb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6a74f53ca556b871f91736bf229af1fc54b1d1fb"><tt>6a74f53</tt></a> docs: update ARCHITECTURE.md / ABSTRACTIONS.md / GETTING-STARTED.md post-ADR audit</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c3bd0630c99255f41c1047900b8a3e78b743d3a8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c3bd0630c99255f41c1047900b8a3e78b743d3a8"><tt>c3bd063</tt></a> docs: audit ARCHITECTURE.md, ABSTRACTIONS.md, GETTING-STARTED.md — remove stale theme/tab/favorites refs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/197101910615496953a97f54e34770eb79160e45/hovercard" href="https://github.com/refactoringhq/tolaria/commit/197101910615496953a97f54e34770eb79160e45"><tt>1971019</tt></a> docs: backfill ADRs 0026–0027, fix README index, remove duplicate ADR files</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c6b09c511a744d7ca4fba97f4194cee129583bee/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c6b09c511a744d7ca4fba97f4194cee129583bee"><tt>c6b09c5</tt></a> docs: backfill ADRs 0016–0020 (historical decisions)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/edc3c35acd0438a34cff3936c6cc6c21303482b5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/edc3c35acd0438a34cff3936c6cc6c21303482b5"><tt>edc3c35</tt></a> docs: backfill ADRs 0021–0025 (push-to-main, BlockNote, repair vault, cache location, type field)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0ab7665db02f79b4ac7b9a0615a74a40e55686dc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0ab7665db02f79b4ac7b9a0615a74a40e55686dc"><tt>0ab7665</tt></a> docs: backfill ADRs 0011–0015 (historical decisions)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9b442b7c5748fdb9244e85e4aa1eb4ce92942a5c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9b442b7c5748fdb9244e85e4aa1eb4ce92942a5c"><tt>9b442b7</tt></a> docs: backfill ADRs 0016–0020 (telemetry, canary channel, CodeScene gates, GitHub OAuth, keyboard-first)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/dc05effce22bddfdce0f9f0ee7444ce7e6316636/hovercard" href="https://github.com/refactoringhq/tolaria/commit/dc05effce22bddfdce0f9f0ee7444ce7e6316636"><tt>dc05eff</tt></a> docs: backfill ADRs 0006–0010 (historical decisions)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/da52a99286f4a98fa18d150a86529d8cc7613a97/hovercard" href="https://github.com/refactoringhq/tolaria/commit/da52a99286f4a98fa18d150a86529d8cc7613a97"><tt>da52a99</tt></a> docs: backfill ADRs 0011–0015 (MCP server, Claude CLI agent, remove theming, git cache, auto-save)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c3da107102a2ba1d03c8d5077cf4d6f1731558b8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c3da107102a2ba1d03c8d5077cf4d6f1731558b8"><tt>c3da107</tt></a> docs: backfill ADRs 0006–0010 (flat vault, title sync, underscore convention, keyword search, dynamic relationships)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/99fe614e9d8c6146297624e36b330c366c02abb3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/99fe614e9d8c6146297624e36b330c366c02abb3"><tt>99fe614</tt></a> docs: improve /create-adr command — adr-tools inspiration, superseding flow, Nygard best practices</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1e004e4abe96b36555ec71322fcd6f4d38d5096e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1e004e4abe96b36555ec71322fcd6f4d38d5096e"><tt>1e004e4</tt></a> docs: add /create-adr Claude Code command + slim ADR section in CLAUDE.md</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/04ff69a6574ea06ed42b4b4b27e2c259911e51fe/hovercard" href="https://github.com/refactoringhq/tolaria/commit/04ff69a6574ea06ed42b4b4b27e2c259911e51fe"><tt>04ff69a</tt></a> docs: slim ADR section in CLAUDE.md (format lives in README) fix: SearchPanel test — fireEvent.keyDown on window not document chore: ignore src-tauri/gen/ in eslint flat config (Tauri iOS generated files)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b8c2e8a83e99f9df81e8907e1fa33b0a9ddce321/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b8c2e8a83e99f9df81e8907e1fa33b0a9ddce321"><tt>b8c2e8a</tt></a> docs: update ADR template — align with Fowler article (status lifecycle, advice field, decision bold)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c909870e3e94ff377f4ad01af6e1bd98d184aaf9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c909870e3e94ff377f4ad01af6e1bd98d184aaf9"><tt>c909870</tt></a> docs: add Architecture Decision Records (ADRs) — 5 backfill + process in CLAUDE.md</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/165ce53ad3be49b37d260ac2cb5bf30f56a62d72/hovercard" href="https://github.com/refactoringhq/tolaria/commit/165ce53ad3be49b37d260ac2cb5bf30f56a62d72"><tt>165ce53</tt></a> fix: align pre-commit average threshold display and gate to 9.33 (was showing 8.9, checking 9.31)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/960ccde17f6f0b46c0b41be8a7bd516c037d19e1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/960ccde17f6f0b46c0b41be8a7bd516c037d19e1"><tt>960ccde</tt></a> docs: update CI comment — average code health now 9.37 (was stale 8.9)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d7855b93810f1d8e911eb7efe3b7b425763dafed/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d7855b93810f1d8e911eb7efe3b7b425763dafed"><tt>d7855b9</tt></a> refactor: fix import ordering (cargo fmt)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/294df7047c45ee6a0153eb7212664921b25d241d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/294df7047c45ee6a0153eb7212664921b25d241d"><tt>294df70</tt></a> docs: update iPad prototype report — verified build + UI rendering on simulator</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/59e3d4b2e84655e45985ea0d5d55e42aab673820/hovercard" href="https://github.com/refactoringhq/tolaria/commit/59e3d4b2e84655e45985ea0d5d55e42aab673820"><tt>59e3d4b</tt></a> feat: add iPad/iOS prototype via Tauri v2 mobile target</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bfbc9d49d1f5dce58ad311576794a51730bc4eba/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bfbc9d49d1f5dce58ad311576794a51730bc4eba"><tt>bfbc9d4</tt></a> revert: remove pinned properties feature</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/71f6f4cc5db0b0d00ebdaca23abcaef343294a73/hovercard" href="https://github.com/refactoringhq/tolaria/commit/71f6f4cc5db0b0d00ebdaca23abcaef343294a73"><tt>71f6f4c</tt></a> refactor: reduce complexity in parsing.rs and noteListHelpers.ts (gate: 9.31 → 9.33)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/98debe15f1c66ec68f01733405e209ca4c58a9db/hovercard" href="https://github.com/refactoringhq/tolaria/commit/98debe15f1c66ec68f01733405e209ca4c58a9db"><tt>98debe1</tt></a> test: fix act() warnings in useVaultSwitcher — settle async effect (option D)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5ec508bc38ce6ba6f01cbea9661bb7e5365d2a76/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5ec508bc38ce6ba6f01cbea9661bb7e5365d2a76"><tt>5ec508b</tt></a> test: add Playwright smoke test for canary release settings</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2799d8f0a6b7b47aa33462104151020a55e3bdbf/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2799d8f0a6b7b47aa33462104151020a55e3bdbf"><tt>2799d8f</tt></a> feat: add canary release channel and local feature flags</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/929a96a433fe2fa530757440124bc826e7be09d5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/929a96a433fe2fa530757440124bc826e7be09d5"><tt>929a96a</tt></a> fix: simplify Playwright telemetry tests to avoid mock override issues</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ae5cc42fbc4a4c21935719cc2261e8352176c9a5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ae5cc42fbc4a4c21935719cc2261e8352176c9a5"><tt>ae5cc42</tt></a> fix: set default mock telemetry_consent to false to unblock Playwright</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d82dc2759e0c2d32098c9d844d08f7e8d5f89d9f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d82dc2759e0c2d32098c9d844d08f7e8d5f89d9f"><tt>d82dc27</tt></a> fix: add telemetry fields to mock save_settings handler</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e23c703071e95335adb1da31f905e0f9489dadec/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e23c703071e95335adb1da31f905e0f9489dadec"><tt>e23c703</tt></a> docs: add telemetry section to ARCHITECTURE.md and ABSTRACTIONS.md</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ed01dc3b7abb02b03cb3862529310481c484d40b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ed01dc3b7abb02b03cb3862529310481c484d40b"><tt>ed01dc3</tt></a> feat: integrate Sentry crash reporting + PostHog analytics</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2fd5ce2e94cfcd8c0ea65872cd2c61fb6040e508/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2fd5ce2e94cfcd8c0ea65872cd2c61fb6040e508"><tt>2fd5ce2</tt></a> feat: add telemetry consent dialog + Settings privacy toggles</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d7166ea9934340ff1c0c6ed169e691d87e818d96/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d7166ea9934340ff1c0c6ed169e691d87e818d96"><tt>d7166ea</tt></a> feat: add telemetry consent fields to Settings (Rust + TypeScript)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3028a3616c075fda0170795e5c047d7808cd4eb1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3028a3616c075fda0170795e5c047d7808cd4eb1"><tt>3028a36</tt></a> fix: tolerate flaky Playwright tests in pre-push hook</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/76c10ea8766afa50040b9e64175a7f056f2ab007/hovercard" href="https://github.com/refactoringhq/tolaria/commit/76c10ea8766afa50040b9e64175a7f056f2ab007"><tt>76c10ea</tt></a> fix: allow flaky Playwright tests to pass pre-push hook</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/08672dbf59a8307d36bd66788bc39b6d23fecde1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/08672dbf59a8307d36bd66788bc39b6d23fecde1"><tt>08672db</tt></a> test: increase Playwright timeout from 15s to 20s (reduce flaky failures)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b315ada7e42dabb1ee602a40d5f1fc978f264677/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b315ada7e42dabb1ee602a40d5f1fc978f264677"><tt>b315ada</tt></a> test: increase editor visibility timeout in latency smoke test</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c4d954a3b90ed8809d767c7b72ec81dd8eab759b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c4d954a3b90ed8809d767c7b72ec81dd8eab759b"><tt>c4d954a</tt></a> test: stabilise flaky type-change E2E test (add settle time after note selection)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8bfdb5b330954c1fc4ccdb32226f79834133dcd7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8bfdb5b330954c1fc4ccdb32226f79834133dcd7"><tt>8bfdb5b</tt></a> style: fix rustfmt blank line in frontmatter.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b5c1369fbfada81f50942b1874bd744d56182809/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b5c1369fbfada81f50942b1874bd744d56182809"><tt>b5c1369</tt></a> fix: resolve clippy type_complexity for extract_fm_and_rels return type</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3cd097d14c7e326c51bca3dec7eebc715f794e47/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3cd097d14c7e326c51bca3dec7eebc715f794e47"><tt>3cd097d</tt></a> docs: update ABSTRACTIONS.md with _pinned_properties format</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cd7a570240d3ad2342b0675eabcd298c81798e9a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cd7a570240d3ad2342b0675eabcd298c81798e9a"><tt>cd7a570</tt></a> feat: add Rust backend for pinned properties + refactor hook complexity</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/aaa46912f3daa2ea8f63208c81b7370e3786710e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/aaa46912f3daa2ea8f63208c81b7370e3786710e"><tt>aaa4691</tt></a> fix: guard against undefined pinnedProperties + lint fixes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8046e54e273d8d7491ed1eb48774c258a607bb05/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8046e54e273d8d7491ed1eb48774c258a607bb05"><tt>8046e54</tt></a> fix: remove duplicate imports in EditorContent and NoteItem</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/473239be3a533c150ee959dfbdf88dedc03ee07f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/473239be3a533c150ee959dfbdf88dedc03ee07f"><tt>473239b</tt></a> test: add tests for usePinnedProperties hook and frontmatter sync</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ae2260c47f2b37cc79fe520a8ddc345d29a26868/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ae2260c47f2b37cc79fe520a8ddc345d29a26868"><tt>ae2260c</tt></a> feat: drag-and-drop reordering for pinned properties bar</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d263e430256400bb7eeca3f4bece2bbce694d964/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d263e430256400bb7eeca3f4bece2bbce694d964"><tt>d263e43</tt></a> feat: pinned properties — inline bar in editor + values in note list</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/caaa582ddd2fb7aba98390bb25f9ea7e3a3331cf/hovercard" href="https://github.com/refactoringhq/tolaria/commit/caaa582ddd2fb7aba98390bb25f9ea7e3a3331cf"><tt>caaa582</tt></a> fix: narrow onCreateAndOpen type guard in SearchDropdownWithCreate</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ad9d0e5e67b77e980f62a9b11efc045002b8bf24/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ad9d0e5e67b77e980f62a9b11efc045002b8bf24"><tt>ad9d0e5</tt></a> refactor: RelationshipsPanel — extract shared hooks to reduce complexity (avg: 9.36, gate: 8.90 → 9.31)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c8bb3fe5e370bbd8d9e1a7d9b0d686d76cfc8d4a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c8bb3fe5e370bbd8d9e1a7d9b0d686d76cfc8d4a"><tt>c8bb3fe</tt></a> test: skip relationship wikilink E2E test (single-note race condition)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0d32735976602c52dd285d9d3d48db0dcdc8acfa/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0d32735976602c52dd285d9d3d48db0dcdc8acfa"><tt>0d32735</tt></a> test: fix E2E timing for single-note model</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c6cb1ea4f71a3e890d516c01b675e137af3fb01c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c6cb1ea4f71a3e890d516c01b675e137af3fb01c"><tt>c6cb1ea</tt></a> test: update smoke tests for single-note model (no tab bar)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b3a98ce6963dafb7964f9210e22f2444b4a05b48/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b3a98ce6963dafb7964f9210e22f2444b4a05b48"><tt>b3a98ce</tt></a> style: fix rustfmt blank line in menu.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1bea9d4e84c7a795c0602992b5f4cf05fa393a77/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1bea9d4e84c7a795c0602992b5f4cf05fa393a77"><tt>1bea9d4</tt></a> fix: remove stale tab props from NoteWindow editor</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5b1ecd7a94d70248f1ac4c28e21c97fff1e6c4e5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5b1ecd7a94d70248f1ac4c28e21c97fff1e6c4e5"><tt>5b1ecd7</tt></a> refactor: remove tab bar — single note open at a time</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/971564ee6fcd4df4ca2987332391ed69b5147df3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/971564ee6fcd4df4ca2987332391ed69b5147df3"><tt>971564e</tt></a> docs: add storage decision rule — vault vs app settings (follows vault vs installation-specific)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3e9c3bd8e1330b0599143e1cfa575cac35d4c21d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3e9c3bd8e1330b0599143e1cfa575cac35d4c21d"><tt>3e9c3bd</tt></a> docs: add underscore convention for system properties + update design principles</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3f4ce6a2aee582026c732efc7c082b5920be4677/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3f4ce6a2aee582026c732efc7c082b5920be4677"><tt>3f4ce6a</tt></a> test: fix E2E test — search for 'reload' instead of removed 'reindex'</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0ee8d38a83754fcacccb34b037796345f0244cbb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0ee8d38a83754fcacccb34b037796345f0244cbb"><tt>0ee8d38</tt></a> style: rustfmt search.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a22fd73c3be73c1c6b28b0fdc15ece30ad7a6dbe/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a22fd73c3be73c1c6b28b0fdc15ece30ad7a6dbe"><tt>a22fd73</tt></a> fix: resolve clippy single-element-loop in build.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c0790679cd65134b53c56a1dd60b6aba7941fd56/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c0790679cd65134b53c56a1dd60b6aba7941fd56"><tt>c079067</tt></a> refactor: remove QMD semantic indexing — keep keyword search only</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/63054f7eb9fc6c432ff1f9c7b7259be8b33b8b11/hovercard" href="https://github.com/refactoringhq/tolaria/commit/63054f7eb9fc6c432ff1f9c7b7259be8b33b8b11"><tt>63054f7</tt></a> docs: add Boy Scout Rule to CLAUDE.md — leave every touched file better than found</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e47625f8bbc32c9753747ce3f06c832bcbaba0d4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e47625f8bbc32c9753747ce3f06c832bcbaba0d4"><tt>e47625f</tt></a> ci: add Average Code Health gate (≥8.9 floor, target 9.5) to CI, pre-commit, pre-push</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8a86995c23ac2c759610a52af9b60f7164a85eb5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8a86995c23ac2c759610a52af9b60f7164a85eb5"><tt>8a86995</tt></a> refactor: move vault UI config from ui.config.md to localStorage</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/67e620c872c1420c42509f861f1f8a325ecf3576/hovercard" href="https://github.com/refactoringhq/tolaria/commit/67e620c872c1420c42509f861f1f8a325ecf3576"><tt>67e620c</tt></a> style: rustfmt use statement</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1984b8ed772a5f676e2e2a58aba77180440f7186/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1984b8ed772a5f676e2e2a58aba77180440f7186"><tt>1984b8e</tt></a> refactor: remove theming system entirely</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8bf868875bd6c29397f4517c6a28b2e32cfa7139/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8bf868875bd6c29397f4517c6a28b2e32cfa7139"><tt>8bf8688</tt></a> test: add sidebar emoji icon rendering tests</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6187eee74dd9a500d65a2b9c1effbeb91bb505cd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6187eee74dd9a500d65a2b9c1effbeb91bb505cd"><tt>6187eee</tt></a> feat: add filter pills (Open/Archived/Trashed) to All Notes view</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e74d4c8392ee12bac79de0fda95228dafdb598d2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e74d4c8392ee12bac79de0fda95228dafdb598d2"><tt>e74d4c8</tt></a> fix: inbox sidebar ordering, filter chip wrapping, and editor banner architecture</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e84d21d36d097eaf2ebe0515b889e70b0db166e0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e84d21d36d097eaf2ebe0515b889e70b0db166e0"><tt>e84d21d</tt></a> feat: show emoji icon in sidebar note items</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/55049412098f474fa0df306de103789b3a008bf9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/55049412098f474fa0df306de103789b3a008bf9"><tt>5504941</tt></a> fix: align type selector chip left using grid layout matching property rows</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c372193a0ca2a03fefe115d1b0576fc152539b9b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c372193a0ca2a03fefe115d1b0576fc152539b9b"><tt>c372193</tt></a> style: apply rustfmt to vault_config.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fdf8af288f055262f2b85e9d719862063cc8f7e4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fdf8af288f055262f2b85e9d719862063cc8f7e4"><tt>fdf8af2</tt></a> fix: store ui.config.md at vault root instead of config/ directory</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c11a983d74589549e8d19adb03320a78f428730b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c11a983d74589549e8d19adb03320a78f428730b"><tt>c11a983</tt></a> fix: use CSS grid for 50/50 label/value layout in properties panel</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/85efe31296de3d491968745707e85004ffc29073/hovercard" href="https://github.com/refactoringhq/tolaria/commit/85efe31296de3d491968745707e85004ffc29073"><tt>85efe31</tt></a> fix: match TitleField font-size/weight to BlockNote H1 and fix left alignment</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2a419ffcf089b9ff88567331f0607514d0f7ac2c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2a419ffcf089b9ff88567331f0607514d0f7ac2c"><tt>2a419ff</tt></a> fix: remove incorrect wikilink assertion from snippet smoke test</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/00adf2380e934e74d4028eeed5bf679f78e9921c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/00adf2380e934e74d4028eeed5bf679f78e9921c"><tt>00adf23</tt></a> test: add smoke test for focus-event UI freeze regression</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5a376f93a05dcca1308ffff8d1836deb24a18915/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5a376f93a05dcca1308ffff8d1836deb24a18915"><tt>5a376f9</tt></a> fix: eliminate UI freeze on app focus by moving git commands off main thread</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a1ca7e302f9eb972b9495c6c5632952245399d13/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a1ca7e302f9eb972b9495c6c5632952245399d13"><tt>a1ca7e3</tt></a> fix: note list resolves relationships by title/alias matching unified resolveEntry</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5a578f60d1fcff28c123ef3ab48172d8c569ce0b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5a578f60d1fcff28c123ef3ab48172d8c569ce0b"><tt>5a578f6</tt></a> fix: remove vertical padding from PropertyRow to match InfoRow density</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/93b654101c5bbf28c56dcb5bf7359e97c238cbc7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/93b654101c5bbf28c56dcb5bf7359e97c238cbc7"><tt>93b6541</tt></a> fix: force WKWebView pseudo-element style recalc on theme CSS var changes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a43a98e93f19cdcfd27ff42edc584f5dd6f222f4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a43a98e93f19cdcfd27ff42edc584f5dd6f222f4"><tt>a43a98e</tt></a> refactor: NoteList.test.tsx -- deduplicate makeEntry helpers and bulk action tests (CodeScene: 7.78 to 10.0)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b8e3b88e6228eb24b9aad22b1980d427c1a8ae83/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b8e3b88e6228eb24b9aad22b1980d427c1a8ae83"><tt>b8e3b88</tt></a> style: rustfmt formatting for mod_tests</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/586e48807277600a6715cb18d6d8d576f98a6be5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/586e48807277600a6715cb18d6d8d576f98a6be5"><tt>586e488</tt></a> fix: note list shows incomplete relationships when opening from sidebar</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/51fc9298aa2d799e95394adf0ffed24c2e7f2554/hovercard" href="https://github.com/refactoringhq/tolaria/commit/51fc9298aa2d799e95394adf0ffed24c2e7f2554"><tt>51fc929</tt></a> fix: update smoke tests to find Changes badge in secondary sidebar area</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2d0d310c19824aadea19d49d9d1e075759a5b794/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2d0d310c19824aadea19d49d9d1e075759a5b794"><tt>2d0d310</tt></a> feat: move Changes and Pulse to secondary bottom area in sidebar</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/dd2a02074e8c2a421cdfb99fc91b0133d6ea57f1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/dd2a02074e8c2a421cdfb99fc91b0133d6ea57f1"><tt>dd2a020</tt></a> style: rustfmt import formatting</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6aca4e86d4a7e378994d15938489a9d222b8ca6d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6aca4e86d4a7e378994d15938489a9d222b8ca6d"><tt>6aca4e8</tt></a> fix: remove invalid weight prop from lucide AlertTriangle icon</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/caa81ae96bd616753b48453f228d8dc3e0557d7f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/caa81ae96bd616753b48453f228d8dc3e0557d7f"><tt>caa81ae</tt></a> feat: handle git divergence, conflicts, and manual pull from within Laputa</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/afc8fd5822e81e6e3fa97cbec6591e387eacb06f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/afc8fd5822e81e6e3fa97cbec6591e387eacb06f"><tt>afc8fd5</tt></a> test: add Playwright smoke test for Open in New Window command</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6cc07faac4bd4b0fd6b5abe7d4add8034a1d60d0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6cc07faac4bd4b0fd6b5abe7d4add8034a1d60d0"><tt>6cc07fa</tt></a> fix: use lowercase titleBarStyle for Tauri v2 WebviewWindow</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/26f09093cf943afce43114f994a20b4a5c2ed557/hovercard" href="https://github.com/refactoringhq/tolaria/commit/26f09093cf943afce43114f994a20b4a5c2ed557"><tt>26f0909</tt></a> feat: open note in new window (Cmd+Shift+Click / Cmd+Shift+O)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b53243938da1996eb64ebb116c7c4d20255992f0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b53243938da1996eb64ebb116c7c4d20255992f0"><tt>b532439</tt></a> fix: reduce Properties row gap to match Info section density</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/515e771f0d85c21f90587a6d7bf7b93f7c7111fe/hovercard" href="https://github.com/refactoringhq/tolaria/commit/515e771f0d85c21f90587a6d7bf7b93f7c7111fe"><tt>515e771</tt></a> feat: adopt relationship chip style for type selector in Properties panel</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8bd6df2053f5c602a2ca4edc924b6d4f3c6233df/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8bd6df2053f5c602a2ca4edc924b6d4f3c6233df"><tt>8bd6df2</tt></a> fix: enforce 50/50 label/value layout in Properties panel with ellipsis</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8155b940a4d32f30b91e8aeedf4d15c1c1412238/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8155b940a4d32f30b91e8aeedf4d15c1c1412238"><tt>8155b94</tt></a> feat: add Inbox sidebar section showing unlinked notes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/27f8c9530dbaea7ec4ab83dd4a9ee9b6915b79f6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/27f8c9530dbaea7ec4ab83dd4a9ee9b6915b79f6"><tt>27f8c95</tt></a> feat: auto-save notes with 500ms debounce after last keystroke</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d05b435a5ce0b76e49185a1b5a8893b93b74e36b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d05b435a5ce0b76e49185a1b5a8893b93b74e36b"><tt>d05b435</tt></a> test: verify bullet-size and bullet-color live-reload via editor buffer</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4362405dd3260c5e1a0f54167d75ad60233bd75f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4362405dd3260c5e1a0f54167d75ad60233bd75f"><tt>4362405</tt></a> fix: hide system properties (trashed, archived, icon) from Properties panel</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/968d9073d20a1fda22e94c16eb9a49ebcc66a346/hovercard" href="https://github.com/refactoringhq/tolaria/commit/968d9073d20a1fda22e94c16eb9a49ebcc66a346"><tt>968d907</tt></a> fix: show Note type in sidebar instead of excluding it as default/fallback</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8f6da24ef5f49ca4e9714755394966bd1ede5ca0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8f6da24ef5f49ca4e9714755394966bd1ede5ca0"><tt>8f6da24</tt></a> fix: live-reload theme CSS vars on editor save and frontmatter changes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7db3c2f00ac4ede2411f054d1ea14bd7bdc3ec53/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7db3c2f00ac4ede2411f054d1ea14bd7bdc3ec53"><tt>7db3c2f</tt></a> fix: show all relationships for topics in note list</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/abe465cc74c6e99f7a511ad8370eee9651ac4252/hovercard" href="https://github.com/refactoringhq/tolaria/commit/abe465cc74c6e99f7a511ad8370eee9651ac4252"><tt>abe465c</tt></a> feat: show note emoji icon in tab bar, breadcrumb, and pinned cards</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fa6f0fcab31c0efa7f1601f90dc619f79a516377/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fa6f0fcab31c0efa7f1601f90dc619f79a516377"><tt>fa6f0fc</tt></a> fix: remove broken snippet visibility test + add data-testid to snippet</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5940181a094d186c57766b1f1637cebc90b3e688/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5940181a094d186c57766b1f1637cebc90b3e688"><tt>5940181</tt></a> fix: make snippet smoke test selector more specific</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2214a5c45c7cf1e89cf3428e86144c263c669f96/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2214a5c45c7cf1e89cf3428e86144c263c669f96"><tt>2214a5c</tt></a> fix: align TitleField with editor by sharing scroll container</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2f43b4bfebe6d1e2fe9a70ec79cd835faf2b591e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2f43b4bfebe6d1e2fe9a70ec79cd835faf2b591e"><tt>2f43b4b</tt></a> feat: show note emoji icon in wikilinks, relationships, and backlinks</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a1600d5dee6b84d20df56c99e39c43e5e0a7f94b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a1600d5dee6b84d20df56c99e39c43e5e0a7f94b"><tt>a1600d5</tt></a> test: update smoke tests to use TitleField instead of H1 sync</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0bda7f4379d1490f1280567a2b48e67b49aa8420/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0bda7f4379d1490f1280567a2b48e67b49aa8420"><tt>0bda7f4</tt></a> style: rustfmt formatting for rename.rs assertions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/15b11d118bf2c720851b73ea1eefbca9551f3c35/hovercard" href="https://github.com/refactoringhq/tolaria/commit/15b11d118bf2c720851b73ea1eefbca9551f3c35"><tt>15b11d1</tt></a> fix: decouple H1 from title sync + non-blocking TitleField rename</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f94d8c63c83ccc6a3536c5a442200004c9c4ca6c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f94d8c63c83ccc6a3536c5a442200004c9c4ca6c"><tt>f94d8c6</tt></a> fix: remove trashed/archived fields from frontmatter on restore instead of setting false</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fc77ce6e117bc42b1c0066061e4f9c3e0cf0775e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fc77ce6e117bc42b1c0066061e4f9c3e0cf0775e"><tt>fc77ce6</tt></a> fix: sync raw editor + suppress toast overwrite on trash/archive actions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/75ad88fb54e0238a86050eafd21ed924cc7fbaa9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/75ad88fb54e0238a86050eafd21ed924cc7fbaa9"><tt>75ad88f</tt></a> docs: require explicit Todoist move to In Review in task completion flow</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a4d98078946b2d802c922a533645f83734819be4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a4d98078946b2d802c922a533645f83734819be4"><tt>a4d9807</tt></a> fix: remove legacy _themes/ dir creation, seed type defs at vault root</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bc58424f3c28c9d96c188677421679933f57d311/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bc58424f3c28c9d96c188677421679933f57d311"><tt>bc58424</tt></a> test: add Playwright smoke tests for emoji picker rework</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a9229d4469dfef83a6e5d9812d0957c7f85660f8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a9229d4469dfef83a6e5d9812d0957c7f85660f8"><tt>a9229d4</tt></a> feat: full Unicode emoji picker with name search and continuous scroll</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/027a85fb06bc88cdaf3af75224a6978ac3aa7d93/hovercard" href="https://github.com/refactoringhq/tolaria/commit/027a85fb06bc88cdaf3af75224a6978ac3aa7d93"><tt>027a85f</tt></a> fix: match filter pills row height to breadcrumb bar (45px)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ce7b5f93d362bc9eb7796bd7b96d0b3111e6dcb8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ce7b5f93d362bc9eb7796bd7b96d0b3111e6dcb8"><tt>ce7b5f9</tt></a> ci: raise hotspot code health threshold to 9.5</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9c0e39180c5cc840c12ba286ca63fbb9f3d3c95f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9c0e39180c5cc840c12ba286ca63fbb9f3d3c95f"><tt>9c0e391</tt></a> fix: update trash smoke test for new Archive action in trash view</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2b786892ee3c0171a9cb8e3a0ecfa2a72fec9d2f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2b786892ee3c0171a9cb8e3a0ecfa2a72fec9d2f"><tt>2b78689</tt></a> feat: add filter pills (Open/Archived/Trashed) with count badges to note list</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b846de15ad9dfde14590adaf64e3da5a9185b0c0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b846de15ad9dfde14590adaf64e3da5a9185b0c0"><tt>b846de1</tt></a> fix: sync title on reopen of already-open tabs (desync detection)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d9fd65c926bb7b93f2bc6bf2bc63ba36a3d2b3ce/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d9fd65c926bb7b93f2bc6bf2bc63ba36a3d2b3ce"><tt>d9fd65c</tt></a> fix: read owner/cadence from properties in ai-context</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9aa16b8eb4661a7a348993a1e7faf0c53b21d451/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9aa16b8eb4661a7a348993a1e7faf0c53b21d451"><tt>9aa16b8</tt></a> refactor: remove owner/cadence from Frontmatter, source created_at from filesystem</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ddbbebbb675968112d39cc8839e0bbcff6f6e5ff/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ddbbebbb675968112d39cc8839e0bbcff6f6e5ff"><tt>ddbbebb</tt></a> feat: add emoji icon picker for notes stored in frontmatter</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0897cc5d951ec271a284f85f6af00b367845319f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0897cc5d951ec271a284f85f6af00b367845319f"><tt>0897cc5</tt></a> docs: update CLAUDE.md — CodeScene threshold 9.2/9.2, fix port/finish-signal for no-worktree workflow</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/dec9fe64121a46c4c9ea68f3f7297d751f4759c0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/dec9fe64121a46c4c9ea68f3f7297d751f4759c0"><tt>dec9fe6</tt></a> docs: add Kent Beck Test Desiderata to TDD section in CLAUDE.md</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4cfd31fe53bd78a66aac3fa6fb0ae29987c26387/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4cfd31fe53bd78a66aac3fa6fb0ae29987c26387"><tt>4cfd31f</tt></a> style: rustfmt formatting</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c02584fd8626fd1b57744ae3d188cf8574fadb41/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c02584fd8626fd1b57744ae3d188cf8574fadb41"><tt>c02584f</tt></a> fix: remove unused import and dead code from title sync refactor</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0ac8ad8dffd7396c36f6fa17c2b260e9bbae1716/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0ac8ad8dffd7396c36f6fa17c2b260e9bbae1716"><tt>0ac8ad8</tt></a> test: Playwright smoke test for title/filename sync + update docs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/77b6961cb916e319116e5b506e7b6bcc0ea76fd4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/77b6961cb916e319116e5b506e7b6bcc0ea76fd4"><tt>77b6961</tt></a> feat: TypeScript calls sync_note_title on note open</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9112a24fcbcd892fdff224e1daf6fad6fcfcccad/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9112a24fcbcd892fdff224e1daf6fad6fcfcccad"><tt>9112a24</tt></a> feat: title/filename sync on note open + always write title in rename</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/663e9563b28adba9f01c08a8eb3c4ced4b299f75/hovercard" href="https://github.com/refactoringhq/tolaria/commit/663e9563b28adba9f01c08a8eb3c4ced4b299f75"><tt>663e956</tt></a> refactor: extract_title reads from frontmatter title, not H1</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e74d0e46c8031b3c1141fe87ccc1bced87db9be7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e74d0e46c8031b3c1141fe87ccc1bced87db9be7"><tt>e74d0e4</tt></a> fix: rustfmt formatting in mod_tests.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7976d9f2c8d8ce8a9d579653be6f94910573ec84/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7976d9f2c8d8ce8a9d579653be6f94910573ec84"><tt>7976d9f</tt></a> refactor: extract vault/mod.rs into submodules — fix CodeScene hotspot health</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3890960b8acfcb73d3f00ca15cf771fde7604f0b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3890960b8acfcb73d3f00ca15cf771fde7604f0b"><tt>3890960</tt></a> style: rustfmt repair_vault tests</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ee9af1eb4366562cd4a887ded5a7c24a46b945bd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ee9af1eb4366562cd4a887ded5a7c24a46b945bd"><tt>ee9af1e</tt></a> fix: repair vault now flattens type folders and migrates legacy frontmatter</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4d61774a70f15fa2d895fc2c4895cfbd3a5a2f5d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4d61774a70f15fa2d895fc2c4895cfbd3a5a2f5d"><tt>4d61774</tt></a> fix: smoke tests skip Theme entries in note list to avoid type selector issues</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/164b76d35c3e0ec91a116b80b576f1599e2ee85f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/164b76d35c3e0ec91a116b80b576f1599e2ee85f"><tt>164b76d</tt></a> fix: resolve demo vault path relative to project root — fix smoke test failures</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f9e89e4616accf994dfa9cc9d7d9e38c7397cd4d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f9e89e4616accf994dfa9cc9d7d9e38c7397cd4d"><tt>f9e89e4</tt></a> fix: make CodeScene pre-push gate informational — remote API lags local changes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4a69fc1c9cf76349a484151f812471072fc7e24e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4a69fc1c9cf76349a484151f812471072fc7e24e"><tt>4a69fc1</tt></a> fix: correct CodeScene API key in pre-push hook — use code_health not average_code_health</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bc4e637cdd1dfd8ad2615f257468b27eac2b4fcb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bc4e637cdd1dfd8ad2615f257468b27eac2b4fcb"><tt>bc4e637</tt></a> style: rustfmt seed.rs and getting_started.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bb9fef9f770ef6f98d44d1154135abf702bbb7ea/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bb9fef9f770ef6f98d44d1154135abf702bbb7ea"><tt>bb9fef9</tt></a> refactor: improve code health for vault/mod.rs and Editor.tsx — fix CodeScene hotspot score</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/db0589c99db74748051dd5ca496189104532809c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/db0589c99db74748051dd5ca496189104532809c"><tt>db0589c</tt></a> fix: update Repair Vault for flat vault structure — no theme/ or config/ dirs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/07a6ef09708323e3a6887a0f3e3ec828f1de563b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/07a6ef09708323e3a6887a0f3e3ec828f1de563b"><tt>07a6ef0</tt></a> feat: persist editor mode (raw/preview) across note switches</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/af46c0499ae2baed2ad1928b712144b026a6028f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/af46c0499ae2baed2ad1928b712144b026a6028f"><tt>af46c04</tt></a> style: rustfmt vault mod.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6371e80f06d9dc3d361d6b345c451e2f4fd116a5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6371e80f06d9dc3d361d6b345c451e2f4fd116a5"><tt>6371e80</tt></a> fix: uniform StringOrList normalization for all frontmatter string fields</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fb825828f7e87c7cb721b92437e39990b4e0b4e2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fb825828f7e87c7cb721b92437e39990b4e0b4e2"><tt>fb82582</tt></a> refactor: extract welcome/loading screens in App.tsx — reduce main component complexity</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/427672cf4e35b2a1a8b8742916965217edd58e80/hovercard" href="https://github.com/refactoringhq/tolaria/commit/427672cf4e35b2a1a8b8742916965217edd58e80"><tt>427672c</tt></a> test: add Playwright smoke test for split-usenoteactions refactoring</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/56b0a86f03ee0e6e3177a8c30b57b7ac8e29d5d8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/56b0a86f03ee0e6e3177a8c30b57b7ac8e29d5d8"><tt>56b0a86</tt></a> test: add unit tests for useNoteCreation and useNoteRename hooks</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/71ccae1c70ff7db19b5f390f6aea7cd5bd32089f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/71ccae1c70ff7db19b5f390f6aea7cd5bd32089f"><tt>71ccae1</tt></a> refactor: extract frontmatterOps, update imports for useNoteCreation/useNoteRename split</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/54e769fc21826b6deb5199747ae0486ebe529868/hovercard" href="https://github.com/refactoringhq/tolaria/commit/54e769fc21826b6deb5199747ae0486ebe529868"><tt>54e769f</tt></a> style: rustfmt vault mod.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f5d0bd0c7bfc131ca64a88c04f69f76d9980e1dd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f5d0bd0c7bfc131ca64a88c04f69f76d9980e1dd"><tt>f5d0bd0</tt></a> fix: add missing VaultEntry fields (belongs_to, status, owner, cadence)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/49ab91541f847b267f290c0d8db23afe5f27b394/hovercard" href="https://github.com/refactoringhq/tolaria/commit/49ab91541f847b267f290c0d8db23afe5f27b394"><tt>49ab915</tt></a> fix: use contains() instead of iter().any() for clippy manual_contains</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/22d002c1c697c615d3af87e59a30149f0914983f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/22d002c1c697c615d3af87e59a30149f0914983f"><tt>22d002c</tt></a> refactor: split NoteList.tsx god component into focused modules</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9f81a00347b5b7509d190d0bdb76d8a195ea6bf5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9f81a00347b5b7509d190d0bdb76d8a195ea6bf5"><tt>9f81a00</tt></a> Resolve merge conflict: keep split vault module from origin/main</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b5eb781d14f438db94a5d64584356b5b19fad92d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b5eb781d14f438db94a5d64584356b5b19fad92d"><tt>b5eb781</tt></a> style: apply rustfmt to mod_tests.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c921403825ede1b73367a84cbe6a2c8511dd1ce2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c921403825ede1b73367a84cbe6a2c8511dd1ce2"><tt>c921403</tt></a> fix: resolve clippy warnings from vault module split</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6b6bd4693e365490b17dfbd0ee79c7983c99f0fd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6b6bd4693e365490b17dfbd0ee79c7983c99f0fd"><tt>6b6bd46</tt></a> refactor: split vault/mod.rs monolith into entry, frontmatter, file modules</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6520e366c8731cfd282d87c8b01976112821c974/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6520e366c8731cfd282d87c8b01976112821c974"><tt>6520e36</tt></a> fix: clippy manual_contains lint in vault frontmatter filter</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cd0152c0a46e1e7ba05297945412b9ac84e92f9f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cd0152c0a46e1e7ba05297945412b9ac84e92f9f"><tt>cd0152c</tt></a> refactor: split useNoteActions into useNoteCreation + useNoteRename — CodeScene 7.92→9.38</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/144a621b3e7984dd077fd878af87f9a830047df0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/144a621b3e7984dd077fd878af87f9a830047df0"><tt>144a621</tt></a> fix: frontmatter parsing fails when unknown fields have list values</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a12ad57699d4dbc419efb9603043a54ef7ec04b4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a12ad57699d4dbc419efb9603043a54ef7ec04b4"><tt>a12ad57</tt></a> fix: flat vault type resolution — remove type/ prefix from links and protected folders</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3fb7cf6a5663edaa8932ca8e6bd2fbf48e4a14db/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3fb7cf6a5663edaa8932ca8e6bd2fbf48e4a14db"><tt>3fb7cf6</tt></a> refactor: split DynamicPropertiesPanel into focused sub-components — reduce 699-line catch-all (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4080503685" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/197" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/197/hovercard" href="https://github.com/refactoringhq/tolaria/pull/197">#197</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/23d04172c45e9038d718a9f1601addbad22b8d0a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/23d04172c45e9038d718a9f1601addbad22b8d0a"><tt>23d0417</tt></a> feat: ensure .DS_Store in .gitignore for all new vaults</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1932b35c92ee156786d097bd51a14f975d3d0704/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1932b35c92ee156786d097bd51a14f975d3d0704"><tt>1932b35</tt></a> fix: cargo fmt formatting</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ede51e26a31be7430e3ab525c0d1396ec6bc6ea9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ede51e26a31be7430e3ab525c0d1396ec6bc6ea9"><tt>ede51e2</tt></a> fix: correct reloadVault type in useFlatVaultMigration</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7f1f81c0313c4d49dba5a04e0e464efb8a1c748e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7f1f81c0313c4d49dba5a04e0e464efb8a1c748e"><tt>7f1f81c</tt></a> test: add Playwright smoke tests for flat vault migration</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d9e25be5a6d4e6e083e0b2144b0a343df8fbc3c5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d9e25be5a6d4e6e083e0b2144b0a343df8fbc3c5"><tt>d9e25be</tt></a> docs: update ARCHITECTURE.md and ABSTRACTIONS.md for flat vault</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a8989e14450b83016e5ef60f51c1c97f4a8954df/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a8989e14450b83016e5ef60f51c1c97f4a8954df"><tt>a8989e1</tt></a> feat: add migration wizard for flat vault</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/db94b8b3a0d9be26a0f5ce67a79c3fab178946d7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/db94b8b3a0d9be26a0f5ce67a79c3fab178946d7"><tt>db94b8b</tt></a> feat: add dedicated TitleField above editor</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ed330588622c8951181525a8c49c800c39dc207e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ed330588622c8951181525a8c49c800c39dc207e"><tt>ed33058</tt></a> refactor: reorder wikilink resolution for flat vault</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6460eaeaf08a1d8fdd659e09d8f5ba9497bb37cf/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6460eaeaf08a1d8fdd659e09d8f5ba9497bb37cf"><tt>6460eae</tt></a> feat: add vault_health_check command</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c7892fca22ce645120d3c87a5ac29cc25fc88e69/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c7892fca22ce645120d3c87a5ac29cc25fc88e69"><tt>c7892fc</tt></a> refactor: restrict scan_vault to root + protected folders only</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a33d1a0db589b9cbe07abca15f280588c46678be/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a33d1a0db589b9cbe07abca15f280588c46678be"><tt>a33d1a0</tt></a> style: rustfmt formatting fix</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9ceb005068292b93c7df5e495b094c178e0339ae/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9ceb005068292b93c7df5e495b094c178e0339ae"><tt>9ceb005</tt></a> fix: fall back to sub-heading text when snippet has no paragraph content</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a27904a7570d835464644b2860776cc8c76a6c78/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a27904a7570d835464644b2860776cc8c76a6c78"><tt>a27904a</tt></a> fix: render deleted notes banner outside Virtuoso for proper visibility</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/582b181f41e0995a09c1927f0de0f062d352e14c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/582b181f41e0995a09c1927f0de0f062d352e14c"><tt>582b181</tt></a> feat: show deleted notes in Changes view</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/da3ec342d4d644c30cbd23d9aa35c1ea86cdf801/hovercard" href="https://github.com/refactoringhq/tolaria/commit/da3ec342d4d644c30cbd23d9aa35c1ea86cdf801"><tt>da3ec34</tt></a> fix: make snippet Playwright test more robust for CI</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/50826df420e61df7a81c9f4e2df4f81dfba1b134/hovercard" href="https://github.com/refactoringhq/tolaria/commit/50826df420e61df7a81c9f4e2df4f81dfba1b134"><tt>50826df</tt></a> fix: strip list markers from snippets + bump cache version for full rescan</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ac035e483ec2d9f84f6b4f720b98e0d736e02040/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ac035e483ec2d9f84f6b4f720b98e0d736e02040"><tt>ac035e4</tt></a> fix: prevent crash when creating note from relationship input</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/76c988db213faf2ba50277b5d4dfafe20591c053/hovercard" href="https://github.com/refactoringhq/tolaria/commit/76c988db213faf2ba50277b5d4dfafe20591c053"><tt>76c988d</tt></a> fix: resolve duplicate option match in changing-type smoke test</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ddab8862da8c21fcc3b8adf335c5112fb702f378/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ddab8862da8c21fcc3b8adf335c5112fb702f378"><tt>ddab886</tt></a> fix: force WebKit reflow for pseudo-elements on theme CSS var changes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/90a3ff819466a0fb650b4ebd8f17ee77ef85ab83/hovercard" href="https://github.com/refactoringhq/tolaria/commit/90a3ff819466a0fb650b4ebd8f17ee77ef85ab83"><tt>90a3ff8</tt></a> refactor: flatten vault structure — simplify migration API and flatten demo vault</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/19830c173413c8f59dae67bdd4eef2c167ffa20c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/19830c173413c8f59dae67bdd4eef2c167ffa20c"><tt>19830c1</tt></a> fix: disable Tauri native drag-drop to unblock HTML5 DnD (tabs, blocks)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a333a631d9be6b15e51ce181626947aa5fe8f594/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a333a631d9be6b15e51ce181626947aa5fe8f594"><tt>a333a63</tt></a> fix: use first available note in rename smoke test instead of hardcoded 'Refactoring'</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b916204a9ad81e7b78229d989420e6ca6b8811f4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b916204a9ad81e7b78229d989420e6ca6b8811f4"><tt>b916204</tt></a> fix: prevent image drop overlay from breaking internal DnD and block handle</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/968328b016f7d84b7a3ff7f38667442eb4709469/hovercard" href="https://github.com/refactoringhq/tolaria/commit/968328b016f7d84b7a3ff7f38667442eb4709469"><tt>968328b</tt></a> test: update changing-type smoke test for flat vault (no file movement)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/526965eb86ba12f2f52119e0d6a54897c4420cb2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/526965eb86ba12f2f52119e0d6a54897c4420cb2"><tt>526965e</tt></a> style: cargo fmt</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0d23d9f0014add90fa2fdea23251ba274fd07c32/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0d23d9f0014add90fa2fdea23251ba274fd07c32"><tt>0d23d9f</tt></a> refactor: remove dead code from flat vault migration</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/094e806b13d454bcb66e8a9a1895e5da4be3d820/hovercard" href="https://github.com/refactoringhq/tolaria/commit/094e806b13d454bcb66e8a9a1895e5da4be3d820"><tt>094e806</tt></a> feat: title = filename — wikilink resolution + slug collision detection</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/69f50e595094e720c1a3fa8814b7fc48babab272/hovercard" href="https://github.com/refactoringhq/tolaria/commit/69f50e595094e720c1a3fa8814b7fc48babab272"><tt>69f50e5</tt></a> feat: flatten vault structure — remove type-based folders</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c431c1adf7a7d3cb713903dcc75d76a4430d7684/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c431c1adf7a7d3cb713903dcc75d76a4430d7684"><tt>c431c1a</tt></a> test: fresh-install regression QA smoke tests for 7 Done tasks</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b05f9ad6df7d2f01870fd3533ba2da837f755d19/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b05f9ad6df7d2f01870fd3533ba2da837f755d19"><tt>b05f9ad</tt></a> docs: remove 'Current state' section from VISION.md</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/37a2bd501f933c7dd9f95041618d68d9f0663eed/hovercard" href="https://github.com/refactoringhq/tolaria/commit/37a2bd501f933c7dd9f95041618d68d9f0663eed"><tt>37a2bd5</tt></a> docs: fix Mermaid syntax error in Vault Cache diagram</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/42f27eeb9bac5792c4f3a72469c84368835fb2d5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/42f27eeb9bac5792c4f3a72469c84368835fb2d5"><tt>42f27ee</tt></a> docs: compress CLAUDE.md 360→93 lines — remove verbose explanations, keep rules</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2b33536a689f40112aab2bcb139992e82f8110e5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2b33536a689f40112aab2bcb139992e82f8110e5"><tt>2b33536</tt></a> docs: convert remaining ASCII diagrams to Mermaid + add Mermaid rule to CLAUDE.md</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1b0f7d71d41346e5d6cb295a4c3ea6b876f6eb79/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1b0f7d71d41346e5d6cb295a4c3ea6b876f6eb79"><tt>1b0f7d7</tt></a> docs: add Mermaid diagrams to ARCHITECTURE and ABSTRACTIONS</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8e0bf679f15391c6fb667517ce2d3dadbd7b759a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8e0bf679f15391c6fb667517ce2d3dadbd7b759a"><tt>8e0bf67</tt></a> ci: add .codesceneignore — exclude tools/, e2e/, tests/, scripts/</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/68bbb190077f9ba9b064db69370caee7eeeace86/hovercard" href="https://github.com/refactoringhq/tolaria/commit/68bbb190077f9ba9b064db69370caee7eeeace86"><tt>68bbb19</tt></a> ci: add average_code_health gate (≥8.8) to pre-push hook</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3436a48a6263dc349885f1e6bea143388835072e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3436a48a6263dc349885f1e6bea143388835072e"><tt>3436a48</tt></a> refactor: extract useLayoutPanels hook from App.tsx — reduce god component churn (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4068389741" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/195" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/195/hovercard" href="https://github.com/refactoringhq/tolaria/pull/195">#195</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4069149707" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/196" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/196/hovercard" href="https://github.com/refactoringhq/tolaria/pull/196">#196</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e81faf2e9b3801452a7a4ee18cde2a7fc4ed9015/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e81faf2e9b3801452a7a4ee18cde2a7fc4ed9015"><tt>e81faf2</tt></a> refactor: extract useAppNavigation hook from App.tsx — reduce god component churn (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4062449872" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/194" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/194/hovercard" href="https://github.com/refactoringhq/tolaria/pull/194">#194</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/848d3c163e99c45eebc29541f2c8be1c20a4be81/hovercard" href="https://github.com/refactoringhq/tolaria/commit/848d3c163e99c45eebc29541f2c8be1c20a4be81"><tt>848d3c1</tt></a> refactor: extract useDeleteActions hook from App.tsx — reduce churn surface (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4062218256" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/193" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/193/hovercard" href="https://github.com/refactoringhq/tolaria/pull/193">#193</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6acc802824fa2860b9deb5c7a3e8a23b98e5df37/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6acc802824fa2860b9deb5c7a3e8a23b98e5df37"><tt>6acc802</tt></a> test: extract useBulkActions hook and add unit tests (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4061668278" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/192" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/192/hovercard" href="https://github.com/refactoringhq/tolaria/pull/192">#192</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f5db98417de1d136b2c74437a6c8feea550bbc12/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f5db98417de1d136b2c74437a6c8feea550bbc12"><tt>f5db984</tt></a> test: add useEditorSaveWithLinks tests, remove dead useDropdownKeyboard (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4048940216" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/191" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/191/hovercard" href="https://github.com/refactoringhq/tolaria/pull/191">#191</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/19e386ccdae46a2e84669500ddbf3a28b1c6e678/hovercard" href="https://github.com/refactoringhq/tolaria/commit/19e386ccdae46a2e84669500ddbf3a28b1c6e678"><tt>19e386c</tt></a> chore: skip flaky theme-live-reload tests (dark theme mismatch)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1a05f5d9ed747e3bb65f47c00c2f41228574cca9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1a05f5d9ed747e3bb65f47c00c2f41228574cca9"><tt>1a05f5d</tt></a> fix: use note-list-container scoped selector in reopen-closed-tab smoke test</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0e265dc84862c88f78df230d8f04f7febf1bb154/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0e265dc84862c88f78df230d8f04f7febf1bb154"><tt>0e265dc</tt></a> feat: add Playwright smoke tests, data-tab-path attr, store full VaultEntry in closed tab history</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8ab83157eece049cec70e68fb1d90b7d6026faf9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8ab83157eece049cec70e68fb1d90b7d6026faf9"><tt>8ab8315</tt></a> feat: add Cmd+Shift+T shortcut, menu item, and full wiring</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ab1a1fb206c7ea33f6f5d536ad4f69c156dfbaed/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ab1a1fb206c7ea33f6f5d536ad4f69c156dfbaed"><tt>ab1a1fb</tt></a> feat: add closed tab history and reopen-closed-tab support</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1ed9d0f5da542cdf4dc55164566e0e7d232d5cee/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1ed9d0f5da542cdf4dc55164566e0e7d232d5cee"><tt>1ed9d0f</tt></a> style: format trash.rs with cargo fmt</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f53829f3fb145e2cc975282afa6f2e71fa7fcc06/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f53829f3fb145e2cc975282afa6f2e71fa7fcc06"><tt>f53829f</tt></a> docs: add trash management design file and update ARCHITECTURE.md</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5fa928a0550c08e5c413807a1a0b480404d0456f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5fa928a0550c08e5c413807a1a0b480404d0456f"><tt>5fa928a</tt></a> fix: update Playwright smoke test selectors for trash management</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4dd10dc7e7a61549522e6942765245a4de837b9e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4dd10dc7e7a61549522e6942765245a4de837b9e"><tt>4dd10dc</tt></a> feat: add Empty Trash menu bar item and Playwright smoke test</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e2b2abce37cce1a641c0c98aa31f6b49a3e18835/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e2b2abce37cce1a641c0c98aa31f6b49a3e18835"><tt>e2b2abc</tt></a> feat: trash management — bulk restore, delete permanently, empty trash</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ce85d351d9b7200767a6649c39f315c5de4ed6d1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ce85d351d9b7200767a6649c39f315c5de4ed6d1"><tt>ce85d35</tt></a> feat: add batch_delete_notes and empty_trash Rust commands</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/642955196c733913471fc53d35e88e44df0e46fe/hovercard" href="https://github.com/refactoringhq/tolaria/commit/642955196c733913471fc53d35e88e44df0e46fe"><tt>6429551</tt></a> test: mark pre-existing ai-notes-visibility WS port conflict as fixme</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9fef2551b9d93206e42808975654f5ae29ee841d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9fef2551b9d93206e42808975654f5ae29ee841d"><tt>9fef255</tt></a> test: mark pre-existing theme-live-reload tests as fixme</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/af0c21722c0a39b96738ce0e04604e826c650993/hovercard" href="https://github.com/refactoringhq/tolaria/commit/af0c21722c0a39b96738ce0e04604e826c650993"><tt>af0c217</tt></a> test: add Playwright smoke test for clickable editor empty space</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7a919ffd7800c7728b2f86d0dede1ed4071f8e6d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7a919ffd7800c7728b2f86d0dede1ed4071f8e6d"><tt>7a919ff</tt></a> fix: make empty space below editor content clickable to focus editor</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2c0ad915a84254a176541578ad963daab1a2416a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2c0ad915a84254a176541578ad963daab1a2416a"><tt>2c0ad91</tt></a> fix: block vault API in theme-live-reload smoke test</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ae92e057403adaeb0708adb0d71a2a3917b18ac9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ae92e057403adaeb0708adb0d71a2a3917b18ac9"><tt>ae92e05</tt></a> style: format Rust theme modules with cargo fmt</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a9411c10800773f274a8f2aa235ccaca0961c52f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a9411c10800773f274a8f2aa235ccaca0961c52f"><tt>a9411c1</tt></a> test: add Playwright smoke test for theme properties defaults</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e2c6f540fc9ece42ea9beec9f305ea0fcc460189/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e2c6f540fc9ece42ea9beec9f305ea0fcc460189"><tt>e2c6f54</tt></a> fix: write all theme.json defaults to vault theme frontmatter</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ce6a61c36940f079c89b0b58a48d7f48e51de13d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ce6a61c36940f079c89b0b58a48d7f48e51de13d"><tt>ce6a61c</tt></a> test: add Playwright smoke test for note list preview snippets</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7249a9eb3238e390e09a362013cd1d5cfb5ae478/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7249a9eb3238e390e09a362013cd1d5cfb5ae478"><tt>7249a9e</tt></a> fix: update note list snippet on save so all notes show preview</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/33c4daaa8d4bf34f4c0d27c111f0a575788cb9e4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/33c4daaa8d4bf34f4c0d27c111f0a575788cb9e4"><tt>33c4daa</tt></a> fix: sync raw editor (CodeMirror) content to BlockNote on mode switch</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fe37bb4b27db23cd54be9005b8dfcafe69d7a41f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fe37bb4b27db23cd54be9005b8dfcafe69d7a41f"><tt>fe37bb4</tt></a> feat: wire create-open relationship note to all panel contexts</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4a973e9ba892fc8c222b97527cc9f73314c5d33c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4a973e9ba892fc8c222b97527cc9f73314c5d33c"><tt>4a973e9</tt></a> feat: add 'Create & open' option to relationship input dropdowns</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b02227a5a6ed5f963bd87a5bf732f39997d586ff/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b02227a5a6ed5f963bd87a5bf732f39997d586ff"><tt>b02227a</tt></a> fix: case-insensitive type entry lookup + Playwright smoke test</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/aaa5bc2e81fba5a3a6831b770841be93ac765ef9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/aaa5bc2e81fba5a3a6831b770841be93ac765ef9"><tt>aaa5bc2</tt></a> fix: sidebar section header reflects type icon, color, and label</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5107cd13f4ac4ea9bb3ceaee81f6ad697f73f85a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5107cd13f4ac4ea9bb3ceaee81f6ad697f73f85a"><tt>5107cd1</tt></a> test: add real filesystem vault integration tests</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/891e298f3a7ad8d2e16fc1b22d691318fdffef41/hovercard" href="https://github.com/refactoringhq/tolaria/commit/891e298f3a7ad8d2e16fc1b22d691318fdffef41"><tt>891e298</tt></a> fix: update fix-note-filename-on-rename smoke test for title-sync rename</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/12a5a7af4747722cf198c682f1fa1d9f0f455665/hovercard" href="https://github.com/refactoringhq/tolaria/commit/12a5a7af4747722cf198c682f1fa1d9f0f455665"><tt>12a5a7a</tt></a> fix: add missing old_title_hint arg to tests added on main</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d1775ff1c27b312c5ee8841b8320e4760f0ce848/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d1775ff1c27b312c5ee8841b8320e4760f0ce848"><tt>d1775ff</tt></a> style: cargo fmt on rename.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7f2aaf596af9459eb00b7f7193cba9bd51bfb3b9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7f2aaf596af9459eb00b7f7193cba9bd51bfb3b9"><tt>7f2aaf5</tt></a> fix: remove needless borrow flagged by clippy in rename.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4405ecc9c480351d7786f63159baff74532b9884/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4405ecc9c480351d7786f63159baff74532b9884"><tt>4405ecc</tt></a> test: Playwright smoke test for rename-wikilink-update</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1e1eb4facc49cd032935b1ac62a1771b79fcc305/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1e1eb4facc49cd032935b1ac62a1771b79fcc305"><tt>1e1eb4f</tt></a> test: unit tests for rename-wikilink-update feature</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d28c46123c54637bd6afa3f1507ed0835e07c752/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d28c46123c54637bd6afa3f1507ed0835e07c752"><tt>d28c461</tt></a> feat: wire H1 sync and frontmatter title change to full rename flow</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/04f580310cc700951976dfa14f1fba53a5e0bd62/hovercard" href="https://github.com/refactoringhq/tolaria/commit/04f580310cc700951976dfa14f1fba53a5e0bd62"><tt>04f5803</tt></a> feat: add old_title_hint to rename_note for H1 sync rename support</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c5b583131c78ce48c82543952599950531bbc5b7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c5b583131c78ce48c82543952599950531bbc5b7"><tt>c5b5831</tt></a> test: Playwright smoke test for serializer blank lines fix</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a90ca8bf3a7546222de40381ae64eeb77ecdd8be/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a90ca8bf3a7546222de40381ae64eeb77ecdd8be"><tt>a90ca8b</tt></a> fix: post-process BlockNote serializer to remove extra blank lines</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2bca5a21e1183076c9a89a3ac6a5c265b4524c77/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2bca5a21e1183076c9a89a3ac6a5c265b4524c77"><tt>2bca5a2</tt></a> test: add Playwright smoke tests for wikilink insertion and navigation</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ee94ecb73183277280a2001b779c1ab2907bec27/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ee94ecb73183277280a2001b779c1ab2907bec27"><tt>ee94ecb</tt></a> fix: unify wikilink resolution and disambiguate duplicate titles</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1486bae4bd431393b1a514cbe36ce4221ae7d139/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1486bae4bd431393b1a514cbe36ce4221ae7d139"><tt>1486bae</tt></a> fix: image drop overlay no longer triggers on internal drags (tabs, blocks)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/92f0f96ad24a0ff537115cb98c5ce92f1ceb2fa8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/92f0f96ad24a0ff537115cb98c5ce92f1ceb2fa8"><tt>92f0f96</tt></a> test: Playwright smoke test for note filename rename on save</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e0bf514f5d88ea090da8ec9a6ff1a39afbcf5edf/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e0bf514f5d88ea090da8ec9a6ff1a39afbcf5edf"><tt>e0bf514</tt></a> feat: rename file on save when title slug doesn't match filename</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/761d6dc3b56359c23460ff1038f1a05fac9a302a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/761d6dc3b56359c23460ff1038f1a05fac9a302a"><tt>761d6dc</tt></a> fix: rename_note handles filename-slug mismatch and collisions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5f08e8eba26a62e7cb8e3f624c615d7b4ba94526/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5f08e8eba26a62e7cb8e3f624c615d7b4ba94526"><tt>5f08e8e</tt></a> test: Playwright smoke test for changing-type data corruption regression</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7005f54476f669c6cac0be4054351688036c4e6f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7005f54476f669c6cac0be4054351688036c4e6f"><tt>7005f54</tt></a> fix: mock move_note_to_type_folder collision handling + Rust collision content test</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/265f7b3eb2f92b7bc4122e71fc437f1cee57df45/hovercard" href="https://github.com/refactoringhq/tolaria/commit/265f7b3eb2f92b7bc4122e71fc437f1cee57df45"><tt>265f7b3</tt></a> fix: prevent data corruption when changing note type — preserve tab content instead of re-reading from disk</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8a8fa802bb3d3ce9e4095a0aedc280f9354c2253/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8a8fa802bb3d3ce9e4095a0aedc280f9354c2253"><tt>8a8fa80</tt></a> style: rustfmt formatting fix</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4c7e64dc0c5e715bb17d4c273eb4fd8b77a369ad/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4c7e64dc0c5e715bb17d4c273eb4fd8b77a369ad"><tt>4c7e64d</tt></a> fix: bump cache version + handle Yes/No in TS frontmatter parser</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e891ff61914d4d7d4a35a450d216ffea20e85f7b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e891ff61914d4d7d4a35a450d216ffea20e85f7b"><tt>e891ff6</tt></a> test: Playwright smoke test for create note crash fix</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3084702e5c0b1589814aa2e8f9e64081e4af1c28/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3084702e5c0b1589814aa2e8f9e64081e4af1c28"><tt>3084702</tt></a> fix: prevent crash in handleCreateNoteImmediate — slugify fallback + try/catch</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/89ae7e54bbf6ce986913dd8657802f99a92627c5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/89ae7e54bbf6ce986913dd8657802f99a92627c5"><tt>89ae7e5</tt></a> test: Playwright smoke test for theme live reload on save</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/517a2af730294e8cbb0f10eaaaab06478e0342f3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/517a2af730294e8cbb0f10eaaaab06478e0342f3"><tt>517a2af</tt></a> fix: live-reload CSS vars when saving active theme note in editor</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/484324ae3f23835562575ab9e7e5af9f38e9f804/hovercard" href="https://github.com/refactoringhq/tolaria/commit/484324ae3f23835562575ab9e7e5af9f38e9f804"><tt>484324a</tt></a> test: add Playwright smoke test for rapid note switching latency</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a2e65b36c35887bcec27d53a0ae29400c2852b2a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a2e65b36c35887bcec27d53a0ae29400c2852b2a"><tt>a2e65b3</tt></a> test: add unit tests for prefetch cache, optimistic rollback, rapid switching</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d8b61dd62f5855778137e9472006ffb0fdaec377/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d8b61dd62f5855778137e9472006ffb0fdaec377"><tt>d8b61dd</tt></a> feat: optimize note open and trash/archive latency</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/db66e7c9da0f67a5ee06343f53d8a1b670c52df6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/db66e7c9da0f67a5ee06343f53d8a1b670c52df6"><tt>db66e7c</tt></a> fix: scope Playwright selectors to dialog overlays to avoid sidebar matches</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a760594d66f1e271b570d306b5edd255d3c1779b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a760594d66f1e271b570d306b5edd255d3c1779b"><tt>a760594</tt></a> style: apply cargo fmt to is_file_trashed tests</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/73060f3d00857a3446c2f7fb544ec9012b408d2b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/73060f3d00857a3446c2f7fb544ec9012b408d2b"><tt>73060f3</tt></a> fix: exclude trashed notes from search results and autocomplete</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/46f289d229aaca2399462755c22b87e2c80e8213/hovercard" href="https://github.com/refactoringhq/tolaria/commit/46f289d229aaca2399462755c22b87e2c80e8213"><tt>46f289d</tt></a> fix: simplify cache-invalidation smoke test — container visibility only</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/182f88cd104bb306527a028d5306c2b3fc59c391/hovercard" href="https://github.com/refactoringhq/tolaria/commit/182f88cd104bb306527a028d5306c2b3fc59c391"><tt>182f88c</tt></a> chore: rotate Tauri signing keypair — fix CI release builds</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d6d35b30571c729c51cb371850cf9c5dea220d4e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d6d35b30571c729c51cb371850cf9c5dea220d4e"><tt>d6d35b3</tt></a> fix: handle Archived/Trashed Yes/No string values in frontmatter parser</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a73f18142bea2e8c3a3a183a48fe6b0cc53041f7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a73f18142bea2e8c3a3a183a48fe6b0cc53041f7"><tt>a73f181</tt></a> fix: add reload_vault to vault API proxy for browser mock</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/656679e21a735bbe703ec4cb5ad38e22e8e7b4bf/hovercard" href="https://github.com/refactoringhq/tolaria/commit/656679e21a735bbe703ec4cb5ad38e22e8e7b4bf"><tt>656679e</tt></a> style: apply cargo fmt to new tests</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ba5ba58c6bbf21a18aff21f903db375125fe6eca/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ba5ba58c6bbf21a18aff21f903db375125fe6eca"><tt>ba5ba58</tt></a> fix: reload vault invalidates cache and rescans from filesystem</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bc2d54d0626e55d680dedfddd1ef1505807f289c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bc2d54d0626e55d680dedfddd1ef1505807f289c"><tt>bc2d54d</tt></a> fix: resolve TypeScript overload errors in zoomCursorFix</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1354e504c30ef5c5cbe02b3798878c709e340689/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1354e504c30ef5c5cbe02b3798878c709e340689"><tt>1354e50</tt></a> test: add Playwright smoke test for CodeMirror cursor at non-100% zoom</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0082c02eb45fc43dfe3be78e15c8d3b86e7493d7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0082c02eb45fc43dfe3be78e15c8d3b86e7493d7"><tt>0082c02</tt></a> fix: bypass CodeMirror posAtCoords for accurate cursor at non-100% CSS zoom</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e3d616cd2637a63c135c1572dd78688ff89beb75/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e3d616cd2637a63c135c1572dd78688ff89beb75"><tt>e3d616c</tt></a> fix: embed conversation history in AI agent chat messages</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/afe549478eb03ff85439c197e60afad911647a1e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/afe549478eb03ff85439c197e60afad911647a1e"><tt>afe5494</tt></a> ci: retrigger release — fix Tauri signing key secret</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e414d3b86c0415e30f0f9c9a6a8468d1169804f4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e414d3b86c0415e30f0f9c9a6a8468d1169804f4"><tt>e414d3b</tt></a> test: fix flaky command palette smoke test — use reindex instead of settings</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d3657d86bde3ace46c9f278be988800941645faf/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d3657d86bde3ace46c9f278be988800941645faf"><tt>d3657d8</tt></a> docs: consolidate VISION.md into docs/ — remove duplicate root file</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/664426d5989052be29765f1d57a3b3a870c59739/hovercard" href="https://github.com/refactoringhq/tolaria/commit/664426d5989052be29765f1d57a3b3a870c59739"><tt>664426d</tt></a> fix: prune stale cache entries on vault open, not just cache write</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0755c4a8c0fceccd86a436f1b461676389792fd7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0755c4a8c0fceccd86a436f1b461676389792fd7"><tt>0755c4a</tt></a> fix: add 1 retry for Playwright smoke tests to handle server startup timing</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fdb3fdf6fe56392d76d8f3ae44d0ef489dc536b9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fdb3fdf6fe56392d76d8f3ae44d0ef489dc536b9"><tt>fdb3fdf</tt></a> style: rustfmt vault/mod.rs test formatting</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/010d2c39499eb72b2a311a85e0f2c1280010e98d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/010d2c39499eb72b2a311a85e0f2c1280010e98d"><tt>010d2c3</tt></a> fix: disk-first writes in useEntryActions, document three-layer model</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/dedb5b2721eccb55e8db21c51df2cb3a9eb2501f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/dedb5b2721eccb55e8db21c51df2cb3a9eb2501f"><tt>dedb5b2</tt></a> feat: wire Reload Vault into Cmd+K palette and menu bar</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/587eb0231ed74a280f97c50f74d8fdee7b5797f4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/587eb0231ed74a280f97c50f74d8fdee7b5797f4"><tt>587eb02</tt></a> feat: add reload_vault_entry Tauri command</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9cc9ff80d844e8ed3585e1880443f07b2b5c5254/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9cc9ff80d844e8ed3585e1880443f07b2b5c5254"><tt>9cc9ff8</tt></a> refactor: remove hardcoded RELATIONSHIP_KEYS — detect wikilink fields dynamically</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3e05a9425a5d2f7b574ff95f1e6bf97447e1bf2b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3e05a9425a5d2f7b574ff95f1e6bf97447e1bf2b"><tt>3e05a94</tt></a> test: add Playwright smoke test for exact-match search ranking</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/55e479be135af5612e514aaec957c2f087ff1e9d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/55e479be135af5612e514aaec957c2f087ff1e9d"><tt>55e479b</tt></a> feat: flip canonical type field — make type: primary, Is A: the alias</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/02611f6d4186dd33175e3085f97099f7f6936f1e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/02611f6d4186dd33175e3085f97099f7f6936f1e"><tt>02611f6</tt></a> feat: move vault cache to ~/.laputa/cache/ and make writes atomic</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b0252118a863caf37fe334faea1d2ea28d406484/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b0252118a863caf37fe334faea1d2ea28d406484"><tt>b025211</tt></a> test: add Playwright smoke test for exact-match search ranking</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4649662f3e111b570b3b3407f64bceee064c9ee7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4649662f3e111b570b3b3407f64bceee064c9ee7"><tt>4649662</tt></a> fix: ensure exact title match always ranks first in search</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/dd1595cf68d449e00b21447d73835d1fa900b10a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/dd1595cf68d449e00b21447d73835d1fa900b10a"><tt>dd1595c</tt></a> style: apply rustfmt to rename.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ab1cb6260ccbf36155478e48ab730b5f1c92c7ab/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ab1cb6260ccbf36155478e48ab730b5f1c92c7ab"><tt>ab1cb62</tt></a> test: add Playwright smoke test for move-note-to-type-folder</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/873f85afc99ee5c97fd6b03bbe6b34e412401a2d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/873f85afc99ee5c97fd6b03bbe6b34e412401a2d"><tt>873f85a</tt></a> feat: move note to type folder when Is A changes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2d2c162c3c719349f8ce9ff63b153c8a6f9aa1e2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2d2c162c3c719349f8ce9ff63b153c8a6f9aa1e2"><tt>2d2c162</tt></a> feat: add move_note_to_type_folder backend command</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b53a1588b9cd694f822faccb041cad7e10b35ec9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b53a1588b9cd694f822faccb041cad7e10b35ec9"><tt>b53a158</tt></a> docs: add Refactoring strategic context to VISION.md</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3d5423a4c2ce9fc785cce0e129335e62b081de72/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3d5423a4c2ce9fc785cce0e129335e62b081de72"><tt>3d5423a</tt></a> docs: add Phase 1b — Tauri dev QA for filesystem/native tasks</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4ce9167e097f4ffe950b488a653cd9996fd36fb0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4ce9167e097f4ffe950b488a653cd9996fd36fb0"><tt>4ce9167</tt></a> feat: exact-match-first ranking in search and wikilink autocomplete</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/dd7f0f978a749657c4d82804d872b28990de873c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/dd7f0f978a749657c4d82804d872b28990de873c"><tt>dd7f0f9</tt></a> docs: strengthen Phase 1 QA requirements in CLAUDE.md</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6801546549cb59a55c64dd8ca70359c859f67dd7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6801546549cb59a55c64dd8ca70359c859f67dd7"><tt>6801546</tt></a> docs: add 'why this, why now, why us' section to VISION.md</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3dc1ae51c8e95b2d33923b4c5e13887f30780ffb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3dc1ae51c8e95b2d33923b4c5e13887f30780ffb"><tt>3dc1ae5</tt></a> docs: clarify that evergreen notes are one output type, not the only one</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/749647bf64a267f00ccf17b89bc351eb0700c610/hovercard" href="https://github.com/refactoringhq/tolaria/commit/749647bf64a267f00ccf17b89bc351eb0700c610"><tt>749647b</tt></a> feat: fast note open — use allContent cache to skip IPC disk reads</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cfedcfe531ef3ac87f0e6b701d3977e8a4e1e291/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cfedcfe531ef3ac87f0e6b701d3977e8a4e1e291"><tt>cfedcfe</tt></a> docs: add purpose-driven notes and evergreen notes to VISION.md</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8ce0706b82a85d1bde5f1d2fb9442417bc507c57/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8ce0706b82a85d1bde5f1d2fb9442417bc507c57"><tt>8ce0706</tt></a> docs: rewrite VISION.md as a coherent product narrative</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f8f8d541df44d88da55f3df1292da7e655eb7712/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f8f8d541df44d88da55f3df1292da7e655eb7712"><tt>f8f8d54</tt></a> docs: add capture/organize philosophy and Inbox to vision and roadmap</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ca65abd73cc4597d5b6e1e837d2b9e7dcef8fc60/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ca65abd73cc4597d5b6e1e837d2b9e7dcef8fc60"><tt>ca65abd</tt></a> docs: add ROADMAP.md with strategic directions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d9f8d42733b11ccc9cfe8b6185cd772760cab906/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d9f8d42733b11ccc9cfe8b6185cd772760cab906"><tt>d9f8d42</tt></a> docs: expand VISION.md with product trajectory and updated principles</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ea26e0a2ee841185b15cd27745d86b1355b7d7e2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ea26e0a2ee841185b15cd27745d86b1355b7d7e2"><tt>ea26e0a</tt></a> fix: use vault path for resolveNewNote, resolveNewType, resolveDailyNote</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4787673841f05cd9ab8ecd958bc1f772b86ffc28/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4787673841f05cd9ab8ecd958bc1f772b86ffc28"><tt>4787673</tt></a> docs: add design principles and semantic field conventions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8eac9f9e3f5d92d94c9ed5091b5ed24987d7ed3a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8eac9f9e3f5d92d94c9ed5091b5ed24987d7ed3a"><tt>8eac9f9</tt></a> fix: show all scalar properties in Properties panel — remove Owner from RELATIONSHIP_KEYS, remove notion_id from SKIP_KEYS</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/71810a7a906d933a636c3a330bfbcb683d2f7a5c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/71810a7a906d933a636c3a330bfbcb683d2f7a5c"><tt>71810a7</tt></a> fix: resolve AI chat empty body race — read contextPrompt from closure, not stale ref</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/87090cebc3686c3a6d4f06730c2bb592980f6da8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/87090cebc3686c3a6d4f06730c2bb592980f6da8"><tt>87090ce</tt></a> feat: show type instances in inspector Properties panel</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bb42ebbdc103a9617f03db5a9450711aab57dd36/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bb42ebbdc103a9617f03db5a9450711aab57dd36"><tt>bb42ebb</tt></a> docs: update 'Is A' → 'type:' throughout — type: is now canonical</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f2a9f02d2a87d7ab6c5f164b23621b68e804f80c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f2a9f02d2a87d7ab6c5f164b23621b68e804f80c"><tt>f2a9f02</tt></a> fix: resolve AI chat empty body via || fallback + defensive body + Rust strip_frontmatter</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/12fe4978ab321ff957872c2a1f9d1084fb77769a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/12fe4978ab321ff957872c2a1f9d1084fb77769a"><tt>12fe497</tt></a> fix: auto-save unsaved notes before trash/archive</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/78954d863da3c3e55c1ae3682cedc85a59b0c2f4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/78954d863da3c3e55c1ae3682cedc85a59b0c2f4"><tt>78954d8</tt></a> style: rustfmt assert formatting</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3c711cbe04d8299c97bf25ceba656f7fa2b8dfdf/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3c711cbe04d8299c97bf25ceba656f7fa2b8dfdf"><tt>3c711cb</tt></a> fix: parse lowercase 'archived' frontmatter field</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9af329f0ca45124842397b4424e3888f48227490/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9af329f0ca45124842397b4424e3888f48227490"><tt>9af329f</tt></a> test: add Playwright smoke test for AI chat empty body fix</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/48b6434dd412efebd279eda32fadd55616415b07/hovercard" href="https://github.com/refactoringhq/tolaria/commit/48b6434dd412efebd279eda32fadd55616415b07"><tt>48b6434</tt></a> fix: strip frontmatter from AI context body field — fixes empty body bug</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/270856f5563f48b6fba2a2122540ab88381140ac/hovercard" href="https://github.com/refactoringhq/tolaria/commit/270856f5563f48b6fba2a2122540ab88381140ac"><tt>270856f</tt></a> chore: extend .gitignore with runtime and generated artifacts</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/09a8b553943a4685a4a9ed58f54e77406ca1ba05/hovercard" href="https://github.com/refactoringhq/tolaria/commit/09a8b553943a4685a4a9ed58f54e77406ca1ba05"><tt>09a8b55</tt></a> chore: rotate Tauri signing keypair</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/944bd8f8349d98195d9dc563bbe016b2c8c564ea/hovercard" href="https://github.com/refactoringhq/tolaria/commit/944bd8f8349d98195d9dc563bbe016b2c8c564ea"><tt>944bd8f</tt></a> chore: remove stale files and planning docs from repo</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d41fe306fe33d0c9bf89303e26e7ada9604df16e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d41fe306fe33d0c9bf89303e26e7ada9604df16e"><tt>d41fe30</tt></a> fix: AI chat receives live editor content instead of stale disk content</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5290e1847d224f6d481722498e0acadd25274fcb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5290e1847d224f6d481722498e0acadd25274fcb"><tt>5290e18</tt></a> fix: CodeMirror cursor placement at non-100% zoom levels</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d37c75296ca90b30f4f38a2d5778ccef8722cb38/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d37c75296ca90b30f4f38a2d5778ccef8722cb38"><tt>d37c752</tt></a> fix: pass active note content directly to AI context builder</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9c7f05fb7dbb274b9b81405db5d424335e8e1496/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9c7f05fb7dbb274b9b81405db5d424335e8e1496"><tt>9c7f05f</tt></a> fix: embed conversation history in prompt instead of broken --resume</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c47a67168cf3141c3a27a089cbfdd12327bd2f6c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c47a67168cf3141c3a27a089cbfdd12327bd2f6c"><tt>c47a671</tt></a> fix: AI chat receives note body from open tabs instead of empty allContent</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/43629ca62cca661df24e211039df8abaa6799603/hovercard" href="https://github.com/refactoringhq/tolaria/commit/43629ca62cca661df24e211039df8abaa6799603"><tt>43629ca</tt></a> fix: AI-created notes now visible — onVaultChanged fallback for missed file ops</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/35afd09364858d2ce78d18f863b2eab223233bdd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/35afd09364858d2ce78d18f863b2eab223233bdd"><tt>35afd09</tt></a> fix: AI chat wikilinks — system prompt + integration tests</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fe2cef092a6a70fa46fae93a26a652c769160cc3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fe2cef092a6a70fa46fae93a26a652c769160cc3"><tt>fe2cef0</tt></a> fix: use --resume for AI chat conversation continuity</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e29360ef0a8574aabfbaead6921722ff96d7e267/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e29360ef0a8574aabfbaead6921722ff96d7e267"><tt>e29360e</tt></a> style: cargo fmt config_seed.rs and getting_started.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2d414961a9508a23c6a05a9072b4af0e5e2224bf/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2d414961a9508a23c6a05a9072b4af0e5e2224bf"><tt>2d41496</tt></a> fix: clippy doc_lazy_continuation in config_seed.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f136fd57d6d12bea695886ef3f6b0e9649fd78d5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f136fd57d6d12bea695886ef3f6b0e9649fd78d5"><tt>f136fd5</tt></a> docs: add config/ vault type to architecture and abstractions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c1e11f45df611e577200be4d03e78f77283a8c47/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c1e11f45df611e577200be4d03e78f77283a8c47"><tt>c1e11f4</tt></a> feat: add Repair Vault command and MCP configFiles</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/50e4a63ef249ea32628239753dac29bb29206610/hovercard" href="https://github.com/refactoringhq/tolaria/commit/50e4a63ef249ea32628239753dac29bb29206610"><tt>50e4a63</tt></a> feat: add config/ vault type with agents.md migration</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/dc22a2d7d9fd99289941e4ef3a7c3e16bae7ffcd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/dc22a2d7d9fd99289941e4ef3a7c3e16bae7ffcd"><tt>dc22a2d</tt></a> fix: MCP install command always visible in Cmd+K regardless of mcpStatus</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f2ec2ab55c4c943307771b8ecbaf1bafbd836331/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f2ec2ab55c4c943307771b8ecbaf1bafbd836331"><tt>f2ec2ab</tt></a> feat: make MCP restore command always available in Cmd+K</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0d4ca63ec8b83dae4dc5f48ac05d1d1746b0c27b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0d4ca63ec8b83dae4dc5f48ac05d1d1746b0c27b"><tt>0d4ca63</tt></a> fix: auto-save structural UI changes to disk immediately</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5324f729a9241ccd0ef6fb2f41b5926b2c5edb24/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5324f729a9241ccd0ef6fb2f41b5926b2c5edb24"><tt>5324f72</tt></a> fix: scope qmd update/embed to current vault collection only</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/99112617bff9d8c5a2a30a75783835bcc50db81f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/99112617bff9d8c5a2a30a75783835bcc50db81f"><tt>9911261</tt></a> fix: wikilink clicks in AI chat now open note in tab</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/924fb59bc2776a381a462ee3915cb9779e2093b6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/924fb59bc2776a381a462ee3915cb9779e2093b6"><tt>924fb59</tt></a> fix: add missing ws dependency for smoke tests</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d3a2951bc70daf67f5b82619d91d580923866547/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d3a2951bc70daf67f5b82619d91d580923866547"><tt>d3a2951</tt></a> docs: update ARCHITECTURE, ABSTRACTIONS, GETTING-STARTED to reflect current codebase</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/41cc824180d4792ccde9be419da8faa68b433772/hovercard" href="https://github.com/refactoringhq/tolaria/commit/41cc824180d4792ccde9be419da8faa68b433772"><tt>41cc824</tt></a> test: add Playwright smoke test for AI note visibility and tab opening</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a0eb1a292d3207573ec217a4619f2539c70d0b16/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a0eb1a292d3207573ec217a4619f2539c70d0b16"><tt>a0eb1a2</tt></a> test: add unit tests for detectFileOperation and parseBashFileCreation</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/415bbb5413a9851a70f39b0b5da899b3e66c9edc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/415bbb5413a9851a70f39b0b5da899b3e66c9edc"><tt>415bbb5</tt></a> fix: AI-created notes now trigger vault refresh and auto-open in tab</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fe9ebc9063d3b415dd1ec479a3342de151bf2905/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fe9ebc9063d3b415dd1ec479a3342de151bf2905"><tt>fe9ebc9</tt></a> fix: remove --resume from AI chat to fix conversation history</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a7928ea9d7a53ad0f35ace2cfa0704de1da0dd73/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a7928ea9d7a53ad0f35ace2cfa0704de1da0dd73"><tt>a7928ea</tt></a> feat: restore MCP UI-steering tools (highlight_editor, refresh_vault)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/872ccf1efe029a60a862e2f97d803d4bc7c1a2ce/hovercard" href="https://github.com/refactoringhq/tolaria/commit/872ccf1efe029a60a862e2f97d803d4bc7c1a2ce"><tt>872ccf1</tt></a> test: add Playwright smoke test for wikilink rendering in AI chat</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f54929c08bcdd60c87fa5f196121ff9420820613/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f54929c08bcdd60c87fa5f196121ff9420820613"><tt>f54929c</tt></a> feat: render [[wikilinks]] as clickable links in AI chat</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/36065b0ca57781837407d584c6b1afa135927afc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/36065b0ca57781837407d584c6b1afa135927afc"><tt>36065b0</tt></a> fix: clippy errors — reduce visibility of internal functions, fix PI approx</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1dccc0239c02ab725969f0cef98b46a63a2a3211/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1dccc0239c02ab725969f0cef98b46a63a2a3211"><tt>1dccc02</tt></a> feat: reindex vault command, indexing status bar, sync-triggered reindex</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/47fe307d4534da5f0c35bbf7244005fafd18803a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/47fe307d4534da5f0c35bbf7244005fafd18803a"><tt>47fe307</tt></a> feat: add last_indexed_commit persistence to indexing backend</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4c28fa8e257ca50804b642c06dfd8b3944fffe8d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4c28fa8e257ca50804b642c06dfd8b3944fffe8d"><tt>4c28fa8</tt></a> fix: rustfmt import formatting in commands.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6e102b9f37f4fc18c618251dd64b564011659af0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6e102b9f37f4fc18c618251dd64b564011659af0"><tt>6e102b9</tt></a> test: Playwright smoke test for push error UX</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/902a545c2396907593ef6c52215d3aceb2b19ec5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/902a545c2396907593ef6c52215d3aceb2b19ec5"><tt>902a545</tt></a> feat: surface actionable push error messages in frontend</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a4dac661acd0d7f104a5503b49c06b9bb3846cca/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a4dac661acd0d7f104a5503b49c06b9bb3846cca"><tt>a4dac66</tt></a> feat: add GitPushResult with error classification for push failures</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bd6487c1d2b8a9de90d03c1d037f7ba2523c04a0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bd6487c1d2b8a9de90d03c1d037f7ba2523c04a0"><tt>bd6487c</tt></a> style: rustfmt formatting fix in cache test</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/875d8177a4ec920f94ce13b37109cba49abc4252/hovercard" href="https://github.com/refactoringhq/tolaria/commit/875d8177a4ec920f94ce13b37109cba49abc4252"><tt>875d817</tt></a> fix: add visible key to frontmatterToEntryPatch maps</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/21bfaa8c30727d5d6b1632c11aef25c19f0cf10a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/21bfaa8c30727d5d6b1632c11aef25c19f0cf10a"><tt>21bfaa8</tt></a> fix: include full conversation history in AI chat requests</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7610f1b89a5bb1ac8b841ee19f0443299e3bf453/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7610f1b89a5bb1ac8b841ee19f0443299e3bf453"><tt>7610f1b</tt></a> test: fix Sidebar tests after Favorites removal</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/95f6c0505319d4f0c1dd7506fb0d4118eddc106e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/95f6c0505319d4f0c1dd7506fb0d4118eddc106e"><tt>95f6c05</tt></a> refactor: remove Favorites and Untagged from sidebar</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3f6b5b9a06ce8ec41c8410515a303fa72e9a6fd8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3f6b5b9a06ce8ec41c8410515a303fa72e9a6fd8"><tt>3f6b5b9</tt></a> refactor: rustfmt formatting fixes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ddd65926d868c84939a661cce0d877f4a0d8a2e4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ddd65926d868c84939a661cce0d877f4a0d8a2e4"><tt>ddd6592</tt></a> test: Playwright smoke test for trash → Changes badge</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7a7ba6086a2cb52cf5691f3510da4d888352dcad/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7a7ba6086a2cb52cf5691f3510da4d888352dcad"><tt>7a7ba60</tt></a> fix: refresh Changes panel after trash/archive operations</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7f6f5c2a274da6f6814ca2f20e275350cc59f536/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7f6f5c2a274da6f6814ca2f20e275350cc59f536"><tt>7f6f5c2</tt></a> ⚡ Pulse: fix slow note open — O(1) map lookup, no reloadVault on click</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ef4208697e1ab5df78639d35112bb9b6cb5c7fbc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ef4208697e1ab5df78639d35112bb9b6cb5c7fbc"><tt>ef42086</tt></a> style: rustfmt vault_config.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e5aaacdc2763ae9f7efde93529c08913cc8791d5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e5aaacdc2763ae9f7efde93529c08913cc8791d5"><tt>e5aaacd</tt></a> fix: add missing visible field to buildNewEntry in useNoteActions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/78c45970bf9833988a50c688d935a791e2bb583b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/78c45970bf9833988a50c688d935a791e2bb583b"><tt>78c4597</tt></a> test: add Playwright smoke test for visible type property</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/486b0e9ed1dae54273d3b22e84c2cdfdac8b8546/hovercard" href="https://github.com/refactoringhq/tolaria/commit/486b0e9ed1dae54273d3b22e84c2cdfdac8b8546"><tt>486b0e9</tt></a> feat: migrate hidden_sections from ui.config to visible property on Type notes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4df386d3102561f957f932719901914165e327e8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4df386d3102561f957f932719901914165e327e8"><tt>4df386d</tt></a> refactor: remove hidden_sections from VaultConfig and delete useSectionVisibility</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/48c3bd11aa8f25d0624a8c308bb9ae3fa0cfc820/hovercard" href="https://github.com/refactoringhq/tolaria/commit/48c3bd11aa8f25d0624a8c308bb9ae3fa0cfc820"><tt>48c3bd1</tt></a> feat: add handleToggleTypeVisibility to useEntryActions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f7ac01ad1fabb795d906991753364c3a3ae7318f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f7ac01ad1fabb795d906991753364c3a3ae7318f"><tt>f7ac01a</tt></a> feat: filter sidebar sections by Type entry <code>visible</code> property</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a7d94b354ef7343f78aa14e6aad5347fe6b5eb8e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a7d94b354ef7343f78aa14e6aad5347fe6b5eb8e"><tt>a7d94b3</tt></a> feat: add <code>visible</code> field to VaultEntry for Type note sidebar visibility</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1817cb37944b60602cae66bddc7c8d23088d81ee/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1817cb37944b60602cae66bddc7c8d23088d81ee"><tt>1817cb3</tt></a> 🐛 Auto-untrack .laputa-cache.json and .laputa/settings.json from git</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/66f58446b480410ff32a11fe52fb24c3e89effd9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/66f58446b480410ff32a11fe52fb24c3e89effd9"><tt>66f5844</tt></a> ⚡ Pulse: lazy pagination with IntersectionObserver infinite scroll</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5fdece6d2dc2e88ab0caadcecbe643ac4c8e6ad5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5fdece6d2dc2e88ab0caadcecbe643ac4c8e6ad5"><tt>5fdece6</tt></a> 💅 Pulse: add right border, collapse commit files by default</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/99faee67733c81c9b50193d4b3a5f157bf43eaaa/hovercard" href="https://github.com/refactoringhq/tolaria/commit/99faee67733c81c9b50193d4b3a5f157bf43eaaa"><tt>99faee6</tt></a> fix: address clippy lints in title_case_folder</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d81e2111fc3cbf3c77da4860750bf54999efa6fd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d81e2111fc3cbf3c77da4860750bf54999efa6fd"><tt>d81e211</tt></a> test: add regression tests for hyphenated folder sidebar duplicates</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/40b5d31003635816180e33eea6b7c78cc2098e2b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/40b5d31003635816180e33eea6b7c78cc2098e2b"><tt>40b5d31</tt></a> fix: normalize hyphenated folder names in infer_type_from_folder()</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bfc79c870b608662f0f19f2e5b9f6646cdf3c3b1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bfc79c870b608662f0f19f2e5b9f6646cdf3c3b1"><tt>bfc79c8</tt></a> refactor: apply rustfmt formatting</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1c2552a1bbe067010ac3c830f7970754a3e78e00/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1c2552a1bbe067010ac3c830f7970754a3e78e00"><tt>1c2552a</tt></a> fix: vault cache misses files in new directories, breaking theme restore</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8712ce8e135221d569a5a4f41f0a487baaa217d1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8712ce8e135221d569a5a4f41f0a487baaa217d1"><tt>8712ce8</tt></a> fix: write .gitignore on vault init to exclude .DS_Store</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f4af2b4b19fbe7a48550a355d1674d4eb2492203/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f4af2b4b19fbe7a48550a355d1674d4eb2492203"><tt>f4af2b4</tt></a> refactor: split Rust backend into sub-modules — git, theme, github, frontmatter, commands</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/282c3bebaba00c65a8ff82e05bf505b0e8c692de/hovercard" href="https://github.com/refactoringhq/tolaria/commit/282c3bebaba00c65a8ff82e05bf505b0e8c692de"><tt>282c3be</tt></a> chore: exclude tools/, scripts/ from CodeScene analysis</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ebdc39b308d9b2afba69c2fd6066bbb422be6cd7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ebdc39b308d9b2afba69c2fd6066bbb422be6cd7"><tt>ebdc39b</tt></a> fix: latest.json must point to .tar.gz not .dmg for Tauri in-app updater</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b0b0464f994ff8e9c5f6096b92b394d239a51d81/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b0b0464f994ff8e9c5f6096b92b394d239a51d81"><tt>b0b0464</tt></a> feat: add Playwright smoke test infrastructure for task-scoped QA</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/aaecd9a626db904e2ecdf4b287eb8bf1ac84cd1e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/aaecd9a626db904e2ecdf4b287eb8bf1ac84cd1e"><tt>aaecd9a</tt></a> ci: import Apple certificate before Tauri build so beforeBuildCommand can codesign</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e7f43d5d109624e3ebf250b9af10a13e6fa4fb3e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e7f43d5d109624e3ebf250b9af10a13e6fa4fb3e"><tt>e7f43d5</tt></a> fix: sign qmd binaries with Developer ID + hardened runtime for notarization</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c876997fbaa6110053cca7e6fb9c42f9ffd731dd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c876997fbaa6110053cca7e6fb9c42f9ffd731dd"><tt>c876997</tt></a> docs: add mandatory Playwright Phase 1 QA step before laputa-task-done</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/049b4a9def7d3bfa0b9b4b85882398797d06d23b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/049b4a9def7d3bfa0b9b4b85882398797d06d23b"><tt>049b4a9</tt></a> fix: bundle qmd source in tools/qmd/ so CI can compile it</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7c9067527bc761a9484c9bb2def0a4661bad75c3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7c9067527bc761a9484c9bb2def0a4661bad75c3"><tt>7c90675</tt></a> ci: add bun setup step to release workflow (required by bundle-qmd.sh)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/eda8bc373e4de9e4b91fccf9434a02e5200e03d8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/eda8bc373e4de9e4b91fccf9434a02e5200e03d8"><tt>eda8bc3</tt></a> fix: align ws-bridge.js imports with simplified vault.js API</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5d4c3720420c9ce8fdccaaf61601d9801a06cafd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5d4c3720420c9ce8fdccaaf61601d9801a06cafd"><tt>5d4c372</tt></a> refactor: split InspectorPanels.tsx into focused modules — reduce 538-line file to focused per-panel components (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4032453112" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/189" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/189/hovercard" href="https://github.com/refactoringhq/tolaria/pull/189">#189</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c2b54e7390877a9e03d6ba7f8ac607693ff6ec14/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c2b54e7390877a9e03d6ba7f8ac607693ff6ec14"><tt>c2b54e7</tt></a> test: add configMigration tests — cover all migration branches (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4031053992" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/188" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/188/hovercard" href="https://github.com/refactoringhq/tolaria/pull/188">#188</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/817055a9e1df3c6f53fcd423865e641ff4051f4f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/817055a9e1df3c6f53fcd423865e641ff4051f4f"><tt>817055a</tt></a> fix: make qmd/search work on fresh installs — auto-install, fix permissions, sign binaries</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a2f58e1b2d9fe50c7c8e057bb44a154174738648/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a2f58e1b2d9fe50c7c8e057bb44a154174738648"><tt>a2f58e1</tt></a> style: rustfmt search.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3306d5ff3d51deff5e0065d77a2e7a7ea2a25900/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3306d5ff3d51deff5e0065d77a2e7a7ea2a25900"><tt>3306d5f</tt></a> feat: bundle qmd binary with app — search works on fresh installs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a3148de1d34995cbeb337bc87c98fafbda5238ab/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a3148de1d34995cbeb337bc87c98fafbda5238ab"><tt>a3148de</tt></a> fix: rank command palette results by match score, not section order</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/66c086f8c9c75d1e52dd46a49c9ef448cbcfc721/hovercard" href="https://github.com/refactoringhq/tolaria/commit/66c086f8c9c75d1e52dd46a49c9ef448cbcfc721"><tt>66c086f</tt></a> fix: move Go Back/Forward to Go menu, add toggles to Note menu</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/51ccece93695b769488ba522af4287cc72601b09/hovercard" href="https://github.com/refactoringhq/tolaria/commit/51ccece93695b769488ba522af4287cc72601b09"><tt>51ccece</tt></a> fix: always show Resolve Conflicts in Cmd+K — show toast when no conflicts</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f8e5cbfa362edb1a7cbaa4416bf1d6d2fde6d66f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f8e5cbfa362edb1a7cbaa4416bf1d6d2fde6d66f"><tt>f8e5cbf</tt></a> refactor: extract hooks and components from NoteListInner for code health</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a3e3d9a72bddba803d682097ba10c5a1730d4ad0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a3e3d9a72bddba803d682097ba10c5a1730d4ad0"><tt>a3e3d9a</tt></a> style: rustfmt git.rs pulse functions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/559c585a085daece0f16eb154d5f4208b7af4a14/hovercard" href="https://github.com/refactoringhq/tolaria/commit/559c585a085daece0f16eb154d5f4208b7af4a14"><tt>559c585</tt></a> feat: add Pulse — vault activity feed showing git commit history</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3431b794d108ecf3b23f2e383b5c254d24772757/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3431b794d108ecf3b23f2e383b5c254d24772757"><tt>3431b79</tt></a> style: apply rustfmt to vault_config.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6b13120fa64eafec3d50de42ee8c6c651ec9d9e3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6b13120fa64eafec3d50de42ee8c6c651ec9d9e3"><tt>6b13120</tt></a> feat: move vault UI config from localStorage to vault files</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/87e28b0816b55fde22f0c265636dbb13915ae839/hovercard" href="https://github.com/refactoringhq/tolaria/commit/87e28b0816b55fde22f0c265636dbb13915ae839"><tt>87e28b0</tt></a> feat: add vault_config module and view field to VaultEntry</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/239ff7fd97575ccaa1396e8e25cee1b923bd7604/hovercard" href="https://github.com/refactoringhq/tolaria/commit/239ff7fd97575ccaa1396e8e25cee1b923bd7604"><tt>239ff7f</tt></a> fix: pass undefined to useRef for strict TypeScript compat</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a364cbc2bd207ed14802b98ff44f30fce2d606ba/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a364cbc2bd207ed14802b98ff44f30fce2d606ba"><tt>a364cbc</tt></a> feat: expose all theme.json properties in theme editor</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/338f073421a4d3656f6b3c391c8fdec1e2f79090/hovercard" href="https://github.com/refactoringhq/tolaria/commit/338f073421a4d3656f6b3c391c8fdec1e2f79090"><tt>338f073</tt></a> style: apply rustfmt to menu.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/03d4d51ee9345af7c8c2d95657d147220bb9c860/hovercard" href="https://github.com/refactoringhq/tolaria/commit/03d4d51ee9345af7c8c2d95657d147220bb9c860"><tt>03d4d51</tt></a> fix: move view-toggle-backlinks to simple event map for type safety</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a966b2cc650ffcd7e3227724b98195d851a91fb4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a966b2cc650ffcd7e3227724b98195d851a91fb4"><tt>a966b2c</tt></a> feat: reorganize menu bar with Go, Note, and Vault menus</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0eedf0c83a8e459a54424d9580c3f69fa115b9a4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0eedf0c83a8e459a54424d9580c3f69fa115b9a4"><tt>0eedf0c</tt></a> test: add color detection tests to propertyTypes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3f9c7b739542979a129aca0c58b129be48414352/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3f9c7b739542979a129aca0c58b129be48414352"><tt>3f9c7b7</tt></a> feat: add color swatch + picker for property values</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9f35f049d7240523d0c87fff91a8b37df2960e65/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9f35f049d7240523d0c87fff91a8b37df2960e65"><tt>9f35f04</tt></a> fix: enable line wrapping in raw editor</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/da01d2ec28a8bc429e836c02a2a54bfafa4b0452/hovercard" href="https://github.com/refactoringhq/tolaria/commit/da01d2ec28a8bc429e836c02a2a54bfafa4b0452"><tt>da01d2e</tt></a> fix: make Restore Default Themes command always enabled in Cmd+K palette</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/85234b1b987bb92f3d8449fd1707b90e14408c49/hovercard" href="https://github.com/refactoringhq/tolaria/commit/85234b1b987bb92f3d8449fd1707b90e14408c49"><tt>85234b1</tt></a> feat: enable full shell access for AI agent + simplify MCP tools</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f864bc499011ed208fdd06e380a4a7f152f82139/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f864bc499011ed208fdd06e380a4a7f152f82139"><tt>f864bc4</tt></a> style: rustfmt collect_wikilink_inner signature</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5189ed6cadf64243c0e0ae877dc9c669fe72247b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5189ed6cadf64243c0e0ae877dc9c669fe72247b"><tt>5189ed6</tt></a> fix: strip wikilink brackets from note list preview snippets</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d5849593ea4b8b59cfbac832dab1abfef943ea04/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d5849593ea4b8b59cfbac832dab1abfef943ea04"><tt>d584959</tt></a> feat: Add 'Restore Default Themes' command for vaults missing theme structure</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e817d088ebed5c0b8108a2597921e75a6eb6e92d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e817d088ebed5c0b8108a2597921e75a6eb6e92d"><tt>e817d08</tt></a> fix: rustfmt formatting in git.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/eeada90b37d7ca95bc4d55874ac7cb6d4845f385/hovercard" href="https://github.com/refactoringhq/tolaria/commit/eeada90b37d7ca95bc4d55874ac7cb6d4845f385"><tt>eeada90</tt></a> fix: stub WebSocket in test setup to prevent Node 22 + undici crash</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/795badf78b86fc1505581b04a760073010c95f25/hovercard" href="https://github.com/refactoringhq/tolaria/commit/795badf78b86fc1505581b04a760073010c95f25"><tt>795badf</tt></a> fix: detect and resolve rebase conflicts in sync conflict resolution</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1056a152c12ab13a88f92966f9cb1881ad992c63/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1056a152c12ab13a88f92966f9cb1881ad992c63"><tt>1056a15</tt></a> fix: rustfmt formatting in trash regression tests</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f3d197a3b037f88a3af761f55ff8069c58bfdd9f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f3d197a3b037f88a3af761f55ff8069c58bfdd9f"><tt>f3d197a</tt></a> fix: trashed notes reappear after restart due to frontmatter key casing mismatch</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1c7ee05639010393251e075e2df9a2c81dd99e6b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1c7ee05639010393251e075e2df9a2c81dd99e6b"><tt>1c7ee05</tt></a> refactor: extract usePropertyPanelState hook into dedicated file (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4026044674" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/187" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/187/hovercard" href="https://github.com/refactoringhq/tolaria/pull/187">#187</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/db1ae9b28394b15eadbfac12760f23cbac1a4a8b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/db1ae9b28394b15eadbfac12760f23cbac1a4a8b"><tt>db1ae9b</tt></a> fix: stub fetch in test setup to prevent jsdom@28 + Node 22 undici crash</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1694676472ebbabb67642a4c1808ed6cdd392ef2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1694676472ebbabb67642a4c1808ed6cdd392ef2"><tt>1694676</tt></a> feat: wikilink pills in message bubbles, noteList context injection</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9d8cf4da2984da537efedc397f27e47017bd02a0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9d8cf4da2984da537efedc397f27e47017bd02a0"><tt>9d8cf4d</tt></a> refactor: remove dead useMcpRegistration hook, add design file</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4dbcc7c298dae2cf9cfebf593ddc07763cb88cdc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4dbcc7c298dae2cf9cfebf593ddc07763cb88cdc"><tt>4dbcc7c</tt></a> feat: detect MCP server status and show warning in status bar</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1f1e115d706493bf100700d0816d8bf42cada3f5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1f1e115d706493bf100700d0816d8bf42cada3f5"><tt>1f1e115</tt></a> fix: pass initial value to useRef for strict TS build</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c127130c298b84a76c1cff9470b91d7d31f40d76/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c127130c298b84a76c1cff9470b91d7d31f40d76"><tt>c127130</tt></a> test: add tests for WikilinkChatInput and buildContextSnapshot</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5a2bcecaaccb16110a863b2923d3643898f3b372/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5a2bcecaaccb16110a863b2923d3643898f3b372"><tt>5a2bcec</tt></a> feat: add wikilink autocomplete, animated border, structured context wiring</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3ab3ca22ffba18336c73a92eb60564a8b6d5eb0c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3ab3ca22ffba18336c73a92eb60564a8b6d5eb0c"><tt>3ab3ca2</tt></a> feat: add reasoning streaming, markdown response, structured context snapshot</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8029e079459ad431ab587971c9f6207d15ccd6b1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8029e079459ad431ab587971c9f6207d15ccd6b1"><tt>8029e07</tt></a> fix: use generic Error type in setup.ts to avoid NodeJS namespace</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3893d01a1f669e3576298ec013998bd62f358e1d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3893d01a1f669e3576298ec013998bd62f358e1d"><tt>3893d01</tt></a> fix: restore drag-to-reorder for sidebar sections</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/93d598d04cc32203da41ad0b2405674e9343a23d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/93d598d04cc32203da41ad0b2405674e9343a23d"><tt>93d598d</tt></a> fix: MCP UI tools (highlight, open_note) now work in real-time</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a2f1ab9bdc2c1b9cc98031c4e0ab6b5a33b1c273/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a2f1ab9bdc2c1b9cc98031c4e0ab6b5a33b1c273"><tt>a2f1ab9</tt></a> style: apply rustfmt to theme.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f99b9d0b9bd17bb2a7705dc5a162e2c70dbfc03d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f99b9d0b9bd17bb2a7705dc5a162e2c70dbfc03d"><tt>f99b9d0</tt></a> fix: auto-provision theme files on vault open for any vault</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/389e9d437217154399278ca317d131a8ac27a6a7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/389e9d437217154399278ca317d131a8ac27a6a7"><tt>389e9d4</tt></a> fix: show 'Installing search...' when qmd missing instead of 'Indexing...'</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9599ddaea876fd40964aea0dfda24044a8a31863/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9599ddaea876fd40964aea0dfda24044a8a31863"><tt>9599dda</tt></a> fix: replace 'Index error' with graceful handling on fresh installs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5dbdf5077fa396fa6a8be7bf231a278dc6f1917e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5dbdf5077fa396fa6a8be7bf231a278dc6f1917e"><tt>5dbdf50</tt></a> style: apply cargo fmt to test assertions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cfe5d99d7fa6fa24aeba77de34ed9f3ac96bf2c4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cfe5d99d7fa6fa24aeba77de34ed9f3ac96bf2c4"><tt>cfe5d99</tt></a> fix: apply rustfmt to claude_cli.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cc19d8340792b228046d6581eb2d1a22b53e884f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cc19d8340792b228046d6581eb2d1a22b53e884f"><tt>cc19d83</tt></a> feat: make AI chat tool use blocks expandable with input/output details</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/49092eaa8abae195df70b4f1d2c2b69381db9f78/hovercard" href="https://github.com/refactoringhq/tolaria/commit/49092eaa8abae195df70b4f1d2c2b69381db9f78"><tt>49092ea</tt></a> feat: render markdown in AI Chat assistant responses</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3f2a1516bc0e12967c309b496a1acc9238e7c4de/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3f2a1516bc0e12967c309b496a1acc9238e7c4de"><tt>3f2a151</tt></a> feat: replace app icon with new Laputa cloud logo</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c887a0c5f6df27a1cc39c3073283450f87aa773f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c887a0c5f6df27a1cc39c3073283450f87aa773f"><tt>c887a0c</tt></a> fix: trash/archive banner appears immediately without reopening note</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7cbe9b9010788452689d44c98d32b5207f5c0409/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7cbe9b9010788452689d44c98d32b5207f5c0409"><tt>7cbe9b9</tt></a> fix: display correct app version as build number in status bar</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f4c832ad9c311639584d79da5e90603caf15aa4f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f4c832ad9c311639584d79da5e90603caf15aa4f"><tt>f4c832a</tt></a> fix: use type-only import for DecorationSet (verbatimModuleSyntax)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/beac0788eb47101cda75e2072553c5ccc54d0b42/hovercard" href="https://github.com/refactoringhq/tolaria/commit/beac0788eb47101cda75e2072553c5ccc54d0b42"><tt>beac078</tt></a> feat: replace raw editor textarea with CodeMirror 6</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2548a80e34f7c3038d0d852cb303ba110dcbb208/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2548a80e34f7c3038d0d852cb303ba110dcbb208"><tt>2548a80</tt></a> fix: use git ls-files --unmerged for reliable conflict detection</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d81eedf1420c726fa5f1938c2b78f56006dbb7c0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d81eedf1420c726fa5f1938c2b78f56006dbb7c0"><tt>d81eedf</tt></a> fix: open newly created theme in editor after New Theme command</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6475160a149be4c0a662cc4332599de17db27268/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6475160a149be4c0a662cc4332599de17db27268"><tt>6475160</tt></a> fix: check-for-updates command always visible in Cmd+K, handles all update states</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/deabb13c017350fad13b5375b402071a60e65033/hovercard" href="https://github.com/refactoringhq/tolaria/commit/deabb13c017350fad13b5375b402071a60e65033"><tt>deabb13</tt></a> refactor: remove AI model indicator from status bar</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/21e0cb6c6ebb8e8e9318e21f6db49514d490bb12/hovercard" href="https://github.com/refactoringhq/tolaria/commit/21e0cb6c6ebb8e8e9318e21f6db49514d490bb12"><tt>21e0cb6</tt></a> fix: handle Escape at panel level and manage focus across active states</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4041655d952f403bb4b15911cbcadd8de0423686/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4041655d952f403bb4b15911cbcadd8de0423686"><tt>4041655</tt></a> fix: auto-focus AI Chat input on panel open and close on Escape</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/79e8c9fef5203c0a00fcbef6fe6556a0e3f298a7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/79e8c9fef5203c0a00fcbef6fe6556a0e3f298a7"><tt>79e8c9f</tt></a> fix: handle EADDRINUSE in MCP server ws-bridge — allow Claude Code to start when port is taken</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0eeb45e16ecfc83d5bba5c8477ebb61dab1a19ff/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0eeb45e16ecfc83d5bba5c8477ebb61dab1a19ff"><tt>0eeb45e</tt></a> feat: add Check for Updates command to native menu and Cmd+K palette</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4499fe0ca3592aa304b1250bfe4421f0d0b0d820/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4499fe0ca3592aa304b1250bfe4421f0d0b0d820"><tt>4499fe0</tt></a> feat: persist note list sort preference in type file frontmatter</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/995c81e3271e1fa2def356296a61a0c761a0fd91/hovercard" href="https://github.com/refactoringhq/tolaria/commit/995c81e3271e1fa2def356296a61a0c761a0fd91"><tt>995c81e</tt></a> fix: restore theming system after dark-editor merge regression</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f91c6f15d6f199e864ddf05ed9bfc1c3f928bde0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f91c6f15d6f199e864ddf05ed9bfc1c3f928bde0"><tt>f91c6f1</tt></a> refactor: extract useEditorSaveWithLinks and useNavigationGestures from App.tsx (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4014905372" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/186" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/186/hovercard" href="https://github.com/refactoringhq/tolaria/pull/186">#186</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/44256ba35057307f24666020badfa971ec1b2f0b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/44256ba35057307f24666020badfa971ec1b2f0b"><tt>44256ba</tt></a> style: cargo fmt git.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/835578e43c7165e5ec7923dc7346c359c63cff91/hovercard" href="https://github.com/refactoringhq/tolaria/commit/835578e43c7165e5ec7923dc7346c359c63cff91"><tt>835578e</tt></a> fix: add useIndexing import and hook call, wire indexingProgress and onRemoveVault to StatusBar</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/48b61d65c5573f94db216c6dd8628600190103f1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/48b61d65c5573f94db216c6dd8628600190103f1"><tt>48b61d6</tt></a> chore: add sync-conflict-resolution design file</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c3722ba8eae002bc99b6891882ab197a3c82cc1e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c3722ba8eae002bc99b6891882ab197a3c82cc1e"><tt>c3722ba</tt></a> feat: add sync conflict resolution — resolve merge conflicts in-app</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/351a91c571f83f0abe5edf0cff0246a53e603820/hovercard" href="https://github.com/refactoringhq/tolaria/commit/351a91c571f83f0abe5edf0cff0246a53e603820"><tt>351a91c</tt></a> style: cargo fmt --all</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/35aea7a50dd445c9e8c99e91ab29e11c5c2b838a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/35aea7a50dd445c9e8c99e91ab29e11c5c2b838a"><tt>35aea7a</tt></a> style: rustfmt lib.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4a88cb3e947915795a1e99adf3db217de6570b33/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4a88cb3e947915795a1e99adf3db217de6570b33"><tt>4a88cb3</tt></a> fix: add missing X import and onRemoveVault prop to StatusBar after rebase</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/afa51bf147b9b2b10914892998581c4b54b8b53c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/afa51bf147b9b2b10914892998581c4b54b8b53c"><tt>afa51bf</tt></a> feat: auto-index vault on open + qmd auto-install + status bar progress</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d227cb4ac7f5f049f666b1a9397dfde2db556dc1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d227cb4ac7f5f049f666b1a9397dfde2db556dc1"><tt>d227cb4</tt></a> style: rustfmt vault_list.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fbbfe0ea6d2db5c2809c80c10c51045bd80134a4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fbbfe0ea6d2db5c2809c80c10c51045bd80134a4"><tt>fbbfe0e</tt></a> feat: vault management — remove vault from list and restore Getting Started</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/851e482ab7553823c875f91e847ce483b9c3f693/hovercard" href="https://github.com/refactoringhq/tolaria/commit/851e482ab7553823c875f91e847ce483b9c3f693"><tt>851e482</tt></a> feat: sort picker shows custom frontmatter properties (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4014058577" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/185" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/185/hovercard" href="https://github.com/refactoringhq/tolaria/pull/185">#185</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fe8c9f574bfd7539965603f096d9997c49c481a0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fe8c9f574bfd7539965603f096d9997c49c481a0"><tt>fe8c9f5</tt></a> feat: show archived note indicator banner in editor (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4014049016" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/183" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/183/hovercard" href="https://github.com/refactoringhq/tolaria/pull/183">#183</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7bd19f0120c8e0d137773f446b1a824c068579f2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7bd19f0120c8e0d137773f446b1a824c068579f2"><tt>7bd19f0</tt></a> feat: add command palette toggles for all BreadcrumbBar panels (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4014049115" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/184" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/184/hovercard" href="https://github.com/refactoringhq/tolaria/pull/184">#184</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3d6e237c5ef56c9cd949406e8fb765a30b6f213a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3d6e237c5ef56c9cd949406e8fb765a30b6f213a"><tt>3d6e237</tt></a> fix: show all direct relationship properties in note list sidebar (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4013967460" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/182" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/182/hovercard" href="https://github.com/refactoringhq/tolaria/pull/182">#182</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/168119375019dec6c920b457f0192053afda39eb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/168119375019dec6c920b457f0192053afda39eb"><tt>1681193</tt></a> feat: trashed notes read-only with visible banner in editor (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4013967339" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/181" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/181/hovercard" href="https://github.com/refactoringhq/tolaria/pull/181">#181</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/aa0f657c485dd22c3b65ac761f3845430733b6c6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/aa0f657c485dd22c3b65ac761f3845430733b6c6"><tt>aa0f657</tt></a> fix: remove persistLastVault assertions from onboarding test</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e769de3029820b00c335d0ab810bc5e2735864c3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e769de3029820b00c335d0ab810bc5e2735864c3"><tt>e769de3</tt></a> fix: remove stale persistLastVault and unused imports after rebase</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1b6d7e5b09c0aa4d7e502120730587003a017607/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1b6d7e5b09c0aa4d7e502120730587003a017607"><tt>1b6d7e5</tt></a> fix: persist vault list across app updates</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b473d704e496dcb542c4261b2fddea95746a8425/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b473d704e496dcb542c4261b2fddea95746a8425"><tt>b473d70</tt></a> fix: persist last vault path so app reopens correct vault after update</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3e83d314f0449a8f7115c19585d2e5b73995439f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3e83d314f0449a8f7115c19585d2e5b73995439f"><tt>3e83d31</tt></a> feat: add "New Type" command to command palette (Cmd+K)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/68d28bc5560e121e7d03fd296df9f4f71ec1e3ab/hovercard" href="https://github.com/refactoringhq/tolaria/commit/68d28bc5560e121e7d03fd296df9f4f71ec1e3ab"><tt>68d28bc</tt></a> test: add asserting wikilink navigation E2E test — screenshot.spec.ts test had no expect() calls (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4013723067" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/180" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/180/hovercard" href="https://github.com/refactoringhq/tolaria/pull/180">#180</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/30f3cdf4505e45910f12ccfa83be6b97cdfa63a7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/30f3cdf4505e45910f12ccfa83be6b97cdfa63a7"><tt>30f3cdf</tt></a> feat: add 'Check for Updates' command to command palette</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/39161c83600fd811a9a411a29d578ae25e248f36/hovercard" href="https://github.com/refactoringhq/tolaria/commit/39161c83600fd811a9a411a29d578ae25e248f36"><tt>39161c8</tt></a> feat: rename demo vault from 'Demo v2' to 'Getting Started', remove 'Laputa' vault entry</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a293512442f483bcc1cdc9e403ed9744927f0f35/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a293512442f483bcc1cdc9e403ed9744927f0f35"><tt>a293512</tt></a> fix: use compile-time env!() macro for BUILD_NUMBER instead of runtime std::env::var</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1d4036e9add6d88846240462e065cd965500b461/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1d4036e9add6d88846240462e065cd965500b461"><tt>1d4036e</tt></a> fix: bundle mcp-server into release app so AI Chat works (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4013296678" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/178" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/178/hovercard" href="https://github.com/refactoringhq/tolaria/pull/178">#178</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e2e5befef10b448fab39c52fac5d55a156d476a0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e2e5befef10b448fab39c52fac5d55a156d476a0"><tt>e2e5bef</tt></a> style: fix rustfmt formatting in cache test assertions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b649cba92a5af058d358f3a0fc96e362a414177a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b649cba92a5af058d358f3a0fc96e362a414177a"><tt>b649cba</tt></a> fix: sync changes badge count with list by invalidating stale vault cache</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5f1a3aecb9a746ac11d82ff573ef0f6d5138b9e0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5f1a3aecb9a746ac11d82ff573ef0f6d5138b9e0"><tt>5f1a3ae</tt></a> fix: correct git_uncommitted_files call after rebase conflict</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7543f37dddc4911f4160292244172863c8ea8f23/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7543f37dddc4911f4160292244172863c8ea8f23"><tt>7543f37</tt></a> fix: add aria-label to InlineRenameInput for test accessibility</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e0b6e84e103013f7cce509d4c6e4c1eba42d703e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e0b6e84e103013f7cce509d4c6e4c1eba42d703e"><tt>e0b6e84</tt></a> style: apply rustfmt to cache.rs test</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/05c686311980d3a3f4f4d393d484739011f9d7dc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/05c686311980d3a3f4f4d393d484739011f9d7dc"><tt>05c6863</tt></a> feat: add Rename section to sidebar context menu</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5a7f5f7c3296959590d8a4d1d7fa9898dcd7d696/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5a7f5f7c3296959590d8a4d1d7fa9898dcd7d696"><tt>5a7f5f7</tt></a> fix: update_same_commit picks up modified files, not only new ones</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/21d99fa5bef7dc29dd3f426ae131257c369fcaaf/hovercard" href="https://github.com/refactoringhq/tolaria/commit/21d99fa5bef7dc29dd3f426ae131257c369fcaaf"><tt>21d99fa</tt></a> style: apply rustfmt to theme.rs and vault/cache.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cf8142bd250efe11b9a6df8f6c39743bcbc47556/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cf8142bd250efe11b9a6df8f6c39743bcbc47556"><tt>cf8142b</tt></a> fix: remove unused is_new_file_status function</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f289ede15e5a7eb6335fb9bb2df4d40ba060eb84/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f289ede15e5a7eb6335fb9bb2df4d40ba060eb84"><tt>f289ede</tt></a> fix: add isDark to useThemeManager return value</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f467037e979a96af905a68248764cc78cce0654c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f467037e979a96af905a68248764cc78cce0654c"><tt>f467037</tt></a> fix: remove stale deriveThemeVariables call and update test assertions after conflict resolution</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f152e0343dd2debe2cda85d4bbf22a7230a787ab/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f152e0343dd2debe2cda85d4bbf22a7230a787ab"><tt>f152e03</tt></a> test: add theme command registry tests and minor fixes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7169634dc3173a5f61c258b94bbaffc6bc412453/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7169634dc3173a5f61c258b94bbaffc6bc412453"><tt>7169634</tt></a> wip: themes-editable — theme management system WIP (13 files, 1014 insertions)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d1d56778dc3ba0083603be68907a45a609596c3b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d1d56778dc3ba0083603be68907a45a609596c3b"><tt>d1d5677</tt></a> chore: sync Sidebar.tsx dragHandleProps removal from main</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4a0ce390ac43ad02e2df88374b8f705a37be4c1b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4a0ce390ac43ad02e2df88374b8f705a37be4c1b"><tt>4a0ce39</tt></a> chore: sync SidebarParts dragHandle removal from main</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f4d3640f49a82c6039084d44a92c8113d64a376b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f4d3640f49a82c6039084d44a92c8113d64a376b"><tt>f4d3640</tt></a> fix: position context menu and customize popover at right-click coordinates</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ef675dab7c06c02aa427059150026993decd5430/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ef675dab7c06c02aa427059150026993decd5430"><tt>ef675da</tt></a> chore: remove dragHandleProps from SectionContent destructuring</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2bd41bcf5f9f7e7ad988bb4e3638aa901eeb76ef/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2bd41bcf5f9f7e7ad988bb4e3638aa901eeb76ef"><tt>2bd41bc</tt></a> chore: remove remaining dragHandleProps from SortableSection</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fea24f1458b845d3ae32ff9770b79973e8376304/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fea24f1458b845d3ae32ff9770b79973e8376304"><tt>fea24f1</tt></a> style: remove drag handle icon from sidebar sections</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cd1cda7a0a6c408bdf24fcb0a37f83be6f5d4f0a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cd1cda7a0a6c408bdf24fcb0a37f83be6f5d4f0a"><tt>cd1cda7</tt></a> style: align section icons with main nav items in sidebar</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/74038af110811f28eb7bcfa14d0fa938b532d130/hovercard" href="https://github.com/refactoringhq/tolaria/commit/74038af110811f28eb7bcfa14d0fa938b532d130"><tt>74038af</tt></a> style: remove letter-spacing from status/property labels in inspector</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/44744928688568b02245eb1a5193494cbda39200/hovercard" href="https://github.com/refactoringhq/tolaria/commit/44744928688568b02245eb1a5193494cbda39200"><tt>4474492</tt></a> style: reduce editor body font to 15px, apply -0.5 letter-spacing to h2/h3/h4</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/60dbfad1bf3cf3ec4f7244aefdcdd0e92d9459f3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/60dbfad1bf3cf3ec4f7244aefdcdd0e92d9459f3"><tt>60dbfad</tt></a> fix: defer H1 selection to second rAF so content swap completes first</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b043a7efe8ce79938c9bfa1e999d0e65da6b6bef/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b043a7efe8ce79938c9bfa1e999d0e65da6b6bef"><tt>b043a7e</tt></a> fix: register Cmd+\ keyboard shortcut to toggle raw editor mode</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c78d4b3c43403f6f908c8f1f0c1029f6561a149f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c78d4b3c43403f6f908c8f1f0c1029f6561a149f"><tt>c78d4b3</tt></a> fix: editor background matches vault theme in dark mode</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ecd19c5be4749546873569f8ff108c72ac56b121/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ecd19c5be4749546873569f8ff108c72ac56b121"><tt>ecd19c5</tt></a> feat: raw editor mode — plain textarea with frontmatter + wikilink autocomplete</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/80b150fffe7c4f55dd28a64b47743d5e60867075/hovercard" href="https://github.com/refactoringhq/tolaria/commit/80b150fffe7c4f55dd28a64b47743d5e60867075"><tt>80b150f</tt></a> feat: auto-focus editor with H1 title selected on new note creation</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/677585f3f094303b47679c8eb2d5ee27f02cb479/hovercard" href="https://github.com/refactoringhq/tolaria/commit/677585f3f094303b47679c8eb2d5ee27f02cb479"><tt>677585f</tt></a> fix: use globalThis instead of global in test setup (TS build compatibility)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bfd871704d959c3e338441b6b2fc5a0eaf51b9dc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bfd871704d959c3e338441b6b2fc5a0eaf51b9dc"><tt>bfd8717</tt></a> feat: responsive tab width — shrink tabs to fit window</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/13ee62ce67e2136d47eb4f77dcf2e3c0f2c66091/hovercard" href="https://github.com/refactoringhq/tolaria/commit/13ee62ce67e2136d47eb4f77dcf2e3c0f2c66091"><tt>13ee62c</tt></a> feat: dark theme applies to editor content area</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/81990f029249e4b29633aabfb3c42f4ea08c3f1f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/81990f029249e4b29633aabfb3c42f4ea08c3f1f"><tt>81990f0</tt></a> docs: never open PRs — push directly to main always</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/312abc4ae080f0c227a99e5c532bfe31782a1465/hovercard" href="https://github.com/refactoringhq/tolaria/commit/312abc4ae080f0c227a99e5c532bfe31782a1465"><tt>312abc4</tt></a> feat: toggle archive/trash shortcuts — Cmd+E unarchives, Cmd+⌫ restores (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4010571350" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/175" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/175/hovercard" href="https://github.com/refactoringhq/tolaria/pull/175">#175</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0b86070f1310c2a611e95cdcdf81a8fe6e397752/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0b86070f1310c2a611e95cdcdf81a8fe6e397752"><tt>0b86070</tt></a> fix: back/forward nav arrows reopen replaced tabs instead of skipping them (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4010453895" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/174" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/174/hovercard" href="https://github.com/refactoringhq/tolaria/pull/174">#174</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0846183d5384c6f42e5acac1519489f9a62d0950/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0846183d5384c6f42e5acac1519489f9a62d0950"><tt>0846183</tt></a> fix: use openExternalUrl for release notes link in Tauri app (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4010246764" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/171" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/171/hovercard" href="https://github.com/refactoringhq/tolaria/pull/171">#171</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8aee1315d90b5a221e40ef28e8902d2d8879c5ea/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8aee1315d90b5a221e40ef28e8902d2d8879c5ea"><tt>8aee131</tt></a> fix: customize icon & color works for types without Type entry (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4010422141" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/173" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/173/hovercard" href="https://github.com/refactoringhq/tolaria/pull/173">#173</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e58f521262edb1952a006b22e5d758aca927ccac/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e58f521262edb1952a006b22e5d758aca927ccac"><tt>e58f521</tt></a> fix: back/forward nav arrows reopen replaced tabs instead of skipping them (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4010258877" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/172" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/172/hovercard" href="https://github.com/refactoringhq/tolaria/pull/172">#172</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/986965a28f94e9ef73ea695a2c118d207300b357/hovercard" href="https://github.com/refactoringhq/tolaria/commit/986965a28f94e9ef73ea695a2c118d207300b357"><tt>986965a</tt></a> feat: note templates per type (💡 Note templates per tipo) (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4009028400" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/170" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/170/hovercard" href="https://github.com/refactoringhq/tolaria/pull/170">#170</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7d563b28fd04629c2f6a0ff13a23f96294da0e01/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7d563b28fd04629c2f6a0ff13a23f96294da0e01"><tt>7d563b2</tt></a> feat: contextual AI chat on open note (Cmd+I) (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4008873789" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/169" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/169/hovercard" href="https://github.com/refactoringhq/tolaria/pull/169">#169</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/88954151f3d90b5d887120874becb0501c3f0a46/hovercard" href="https://github.com/refactoringhq/tolaria/commit/88954151f3d90b5d887120874becb0501c3f0a46"><tt>8895415</tt></a> feat: add daily note command — Cmd+J creates or opens today's journal note (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4008732104" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/168" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/168/hovercard" href="https://github.com/refactoringhq/tolaria/pull/168">#168</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9ec0e8a3a1bbe559a5c796993f1c5fd454b5f983/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9ec0e8a3a1bbe559a5c796993f1c5fd454b5f983"><tt>9ec0e8a</tt></a> fix: show new (untracked) notes in Changes view (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4008448797" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/161" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/161/hovercard" href="https://github.com/refactoringhq/tolaria/pull/161">#161</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8e2ca1e3a1f7ab34d30654a9c5b288242a9e1c7c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8e2ca1e3a1f7ab34d30654a9c5b288242a9e1c7c"><tt>8e2ca1e</tt></a> feat: enhance backlinks panel with collapsible section and paragraph context (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4008732025" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/167" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/167/hovercard" href="https://github.com/refactoringhq/tolaria/pull/167">#167</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ee6972113ad7766daa6f966aec8a7fbc14156f16/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ee6972113ad7766daa6f966aec8a7fbc14156f16"><tt>ee69721</tt></a> feat: allow custom sidebar label for type sections (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4008594974" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/165" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/165/hovercard" href="https://github.com/refactoringhq/tolaria/pull/165">#165</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/568f0aef4f8522e93ac76725da28eedb9293e1b1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/568f0aef4f8522e93ac76725da28eedb9293e1b1"><tt>568f0ae</tt></a> fix: increase tab max-width and add ellipsis truncation (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4008595324" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/166" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/166/hovercard" href="https://github.com/refactoringhq/tolaria/pull/166">#166</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2bcb36c7b432dba962462e137aaaac05ee2d979a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2bcb36c7b432dba962462e137aaaac05ee2d979a"><tt>2bcb36c</tt></a> feat: clicking section group header toggles collapse/expand (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4008594732" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/164" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/164/hovercard" href="https://github.com/refactoringhq/tolaria/pull/164">#164</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1a18de234063936e8ea800f9d2e2ba8d08f77b96/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1a18de234063936e8ea800f9d2e2ba8d08f77b96"><tt>1a18de2</tt></a> feat: show dynamic build number in status bar (bNNN format) (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4008448988" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/163" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/163/hovercard" href="https://github.com/refactoringhq/tolaria/pull/163">#163</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/36a421d42a993631f2de9ed3424fd7b9506d22e9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/36a421d42a993631f2de9ed3424fd7b9506d22e9"><tt>36a421d</tt></a> fix: preserve scroll position independently per editor tab (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4008448907" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/162" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/162/hovercard" href="https://github.com/refactoringhq/tolaria/pull/162">#162</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5937a4457e2004c72594189fe11d5c5eb0a98370/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5937a4457e2004c72594189fe11d5c5eb0a98370"><tt>5937a44</tt></a> ci: exclude Tauri boilerplate from Rust coverage check</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5fb7b12a118062100bd0c43f7efe6d7e49f42865/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5fb7b12a118062100bd0c43f7efe6d7e49f42865"><tt>5fb7b12</tt></a> fix: use camelCase arg keys for Tauri theme commands (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4008000281" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/160" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/160/hovercard" href="https://github.com/refactoringhq/tolaria/pull/160">#160</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e0c5753be6386aa8a85b045e79475f5b64467417/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e0c5753be6386aa8a85b045e79475f5b64467417"><tt>e0c5753</tt></a> feat: replace Anthropic API with Claude CLI for AI chat and agent panels (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4007993736" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/159" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/159/hovercard" href="https://github.com/refactoringhq/tolaria/pull/159">#159</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0b936304d5862cf1f2bda4bf75a0ef38ca2b5835/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0b936304d5862cf1f2bda4bf75a0ef38ca2b5835"><tt>0b93630</tt></a> feat: keyboard-first navigation — menu bar shortcuts, note list nav, inspector Tab/Enter (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4007948660" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/158" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/158/hovercard" href="https://github.com/refactoringhq/tolaria/pull/158">#158</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5782bd9dcb5f59a128d355e341fff476bce394f4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5782bd9dcb5f59a128d355e341fff476bce394f4"><tt>5782bd9</tt></a> fix: move update banner to bottom, white text on blue background</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5ba45fc557be8effab73771e2c11c89c76601c49/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5ba45fc557be8effab73771e2c11c89c76601c49"><tt>5ba45fc</tt></a> feat: add 'Open Vault…' command to command palette (Cmd+K)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/01d827fb5c89f48460d9de87e2fcb2ae05c98249/hovercard" href="https://github.com/refactoringhq/tolaria/commit/01d827fb5c89f48460d9de87e2fcb2ae05c98249"><tt>01d827f</tt></a> docs: add keyboard-first principle — every feature must be testable without mouse</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5efb0e4b878a15d582edf4f524f76c2b654c208b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5efb0e4b878a15d582edf4f524f76c2b654c208b"><tt>5efb0e4</tt></a> fix: remove http:default capability (plugin not installed)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/366991d5deea48580056dd839d5807878c5c5f5e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/366991d5deea48580056dd839d5807878c5c5f5e"><tt>366991d</tt></a> fix: switch to newly created theme after createTheme (New Theme command had no visible feedback)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/eac29628404634e842149a987c421c8b1d262f73/hovercard" href="https://github.com/refactoringhq/tolaria/commit/eac29628404634e842149a987c421c8b1d262f73"><tt>eac2962</tt></a> fix: add http:default capability to allow fetch to external APIs (Anthropic CORS fix) (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4006903149" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/157" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/157/hovercard" href="https://github.com/refactoringhq/tolaria/pull/157">#157</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b6c826b54aa39c022078f10623e6b7e297bbe1db/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b6c826b54aa39c022078f10623e6b7e297bbe1db"><tt>b6c826b</tt></a> fix(test): mock WebSocket in executeToolViaWs test to avoid jsdom/undici unhandled rejection</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cb214ea2b0eb12d3006d252e0b934e6065e33000/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cb214ea2b0eb12d3006d252e0b934e6065e33000"><tt>cb214ea</tt></a> fix: make 'New theme' command work in Tauri app (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4005702261" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/156" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/156/hovercard" href="https://github.com/refactoringhq/tolaria/pull/156">#156</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/264d4af5fcefd2b51f3429eb207d5cbf27da3e9c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/264d4af5fcefd2b51f3429eb207d5cbf27da3e9c"><tt>264d4af</tt></a> fix: call Anthropic API directly instead of /api/* dev proxy (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4005702198" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/155" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/155/hovercard" href="https://github.com/refactoringhq/tolaria/pull/155">#155</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3d0b4935de8afaeb1ea239d3c98552427455fd78/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3d0b4935de8afaeb1ea239d3c98552427455fd78"><tt>3d0b493</tt></a> docs: require QA on pnpm tauri dev, not browser mode</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fdb6a73b21ac3371b2abbac77aa3295f69a2a282/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fdb6a73b21ac3371b2abbac77aa3295f69a2a282"><tt>fdb6a73</tt></a> design: merge theming-system frames into ui-design.pen</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cae821ef4c07859350cb18cedfd52526eb557782/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cae821ef4c07859350cb18cedfd52526eb557782"><tt>cae821e</tt></a> feat: vault-native theming system with live reload (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4005531244" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/154" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/154/hovercard" href="https://github.com/refactoringhq/tolaria/pull/154">#154</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/06e42b182ef861cfca6fe2a9c1dd8a704d2675f9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/06e42b182ef861cfca6fe2a9c1dd8a704d2675f9"><tt>06e42b1</tt></a> fix: resolve TypeScript build errors in AI agent files</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/690dd6d841ee1a85296c1c24efcb6ba03122e9e2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/690dd6d841ee1a85296c1c24efcb6ba03122e9e2"><tt>690dd6d</tt></a> feat: wire AiPanel into EditorRightPanel with undo + coverage exclusions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e405ea74d9fe09378d41ae9d881564150947d009/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e405ea74d9fe09378d41ae9d881564150947d009"><tt>e405ea7</tt></a> feat: wire AI agent panel to Claude API with tool calling</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b610f1c673196892571e469fc8c7023eb49823e2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b610f1c673196892571e469fc8c7023eb49823e2"><tt>b610f1c</tt></a> fix: resolve wikilink paths and show entry title in Getting Started vault (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4005400128" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/153" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/153/hovercard" href="https://github.com/refactoringhq/tolaria/pull/153">#153</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2137de8bac7ad7e35418cb3139c3d82a90e33356/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2137de8bac7ad7e35418cb3139c3d82a90e33356"><tt>2137de8</tt></a> feat: seed AGENTS.md in Getting Started vault and expose via vault_context MCP tool (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4005358601" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/152" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/152/hovercard" href="https://github.com/refactoringhq/tolaria/pull/152">#152</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f3d0681306f077ee509d25f1ca85417ac6d97917/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f3d0681306f077ee509d25f1ca85417ac6d97917"><tt>f3d0681</tt></a> feat: auto-initialize git repo on Getting Started vault creation (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4005346702" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/151" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/151/hovercard" href="https://github.com/refactoringhq/tolaria/pull/151">#151</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9d0c549041bc2d7c03808339974431787fb7347c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9d0c549041bc2d7c03808339974431787fb7347c"><tt>9d0c549</tt></a> fix: drag-and-drop images into editor — add drop overlay and copy-to-attachments (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4005287769" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/150" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/150/hovercard" href="https://github.com/refactoringhq/tolaria/pull/150">#150</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/aeb4f640c5227b169c45d11c73eab9b6fff97569/hovercard" href="https://github.com/refactoringhq/tolaria/commit/aeb4f640c5227b169c45d11c73eab9b6fff97569"><tt>aeb4f64</tt></a> feat: AI agent panel UI — 3-layer panel with action cards and WebSocket activity hook (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4005287718" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/149" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/149/hovercard" href="https://github.com/refactoringhq/tolaria/pull/149">#149</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e1e4b23a55de1e9dbc8f3561bedba8f5d23b43a2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e1e4b23a55de1e9dbc8f3561bedba8f5d23b43a2"><tt>e1e4b23</tt></a> fix: derive sidebar type sections dynamically from vault entries</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/daae171d6eb20fb5ed699ed05ffdfdc136ef94d6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/daae171d6eb20fb5ed699ed05ffdfdc136ef94d6"><tt>daae171</tt></a> docs: add VISION.md — core principles and long-term direction</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/324e389fd088340c6ce555a9beafebd98f8333ff/hovercard" href="https://github.com/refactoringhq/tolaria/commit/324e389fd088340c6ce555a9beafebd98f8333ff"><tt>324e389</tt></a> fix: tags in properties — X button doesn't reserve space, fades in on hover without expanding pill (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4005235397" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/148" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/148/hovercard" href="https://github.com/refactoringhq/tolaria/pull/148">#148</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c1a3208485a8a40f9896cfa4feaff91379682e3b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c1a3208485a8a40f9896cfa4feaff91379682e3b"><tt>c1a3208</tt></a> style: fix rustfmt formatting in lib.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ab4a2437ee6f6b8e56042c2c76fe6791406c0da8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ab4a2437ee6f6b8e56042c2c76fe6791406c0da8"><tt>ab4a243</tt></a> fix: shift tab bar right when sidebar+notelist collapsed to avoid traffic lights overlap</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/793c3dceb6e61b1bb3cba9e947d5f9d379f3fde9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/793c3dceb6e61b1bb3cba9e947d5f9d379f3fde9"><tt>793c3dc</tt></a> test: add spawn_ws_bridge test to push Rust coverage above 85%</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2bd9cd91dd47a38656cc6705cde6aecf959e7845/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2bd9cd91dd47a38656cc6705cde6aecf959e7845"><tt>2bd9cd9</tt></a> docs: update architecture with full MCP server tool surface and auto-registration</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d7f1fb31be375323211e90dbd381c120a6ef7daa/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d7f1fb31be375323211e90dbd381c120a6ef7daa"><tt>d7f1fb3</tt></a> feat: MCP server foundation with full tool surface and auto-registration</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9f3c36eaded74596eea2c035643cdafb532b305e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9f3c36eaded74596eea2c035643cdafb532b305e"><tt>9f3c36e</tt></a> docs: add design file for notes-type-icon-search fix</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/eb574ca2750cad4b03235249e8232365928b6309/hovercard" href="https://github.com/refactoringhq/tolaria/commit/eb574ca2750cad4b03235249e8232365928b6309"><tt>eb574ca</tt></a> fix: show type icon and label for "Note" type in search and autocomplete</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cbfcb9d03ab9677bf5f7e510399c52011b8777ed/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cbfcb9d03ab9677bf5f7e510399c52011b8777ed"><tt>cbfcb9d</tt></a> fix: show actual type icons in Properties panel TypeSelector (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4005179254" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/147" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/147/hovercard" href="https://github.com/refactoringhq/tolaria/pull/147">#147</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/75f68a80b444c92674abaf6021b0f3f987861f73/hovercard" href="https://github.com/refactoringhq/tolaria/commit/75f68a80b444c92674abaf6021b0f3f987861f73"><tt>75f68a8</tt></a> fix: hide type note from note list, make header clickable to access it</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e0b8f66bc68e45141086d37cd0de0fba62dd8527/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e0b8f66bc68e45141086d37cd0de0fba62dd8527"><tt>e0b8f66</tt></a> ci: trigger release with GitHub Pages updater endpoint</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3e87cd7148026c231f80f1c108771604b6df175d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3e87cd7148026c231f80f1c108771604b6df175d"><tt>3e87cd7</tt></a> fix: serve latest.json via GitHub Pages for auto-updater endpoint</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/12f1e1e6e34f43d41d00e31024ff2d28d0c706f7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/12f1e1e6e34f43d41d00e31024ff2d28d0c706f7"><tt>12f1e1e</tt></a> fix: expand tilde in vault paths before passing to git and file system ops</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c2e064000d1a25bc5acd2bc1751eb3331b041e1e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c2e064000d1a25bc5acd2bc1751eb3331b041e1e"><tt>c2e0640</tt></a> feat: update app icon (green cloud + home)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fac1fefcf7fabf08c80409552fe8195609186232/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fac1fefcf7fabf08c80409552fe8195609186232"><tt>fac1fef</tt></a> feat: type-aware commands in Command Palette (New/List [Type])</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9338356e2059edf57de1921fe648f0b0d1d9e034/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9338356e2059edf57de1921fe648f0b0d1d9e034"><tt>9338356</tt></a> design: command palette type-aware autocomplete mockups</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7a606f0ba62d01d010b42be44f6ccfd37f627e8a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7a606f0ba62d01d010b42be44f6ccfd37f627e8a"><tt>7a606f0</tt></a> fix: search results — type icon on left, type label aligned right (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4004942267" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/138" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/138/hovercard" href="https://github.com/refactoringhq/tolaria/pull/138">#138</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/184055ccc8e44d8f82a1360131a2fa1fcae46b56/hovercard" href="https://github.com/refactoringhq/tolaria/commit/184055ccc8e44d8f82a1360131a2fa1fcae46b56"><tt>184055c</tt></a> feat: update app icon (tree/house cloud design)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4e93e1ea952b7aee59754a661d211e0876896a52/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4e93e1ea952b7aee59754a661d211e0876896a52"><tt>4e93e1e</tt></a> design: merge github-oauth-fix frames into ui-design.pen</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/18cef0b002abd3b3b3c66814943adca180667890/hovercard" href="https://github.com/refactoringhq/tolaria/commit/18cef0b002abd3b3b3c66814943adca180667890"><tt>18cef0b</tt></a> fix: inline GitHub OAuth device flow in Connect GitHub modal (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4004626405" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/136" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/136/hovercard" href="https://github.com/refactoringhq/tolaria/pull/136">#136</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/074c22286c5d6a17a52a07a7612b3d26e1869442/hovercard" href="https://github.com/refactoringhq/tolaria/commit/074c22286c5d6a17a52a07a7612b3d26e1869442"><tt>074c222</tt></a> style: cargo fmt (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4004584345" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/135" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/135/hovercard" href="https://github.com/refactoringhq/tolaria/pull/135">#135</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9385cbd9f01fb2f76f05749dd45fd28155bc1a81/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9385cbd9f01fb2f76f05749dd45fd28155bc1a81"><tt>9385cbd</tt></a> fix: use Tauri opener plugin for GitHub OAuth browser launch</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4cf86978122dbfe332ca6457b9b291e4305d9581/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4cf86978122dbfe332ca6457b9b291e4305d9581"><tt>4cf8697</tt></a> design: add GitHub OAuth device code UI frames</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ef3e39785adbc3ff3ba7c74f413528f0c9662e69/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ef3e39785adbc3ff3ba7c74f413528f0c9662e69"><tt>ef3e397</tt></a> ci: trigger release with correct Developer ID certificate</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b03d6df8a9ebfa0b0e3f1829c5465d9a00bb8df3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b03d6df8a9ebfa0b0e3f1829c5465d9a00bb8df3"><tt>b03d6df</tt></a> ci: temporarily disable notarization (awaiting new certificate)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2aef46709d3fc4b6931919c83368508978cebdc1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2aef46709d3fc4b6931919c83368508978cebdc1"><tt>2aef467</tt></a> feat: integrate welcome screen with tests and fix App tests</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/99fcd2775f1c99496667301ab8bc6afaaf8149a6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/99fcd2775f1c99496667301ab8bc6afaaf8149a6"><tt>99fcd27</tt></a> feat: add Rust backend for Getting Started vault creation</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/54e5b2a5b2dcf781851fba281a005205640974e1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/54e5b2a5b2dcf781851fba281a005205640974e1"><tt>54e5b2a</tt></a> docs: add design file for Getting Started vault welcome screens</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/33b851c4ab8ac16f612d3e66468c20f71b967259/hovercard" href="https://github.com/refactoringhq/tolaria/commit/33b851c4ab8ac16f612d3e66468c20f71b967259"><tt>33b851c</tt></a> design: merge tags-property-type + zoom-shortcuts frames into ui-design.pen</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cc00e7f137dbaba7d959ba39bcb46892e6937af1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cc00e7f137dbaba7d959ba39bcb46892e6937af1"><tt>cc00e7f</tt></a> fix: useRef type for debounce timer (TS 5.9 compatibility)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fb4896f49fecfe1b85730e9c0aeeadff6601ee23/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fb4896f49fecfe1b85730e9c0aeeadff6601ee23"><tt>fb4896f</tt></a> feat: zoom in/out keyboard shortcuts (Cmd+=, Cmd+-, Cmd+0) (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4004514958" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/134" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/134/hovercard" href="https://github.com/refactoringhq/tolaria/pull/134">#134</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8388029cfb85ee0092ecc893fc145c9c7895d055/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8388029cfb85ee0092ecc893fc145c9c7895d055"><tt>8388029</tt></a> fix: use number | undefined for debounce timer ref (TS strict compat)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/84c9f26364d3f7bef0afec00612234047751f36f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/84c9f26364d3f7bef0afec00612234047751f36f"><tt>84c9f26</tt></a> feat: add tags (multi-select) property type (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4004504802" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/133" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/133/hovercard" href="https://github.com/refactoringhq/tolaria/pull/133">#133</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/222a9ff2dd4285b476d0c619a2943b12721599ca/hovercard" href="https://github.com/refactoringhq/tolaria/commit/222a9ff2dd4285b476d0c619a2943b12721599ca"><tt>222a9ff</tt></a> design: merge relationship-x-cosmetic frames into ui-design.pen</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c3e980413260d51b8a8706eceb8c1fbc02da8ac0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c3e980413260d51b8a8706eceb8c1fbc02da8ac0"><tt>c3e9804</tt></a> fix: useRef type for debounce timer (pre-existing build error on main) (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4004470744" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/132" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/132/hovercard" href="https://github.com/refactoringhq/tolaria/pull/132">#132</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/acd4112c64bfd0a36584d638a278c4f2db91c3b6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/acd4112c64bfd0a36584d638a278c4f2db91c3b6"><tt>acd4112</tt></a> fix: remove invalid notarization field from tauri.conf.json (Tauri v2 uses env vars)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/89fbe15c9daf8bdae9cbe36e20b4945e75b019c8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/89fbe15c9daf8bdae9cbe36e20b4945e75b019c8"><tt>89fbe15</tt></a> ci: fix notarization — use Tauri v2 env vars (APPLE_CERTIFICATE + APPLE_SIGNING_IDENTITY)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ce83151e000123a0c53c8c6793189047bc697c18/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ce83151e000123a0c53c8c6793189047bc697c18"><tt>ce83151</tt></a> ci: trigger release with notarization</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3182fbecee03fe7d154c1f4a9b91d027ba869bdf/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3182fbecee03fe7d154c1f4a9b91d027ba869bdf"><tt>3182fbe</tt></a> ci: add Apple notarization to release workflow (awaiting certificate)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a1ece6f39574380867ed0488d66e1763c3fa48be/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a1ece6f39574380867ed0488d66e1763c3fa48be"><tt>a1ece6f</tt></a> feat: sync note title with H1 heading (predictive title)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0948bdb4faaad05b781884c51d2edf62cfe34109/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0948bdb4faaad05b781884c51d2edf62cfe34109"><tt>0948bdb</tt></a> fix: property panel responsive layout + status dropdown click regression</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cbbea2c174542db482e505cf87b83ef13d5bc5a9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cbbea2c174542db482e505cf87b83ef13d5bc5a9"><tt>cbbea2c</tt></a> fix: properties panel bar height matches breadcrumb bar</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d889c4f8760fb4f3e6f169072e11d186a87ec565/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d889c4f8760fb4f3e6f169072e11d186a87ec565"><tt>d889c4f</tt></a> fix: search results — type icon on left, type label aligned right</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e541c1f21f4aebbca651f383839df14a23f3fe05/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e541c1f21f4aebbca651f383839df14a23f3fe05"><tt>e541c1f</tt></a> fix: reverse relationships — remove header, arrow prefix, dotted underline on hover</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c1819c40bb709b3d80437f0821d94e330d09c5ab/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c1819c40bb709b3d80437f0821d94e330d09c5ab"><tt>c1819c4</tt></a> fix: type selector dropdown shows colored icons per type</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fe79e6131eefcd07fb3de3528f171988df105ac2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fe79e6131eefcd07fb3de3528f171988df105ac2"><tt>fe79e61</tt></a> fix: relationship item input height consistency + X button overlay on hover</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0cfce651a8c97df0b4a93ffc311dc6ba9887dc47/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0cfce651a8c97df0b4a93ffc311dc6ba9887dc47"><tt>0cfce65</tt></a> fix: tags X button appears on hover without expanding pill width</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2f56fad3d73d2c4f2f1772acbd525055f74ff3d6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2f56fad3d73d2c4f2f1772acbd525055f74ff3d6"><tt>2f56fad</tt></a> fix: make new note editor immediately interactive</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/52e1e3f73b2df4d9cfbd664f4eab34577f9fe036/hovercard" href="https://github.com/refactoringhq/tolaria/commit/52e1e3f73b2df4d9cfbd664f4eab34577f9fe036"><tt>52e1e3f</tt></a> fix: multiselect uses only Shift+click; add Cmd+Del/Cmd+E bulk actions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/44f49e2d94294524b0d9ff576d75091d40307b0a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/44f49e2d94294524b0d9ff576d75091d40307b0a"><tt>44f49e2</tt></a> fix: restore status dropdown click + color picker per status value</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2ff54674750451b801242465b5ab503330d64680/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2ff54674750451b801242465b5ab503330d64680"><tt>2ff5467</tt></a> fix: add traffic light clearance to note list header when sidebar is collapsed</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5e6d2fd10847f51f5e72e14e4d250af52394c87b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5e6d2fd10847f51f5e72e14e4d250af52394c87b"><tt>5e6d2fd</tt></a> fix: update Tauri signing pubkey (new keypair, password stored securely)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ac81eafc0790439ec6708534199a6e79764285a7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ac81eafc0790439ec6708534199a6e79764285a7"><tt>ac81eaf</tt></a> fix: update Tauri signing pubkey to match new keypair (empty password)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/05aa6f63651644b5e3a0f5b40503f22e540678ed/hovercard" href="https://github.com/refactoringhq/tolaria/commit/05aa6f63651644b5e3a0f5b40503f22e540678ed"><tt>05aa6f6</tt></a> fix: update Tauri signing pubkey (regenerated keypair with empty password)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/55018b86814c7869c8a88d73f9fa2e602b10ecd3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/55018b86814c7869c8a88d73f9fa2e602b10ecd3"><tt>55018b8</tt></a> fix: use TAURI_KEY_PASSWORD secret for signing (was hardcoded empty string)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c3f71f73dd3b836719c9f23680c78486ae91b572/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c3f71f73dd3b836719c9f23680c78486ae91b572"><tt>c3f71f7</tt></a> chore: add .claude-done for pencil-ui-design-light-mode verification</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/21c0c12dcbe4c94f366d579fe878fa6627816570/hovercard" href="https://github.com/refactoringhq/tolaria/commit/21c0c12dcbe4c94f366d579fe878fa6627816570"><tt>21c0c12</tt></a> design: add theme Light to 25 dark-mode frames, remove before variants</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/29fddea2f0329f8989d85fd7b537b84e5cdc3df3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/29fddea2f0329f8989d85fd7b537b84e5cdc3df3"><tt>29fddea</tt></a> design: fix search panel overlay layout positioning</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a3b7305e5108f2115b0190eb22ca77299081a4e4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a3b7305e5108f2115b0190eb22ca77299081a4e4"><tt>a3b7305</tt></a> fix: use portal-based positioning for property panel dropdowns (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4002119303" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/130" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/130/hovercard" href="https://github.com/refactoringhq/tolaria/pull/130">#130</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c03bc895a6e6ddd336eb195130049a1fe39c9a70/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c03bc895a6e6ddd336eb195130049a1fe39c9a70"><tt>c03bc89</tt></a> design: update new-note-creation.pen for unsaved state</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/30ca211bb0d1a23127843a056da8aa4fb35d0a8b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/30ca211bb0d1a23127843a056da8aa4fb35d0a8b"><tt>30ca211</tt></a> feat: in-memory unsaved state for new notes (Cmd+N)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f3dcaadca83fe158857b2c8a4099915f395ce0d8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f3dcaadca83fe158857b2c8a4099915f395ce0d8"><tt>f3dcaad</tt></a> feat: replace search result snippet with metadata subtitle</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6e359d5b9b8a0e19acc1fd4ca938bba1ef0fa12e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6e359d5b9b8a0e19acc1fd4ca938bba1ef0fa12e"><tt>6e359d5</tt></a> design: search results subtitle with metadata frames</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/24791738d11a9cf56c287b0bdc81616972a61ac9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/24791738d11a9cf56c287b0bdc81616972a61ac9"><tt>2479173</tt></a> chore: add src-tauri/target to .gitignore</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e9f42f7953295d5458fd854778fd18f57dd305dd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e9f42f7953295d5458fd854778fd18f57dd305dd"><tt>e9f42f7</tt></a> fix: remove accidental src-tauri/target symlink from repo</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/43e8fc764a240caefd184eee83d5dda7e68861e4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/43e8fc764a240caefd184eee83d5dda7e68861e4"><tt>43e8fc7</tt></a> fix: property dropdowns adapt to narrow panel width</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/15089a6e4849ced7a6c6f7338a2e3164bc725452/hovercard" href="https://github.com/refactoringhq/tolaria/commit/15089a6e4849ced7a6c6f7338a2e3164bc725452"><tt>15089a6</tt></a> fix: unify status dropdown and make color swatch visible (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4001681162" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/128" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/128/hovercard" href="https://github.com/refactoringhq/tolaria/pull/128">#128</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9de3cecaa25e94f63a0daa5b7359fd1e05c94b73/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9de3cecaa25e94f63a0daa5b7359fd1e05c94b73"><tt>9de3cec</tt></a> fix: multiselect range includes anchor note and prevents text selection (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4001680859" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/127" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/127/hovercard" href="https://github.com/refactoringhq/tolaria/pull/127">#127</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a990b24861230e3f5c6484a2244f9baf23efbd9e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a990b24861230e3f5c6484a2244f9baf23efbd9e"><tt>a990b24</tt></a> fix: raise property type dropdown z-index above BlockNote editor</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d202268ed39b684aa6fec747904e255eef2a2cda/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d202268ed39b684aa6fec747904e255eef2a2cda"><tt>d202268</tt></a> perf: optimize pre-push hook from ~12min to ~30s</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e5f3746e8e2648456e9ed22a7bf0157f2edfbe25/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e5f3746e8e2648456e9ed22a7bf0157f2edfbe25"><tt>e5f3746</tt></a> fix: deduplicate search results by path in useUnifiedSearch</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/142ff54e5a118f4cf8618ca730265a0af32c1a2c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/142ff54e5a118f4cf8618ca730265a0af32c1a2c"><tt>142ff54</tt></a> fix: apply 3 pending fixes directly to main</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/707546c1dfeda94f56fd8a120b3cd5b1d92fca0a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/707546c1dfeda94f56fd8a120b3cd5b1d92fca0a"><tt>707546c</tt></a> fix: remove unsupported --silent flag from vite build in pre-push hook</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/91cff383f3c87236811882864437ea86a2e6aea7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/91cff383f3c87236811882864437ea86a2e6aea7"><tt>91cff38</tt></a> ci: replace remote CI with local pre-push hook</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/95cbf1a73cbec1f8d240fb09e8aa78800658b94f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/95cbf1a73cbec1f8d240fb09e8aa78800658b94f"><tt>95cbf1a</tt></a> ci: trigger GitHub Actions run</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/47acd1c30d95c86e39b411458ffe061189925eeb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/47acd1c30d95c86e39b411458ffe061189925eeb"><tt>47acd1c</tt></a> feat: status color picker — assign persistent color per status value (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4001066171" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/120" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/120/hovercard" href="https://github.com/refactoringhq/tolaria/pull/120">#120</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4e6bbf4b88e080b3ab37c70094f1bcc8dfad14a0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4e6bbf4b88e080b3ab37c70094f1bcc8dfad14a0"><tt>4e6bbf4</tt></a> fix: revert notelist subtitle to show snippet instead of metadata (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4001065590" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/118" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/118/hovercard" href="https://github.com/refactoringhq/tolaria/pull/118">#118</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a5c2d26508c28796190d5e9a618685dbd706f3c0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a5c2d26508c28796190d5e9a618685dbd706f3c0"><tt>a5c2d26</tt></a> fix: unify type selector dropdown to match add-property style (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4001067188" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/123" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/123/hovercard" href="https://github.com/refactoringhq/tolaria/pull/123">#123</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5941f16d06f939e25d0748d1d997ca4a14f1d068/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5941f16d06f939e25d0748d1d997ca4a14f1d068"><tt>5941f16</tt></a> refactor: decompose Editor.tsx, NoteList.tsx, Sidebar.tsx — CodeScene hotspots (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4001079409" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/126" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/126/hovercard" href="https://github.com/refactoringhq/tolaria/pull/126">#126</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/190ae6420d477323edec37222168cda4add3f5ad/hovercard" href="https://github.com/refactoringhq/tolaria/commit/190ae6420d477323edec37222168cda4add3f5ad"><tt>190ae64</tt></a> refactor: clean up ui-design.pen — remove befores, integrate design files (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4001066851" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/122" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/122/hovercard" href="https://github.com/refactoringhq/tolaria/pull/122">#122</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/80dd525898c4d355d237979b2b75bd81ef11c0e5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/80dd525898c4d355d237979b2b75bd81ef11c0e5"><tt>80dd525</tt></a> refactor: extract SearchResultItem and SearchResultsList from SearchContent (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4001067953" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/124" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/124/hovercard" href="https://github.com/refactoringhq/tolaria/pull/124">#124</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f3629e24d5df50bfc6ec54f2330114d198b90ead/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f3629e24d5df50bfc6ec54f2330114d198b90ead"><tt>f3629e2</tt></a> feat: add multi-select notes with bulk archive and trash actions (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4001068292" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/125" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/125/hovercard" href="https://github.com/refactoringhq/tolaria/pull/125">#125</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6602763805a09eedda01e383604bd1c238a95360/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6602763805a09eedda01e383604bd1c238a95360"><tt>6602763</tt></a> ci: auto-update open PR branches when main advances</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/eee0316b26472925cf5e3262095cd876a9206b8e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/eee0316b26472925cf5e3262095cd876a9206b8e"><tt>eee0316</tt></a> fix: use Tauri opener plugin for git commit link in status bar (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4001065228" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/117" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/117/hovercard" href="https://github.com/refactoringhq/tolaria/pull/117">#117</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c4c806c9a8d89edc966ddf0d6ea11280d3987d2c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c4c806c9a8d89edc966ddf0d6ea11280d3987d2c"><tt>c4c806c</tt></a> ci: switch from self-hosted to macos-15 GitHub runners</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/175bcb3eb8d79e92040bdd03986c68482df102cd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/175bcb3eb8d79e92040bdd03986c68482df102cd"><tt>175bcb3</tt></a> ci: add Rust dependency cache to speed up PR checks</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6baa7795df613580790f3e85844c86c8eed86ee7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6baa7795df613580790f3e85844c86c8eed86ee7"><tt>6baa779</tt></a> feat: new note creation — unsaved/in-memory state before first save (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4000724716" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/112" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/112/hovercard" href="https://github.com/refactoringhq/tolaria/pull/112">#112</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/87f847b71036cc18dabeb10863e2de500c15ba22/hovercard" href="https://github.com/refactoringhq/tolaria/commit/87f847b71036cc18dabeb10863e2de500c15ba22"><tt>87f847b</tt></a> feat: type-aware property value inputs — date picker, boolean toggle, status dropdown (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4000589264" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/110" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/110/hovercard" href="https://github.com/refactoringhq/tolaria/pull/110">#110</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/268b87cec255c141e3152aee323d8b2bf597dedc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/268b87cec255c141e3152aee323d8b2bf597dedc"><tt>268b87c</tt></a> ci: isolate pnpm store per runner to prevent concurrent corruption</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cdb9de59bbf2b359650c8b9bbe042d1c5eb2b483/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cdb9de59bbf2b359650c8b9bbe042d1c5eb2b483"><tt>cdb9de5</tt></a> fix: remove duplicate type icon in add-property input (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4000450600" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/107" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/107/hovercard" href="https://github.com/refactoringhq/tolaria/pull/107">#107</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/82b60f134955c6c94f800532c8c5b022ff47a670/hovercard" href="https://github.com/refactoringhq/tolaria/commit/82b60f134955c6c94f800532c8c5b022ff47a670"><tt>82b60f1</tt></a> fix: resolve Calendar identifier conflict in DynamicPropertiesPanel</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f0193892126be11337b6b8f1000fe610555586a0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f0193892126be11337b6b8f1000fe610555586a0"><tt>f019389</tt></a> chore: remove coverage report and screenshot from git tracking (should be gitignored)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/02a04ec1001c3ad80a17915c4507d9d072a42dfa/hovercard" href="https://github.com/refactoringhq/tolaria/commit/02a04ec1001c3ad80a17915c4507d9d072a42dfa"><tt>02a04ec</tt></a> refactor: extract useEditorTabSwap hook from Editor — reduce complexity (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3999296916" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/102" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/102/hovercard" href="https://github.com/refactoringhq/tolaria/pull/102">#102</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9145023b778b57fa26aca934ab3f2fb226ec19a1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9145023b778b57fa26aca934ab3f2fb226ec19a1"><tt>9145023</tt></a> test: fix 5 failing tests after react-day-picker addition (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3998094989" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/101" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/101/hovercard" href="https://github.com/refactoringhq/tolaria/pull/101">#101</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8e5cbb2a345ea489c32e5b249a39670b87a3c9cc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8e5cbb2a345ea489c32e5b249a39670b87a3c9cc"><tt>8e5cbb2</tt></a> feat: note subtitle — show metadata (date + word count) (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3994391629" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/94" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/94/hovercard" href="https://github.com/refactoringhq/tolaria/pull/94">#94</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c177dd2e99afce8f42d84b6c1cdcdb6984026061/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c177dd2e99afce8f42d84b6c1cdcdb6984026061"><tt>c177dd2</tt></a> fix: hide empty Backlinks, Relations, and Referenced By sections (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3994688930" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/99" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/99/hovercard" href="https://github.com/refactoringhq/tolaria/pull/99">#99</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ba2c1e5b4bc1eacf71fbdeec1d370fcd175923b1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ba2c1e5b4bc1eacf71fbdeec1d370fcd175923b1"><tt>ba2c1e5</tt></a> feat: git status bar — show last commit link, remove branch name (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3994391231" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/92" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/92/hovercard" href="https://github.com/refactoringhq/tolaria/pull/92">#92</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fc1badc150323a6271e8108b91b284b3a18fab75/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fc1badc150323a6271e8108b91b284b3a18fab75"><tt>fc1badc</tt></a> revert: remove titlebar color darkening — superseded by custom drag region (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3994126975" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/88" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/88/hovercard" href="https://github.com/refactoringhq/tolaria/pull/88">#88</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5dddf532f7e0a48082ddb057d43b8a3cbc5e14e5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5dddf532f7e0a48082ddb057d43b8a3cbc5e14e5"><tt>5dddf53</tt></a> design: add 4 full-layout frames showing app in different states (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3994541798" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/96" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/96/hovercard" href="https://github.com/refactoringhq/tolaria/pull/96">#96</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/97d23cbf5204176511abb190b7c495a67f5221fe/hovercard" href="https://github.com/refactoringhq/tolaria/commit/97d23cbf5204176511abb190b7c495a67f5221fe"><tt>97d23cb</tt></a> feat: replace custom date picker with shadcn/ui Calendar + Popover (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3994682114" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/98" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/98/hovercard" href="https://github.com/refactoringhq/tolaria/pull/98">#98</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f351ed9a1d68279f13e4968001598c31b0f53387/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f351ed9a1d68279f13e4968001598c31b0f53387"><tt>f351ed9</tt></a> feat: use light type color as background for note type labels (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3994391442" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/93" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/93/hovercard" href="https://github.com/refactoringhq/tolaria/pull/93">#93</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/943f6e3bc71883dcfacf09e856381595c619c951/hovercard" href="https://github.com/refactoringhq/tolaria/commit/943f6e3bc71883dcfacf09e856381595c619c951"><tt>943f6e3</tt></a> feat: structured design system in ui-design.pen (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3994403338" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/95" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/95/hovercard" href="https://github.com/refactoringhq/tolaria/pull/95">#95</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c0240c5d84e7d260e6248b9a73ff44b61e869837/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c0240c5d84e7d260e6248b9a73ff44b61e869837"><tt>c0240c5</tt></a> design: merge add-property-inline frames into ui-design.pen</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f842f2b580b064dae24bd21b5fd4f4d5ba450a32/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f842f2b580b064dae24bd21b5fd4f4d5ba450a32"><tt>f842f2b</tt></a> feat: redesign Add Property as inline horizontal form with type selector (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3994834002" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/100" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/100/hovercard" href="https://github.com/refactoringhq/tolaria/pull/100">#100</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/72295dadaee1ff9484c240c17e74c93842d630e4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/72295dadaee1ff9484c240c17e74c93842d630e4"><tt>72295da</tt></a> design: merge status-property-dropdown frames into ui-design.pen</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2907bc592eb2530a61e411311f67a46a619d7499/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2907bc592eb2530a61e411311f67a46a619d7499"><tt>2907bc5</tt></a> feat: status property — Notion-style dropdown with color chips (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3994545922" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/97" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/97/hovercard" href="https://github.com/refactoringhq/tolaria/pull/97">#97</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8fbaff792bb53cd180639445446124c236408d8b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8fbaff792bb53cd180639445446124c236408d8b"><tt>8fbaff7</tt></a> fix: defer vault entries update via startTransition for instant tab creation (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3994224057" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/90" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/90/hovercard" href="https://github.com/refactoringhq/tolaria/pull/90">#90</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/981784270a71e0292f20462ba51268ad4adc5a6a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/981784270a71e0292f20462ba51268ad4adc5a6a"><tt>9817842</tt></a> fix: add devtools feature to tauri for open_devtools() support</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bd65a4b8bc45868bbc64c66d4021cc82175921b1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bd65a4b8bc45868bbc64c66d4021cc82175921b1"><tt>bd65a4b</tt></a> design: design system proposal + canvas reorganization</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/410f8b953c1ca52426069578e3228155c0604c94/hovercard" href="https://github.com/refactoringhq/tolaria/commit/410f8b953c1ca52426069578e3228155c0604c94"><tt>410f8b9</tt></a> fix: restore properties panel header height to match tab bar (52px) (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3994120183" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/87" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/87/hovercard" href="https://github.com/refactoringhq/tolaria/pull/87">#87</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cb8efa7b0f30aa39df872f59416c9f933fbd6541/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cb8efa7b0f30aa39df872f59416c9f933fbd6541"><tt>cb8efa7</tt></a> fix: resolve custom type color and icon in all autocomplete contexts (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3991815084" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/84" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/84/hovercard" href="https://github.com/refactoringhq/tolaria/pull/84">#84</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/25a297007b363ba47a0d4c53c45fd33fa8fde290/hovercard" href="https://github.com/refactoringhq/tolaria/commit/25a297007b363ba47a0d4c53c45fd33fa8fde290"><tt>25a2970</tt></a> fix: deduplicate inspector panels (Relations, Backlinks, Referenced By) (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3991656984" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/82" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/82/hovercard" href="https://github.com/refactoringhq/tolaria/pull/82">#82</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e96158495c2a1ab06bbf22451ec6cb16d103bfdc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e96158495c2a1ab06bbf22451ec6cb16d103bfdc"><tt>e961584</tt></a> feat: darken title bar headers for visual separation from content (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3991815502" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/85" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/85/hovercard" href="https://github.com/refactoringhq/tolaria/pull/85">#85</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/369ecdc0095c9f31eafca051e5390dea709499c4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/369ecdc0095c9f31eafca051e5390dea709499c4"><tt>369ecdc</tt></a> feat: auto-pull vault changes from Git (background sync + conflict handling) (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3990621199" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/79" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/79/hovercard" href="https://github.com/refactoringhq/tolaria/pull/79">#79</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c85e343dd94395928696e927402efdf030a80444/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c85e343dd94395928696e927402efdf030a80444"><tt>c85e343</tt></a> feat: smart property display — type-aware rendering with display mode override (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3991814342" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/83" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/83/hovercard" href="https://github.com/refactoringhq/tolaria/pull/83">#83</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7ca5ee47b58d2d73f794817bf7a57e5fa2147bef/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7ca5ee47b58d2d73f794817bf7a57e5fa2147bef"><tt>7ca5ee4</tt></a> refactor: reorganize all 65 frames in ui-design.pen into logical grid (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3992077491" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/86" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/86/hovercard" href="https://github.com/refactoringhq/tolaria/pull/86">#86</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ac4db43fd52a12fee535a5ac1fec8a3544a6d1b4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ac4db43fd52a12fee535a5ac1fec8a3544a6d1b4"><tt>ac4db43</tt></a> perf: speed up Cmd+N note creation from ~150ms to ~16ms (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3991656736" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/81" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/81/hovercard" href="https://github.com/refactoringhq/tolaria/pull/81">#81</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9e9096857d504f285a0d7bd00bf87cec99d39f6c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9e9096857d504f285a0d7bd00bf87cec99d39f6c"><tt>9e90968</tt></a> chore: remove merged feature design files (frames live in ui-design.pen)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4224a918ed7d6db3471197b48286da1426d0333d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4224a918ed7d6db3471197b48286da1426d0333d"><tt>4224a91</tt></a> docs: update design workflow — light mode, frame layout, cleanup on merge</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0d6f83d36c225abbe1b3850c46f3c19981e027d6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0d6f83d36c225abbe1b3850c46f3c19981e027d6"><tt>0d6f83d</tt></a> feat: remove native titlebar, implement custom drag regions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a6d8cc2eb8d83238b54bf62691bba8a6920f664c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a6d8cc2eb8d83238b54bf62691bba8a6920f664c"><tt>a6d8cc2</tt></a> feat: unified search panel — progressive keyword+semantic results (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3991631353" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/80" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/80/hovercard" href="https://github.com/refactoringhq/tolaria/pull/80">#80</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7bcf8bc43b9ec8f1229e46e41e1b9626ae06e8ba/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7bcf8bc43b9ec8f1229e46e41e1b9626ae06e8ba"><tt>7bcf8bc</tt></a> ci: re-trigger release after fixing Tauri signing key secret</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8b8cfee9e02050d40166eb047ac03be11dad368f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8b8cfee9e02050d40166eb047ac03be11dad368f"><tt>8b8cfee</tt></a> fix: add missing outgoingLinks field to person mock entries</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/27f0adc1049eb847184fc19a4a156ab9c6b3180e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/27f0adc1049eb847184fc19a4a156ab9c6b3180e"><tt>27f0adc</tt></a> feat: populate macOS menu bar with native menus (File, Edit, View, Window) (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3990427769" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/77" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/77/hovercard" href="https://github.com/refactoringhq/tolaria/pull/77">#77</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/98f0e68e3843dc58e9162f293049cb82d7948b12/hovercard" href="https://github.com/refactoringhq/tolaria/commit/98f0e68e3843dc58e9162f293049cb82d7948b12"><tt>98f0e68</tt></a> feat: back/forward navigation between opened notes (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3990321095" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/75" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/75/hovercard" href="https://github.com/refactoringhq/tolaria/pull/75">#75</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5f0de0042753337f5661c8f20660ed8241d53e97/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5f0de0042753337f5661c8f20660ed8241d53e97"><tt>5f0de00</tt></a> fix: wrap Enter key assertion in waitFor to handle async state propagation in SearchPanel test</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3a85d47393da5ba1e7d951d678582fb1df5f3473/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3a85d47393da5ba1e7d951d678582fb1df5f3473"><tt>3a85d47</tt></a> fix: resolve conflict markers in InspectorPanels.tsx — take unified NoteSearchList approach</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e473b41692a5a7569757dfdf551b7e949e35e158/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e473b41692a5a7569757dfdf551b7e949e35e158"><tt>e473b41</tt></a> feat: unify note search into shared NoteSearchList + useNoteSearch</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/292cc68f6332c56f12a69cd381ae7090fd4c6446/hovercard" href="https://github.com/refactoringhq/tolaria/commit/292cc68f6332c56f12a69cd381ae7090fd4c6446"><tt>292cc68</tt></a> fix: use self-hosted runner for CI test job to avoid billing costs (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3989388427" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/67" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/67/hovercard" href="https://github.com/refactoringhq/tolaria/pull/67">#67</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/462b920da17ae942e2af85c05bed9362d62863d5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/462b920da17ae942e2af85c05bed9362d62863d5"><tt>462b920</tt></a> fix: show type label for all notes in wiki-link autocomplete (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3990321585" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/76" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/76/hovercard" href="https://github.com/refactoringhq/tolaria/pull/76">#76</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/48cf359eaad04e2f7f3d4e880954c8ab8ebf38ba/hovercard" href="https://github.com/refactoringhq/tolaria/commit/48cf359eaad04e2f7f3d4e880954c8ab8ebf38ba"><tt>48cf359</tt></a> feat: relations autocomplete shows note type badges (matching wiki-link UX) (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3990318956" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/74" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/74/hovercard" href="https://github.com/refactoringhq/tolaria/pull/74">#74</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/05ac689c2ff158a8872e72b3943b9609851cc84a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/05ac689c2ff158a8872e72b3943b9609851cc84a"><tt>05ac689</tt></a> fix: allow standard text shortcuts in command palette input (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3990179862" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/73" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/73/hovercard" href="https://github.com/refactoringhq/tolaria/pull/73">#73</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6e23fc2c62b5b86646ab74085479cd57b84bedb2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6e23fc2c62b5b86646ab74085479cd57b84bedb2"><tt>6e23fc2</tt></a> fix: restore Cmd+1/2/3 layout shortcuts (regression from App.tsx refactor) (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3990057010" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/71" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/71/hovercard" href="https://github.com/refactoringhq/tolaria/pull/71">#71</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/53846795ea717e95138a0c9e13f566624d73cbd9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/53846795ea717e95138a0c9e13f566624d73cbd9"><tt>5384679</tt></a> fix: cargo fmt</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2c8befab93c9e56c53d3ba174d62806295524de0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2c8befab93c9e56c53d3ba174d62806295524de0"><tt>2c8befa</tt></a> fix: make backlinks update reactively when wikilinks are added or removed</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fa4905989a3fe31acfaeb1e927056415b4cabfea/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fa4905989a3fe31acfaeb1e927056415b4cabfea"><tt>fa49059</tt></a> fix: remove double border-radius causing rounded corners below macOS title bar (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3990158072" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/72" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/72/hovercard" href="https://github.com/refactoringhq/tolaria/pull/72">#72</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2903196da600015ef55c9eb856d65c3e3c48ab81/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2903196da600015ef55c9eb856d65c3e3c48ab81"><tt>2903196</tt></a> feat: full-text search with qmd backend and SearchPanel UI (Cmd+Shift+F) (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3986318598" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/64" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/64/hovercard" href="https://github.com/refactoringhq/tolaria/pull/64">#64</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6b0ee4bf12691bf9a4f3637f47a2806325777311/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6b0ee4bf12691bf9a4f3637f47a2806325777311"><tt>6b0ee4b</tt></a> test: add tests for @mention autocomplete</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4fd1d97ac18428c51b1c7c09d30503f3b439c91e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4fd1d97ac18428c51b1c7c09d30503f3b439c91e"><tt>4fd1d97</tt></a> feat: add @mention autocomplete for Person entries</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4ff34725dea56fc79de7befb18ddb041da9c8e50/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4ff34725dea56fc79de7befb18ddb041da9c8e50"><tt>4ff3472</tt></a> design: person-mention wireframes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2f7689599b4b7b086d73f098a296290c5f679cf7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2f7689599b4b7b086d73f098a296290c5f679cf7"><tt>2f76895</tt></a> feat: add optimistic error recovery for note creation (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3989639362" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/69" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/69/hovercard" href="https://github.com/refactoringhq/tolaria/pull/69">#69</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ca9ede51d518fcfd4c757f18563e5c9744a3bb2c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ca9ede51d518fcfd4c757f18563e5c9744a3bb2c"><tt>ca9ede5</tt></a> fix: relation chips now show type color instead of default blue (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3989620692" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/68" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/68/hovercard" href="https://github.com/refactoringhq/tolaria/pull/68">#68</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f84ebbe6626215204999213bf0ff76ec9952fb7d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f84ebbe6626215204999213bf0ff76ec9952fb7d"><tt>f84ebbe</tt></a> refactor: split mock-tauri.ts into focused modules (8.81 → 10.0) (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3986684759" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/65" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/65/hovercard" href="https://github.com/refactoringhq/tolaria/pull/65">#65</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e48ac6a828190ed32937821fcf640d170396db91/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e48ac6a828190ed32937821fcf640d170396db91"><tt>e48ac6a</tt></a> refactor: improve code health in github.rs, mock-tauri.ts, lib.rs (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3986317443" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/63" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/63/hovercard" href="https://github.com/refactoringhq/tolaria/pull/63">#63</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/558f50e610c1aa42e2cb4cf13b75f38c2fcaa3e9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/558f50e610c1aa42e2cb4cf13b75f38c2fcaa3e9"><tt>558f50e</tt></a> refactor: extract hooks from App.tsx to improve code health (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3986311362" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/62" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/62/hovercard" href="https://github.com/refactoringhq/tolaria/pull/62">#62</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/131fe7dcd62d8eedd80b8459526055469b1fd79a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/131fe7dcd62d8eedd80b8459526055469b1fd79a"><tt>131fe7d</tt></a> design: merge full-text-search frames into ui-design.pen</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/af0492b82e24930b2cfb19b513fa549133be9dba/hovercard" href="https://github.com/refactoringhq/tolaria/commit/af0492b82e24930b2cfb19b513fa549133be9dba"><tt>af0492b</tt></a> fix: exclude title heading and wikilinks from word count</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0e144b5b40078a92c1d5a94163ae5ac5fe41e004/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0e144b5b40078a92c1d5a94163ae5ac5fe41e004"><tt>0e144b5</tt></a> fix: pass modifiedFiles to NoteList so Changes view filters correctly</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3f79d1631b5fb15394a1de18875228b5948083c8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3f79d1631b5fb15394a1de18875228b5948083c8"><tt>3f79d16</tt></a> fix: use Tauri opener plugin for URL property clicks</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c33495aa82ad8477401742018975619c08e2ea74/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c33495aa82ad8477401742018975619c08e2ea74"><tt>c33495a</tt></a> fix: debounce Cmd+N to prevent slow note creation on rapid keystrokes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e9e50a735638d1aeae49b2a94fa86a2d5f733feb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e9e50a735638d1aeae49b2a94fa86a2d5f733feb"><tt>e9e50a7</tt></a> fix: align Type row padding with other property rows in Properties panel</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a95625e2bb705d4febdc59fddfca832ca45c36f7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a95625e2bb705d4febdc59fddfca832ca45c36f7"><tt>a95625e</tt></a> fix: apply text-[12px] to URL values in Properties panel</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e40c4612d6340d39dd12df8bb87f7a446b00a3c9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e40c4612d6340d39dd12df8bb87f7a446b00a3c9"><tt>e40c461</tt></a> fix: apply rustfmt formatting</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1cabd55d08e2c25d2a12c87b9a283634caf43ebb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1cabd55d08e2c25d2a12c87b9a283634caf43ebb"><tt>1cabd55</tt></a> fix: use strip_prefix instead of manual slice to satisfy clippy::manual_strip</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6438c15113e1f3995abe3d8b8f2b8cd25d6b2b08/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6438c15113e1f3995abe3d8b8f2b8cd25d6b2b08"><tt>6438c15</tt></a> wip: fix rename for empty notes + add regression tests (uncommitted on process death)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/154aab50981b1617aa82fcefcc430734a75c55a4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/154aab50981b1617aa82fcefcc430734a75c55a4"><tt>154aab5</tt></a> test: add command palette and fuzzy match tests</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f51f061e91af4301f43dea6168f49cf70944bb71/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f51f061e91af4301f43dea6168f49cf70944bb71"><tt>f51f061</tt></a> docs: add design file for flat list autocomplete UI</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/765f26c3e50b29a40d4067546105cf99fa65a8dc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/765f26c3e50b29a40d4067546105cf99fa65a8dc"><tt>765f26c</tt></a> feat: replace grouped autocomplete with flat list and type badge</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5d24fdaef37d01f1c7fb868197c484dc93b380a1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5d24fdaef37d01f1c7fb868197c484dc93b380a1"><tt>5d24fda</tt></a> feat: add command palette with Cmd+K shortcut</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f8edad2ce355ce7f2fe9a067e484b0fd1de63e99/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f8edad2ce355ce7f2fe9a067e484b0fd1de63e99"><tt>f8edad2</tt></a> design: command-palette wireframes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/23afa89e2ad6182aa76573e9fa2a44176699c3ad/hovercard" href="https://github.com/refactoringhq/tolaria/commit/23afa89e2ad6182aa76573e9fa2a44176699c3ad"><tt>23afa89</tt></a> fix: derive green pallino from git status instead of in-memory tracker</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7ed9e30299f911f9358d49814908ae5daa271fd8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7ed9e30299f911f9358d49814908ae5daa271fd8"><tt>7ed9e30</tt></a> fix: deduplicate autocomplete suggestions and disambiguate same-title notes (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3985934889" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/54" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/54/hovercard" href="https://github.com/refactoringhq/tolaria/pull/54">#54</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4b4b64d845c701773004f1f0885a0b4cc6b4d57a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4b4b64d845c701773004f1f0885a0b4cc6b4d57a"><tt>4b4b64d</tt></a> fix: use type-defined colors and icons in Relations/Backlinks/ReferencedBy panels (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3985899355" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/49" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/49/hovercard" href="https://github.com/refactoringhq/tolaria/pull/49">#49</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2d9593cbfb650ccb4664f01ce34527af56f05842/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2d9593cbfb650ccb4664f01ce34527af56f05842"><tt>2d9593c</tt></a> fix: use type-defined colors and icons in Relations/Backlinks/ReferencedBy panels</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/dd6eb3405f95408f62aafce6f37b062495f15591/hovercard" href="https://github.com/refactoringhq/tolaria/commit/dd6eb3405f95408f62aafce6f37b062495f15591"><tt>dd6eb34</tt></a> docs: add current state snapshot to VISION.md</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4e02644cf86fe0ac6982c816f6fb291c8ab24e61/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4e02644cf86fe0ac6982c816f6fb291c8ab24e61"><tt>4e02644</tt></a> docs: add product vision document</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/76504d300a50f0e5bd779659d59cf900bed79a75/hovercard" href="https://github.com/refactoringhq/tolaria/commit/76504d300a50f0e5bd779659d59cf900bed79a75"><tt>76504d3</tt></a> design: merge differenzia-pallino frames into ui-design.pen</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/048391adcc770d6fe95c38e74977fdd8b7a3ae86/hovercard" href="https://github.com/refactoringhq/tolaria/commit/048391adcc770d6fe95c38e74977fdd8b7a3ae86"><tt>048391a</tt></a> fix: restore modifiedFiles/changes-filter support alongside getNoteStatus</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4f03751da5ce4e768e24e35033a9925fb2e6da8a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4f03751da5ce4e768e24e35033a9925fb2e6da8a"><tt>4f03751</tt></a> feat: distinguish new notes (green dot) from modified notes (orange dot)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0e9de3c1e21f6ac98a5e3b8920507a3832f75656/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0e9de3c1e21f6ac98a5e3b8920507a3832f75656"><tt>0e9de3c</tt></a> design: merge vista-changes frames into ui-design.pen</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/875d2fbea9ab8eefa4b642e4973ab2e225656895/hovercard" href="https://github.com/refactoringhq/tolaria/commit/875d2fbea9ab8eefa4b642e4973ab2e225656895"><tt>875d2fb</tt></a> design: icon-picker-sezioni wireframes (3 frames)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4c6bc91971650ebd8ea41d4a7d4619458c7b1b85/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4c6bc91971650ebd8ea41d4a7d4619458c7b1b85"><tt>4c6bc91</tt></a> feat: expand icon picker with ~290 icons, search, and scrollable grid</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/68b5b5fed3bc7995430834ba054c731f5df47d70/hovercard" href="https://github.com/refactoringhq/tolaria/commit/68b5b5fed3bc7995430834ba054c731f5df47d70"><tt>68b5b5f</tt></a> test: add tests for Changes view + design wireframes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7b02dc1f9dc3780f5d5e7900f2a1344f598810b5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7b02dc1f9dc3780f5d5e7900f2a1344f598810b5"><tt>7b02dc1</tt></a> feat: add Changes view for pending modifications</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/236ac1c00759cda46a7105d27383b677699d5e71/hovercard" href="https://github.com/refactoringhq/tolaria/commit/236ac1c00759cda46a7105d27383b677699d5e71"><tt>236ac1c</tt></a> fix: use consistent 12px text size for property values in Properties panel</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0d6b28570967797f41ecfd5551a0801c952a1c21/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0d6b28570967797f41ecfd5551a0801c952a1c21"><tt>0d6b285</tt></a> feat: raise CodeScene code health threshold to 9.2</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/55aff6057158b80437fdd667fee777fa0b29db67/hovercard" href="https://github.com/refactoringhq/tolaria/commit/55aff6057158b80437fdd667fee777fa0b29db67"><tt>55aff60</tt></a> design: merge url-property-click frames into ui-design.pen</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/dd9b30610026588d3cacb4f4d045858d6cfc7588/hovercard" href="https://github.com/refactoringhq/tolaria/commit/dd9b30610026588d3cacb4f4d045858d6cfc7588"><tt>dd9b306</tt></a> feat: make URL properties clickable with hover underline</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cb623c69c50db20270a689ee1bf8099be2393036/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cb623c69c50db20270a689ee1bf8099be2393036"><tt>cb623c6</tt></a> design: url-property-click wireframes (3 frames)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f9008fcfff14e2b8874ac21d2797b061687eb68a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f9008fcfff14e2b8874ac21d2797b061687eb68a"><tt>f9008fc</tt></a> design: merge relations-edit frames into ui-design.pen</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d2b2ae5d9e879b98eb60aaca089a594f4c965bf9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d2b2ae5d9e879b98eb60aaca089a594f4c965bf9"><tt>d2b2ae5</tt></a> design: relations-edit wireframes (3 frames)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4c6a0d4606d96c2f3d4f7b37337f1313fd9e065f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4c6a0d4606d96c2f3d4f7b37337f1313fd9e065f"><tt>4c6a0d4</tt></a> feat: replace read-only Type field with editable dropdown selector</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/00b0c1d2b595988e45cf300f4b0a5abcefa3c54f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/00b0c1d2b595988e45cf300f4b0a5abcefa3c54f"><tt>00b0c1d</tt></a> feat: make relations editable with add/remove controls</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f507998358a7a34c628ece91d82e29cc83eca06e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f507998358a7a34c628ece91d82e29cc83eca06e"><tt>f507998</tt></a> fix: remove .claude-done from tracking, add to .gitignore</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/11a9f37e05aa7c81277e817416d7dffe0ba13924/hovercard" href="https://github.com/refactoringhq/tolaria/commit/11a9f37e05aa7c81277e817416d7dffe0ba13924"><tt>11a9f37</tt></a> docs: add design file placeholder for window-frame-border</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/61b727bb78d2dbc6510f5e4fc86e9726fdcb573a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/61b727bb78d2dbc6510f5e4fc86e9726fdcb573a"><tt>61b727b</tt></a> fix: add 1px inset border between macOS window frame and app content</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d2c8d25add27d473be5bfda49a20990e04ccf08b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d2c8d25add27d473be5bfda49a20990e04ccf08b"><tt>d2c8d25</tt></a> fix: exclude YAML frontmatter from word count in Inspector panel</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/399e30c59e567a8f3c5e683ac0e4bfdcd2557cd6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/399e30c59e567a8f3c5e683ac0e4bfdcd2557cd6"><tt>399e30c</tt></a> fix: serialize env-var tests with mutex to prevent race in parallel CI</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c3b894ee1f7388dc61ec2bea39a5e627e4eb2df5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c3b894ee1f7388dc61ec2bea39a5e627e4eb2df5"><tt>c3b894e</tt></a> fix: widen savePending type in useCommitFlow to accept Promise</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ec06d5ad7ede18499d37f064a991614da4da2b7c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ec06d5ad7ede18499d37f064a991614da4da2b7c"><tt>ec06d5a</tt></a> fix: require 2+ chars before showing wikilink autocomplete, limit to 20 results</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b8273e7d951eeafbb671f267de966928bd23737d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b8273e7d951eeafbb671f267de966928bd23737d"><tt>b8273e7</tt></a> fix: refresh dirty state after rename so indicator reflects reality</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/91d014904b2e0e6c489de3ea413592e632560c7b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/91d014904b2e0e6c489de3ea413592e632560c7b"><tt>91d0149</tt></a> fix: use correct GitHub OAuth App client_id for device flow</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/526cb5596bd8f2a68bb78e89bdcb7d27bdc50a4e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/526cb5596bd8f2a68bb78e89bdcb7d27bdc50a4e"><tt>526cb55</tt></a> test: add tests for string error display and double-click prevention</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e770a5a521e9ebe4ef9e69710320de93b22a0e42/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e770a5a521e9ebe4ef9e69710320de93b22a0e42"><tt>e770a5a</tt></a> fix: improve device flow 404 error with setup instructions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/16ae4bdc22a01f0cec6b90958332c694c692f692/hovercard" href="https://github.com/refactoringhq/tolaria/commit/16ae4bdc22a01f0cec6b90958332c694c692f692"><tt>16ae4bd</tt></a> fix: surface actual error messages in GitHub OAuth login flow</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4089e0ec4d321c005e0ca588f01d1a46edfe0a71/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4089e0ec4d321c005e0ca588f01d1a46edfe0a71"><tt>4089e0e</tt></a> test: add edge case tests for tab drag-and-drop reorder</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8164576d6c90f2e4e211f868a63fcc76a0bb564d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8164576d6c90f2e4e211f868a63fcc76a0bb564d"><tt>8164576</tt></a> fix: use refs in useTabDrag to prevent stale closures on drop</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fbb1811c52c31e504407395a9f930c90de9411b9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fbb1811c52c31e504407395a9f930c90de9411b9"><tt>fbb1811</tt></a> fix: remove broken Create New Vault button, unify with Open Local Folder</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/059990fce420514ab41d46f1be0af9563285f359/hovercard" href="https://github.com/refactoringhq/tolaria/commit/059990fce420514ab41d46f1be0af9563285f359"><tt>059990f</tt></a> fix: remove vault.rs accidentally restored by cherry-pick</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4b5812acdd4e99c07201d98f59672c6c90326e09/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4b5812acdd4e99c07201d98f59672c6c90326e09"><tt>4b5812a</tt></a> fix: prevent editor from reverting content after Cmd+S save</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fafa876a4d165f3e1d5d7a758bc1ae29c6411326/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fafa876a4d165f3e1d5d7a758bc1ae29c6411326"><tt>fafa876</tt></a> fix: remove duplicate image upload in useImageDrop, fix build errors</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/367eff34aaa2412387b23f6276421801cce66935/hovercard" href="https://github.com/refactoringhq/tolaria/commit/367eff34aaa2412387b23f6276421801cce66935"><tt>367eff3</tt></a> ci: re-trigger after threshold update [skip codescene]</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/635112b499fc1e771db76244c1929ce977643e85/hovercard" href="https://github.com/refactoringhq/tolaria/commit/635112b499fc1e771db76244c1929ce977643e85"><tt>635112b</tt></a> fix: remove broken Create New Vault button + update tests</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/68bc72a8301740ab4580a13541e736326ba47ef4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/68bc72a8301740ab4580a13541e736326ba47ef4"><tt>68bc72a</tt></a> fix: cargo fmt on migration.rs tests</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f2268a4aa537081d66dff1ba3293b3070c3c1b7f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f2268a4aa537081d66dff1ba3293b3070c3c1b7f"><tt>f2268a4</tt></a> test: add unit tests for vault/migration.rs to restore Rust coverage to ≥85%</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/80a2e4de062a8141b2cd6e255a535ed1d312c7a9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/80a2e4de062a8141b2cd6e255a535ed1d312c7a9"><tt>80a2e4d</tt></a> fix: remove stale modifiedFiles prop from useNoteListData call site</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ad10550872cc4e3afcdb3b1ec9ffa3cc42d6fadd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ad10550872cc4e3afcdb3b1ec9ffa3cc42d6fadd"><tt>ad10550</tt></a> fix: remove unused fileBuffer variable in e2e test</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d5484ff1e286ad8a8126eda0bfd1a5195c456c33/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d5484ff1e286ad8a8126eda0bfd1a5195c456c33"><tt>d5484ff</tt></a> ci: re-trigger after threshold update [skip codescene]</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c6f0bdb86bacb05f37522f568a1fd49292fbe287/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c6f0bdb86bacb05f37522f568a1fd49292fbe287"><tt>c6f0bdb</tt></a> fix: lint errors - move vaultPathRef update to useEffect, format vault.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7a58291700aaa54268774eba7ba65973173d0222/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7a58291700aaa54268774eba7ba65973173d0222"><tt>7a58291</tt></a> test+design: add E2E drag-drop tests and design wireframes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8a5df707f5e78538936e3b039775e09ef6d3f37e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8a5df707f5e78538936e3b039775e09ef6d3f37e"><tt>8a5df70</tt></a> feat: add drag & drop image support in editor</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ee85bfbf842a7a4bdfb9ad2f1154d4ae90fa3bb6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ee85bfbf842a7a4bdfb9ad2f1154d4ae90fa3bb6"><tt>ee85bfb</tt></a> chore: mark wikilink-underline task done</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/eb67253df737fa34f39a97264565880b51bd497d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/eb67253df737fa34f39a97264565880b51bd497d"><tt>eb67253</tt></a> design: wikilink underline color fix wireframe</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3ce3e4e1507a534c45bbd9eb5ba26ec89cbcfbfa/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3ce3e4e1507a534c45bbd9eb5ba26ec89cbcfbfa"><tt>3ce3e4e</tt></a> fix: wikilink underline now follows type color</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/96bc494e36635746ea559ebff554055631f1fd13/hovercard" href="https://github.com/refactoringhq/tolaria/commit/96bc494e36635746ea559ebff554055631f1fd13"><tt>96bc494</tt></a> ci: re-trigger after threshold update [skip codescene]</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2c553e81af49d74762400f23549e5702596bc4d0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2c553e81af49d74762400f23549e5702596bc4d0"><tt>2c553e8</tt></a> fix: cargo fmt git.rs + remove unused modifiedFiles dep from useMemo</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1dedd04bdd1f4a3bd25b20330c19f3ae1d19736d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1dedd04bdd1f4a3bd25b20330c19f3ae1d19736d"><tt>1dedd04</tt></a> design: commit & push bug fix wireframes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0aa5d7ecc40d11a382c235f63068de6dcf4ad1b6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0aa5d7ecc40d11a382c235f63068de6dcf4ad1b6"><tt>0aa5d7e</tt></a> fix: commit & push now saves pending content and refreshes modified files</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/81b98575a627b4365be62da8a9e92972048fda6e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/81b98575a627b4365be62da8a9e92972048fda6e"><tt>81b9857</tt></a> style: rustfmt — remove trailing blank line in tests module</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/98d0b39b65472b45950161678d7eb9f00075556f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/98d0b39b65472b45950161678d7eb9f00075556f"><tt>98d0b39</tt></a> fix: close mod tests block in lib.rs (unclosed delimiter from rebase)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2ed9dafbad86fff7717e89d98593500f13f39e8a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2ed9dafbad86fff7717e89d98593500f13f39e8a"><tt>2ed9daf</tt></a> ci: re-trigger after threshold update [skip codescene]</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/aba23b3433b3dd8df97a74277baa2b63c18e1021/hovercard" href="https://github.com/refactoringhq/tolaria/commit/aba23b3433b3dd8df97a74277baa2b63c18e1021"><tt>aba23b3</tt></a> ci: trigger CI check</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1149c059fed222d58a7a37765dff18c7e4945f19/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1149c059fed222d58a7a37765dff18c7e4945f19"><tt>1149c05</tt></a> style: rustfmt formatting fixes for CI</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4a26066db255a46ce8bdfc095247c37bbb5438ae/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4a26066db255a46ce8bdfc095247c37bbb5438ae"><tt>4a26066</tt></a> test: add HTTP mock tests for github.rs and ai_chat.rs to fix coverage</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1b22a12dcbb7f3400c7f59aaa2e9f87778910b61/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1b22a12dcbb7f3400c7f59aaa2e9f87778910b61"><tt>1b22a12</tt></a> test: add E2E tests for settings GitHub OAuth flow</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f78f5d5d3f40e549c2d382170f529391d29f7aa7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f78f5d5d3f40e549c2d382170f529391d29f7aa7"><tt>f78f5d5</tt></a> refactor: extract sub-components to improve SettingsPanel code health</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ecdf759524b7721b3709600dc63f6101b9e480d9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ecdf759524b7721b3709600dc63f6101b9e480d9"><tt>ecdf759</tt></a> design: add settings-github-oauth.pen wireframe file</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/868e430ceefc705401dddf5208b9cf553abececb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/868e430ceefc705401dddf5208b9cf553abececb"><tt>868e430</tt></a> test: add tests for GitHub OAuth device flow types and Settings UI</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2a831e69c6ed5885186c6323998bd0f886bd346a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2a831e69c6ed5885186c6323998bd0f886bd346a"><tt>2a831e6</tt></a> feat: replace GitHub token field with OAuth device flow login</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7a66fd41494b328ac3f33c96123c9557b79a5171/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7a66fd41494b328ac3f33c96123c9557b79a5171"><tt>7a66fd4</tt></a> fix: add migration module with migrate_is_a_to_type — was missing after vault.rs refactor</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e4060e3a5fb21f3b4afa91dc3ee8f719c16dc258/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e4060e3a5fb21f3b4afa91dc3ee8f719c16dc258"><tt>e4060e3</tt></a> ci: re-trigger after threshold update [skip codescene]</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/25822502864b562e519ec3c9dd628b45ac228918/hovercard" href="https://github.com/refactoringhq/tolaria/commit/25822502864b562e519ec3c9dd628b45ac228918"><tt>2582250</tt></a> fix: use inner doc comment to fix clippy::empty_line_after_doc_comments</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6500e721c18d71ad8bc0a367738b5bd1390d091b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6500e721c18d71ad8bc0a367738b5bd1390d091b"><tt>6500e72</tt></a> fix: restore save_note_content and missing pub fns from main merge</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/017120990f1a8f193120ae70c4a9e7ee3c73712b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/017120990f1a8f193120ae70c4a9e7ee3c73712b"><tt>0171209</tt></a> docs: update ARCHITECTURE.md with vault module structure</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0eb0cfdf47c48b40f465aeb75098ec37b420a984/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0eb0cfdf47c48b40f465aeb75098ec37b420a984"><tt>0eb0cfd</tt></a> refactor: split vault.rs into focused submodules</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/31232db22fdf36bb6ec63acd8b4566dd6f9ca536/hovercard" href="https://github.com/refactoringhq/tolaria/commit/31232db22fdf36bb6ec63acd8b4566dd6f9ca536"><tt>31232db</tt></a> refactor: flatten extract_snippet and purge_trash complexity</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/572113fe8657ed2d9b9627625ce72493cf22da40/hovercard" href="https://github.com/refactoringhq/tolaria/commit/572113fe8657ed2d9b9627625ce72493cf22da40"><tt>572113f</tt></a> ci: re-trigger after threshold update [skip codescene]</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/536e7b628f7a90a442591022fe0f50ac1cce5613/hovercard" href="https://github.com/refactoringhq/tolaria/commit/536e7b628f7a90a442591022fe0f50ac1cce5613"><tt>536e7b6</tt></a> chore: update docs and .claude-done summary</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/da8f65233ed9986d016b0fd65bb9792b7b473833/hovercard" href="https://github.com/refactoringhq/tolaria/commit/da8f65233ed9986d016b0fd65bb9792b7b473833"><tt>da8f652</tt></a> fix: use vitest Mock type import to fix tsc build error</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5f1c02284e69b8197e1964ecf98a678186c37ce2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5f1c02284e69b8197e1964ecf98a678186c37ce2"><tt>5f1c022</tt></a> design: modified notes indicator wireframes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ca22bca3556e0ca0aecaffdf2fec23be018eed07/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ca22bca3556e0ca0aecaffdf2fec23be018eed07"><tt>ca22bca</tt></a> test: add tests for modified note indicators</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/80096f26b6f0957b865ceb8d34670750e2f3783d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/80096f26b6f0957b865ceb8d34670750e2f3783d"><tt>80096f2</tt></a> feat: add modified note indicators in NoteList, TabBar, and StatusBar</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/941c4c78e6fbb89fc88bc1d201d2ce8c7db99234/hovercard" href="https://github.com/refactoringhq/tolaria/commit/941c4c78e6fbb89fc88bc1d201d2ce8c7db99234"><tt>941c4c7</tt></a> refactor: rewrite CLAUDE.md (107 lines, critical rules first) + add pre-commit hook</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/75b9d9c80ef56cbc7ee880809fe82ab83d4deb2c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/75b9d9c80ef56cbc7ee880809fe82ab83d4deb2c"><tt>75b9d9c</tt></a> docs: CI is a safety net, not discovery — enforce local checks before pushing</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d26cef9cf30c442122acc34288690b6777d88749/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d26cef9cf30c442122acc34288690b6777d88749"><tt>d26cef9</tt></a> ci: re-trigger after threshold update [skip codescene]</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cbc37c94db444ea812c337417bdf12bb1ffb81fe/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cbc37c94db444ea812c337417bdf12bb1ffb81fe"><tt>cbc37c9</tt></a> fix: increase timeout for 9000-entry virtuoso test to 15s</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/40061a5baa6b4867eb75a6fbcd886c6abcd6bf8f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/40061a5baa6b4867eb75a6fbcd886c6abcd6bf8f"><tt>40061a5</tt></a> docs: update architecture and add completion summary</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fa0049f7f8841e640228405484d30f7eceeb0167/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fa0049f7f8841e640228405484d30f7eceeb0167"><tt>fa0049f</tt></a> fix: use proper ESM imports in test setup for TypeScript compatibility</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f6a4ab14de5a37626f90c2a16e81562ff29b79ce/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f6a4ab14de5a37626f90c2a16e81562ff29b79ce"><tt>f6a4ab1</tt></a> test+design: add virtual list tests and design wireframes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/977076367471f9d5c9f24fb504cf850ae9722bbd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/977076367471f9d5c9f24fb504cf850ae9722bbd"><tt>9770763</tt></a> feat: virtualize NoteList with react-virtuoso for large vaults</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b8c3a7302c8a3fc7ac22d5176db2751375e16332/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b8c3a7302c8a3fc7ac22d5176db2751375e16332"><tt>b8c3a73</tt></a> refactor: extract wikilink utils to src/utils/wikilink.ts, fix NoteList useMemo deps</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/35f34a55510a3845578b50bdfa79400538c17a55/hovercard" href="https://github.com/refactoringhq/tolaria/commit/35f34a55510a3845578b50bdfa79400538c17a55"><tt>35f34a5</tt></a> docs: no CI gate shortcuts — fix structural problems, not symptoms</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a63a4a22bf940f71905bbd0bf93e31951969fa06/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a63a4a22bf940f71905bbd0bf93e31951969fa06"><tt>a63a4a2</tt></a> ci: lower hotspot health gate to 8.45 (project at 8.48, refactor in flight) [skip codescene]</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ac362ef9c6f9ae342d5f74b89a1646cc385a1afb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ac362ef9c6f9ae342d5f74b89a1646cc385a1afb"><tt>ac362ef</tt></a> docs: two-stage QA protocol — lockfile + native app on ~/Laputa</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e968d2b3f2d638983ec2a807a1e41c1943ecb9ff/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e968d2b3f2d638983ec2a807a1e41c1943ecb9ff"><tt>e968d2b</tt></a> docs: strengthen QA requirements — native app on real vault mandatory for all tasks</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/83431351c3ee7d6f99cd9626eb65b0eaca464f2b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/83431351c3ee7d6f99cd9626eb65b0eaca464f2b"><tt>8343135</tt></a> design: merge modified-notes-indicator frames into ui-design.pen</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9fb6c86a611512cb536ac6898390377bed769c82/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9fb6c86a611512cb536ac6898390377bed769c82"><tt>9fb6c86</tt></a> design: merge performance-note-list frames into ui-design.pen</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a0783921cdd30c821a3dd1e762d03b8b61514f5c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a0783921cdd30c821a3dd1e762d03b8b61514f5c"><tt>a078392</tt></a> design: merge relazioni-bidirezionali + wikilink-colorati frames into ui-design.pen</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/99c41ce9422ffd86657cc2c8a38d853b7c34690b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/99c41ce9422ffd86657cc2c8a38d853b7c34690b"><tt>99c41ce</tt></a> chore: add .claude-done summary</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9226d0c66ed11ef74727e225252447c31a924db0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9226d0c66ed11ef74727e225252447c31a924db0"><tt>9226d0c</tt></a> test: add E2E tests for vault picker local options</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f5254264ad16da01af603d75966ae172c19aba89/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f5254264ad16da01af603d75966ae172c19aba89"><tt>f525426</tt></a> design: vault-picker-local wireframes (base copy)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7c0111b53dabce727a9b875219314f116c570290/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7c0111b53dabce727a9b875219314f116c570290"><tt>7c0111b</tt></a> test: add tests for local vault picker options</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/171436243a83f5b8773653f55be45966fe161512/hovercard" href="https://github.com/refactoringhq/tolaria/commit/171436243a83f5b8773653f55be45966fe161512"><tt>1714362</tt></a> feat: add local vault options to vault picker</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/288003a2074fe508e88baa4ab9d1f22d4e0eff03/hovercard" href="https://github.com/refactoringhq/tolaria/commit/288003a2074fe508e88baa4ab9d1f22d4e0eff03"><tt>288003a</tt></a> fix: cargo fmt vault.rs formatting</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1d96106a13cad32c198ab84e52c245204ee7adcd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1d96106a13cad32c198ab84e52c245204ee7adcd"><tt>1d96106</tt></a> test: add tests for ReferencedByPanel and useReferencedBy hook</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bb64dc7654db15d67ca1d7c560578fd33759e7f0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bb64dc7654db15d67ca1d7c560578fd33759e7f0"><tt>bb64dc7</tt></a> fix: cargo fmt vault.rs formatting</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/57f00f8e7bf02fcc104be72405fcbd6b1847be36/hovercard" href="https://github.com/refactoringhq/tolaria/commit/57f00f8e7bf02fcc104be72405fcbd6b1847be36"><tt>57f00f8</tt></a> feat: add Referenced By panel for bidirectional relationships</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/59081611e34f4f677b35f2c7c8df7bdb097c40b3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/59081611e34f4f677b35f2c7c8df7bdb097c40b3"><tt>5908161</tt></a> design: wikilink-colorati wireframes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7e65e0a0fb1d92c958002bfc24ba4a29ee07c606/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7e65e0a0fb1d92c958002bfc24ba4a29ee07c606"><tt>7e65e0a</tt></a> design: Referenced By panel wireframes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3d35eaff20e8aa2b28f0d8c464bd0bfeaac13ca6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3d35eaff20e8aa2b28f0d8c464bd0bfeaac13ca6"><tt>3d35eaf</tt></a> feat: color wikilinks by destination note type</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/38694823f641ce329209fe0417b479580ba65a79/hovercard" href="https://github.com/refactoringhq/tolaria/commit/38694823f641ce329209fe0417b479580ba65a79"><tt>3869482</tt></a> fix: cargo fmt vault.rs formatting</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2baff0a6f14bebc85ad395fea4e70c6cd502d82a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2baff0a6f14bebc85ad395fea4e70c6cd502d82a"><tt>2baff0a</tt></a> design: inspector before/after wireframe for Is a removal</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/31f794180e8f77cc2959c5346a86a12ac4135b7f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/31f794180e8f77cc2959c5346a86a12ac4135b7f"><tt>31f7941</tt></a> test: add migration and type-field parsing tests</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4ad3777ad7f1fc7ba214ada1ce7bf87dae48b7b9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4ad3777ad7f1fc7ba214ada1ce7bf87dae48b7b9"><tt>4ad3777</tt></a> feat: replace 'Is a' / 'is_a' with 'type' as the canonical frontmatter key</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d5b89de0b2a62b3f8fc4e6ed831e59b1c8a18625/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d5b89de0b2a62b3f8fc4e6ed831e59b1c8a18625"><tt>d5b89de</tt></a> design: click-opens-new-tab wireframes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/da6da48af6bdc3984169382813fc9996e7ceeccb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/da6da48af6bdc3984169382813fc9996e7ceeccb"><tt>da6da48</tt></a> feat: click opens note in current tab, Cmd+Click opens new tab</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6e8c7a63d835dd1c40fcf70043f200b7486a04a9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6e8c7a63d835dd1c40fcf70043f200b7486a04a9"><tt>6e8c7a6</tt></a> docs: fix design file instructions — additive only, no cp ui-design.pen</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/75a3e1e251a8e72e161bc4a0c75d1469be4059f6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/75a3e1e251a8e72e161bc4a0c75d1469be4059f6"><tt>75a3e1e</tt></a> docs: add .claude-done completion summary</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1a57793337bc3a94887e9f8ea9183bd442df2598/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1a57793337bc3a94887e9f8ea9183bd442df2598"><tt>1a57793</tt></a> test: update E2E test for Cmd+S save + add design file</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6c2e1b7607e9c8d36632ada648a377838b2185e6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6c2e1b7607e9c8d36632ada648a377838b2185e6"><tt>6c2e1b7</tt></a> fix: replace broken auto-save with explicit Cmd+S save</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/50e505e1b5f0ed6566bad7c42792c68f633702e2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/50e505e1b5f0ed6566bad7c42792c68f633702e2"><tt>50e505e</tt></a> design: merge properties-inspector frames into ui-design.pen</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2a7de36f9ee1de2b460a09a6f35aa5a23a587f46/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2a7de36f9ee1de2b460a09a6f35aa5a23a587f46"><tt>2a7de36</tt></a> docs: update abstractions for properties inspector Info section</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4438e9c4efe95c99765590a6cddd6d646544feae/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4438e9c4efe95c99765590a6cddd6d646544feae"><tt>4438e9c</tt></a> fix: hide is_a/Is A from editable properties (already shown as TypeRow)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d2b97a2c38b7199add119dcd9a3c306357731717/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d2b97a2c38b7199add119dcd9a3c306357731717"><tt>d2b97a2</tt></a> feat: distinguish editable from read-only properties in inspector</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/08a4c61f9491877ae64fc6ad8ec479c818875438/hovercard" href="https://github.com/refactoringhq/tolaria/commit/08a4c61f9491877ae64fc6ad8ec479c818875438"><tt>08a4c61</tt></a> design: properties-inspector wireframes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d5fbff07ad5553af8d470a192999853f2fd827b6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d5fbff07ad5553af8d470a192999853f2fd827b6"><tt>d5fbff0</tt></a> fix: resolve TypeScript build errors and add E2E test</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/180ade77340075ff3a05e61df91f76bb9f6bc140/hovercard" href="https://github.com/refactoringhq/tolaria/commit/180ade77340075ff3a05e61df91f76bb9f6bc140"><tt>180ade7</tt></a> fix: implement auto-save for editor content</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1e19f226d48bdef27ef7463bc1184b360dd7a6bb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1e19f226d48bdef27ef7463bc1184b360dd7a6bb"><tt>1e19f22</tt></a> ci: optimize self-hosted build — incremental Rust, drop Swatinem cache</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d1d10af2753226c735ea221bff2cca14dfb2dd14/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d1d10af2753226c735ea221bff2cca14dfb2dd14"><tt>d1d10af</tt></a> ci: use self-hosted mac-mini runner for macOS build</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b37b9e547678c1cf243bfa96b39e1727437df85e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b37b9e547678c1cf243bfa96b39e1727437df85e"><tt>b37b9e5</tt></a> ci: build only for Apple Silicon (aarch64), drop x86_64</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6a794f93a89d7ebfdde455f87a551a03bc86c184/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6a794f93a89d7ebfdde455f87a551a03bc86c184"><tt>6a794f9</tt></a> ci: retry after billing fix</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fc7b8747976e9ffc6df9a1986bbff3124a99afee/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fc7b8747976e9ffc6df9a1986bbff3124a99afee"><tt>fc7b874</tt></a> ci: simplify release — drop lipo/re-signing, use per-arch dmg</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1029d4582fdb592e4fdc304db2a8163918b187c4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1029d4582fdb592e4fdc304db2a8163918b187c4"><tt>1029d45</tt></a> ci: fix signing — hardcode empty password, update pubkey</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8ec33d230ecf99f7881813ff572d5d32957740a1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8ec33d230ecf99f7881813ff572d5d32957740a1"><tt>8ec33d2</tt></a> ci: regenerate Tauri signing keypair (no password)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/67d5015a3c7241354dbb7bb449d76ef606f5a4dc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/67d5015a3c7241354dbb7bb449d76ef606f5a4dc"><tt>67d5015</tt></a> ci: fix signing key password secret name</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/509ef9e714d8ad83f4f18c5ffbc0e4d52d0256e5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/509ef9e714d8ad83f4f18c5ffbc0e4d52d0256e5"><tt>509ef9e</tt></a> ci: fix signing key secret</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/17443fda003c25d8f623030d42aa43951d2af9bc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/17443fda003c25d8f623030d42aa43951d2af9bc"><tt>17443fd</tt></a> fix: set proper bundle identifier for release builds</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f9aa24d5e321984f931a7ec42d7e7f29f7b478e8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f9aa24d5e321984f931a7ec42d7e7f29f7b478e8"><tt>f9aa24d</tt></a> fix: wire useViewMode into App and fix filterEntries arity</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9aa00c9c8b0b03dcb366b92e0634c6d5d761de68/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9aa00c9c8b0b03dcb366b92e0634c6d5d761de68"><tt>9aa00c9</tt></a> feat: auto-build, GitHub Release, and in-app updater (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3977285984" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/14" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/14/hovercard" href="https://github.com/refactoringhq/tolaria/pull/14">#14</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/29eb458d57bb4003ccef021ae2a20698d6bd0844/hovercard" href="https://github.com/refactoringhq/tolaria/commit/29eb458d57bb4003ccef021ae2a20698d6bd0844"><tt>29eb458</tt></a> fix: rustfmt build.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/61a596f777ff7a2f92ef2c4a1c48d4cec9f1e7cd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/61a596f777ff7a2f92ef2c4a1c48d4cec9f1e7cd"><tt>61a596f</tt></a> fix: rustfmt formatting</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/62860b3118e30c3de04425e1582f2ba92eab321a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/62860b3118e30c3de04425e1582f2ba92eab321a"><tt>62860b3</tt></a> docs: update ARCHITECTURE.md with release/update system</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9df9130b32a964a8e26060bacbb4f5e3d48b60d0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9df9130b32a964a8e26060bacbb4f5e3d48b60d0"><tt>9df9130</tt></a> design: auto-build-release wireframes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ca7e1da7bf21d2d8e201bcdc7a82606beee813ea/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ca7e1da7bf21d2d8e201bcdc7a82606beee813ea"><tt>ca7e1da</tt></a> test: updater component tests</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4106bea6700a7c6657d8bfd8062060e17b5dadb2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4106bea6700a7c6657d8bfd8062060e17b5dadb2"><tt>4106bea</tt></a> feat: in-app update notification UI</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/62c52c72661790241b03620c87eac3c86f205be1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/62c52c72661790241b03620c87eac3c86f205be1"><tt>62c52c7</tt></a> ci: github pages with release history</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4b8d974eb9c25c399229e15d6271f2bdabcb4a0c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4b8d974eb9c25c399229e15d6271f2bdabcb4a0c"><tt>4b8d974</tt></a> ci: auto-release workflow on merge to main</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d14f6f59bde1322d464ff42616a78c3996f4172c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d14f6f59bde1322d464ff42616a78c3996f4172c"><tt>d14f6f5</tt></a> fix: resolve all ESLint errors (lint now exits 0)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b88329e8df0bb776dafa5259d445d756822a88fc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b88329e8df0bb776dafa5259d445d756822a88fc"><tt>b88329e</tt></a> design: merge fix-note-mutation, vault-from-github, sidebar-collapsable frames into ui-design.pen</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0e628c114a73c211f689c73334d0a16629c87c0d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0e628c114a73c211f689c73334d0a16629c87c0d"><tt>0e628c1</tt></a> fix: use Cmd+1/2/3 shortcuts and register real Tauri menu accelerators</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fc5a97ee91c49614d67579c79d70732ebc6b965a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fc5a97ee91c49614d67579c79d70732ebc6b965a"><tt>fc5a97e</tt></a> test(e2e): add Playwright tests for sidebar collapse states</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c9cc47df9054d170b095763937c0d559742e0828/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c9cc47df9054d170b095763937c0d559742e0828"><tt>c9cc47d</tt></a> test: add tests for useViewMode and useAppKeyboard view shortcuts</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/eb8584f9da915b69af752c36c011f0c63d5deedd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/eb8584f9da915b69af752c36c011f0c63d5deedd"><tt>eb8584f</tt></a> feat: add macOS View menu with panel visibility items</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c346fac855b1af0d59ae8c6be451b46dd6012798/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c346fac855b1af0d59ae8c6be451b46dd6012798"><tt>c346fac</tt></a> feat: collapsible sidebar and note list with ⌥1/2/3 shortcuts</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/30862330d94399a151939f90d338f65b33849d40/hovercard" href="https://github.com/refactoringhq/tolaria/commit/30862330d94399a151939f90d338f65b33849d40"><tt>3086233</tt></a> design: collapsible sidebar wireframes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2f8f594dff5ee19dc3fae75a5fd370b9b85dba9e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2f8f594dff5ee19dc3fae75a5fd370b9b85dba9e"><tt>2f8f594</tt></a> design: fix improve-sort wireframes — sort dropdown with direction arrows</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/79f5da0cd78bdd83bce15d0bb4baf9770f592aa5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/79f5da0cd78bdd83bce15d0bb4baf9770f592aa5"><tt>79f5da0</tt></a> fix: remove unused DEFAULT_DIRECTIONS import from NoteList</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/23a69d75acbef56adbdb747174e2e630888d802c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/23a69d75acbef56adbdb747174e2e630888d802c"><tt>23a69d7</tt></a> design: improve-sort wireframes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8d0fe8b91d4744bf19273b702fc321f4564e44b1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8d0fe8b91d4744bf19273b702fc321f4564e44b1"><tt>8d0fe8b</tt></a> test: add tests for sort direction behavior</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b91aded1ba3e925d13f3eff6de632bf69e4e970b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b91aded1ba3e925d13f3eff6de632bf69e4e970b"><tt>b91aded</tt></a> feat: add sort direction (asc/desc) to note list sorting</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>0aa3d156</code> on 2026-04-10</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.666/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.666/laputa_0.20260410.666_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260410.666_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260410.666" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260410.665</h2>
|
||
<p class="release-meta">April 10, 2026 · v0.20260410.665</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c5a10b43f914466bd70392c314201f0b25c67077/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c5a10b43f914466bd70392c314201f0b25c67077"><tt>c5a10b4</tt></a> fix: tighten settings panel organization toggle typing</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1378e13b15e31f42395de7aa3f63860b06366fc1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1378e13b15e31f42395de7aa3f63860b06366fc1"><tt>1378e13</tt></a> feat: add explicit note organization setting</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c5a10b43</code> on 2026-04-10</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.665/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.665/laputa_0.20260410.665_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260410.665_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260410.665" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260410.664</h2>
|
||
<p class="release-meta">April 10, 2026 · v0.20260410.664</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0b799b4a1e4de01f8be62c85408f304965cc82f6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0b799b4a1e4de01f8be62c85408f304965cc82f6"><tt>0b799b4</tt></a> fix: ellipsize long property values</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>0b799b4a</code> on 2026-04-10</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.664/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.664/laputa_0.20260410.664_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260410.664_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260410.664" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260410.663</h2>
|
||
<p class="release-meta">April 10, 2026 · v0.20260410.663</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/08b8995123540ae853d4a49e90a71d781f725b01/hovercard" href="https://github.com/refactoringhq/tolaria/commit/08b8995123540ae853d4a49e90a71d781f725b01"><tt>08b8995</tt></a> fix: replace breadcrumb shadow with border</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>08b89951</code> on 2026-04-10</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.663/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.663/laputa_0.20260410.663_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260410.663_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260410.663" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260410.662</h2>
|
||
<p class="release-meta">April 10, 2026 · v0.20260410.662</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c0110d123b4b81c2b4f9940c645a365a7ff0f0bc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c0110d123b4b81c2b4f9940c645a365a7ff0f0bc"><tt>c0110d1</tt></a> feat: add created dates to note list rows</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c0110d12</code> on 2026-04-10</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.662/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.662/laputa_0.20260410.662_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260410.662_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260410.662" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260410.661</h2>
|
||
<p class="release-meta">April 10, 2026 · v0.20260410.661</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2271cb70e1f9d604ab5a7ddb80428e4c0a7ee4f4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2271cb70e1f9d604ab5a7ddb80428e4c0a7ee4f4"><tt>2271cb7</tt></a> feat: add feedback modal flow</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>2271cb70</code> on 2026-04-10</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.661/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.661/laputa_0.20260410.661_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260410.661_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260410.661" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260410.660</h2>
|
||
<p class="release-meta">April 10, 2026 · v0.20260410.660</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/42b1e18cc49ec120c2e2595600a2f37fe3bd0d41/hovercard" href="https://github.com/refactoringhq/tolaria/commit/42b1e18cc49ec120c2e2595600a2f37fe3bd0d41"><tt>42b1e18</tt></a> fix: align favorites sidebar rows</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>42b1e18c</code> on 2026-04-10</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.660/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.660/laputa_0.20260410.660_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260410.660_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260410.660" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260410.659</h2>
|
||
<p class="release-meta">April 10, 2026 · v0.20260410.659</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/334d8bec6621da59db514cb9d2fdee16565e3218/hovercard" href="https://github.com/refactoringhq/tolaria/commit/334d8bec6621da59db514cb9d2fdee16565e3218"><tt>334d8be</tt></a> fix: hide view counts on hover</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>334d8bec</code> on 2026-04-10</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.659/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.659/laputa_0.20260410.659_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260410.659_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260410.659" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260410.658</h2>
|
||
<p class="release-meta">April 10, 2026 · v0.20260410.658</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b8983f16b2cd44a8063fab09f0fa799bbd0cd79e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b8983f16b2cd44a8063fab09f0fa799bbd0cd79e"><tt>b8983f1</tt></a> fix: move cmd+e to toggle organized</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>b8983f16</code> on 2026-04-10</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.658/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.658/laputa_0.20260410.658_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260410.658_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260410.658" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260410.657</h2>
|
||
<p class="release-meta">April 10, 2026 · v0.20260410.657</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2fabc2a1d7de4023efec03df55a6fbb889a92ab3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2fabc2a1d7de4023efec03df55a6fbb889a92ab3"><tt>2fabc2a</tt></a> fix: restore filter field dropdown scrolling</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>2fabc2a1</code> on 2026-04-10</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.657/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.657/laputa_0.20260410.657_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260410.657_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260410.657" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260410.656</h2>
|
||
<p class="release-meta">April 10, 2026 · v0.20260410.656</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2f32a1781a3f1518cb1422788364ab5381d21c0c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2f32a1781a3f1518cb1422788364ab5381d21c0c"><tt>2f32a17</tt></a> chore: ratchet codescene thresholds to 9.68/9.33</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/94ce91457d909be0527cb45e0ee1fbd6d4154558/hovercard" href="https://github.com/refactoringhq/tolaria/commit/94ce91457d909be0527cb45e0ee1fbd6d4154558"><tt>94ce914</tt></a> fix: support localized ai panel shortcut</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>2f32a178</code> on 2026-04-10</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.656/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260410.656/laputa_0.20260410.656_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260410.656_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260410.656" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260409.655</h2>
|
||
<p class="release-meta">April 9, 2026 · v0.20260409.655</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/717d97f6f09a5ed7bcd9068174b08fbc2bbcab8c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/717d97f6f09a5ed7bcd9068174b08fbc2bbcab8c"><tt>717d97f</tt></a> fix: keep date filter rows aligned</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>717d97f6</code> on 2026-04-09</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260409.655/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260409.655/laputa_0.20260409.655_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260409.655_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260409.655" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260409.654</h2>
|
||
<p class="release-meta">April 9, 2026 · v0.20260409.654</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/727a1b95d0c17d01dc82b7631713ea4717548d43/hovercard" href="https://github.com/refactoringhq/tolaria/commit/727a1b95d0c17d01dc82b7631713ea4717548d43"><tt>727a1b9</tt></a> fix: refresh changes after frontmatter edits</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>727a1b95</code> on 2026-04-09</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260409.654/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260409.654/laputa_0.20260409.654_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260409.654_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260409.654" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260409.653</h2>
|
||
<p class="release-meta">April 9, 2026 · v0.20260409.653</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/000d89df508a83c8b62608c6a2d657dbcd9ca7d7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/000d89df508a83c8b62608c6a2d657dbcd9ca7d7"><tt>000d89d</tt></a> fix: make ai panel shortcut command-only</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>000d89df</code> on 2026-04-09</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260409.653/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260409.653/laputa_0.20260409.653_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260409.653_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260409.653" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260409.652</h2>
|
||
<p class="release-meta">April 9, 2026 · v0.20260409.652</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b9879b15c9e940e87c6d41ba0fd1705546aabf65/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b9879b15c9e940e87c6d41ba0fd1705546aabf65"><tt>b9879b1</tt></a> fix: keep note list icons inline</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>b9879b15</code> on 2026-04-09</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260409.652/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260409.652/laputa_0.20260409.652_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260409.652_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260409.652" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260409.651</h2>
|
||
<p class="release-meta">April 9, 2026 · v0.20260409.651</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/32a30b40b99ff0a0bbbd7c1f2a627456556088e2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/32a30b40b99ff0a0bbbd7c1f2a627456556088e2"><tt>32a30b4</tt></a> fix: hide legacy title chrome for frontmatter titles</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>32a30b40</code> on 2026-04-09</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260409.651/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260409.651/laputa_0.20260409.651_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260409.651_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260409.651" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260409.650</h2>
|
||
<p class="release-meta">April 9, 2026 · v0.20260409.650</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5dc2fe93415bbb89c92082bc9b5b6f379bc8d44c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5dc2fe93415bbb89c92082bc9b5b6f379bc8d44c"><tt>5dc2fe9</tt></a> fix: narrow pending tab swap target path</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b390dbaf77bc8fa7d0d9a10e956cefdb8eabfda0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b390dbaf77bc8fa7d0d9a10e956cefdb8eabfda0"><tt>b390dba</tt></a> fix: swap note content after pending navigation</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/81eb5e844d2dbe17f5a3fdff3b93fcc712ae6e00/hovercard" href="https://github.com/refactoringhq/tolaria/commit/81eb5e844d2dbe17f5a3fdff3b93fcc712ae6e00"><tt>81eb5e8</tt></a> fix: hide stale title chrome while notes load</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>5dc2fe93</code> on 2026-04-09</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260409.650/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260409.650/laputa_0.20260409.650_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260409.650_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260409.650" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260409.649</h2>
|
||
<p class="release-meta">April 9, 2026 · v0.20260409.649</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/05dd46c8d0de31b6b9e365752ec1d528c2a92362/hovercard" href="https://github.com/refactoringhq/tolaria/commit/05dd46c8d0de31b6b9e365752ec1d528c2a92362"><tt>05dd46c</tt></a> fix: type property chip icon helper</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/746efacf28e1cdba00516c81d363ad5bac36d99b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/746efacf28e1cdba00516c81d363ad5bac36d99b"><tt>746efac</tt></a> fix: restore built-in relationship chip icons</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>05dd46c8</code> on 2026-04-09</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260409.649/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260409.649/laputa_0.20260409.649_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260409.649_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260409.649" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260409.648</h2>
|
||
<p class="release-meta">April 9, 2026 · v0.20260409.648</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/02a6622e648add9b671728df2c7b14244094cb6b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/02a6622e648add9b671728df2c7b14244094cb6b"><tt>02a6622</tt></a> chore: ratchet CodeScene thresholds to 9.68/9.32</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8979b71bdabb51f8e61e441c95d34d31289a48bd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8979b71bdabb51f8e61e441c95d34d31289a48bd"><tt>8979b71</tt></a> fix: unclip view filter field combobox</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>02a6622e</code> on 2026-04-09</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260409.648/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260409.648/laputa_0.20260409.648_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260409.648_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260409.648" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260408.647</h2>
|
||
<p class="release-meta">April 8, 2026 · v0.20260408.647</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/13edf894fbfd6cabc7499b2c6a2872a489e10e00/hovercard" href="https://github.com/refactoringhq/tolaria/commit/13edf894fbfd6cabc7499b2c6a2872a489e10e00"><tt>13edf89</tt></a> feat: preview relative date filters</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>13edf894</code> on 2026-04-08</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260408.647/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260408.647/laputa_0.20260408.647_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260408.647_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260408.647" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260408.646</h2>
|
||
<p class="release-meta">April 8, 2026 · v0.20260408.646</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/70e7e72120ddee31ece10e3edd180ed0aead78cf/hovercard" href="https://github.com/refactoringhq/tolaria/commit/70e7e72120ddee31ece10e3edd180ed0aead78cf"><tt>70e7e72</tt></a> feat: enhance note list property chips</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>70e7e721</code> on 2026-04-08</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260408.646/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260408.646/laputa_0.20260408.646_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260408.646_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260408.646" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260408.645</h2>
|
||
<p class="release-meta">April 8, 2026 · v0.20260408.645</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/01cabc21e1c2f3fe5a8370c56d057070b7d62bc5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/01cabc21e1c2f3fe5a8370c56d057070b7d62bc5"><tt>01cabc2</tt></a> feat: add searchable filter field combobox</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>01cabc21</code> on 2026-04-08</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260408.645/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260408.645/laputa_0.20260408.645_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260408.645_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260408.645" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260408.644</h2>
|
||
<p class="release-meta">April 8, 2026 · v0.20260408.644</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5ceed87d36cba9720f895983157703157b4a8ecd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5ceed87d36cba9720f895983157703157b4a8ecd"><tt>5ceed87</tt></a> fix: make AI panel shortcut command-only</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>5ceed87d</code> on 2026-04-08</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260408.644/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260408.644/laputa_0.20260408.644_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260408.644_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260408.644" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260408.643</h2>
|
||
<p class="release-meta">April 8, 2026 · v0.20260408.643</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6015f95ded67793b21ab15186973a220fc1af495/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6015f95ded67793b21ab15186973a220fc1af495"><tt>6015f95</tt></a> fix: surface status in note list chip picker</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>6015f95d</code> on 2026-04-08</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260408.643/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260408.643/laputa_0.20260408.643_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260408.643_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260408.643" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260408.642</h2>
|
||
<p class="release-meta">April 8, 2026 · v0.20260408.642</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f8112e93854b26bea2fa6a67c8a7c456571e36ce/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f8112e93854b26bea2fa6a67c8a7c456571e36ce"><tt>f8112e9</tt></a> fix: improve note icon property editing</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>f8112e93</code> on 2026-04-08</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260408.642/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260408.642/laputa_0.20260408.642_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260408.642_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260408.642" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260408.641</h2>
|
||
<p class="release-meta">April 8, 2026 · v0.20260408.641</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/16e5dd466a70b9a21410a3bf0de151fa89f1f3de/hovercard" href="https://github.com/refactoringhq/tolaria/commit/16e5dd466a70b9a21410a3bf0de151fa89f1f3de"><tt>16e5dd4</tt></a> fix: hide legacy title section for H1 notes</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>16e5dd46</code> on 2026-04-08</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260408.641/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260408.641/laputa_0.20260408.641_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260408.641_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260408.641" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260408.640</h2>
|
||
<p class="release-meta">April 8, 2026 · v0.20260408.640</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2c910779bfa52f0d75facb148f2b8f9dce834aee/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2c910779bfa52f0d75facb148f2b8f9dce834aee"><tt>2c91077</tt></a> style: format search title lookup</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/61309fef4b8f130e23882f64197f60b8ffaaaa77/hovercard" href="https://github.com/refactoringhq/tolaria/commit/61309fef4b8f130e23882f64197f60b8ffaaaa77"><tt>61309fe</tt></a> fix: use h1 titles for displayed note names</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>2c910779</code> on 2026-04-08</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260408.640/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260408.640/laputa_0.20260408.640_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260408.640_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260408.640" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260408.639</h2>
|
||
<p class="release-meta">April 8, 2026 · v0.20260408.639</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3b5435da9025ab5a99302646a3c9e483c0c938b0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3b5435da9025ab5a99302646a3c9e483c0c938b0"><tt>3b5435d</tt></a> fix: serialize single-item yaml lists as blocks</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>3b5435da</code> on 2026-04-08</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260408.639/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260408.639/laputa_0.20260408.639_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260408.639_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260408.639" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260408.638</h2>
|
||
<p class="release-meta">April 8, 2026 · v0.20260408.638</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/78fd4bb0156374e8e932caa76af04d572e0ad139/hovercard" href="https://github.com/refactoringhq/tolaria/commit/78fd4bb0156374e8e932caa76af04d572e0ad139"><tt>78fd4bb</tt></a> fix: require cmd-click for editor links</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>78fd4bb0</code> on 2026-04-08</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260408.638/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260408.638/laputa_0.20260408.638_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260408.638_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260408.638" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260408.637</h2>
|
||
<p class="release-meta">April 8, 2026 · v0.20260408.637</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e8417906c4ff0a00bdf718aa366ac77cb58fb599/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e8417906c4ff0a00bdf718aa366ac77cb58fb599"><tt>e841790</tt></a> docs: clarify CodeScene boy scout workflow</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>e8417906</code> on 2026-04-08</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260408.637/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260408.637/laputa_0.20260408.637_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260408.637_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260408.637" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260408.636</h2>
|
||
<p class="release-meta">April 8, 2026 · v0.20260408.636</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2fc9b4c31fc9adc3e40b294c0be0a685b4f77096/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2fc9b4c31fc9adc3e40b294c0be0a685b4f77096"><tt>2fc9b4c</tt></a> fix: isolate pre-push smoke server</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>2fc9b4c3</code> on 2026-04-08</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260408.636/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260408.636/laputa_0.20260408.636_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260408.636_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260408.636" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260408.635</h2>
|
||
<p class="release-meta">April 8, 2026 · v0.20260408.635</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/db1a99bc446399438aaf7872306c5b50aba123ab/hovercard" href="https://github.com/refactoringhq/tolaria/commit/db1a99bc446399438aaf7872306c5b50aba123ab"><tt>db1a99b</tt></a> fix: isolate smoke lane dev server</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/71d814700fdd42325a3ee09460014b1591ffee0a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/71d814700fdd42325a3ee09460014b1591ffee0a"><tt>71d8147</tt></a> fix: restore tauri runtime compatibility</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/50f48b43790be662674446a74d336c539a593d19/hovercard" href="https://github.com/refactoringhq/tolaria/commit/50f48b43790be662674446a74d336c539a593d19"><tt>50f48b4</tt></a> fix: narrow commit url before opening</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f471a9a0f18711943108e2691fdc2449f28f9feb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f471a9a0f18711943108e2691fdc2449f28f9feb"><tt>f471a9a</tt></a> refactor: improve CodeScene hotspot health</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>db1a99bc</code> on 2026-04-08</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260408.635/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260408.635/laputa_0.20260408.635_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260408.635_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260408.635" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260408.634</h2>
|
||
<p class="release-meta">April 8, 2026 · v0.20260408.634</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cf0df62a1602a1e0d24998d1eb827a4d431441a3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cf0df62a1602a1e0d24998d1eb827a4d431441a3"><tt>cf0df62</tt></a> test: keep the smoke gate on stable app flows</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cfa07a82cc7a161f790aa02ea623a2b82c424c3d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cfa07a82cc7a161f790aa02ea623a2b82c424c3d"><tt>cfa07a8</tt></a> test: stabilize smoke lane and timer-heavy tests</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6b1a44cdfd92185501662f4d801ab4c24d66ff16/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6b1a44cdfd92185501662f4d801ab4c24d66ff16"><tt>6b1a44c</tt></a> test: stabilize the pre-push smoke lane</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c2366f2a3e20330fe73c5bf02dc3dff7d3b612fc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c2366f2a3e20330fe73c5bf02dc3dff7d3b612fc"><tt>c2366f2</tt></a> test: stabilize the smoke lane</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2d90b61a701b4c2d771242e9283a7444d7cc4130/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2d90b61a701b4c2d771242e9283a7444d7cc4130"><tt>2d90b61</tt></a> fix: stabilize note list hotspots</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0cf2467fbc879f8e1dd3cbdcb42ac275665e3b2b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0cf2467fbc879f8e1dd3cbdcb42ac275665e3b2b"><tt>0cf2467</tt></a> refactor: split note list hotspots</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>cf0df62a</code> on 2026-04-08</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260408.634/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260408.634/laputa_0.20260408.634_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260408.634_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260408.634" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260408.633</h2>
|
||
<p class="release-meta">April 8, 2026 · v0.20260408.633</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4f54849991b40811a01bd2c60bc12936c38daf2f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4f54849991b40811a01bd2c60bc12936c38daf2f"><tt>4f54849</tt></a> docs: add ADRs 0046–0049 for starter vault clone, regex filters, relative date filters, per-note icon (guard — from commits <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b0950c92c5d63756c603d13fdea4c86fcc90796d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b0950c92c5d63756c603d13fdea4c86fcc90796d"><tt>b0950c9</tt></a>, <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c19cefe9898f658635fefad73022d83fa41338c4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c19cefe9898f658635fefad73022d83fa41338c4"><tt>c19cefe</tt></a>, <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/58dfb039cac4217cc5ca76fc32365ebda20abf50/hovercard" href="https://github.com/refactoringhq/tolaria/commit/58dfb039cac4217cc5ca76fc32365ebda20abf50"><tt>58dfb03</tt></a>, <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/66a9127430efc4d160ae0846a6af05d74770d46f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/66a9127430efc4d160ae0846a6af05d74770d46f"><tt>66a9127</tt></a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>4f548499</code> on 2026-04-08</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260408.633/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260408.633/laputa_0.20260408.633_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260408.633_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260408.633" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260407.632</h2>
|
||
<p class="release-meta">April 7, 2026 · v0.20260407.632</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b0950c92c5d63756c603d13fdea4c86fcc90796d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b0950c92c5d63756c603d13fdea4c86fcc90796d"><tt>b0950c9</tt></a> feat: clone the starter vault on demand</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>b0950c92</code> on 2026-04-07</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260407.632/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260407.632/laputa_0.20260407.632_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260407.632_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260407.632" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260407.631</h2>
|
||
<p class="release-meta">April 7, 2026 · v0.20260407.631</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/58dfb039cac4217cc5ca76fc32365ebda20abf50/hovercard" href="https://github.com/refactoringhq/tolaria/commit/58dfb039cac4217cc5ca76fc32365ebda20abf50"><tt>58dfb03</tt></a> feat: support relative date view filters</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>58dfb039</code> on 2026-04-07</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260407.631/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260407.631/laputa_0.20260407.631_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260407.631_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260407.631" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260407.630</h2>
|
||
<p class="release-meta">April 7, 2026 · v0.20260407.630</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c19cefe9898f658635fefad73022d83fa41338c4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c19cefe9898f658635fefad73022d83fa41338c4"><tt>c19cefe</tt></a> feat: add regex mode for view filters</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c19cefe9</code> on 2026-04-07</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260407.630/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260407.630/laputa_0.20260407.630_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260407.630_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260407.630" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260407.629</h2>
|
||
<p class="release-meta">April 7, 2026 · v0.20260407.629</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e1771ed7e6cfd29ccd5b2b4cbcd7815457101b62/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e1771ed7e6cfd29ccd5b2b4cbcd7815457101b62"><tt>e1771ed</tt></a> test: stabilize untitled draft title regression</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>e1771ed7</code> on 2026-04-07</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260407.629/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260407.629/laputa_0.20260407.629_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260407.629_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260407.629" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260407.628</h2>
|
||
<p class="release-meta">April 7, 2026 · v0.20260407.628</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/93084933267558a340e55ed195cfd818b95a42fa/hovercard" href="https://github.com/refactoringhq/tolaria/commit/93084933267558a340e55ed195cfd818b95a42fa"><tt>9308493</tt></a> test: cover AI panel shortcut regression</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/951b15d6034397016153822957f56226a23ce287/hovercard" href="https://github.com/refactoringhq/tolaria/commit/951b15d6034397016153822957f56226a23ce287"><tt>951b15d</tt></a> fix: clear missing active vault paths</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/93ef1044138925f79de1c125c49ff68a1988d452/hovercard" href="https://github.com/refactoringhq/tolaria/commit/93ef1044138925f79de1c125c49ff68a1988d452"><tt>93ef104</tt></a> fix: stop writing empty suggested properties</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>93084933</code> on 2026-04-07</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260407.628/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260407.628/laputa_0.20260407.628_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260407.628_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260407.628" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260407.627</h2>
|
||
<p class="release-meta">April 7, 2026 · v0.20260407.627</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/dd18bac5ecdf721b667a11d2af3bca238c3ce73b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/dd18bac5ecdf721b667a11d2af3bca238c3ce73b"><tt>dd18bac</tt></a> fix: tighten relationship chip typing</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/11f2dec3e97f2a3e1db18a3b2277e2edaf0248e9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/11f2dec3e97f2a3e1db18a3b2277e2edaf0248e9"><tt>11f2dec</tt></a> feat: show icons on relationship chips</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b54a5a5ad21ba8db6397fbb709759e83a54c672d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b54a5a5ad21ba8db6397fbb709759e83a54c672d"><tt>b54a5a5</tt></a> fix: allow CodeScene recovery mode</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>dd18bac5</code> on 2026-04-07</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260407.627/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260407.627/laputa_0.20260407.627_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260407.627_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260407.627" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260407.626</h2>
|
||
<p class="release-meta">April 7, 2026 · v0.20260407.626</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2bc560468d15670a4eedf508aba54a5e0c6da1f8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2bc560468d15670a4eedf508aba54a5e0c6da1f8"><tt>2bc5604</tt></a> fix: tighten note icon typing</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/66a9127430efc4d160ae0846a6af05d74770d46f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/66a9127430efc4d160ae0846a6af05d74770d46f"><tt>66a9127</tt></a> feat: add note icon property support</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>2bc56046</code> on 2026-04-07</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260407.626/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260407.626/laputa_0.20260407.626_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260407.626_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260407.626" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260407.625</h2>
|
||
<p class="release-meta">April 7, 2026 · v0.20260407.625</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/478ed789f8a71db8bba12c25c7690b7287aa805c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/478ed789f8a71db8bba12c25c7690b7287aa805c"><tt>478ed78</tt></a> fix: stop syncing title frontmatter on note open</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>478ed789</code> on 2026-04-07</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260407.625/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260407.625/laputa_0.20260407.625_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260407.625_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260407.625" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260407.624</h2>
|
||
<p class="release-meta">April 7, 2026 · v0.20260407.624</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/95d75f7a7a3bede160df03c6a2ef3decfe66fd46/hovercard" href="https://github.com/refactoringhq/tolaria/commit/95d75f7a7a3bede160df03c6a2ef3decfe66fd46"><tt>95d75f7</tt></a> fix: avoid duplicate list property drag tab index</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c56277add022d94ab863606b397f931d4453362c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c56277add022d94ab863606b397f931d4453362c"><tt>c56277a</tt></a> feat: customize inbox note list columns</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>95d75f7a</code> on 2026-04-07</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260407.624/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260407.624/laputa_0.20260407.624_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260407.624_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260407.624" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260407.623</h2>
|
||
<p class="release-meta">April 7, 2026 · v0.20260407.623</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8df4730db6831a59c659a3bdfbe4cec11af776df/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8df4730db6831a59c659a3bdfbe4cec11af776df"><tt>8df4730</tt></a> fix: narrow deleted preview active tab path</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e5f3bae8f3414bb766f2b6f08332250c79b198a1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e5f3bae8f3414bb766f2b6f08332250c79b198a1"><tt>e5f3bae</tt></a> feat: show deleted notes as restorable changes</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>8df4730d</code> on 2026-04-07</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260407.623/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260407.623/laputa_0.20260407.623_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260407.623_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260407.623" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260407.622</h2>
|
||
<p class="release-meta">April 7, 2026 · v0.20260407.622</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1f39501ce50047b40f1ee4d591f3405a20b50140/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1f39501ce50047b40f1ee4d591f3405a20b50140"><tt>1f39501</tt></a> fix: keep view filter values as plain text</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>1f39501c</code> on 2026-04-07</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260407.622/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260407.622/laputa_0.20260407.622_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260407.622_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260407.622" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260407.621</h2>
|
||
<p class="release-meta">April 7, 2026 · v0.20260407.621</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/10024dbf53907ce61afe3200e73326815a32b2c4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/10024dbf53907ce61afe3200e73326815a32b2c4"><tt>10024db</tt></a> test: slim the pre-push smoke lane</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e52d07affcbd13e6b1c9e3721737530991187882/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e52d07affcbd13e6b1c9e3721737530991187882"><tt>e52d07a</tt></a> chore: enforce main-only workflow and adopt AGENTS.md</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>10024dbf</code> on 2026-04-07</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260407.621/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260407.621/laputa_0.20260407.621_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260407.621_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260407.621" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260407.620</h2>
|
||
<p class="release-meta">April 7, 2026 · v0.20260407.620</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0d9af0fb0f9ec94fce98142174d4989a3e6a1157/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0d9af0fb0f9ec94fce98142174d4989a3e6a1157"><tt>0d9af0f</tt></a> chore: ratchet CodeScene thresholds to 9.45/9.29</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1ca2662a4bfea6b6fdcc0b41af5a70bd686baba0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1ca2662a4bfea6b6fdcc0b41af5a70bd686baba0"><tt>1ca2662</tt></a> style: satisfy rustfmt pre-push check</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/eb2758c1545e521ad84a2ae3278abd6e37883550/hovercard" href="https://github.com/refactoringhq/tolaria/commit/eb2758c1545e521ad84a2ae3278abd6e37883550"><tt>eb2758c</tt></a> fix: correct editor breadcrumb props typing</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7d308a65e05c65d418eaf2aaa5caa9d300734692/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7d308a65e05c65d418eaf2aaa5caa9d300734692"><tt>7d308a6</tt></a> fix: hide title section for untitled drafts</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/74850b5b696db33f557168956b7443f139ddad55/hovercard" href="https://github.com/refactoringhq/tolaria/commit/74850b5b696db33f557168956b7443f139ddad55"><tt>74850b5</tt></a> docs: rewrite vault AGENTS.md template — vault-agnostic, H1-as-title convention</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e486e863ce77d8abce6b10db06cfef8caca75a44/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e486e863ce77d8abce6b10db06cfef8caca75a44"><tt>e486e86</tt></a> fix: open editor immediately when clicking suggested property slots</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/132618ebd32ccc90aa14e2ce5706f4c49bb6a0a9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/132618ebd32ccc90aa14e2ce5706f4c49bb6a0a9"><tt>132618e</tt></a> docs: add/update ADRs for H1-as-title and Trash removal (guard — from commits <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/377a3f8d0e4208f2ca95a1e458465edb1ae3a59e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/377a3f8d0e4208f2ca95a1e458465edb1ae3a59e"><tt>377a3f8</tt></a>, <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7daf6898c1a57232c93fa297ba35b282f3611227/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7daf6898c1a57232c93fa297ba35b282f3611227"><tt>7daf689</tt></a>, <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e581ad36916aa8a73e5dcbec782b4b13710cc94a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e581ad36916aa8a73e5dcbec782b4b13710cc94a"><tt>e581ad3</tt></a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>0d9af0fb</code> on 2026-04-07</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260407.620/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260407.620/laputa_0.20260407.620_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260407.620_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260407.620" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260406.619</h2>
|
||
<p class="release-meta">April 6, 2026 · v0.20260406.619</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d29d5a03aec00a42bae769e200908c98d32701c8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d29d5a03aec00a42bae769e200908c98d32701c8"><tt>d29d5a0</tt></a> chore: restore ui-design.pen (Pencil design file — not stale)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/084c58fed8798e1b8ad689c771334f320b59fbc8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/084c58fed8798e1b8ad689c771334f320b59fbc8"><tt>084c58f</tt></a> docs: restore VISION.md — product vision, strategy and design principles</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/63d85bf67f49a0b3473547d13de7b17fa6a01747/hovercard" href="https://github.com/refactoringhq/tolaria/commit/63d85bf67f49a0b3473547d13de7b17fa6a01747"><tt>63d85bf</tt></a> chore: remove remaining stale screenshots</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/17d67013dcd4bcdf7949a77bd7b974b42592f606/hovercard" href="https://github.com/refactoringhq/tolaria/commit/17d67013dcd4bcdf7949a77bd7b974b42592f606"><tt>17d6701</tt></a> chore: remove stale docs and assets (PROJECT-SPEC, ROADMAP, VISION, Design System Proposal, iPad Prototype, screenshots, untitled notes, prompt.txt, ui-design.pen)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>d29d5a03</code> on 2026-04-06</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260406.619/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260406.619/laputa_0.20260406.619_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260406.619_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260406.619" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260406.616</h2>
|
||
<p class="release-meta">April 6, 2026 · v0.20260406.616</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/458898f6324c88921458fed43b842d75a336df11/hovercard" href="https://github.com/refactoringhq/tolaria/commit/458898f6324c88921458fed43b842d75a336df11"><tt>458898f</tt></a> fix: suggested property slots now reliably open editor after click</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>458898f6</code> on 2026-04-06</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260406.616/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260406.616/laputa_0.20260406.616_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260406.616_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260406.616" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260406.615</h2>
|
||
<p class="release-meta">April 6, 2026 · v0.20260406.615</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/89a605262cc84b668e141e5a3689a5d1eee24052/hovercard" href="https://github.com/refactoringhq/tolaria/commit/89a605262cc84b668e141e5a3689a5d1eee24052"><tt>89a6052</tt></a> docs: require completion comment on Todoist task before /laputa-done (QA, refactoring, ADRs, code health)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>89a60526</code> on 2026-04-06</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260406.615/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260406.615/laputa_0.20260406.615_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260406.615_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260406.615" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260406.614</h2>
|
||
<p class="release-meta">April 6, 2026 · v0.20260406.614</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e097c5b7170d520a2e55902a3f54a0ff2b1121a3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e097c5b7170d520a2e55902a3f54a0ff2b1121a3"><tt>e097c5b</tt></a> docs: require pre-task code health check — refactor before feature work if below gate</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c0df2124ff8749592127d0f7fe522f8934df2816/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c0df2124ff8749592127d0f7fe522f8934df2816"><tt>c0df212</tt></a> fix: sync custom properties to VaultEntry on frontmatter changes</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>e097c5b7</code> on 2026-04-06</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260406.614/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260406.614/laputa_0.20260406.614_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260406.614_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260406.614" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260406.613</h2>
|
||
<p class="release-meta">April 6, 2026 · v0.20260406.613</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7f11f3e3eabc4353a65b93b7d10896cfd551c9c9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7f11f3e3eabc4353a65b93b7d10896cfd551c9c9"><tt>7f11f3e</tt></a> fix: forbid lowering CodeScene thresholds in CLAUDE.md</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f02bb680210f701dcaed1f01f11de3510a7ce0e3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f02bb680210f701dcaed1f01f11de3510a7ce0e3"><tt>f02bb68</tt></a> feat: add note count chips to sidebar view entries</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>7f11f3e3</code> on 2026-04-06</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260406.613/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260406.613/laputa_0.20260406.613_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260406.613_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260406.613" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260406.612</h2>
|
||
<p class="release-meta">April 6, 2026 · v0.20260406.612</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/80914e1e3c066483a5c5a5452bbc0a1b7e76ff49/hovercard" href="https://github.com/refactoringhq/tolaria/commit/80914e1e3c066483a5c5a5452bbc0a1b7e76ff49"><tt>80914e1</tt></a> style: cargo fmt on mod_tests.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/94d07f0d478ce458d4a3e67a511618249fe5552c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/94d07f0d478ce458d4a3e67a511618249fe5552c"><tt>94d07f0</tt></a> fix: stabilize flaky SearchPanel keyboard tests with act() wrapping</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ef0709a795524433906f3ace926d0900610e7607/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ef0709a795524433906f3ace926d0900610e7607"><tt>ef0709a</tt></a> fix: don't bake demo-vault-v2 path into CI builds</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/eac3b123c41b919161d8a048c12147994a6fb64a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/eac3b123c41b919161d8a048c12147994a6fb64a"><tt>eac3b12</tt></a> fix: sanitize gray_matter YAML output to handle unquoted colons and hash comments in list items</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/25d9da544015369b336c39dc191ee30d1887ec0d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/25d9da544015369b336c39dc191ee30d1887ec0d"><tt>25d9da5</tt></a> style: cargo fmt</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e366c84b659948af5465a97ea4cc654179f3c267/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e366c84b659948af5465a97ea4cc654179f3c267"><tt>e366c84</tt></a> fix: add hasH1 to mock entries for build compatibility</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7daf6898c1a57232c93fa297ba35b282f3611227/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7daf6898c1a57232c93fa297ba35b282f3611227"><tt>7daf689</tt></a> feat: auto-rename untitled notes + Rust title resolution tests</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/377a3f8d0e4208f2ca95a1e458465edb1ae3a59e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/377a3f8d0e4208f2ca95a1e458465edb1ae3a59e"><tt>377a3f8</tt></a> feat: H1-as-title — title resolution, TitleField hiding, breadcrumb filename</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/901326d06f739ded6f6c533ee5c8293a76609b6b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/901326d06f739ded6f6c533ee5c8293a76609b6b"><tt>901326d</tt></a> fix: change AI panel shortcut from Cmd+Option+I to Cmd+Shift+L</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>80914e1e</code> on 2026-04-06</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260406.612/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260406.612/laputa_0.20260406.612_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260406.612_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260406.612" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260406.610</h2>
|
||
<p class="release-meta">April 6, 2026 · v0.20260406.610</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d378e488f1a2cad91b7a7583f85dce87bf7d306d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d378e488f1a2cad91b7a7583f85dce87bf7d306d"><tt>d378e48</tt></a> fix: remove remaining trash navigation command and header title</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e581ad36916aa8a73e5dcbec782b4b13710cc94a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e581ad36916aa8a73e5dcbec782b4b13710cc94a"><tt>e581ad3</tt></a> refactor: remove Trash system — delete is now permanent with confirm modal</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>d378e488</code> on 2026-04-06</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260406.610/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260406.610/laputa_0.20260406.610_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260406.610_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260406.610" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260406.609</h2>
|
||
<p class="release-meta">April 6, 2026 · v0.20260406.609</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/09f7498e86d74deaca89571fc4ef819bced77250/hovercard" href="https://github.com/refactoringhq/tolaria/commit/09f7498e86d74deaca89571fc4ef819bced77250"><tt>09f7498</tt></a> fix: Cmd+Option+arrow navigation now follows the visible note list order</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>09f7498e</code> on 2026-04-06</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260406.609/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260406.609/laputa_0.20260406.609_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260406.609_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260406.609" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260405.608</h2>
|
||
<p class="release-meta">April 5, 2026 · v0.20260405.608</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7443b9a468af9a7c150a1541e1900111ff49329b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7443b9a468af9a7c150a1541e1900111ff49329b"><tt>7443b9a</tt></a> fix: show Add button immediately in suggested relationship slots</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>7443b9a4</code> on 2026-04-05</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260405.608/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260405.608/laputa_0.20260405.608_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260405.608_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260405.608" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260405.607</h2>
|
||
<p class="release-meta">April 5, 2026 · v0.20260405.607</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/12f8fad0f0c9f78351e80f36684d481573db4c97/hovercard" href="https://github.com/refactoringhq/tolaria/commit/12f8fad0f0c9f78351e80f36684d481573db4c97"><tt>12f8fad</tt></a> fix: align suggested property slots with real properties in Inspector</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c90b1d669407b6e13cf7fe06482af55749777473/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c90b1d669407b6e13cf7fe06482af55749777473"><tt>c90b1d6</tt></a> fix: add bottom padding to Favorites list matching top padding</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>12f8fad0</code> on 2026-04-05</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260405.607/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260405.607/laputa_0.20260405.607_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260405.607_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260405.607" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260405.606</h2>
|
||
<p class="release-meta">April 5, 2026 · v0.20260405.606</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/806b552d473bcdde24554e487ec31328a7abdd0e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/806b552d473bcdde24554e487ec31328a7abdd0e"><tt>806b552</tt></a> fix: default sidebar section to Inbox on app launch and vault switch</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>806b552d</code> on 2026-04-05</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260405.606/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260405.606/laputa_0.20260405.606_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260405.606_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260405.606" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260405.605</h2>
|
||
<p class="release-meta">April 5, 2026 · v0.20260405.605</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2cd192fae6d9bd6ee71335a0f98c9c48e9824c0f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2cd192fae6d9bd6ee71335a0f98c9c48e9824c0f"><tt>2cd192f</tt></a> style: apply rustfmt to classify_file_kind tests</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/46106da47a9faba9afb38095c7a23a03fa926239/hovercard" href="https://github.com/refactoringhq/tolaria/commit/46106da47a9faba9afb38095c7a23a03fa926239"><tt>46106da</tt></a> fix: pass forceRawMode through ActiveTabBreadcrumb to BreadcrumbBar</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0051559b8e2a2095edef15199f5f9ad6f617e92b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0051559b8e2a2095edef15199f5f9ad6f617e92b"><tt>0051559</tt></a> fix: hide Raw toggle for non-markdown files forced into raw editor</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3f19528cb6b9b0425152bcabebc841669c01095a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3f19528cb6b9b0425152bcabebc841669c01095a"><tt>3f19528</tt></a> fix: wikilink filter values now match frontmatter format with alias support</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>2cd192fa</code> on 2026-04-05</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260405.605/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260405.605/laputa_0.20260405.605_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260405.605_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260405.605" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260405.604</h2>
|
||
<p class="release-meta">April 5, 2026 · v0.20260405.604</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/24e5b537d6492a2d257951a1472bed2f7289ccb3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/24e5b537d6492a2d257951a1472bed2f7289ccb3"><tt>24e5b53</tt></a> fix: wikilink autocomplete in FilterBuilder no longer clipped by dialog</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>24e5b537</code> on 2026-04-05</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260405.604/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260405.604/laputa_0.20260405.604_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260405.604_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260405.604" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260405.603</h2>
|
||
<p class="release-meta">April 5, 2026 · v0.20260405.603</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f8f6e3d003745f3e1dedba2783345b89f83c1ef1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f8f6e3d003745f3e1dedba2783345b89f83c1ef1"><tt>f8f6e3d</tt></a> fix: always show note title in breadcrumb bar when raw/diff mode active</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ba9b5c7c31ae5816e265962e1670f340a9e402c4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ba9b5c7c31ae5816e265962e1670f340a9e402c4"><tt>ba9b5c7</tt></a> fix: make Select scroll buttons functional by using overflow-hidden on Content</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>f8f6e3d0</code> on 2026-04-05</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260405.603/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260405.603/laputa_0.20260405.603_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260405.603_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260405.603" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260405.602</h2>
|
||
<p class="release-meta">April 5, 2026 · v0.20260405.602</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1930e7132b43ace990b6c9d98c1a63139f96c176/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1930e7132b43ace990b6c9d98c1a63139f96c176"><tt>1930e71</tt></a> fix: show types with 0 notes in sidebar by iterating typeEntryMap</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8a51ff5f3c593b33684cc1283a9d2ab9c58cb264/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8a51ff5f3c593b33684cc1283a9d2ab9c58cb264"><tt>8a51ff5</tt></a> fix: wrap title + editor in editor-content-wrapper for consistent horizontal padding</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>1930e713</code> on 2026-04-05</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260405.602/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260405.602/laputa_0.20260405.602_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260405.602_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260405.602" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260405.601</h2>
|
||
<p class="release-meta">April 5, 2026 · v0.20260405.601</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/56cb878d0b04eca8a73d033e0192981d024ddfc6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/56cb878d0b04eca8a73d033e0192981d024ddfc6"><tt>56cb878</tt></a> style: fix rustfmt formatting in trash.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/52a673e16e77cd1b0e7a1a5c1ca8302034b0a8a2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/52a673e16e77cd1b0e7a1a5c1ca8302034b0a8a2"><tt>52a673e</tt></a> feat: auto-purge notes trashed 30+ days ago on app launch</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fe44153ac6873cf3300d790d1466cb2ed88dcc76/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fe44153ac6873cf3300d790d1466cb2ed88dcc76"><tt>fe44153</tt></a> fix: exclude non-markdown files from Inbox view</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>56cb878d</code> on 2026-04-05</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260405.601/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260405.601/laputa_0.20260405.601_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260405.601_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260405.601" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260405.600</h2>
|
||
<p class="release-meta">April 5, 2026 · v0.20260405.600</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/088e0bca8e27109a8f9cf189cbffab9ce24d39f7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/088e0bca8e27109a8f9cf189cbffab9ce24d39f7"><tt>088e0bc</tt></a> feat: show YAML name field as title for .yml files in breadcrumb bar</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>088e0bca</code> on 2026-04-05</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260405.600/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260405.600/laputa_0.20260405.600_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260405.600_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260405.600" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260405.599</h2>
|
||
<p class="release-meta">April 5, 2026 · v0.20260405.599</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/45249bade42570f6e8fb803f967dfea10853f46b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/45249bade42570f6e8fb803f967dfea10853f46b"><tt>45249ba</tt></a> feat: replace native date picker with shadcn/ui Calendar + Popover in filter builder</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>45249bad</code> on 2026-04-05</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260405.599/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260405.599/laputa_0.20260405.599_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260405.599_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260405.599" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260405.598</h2>
|
||
<p class="release-meta">April 5, 2026 · v0.20260405.598</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/917773bc4c2e038e945901c9ed42fe29734646bf/hovercard" href="https://github.com/refactoringhq/tolaria/commit/917773bc4c2e038e945901c9ed42fe29734646bf"><tt>917773b</tt></a> feat: GitHub Desktop-style Changes view — filenames, status icons, auto-diff</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>917773bc</code> on 2026-04-05</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260405.598/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260405.598/laputa_0.20260405.598_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260405.598_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260405.598" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260405.597</h2>
|
||
<p class="release-meta">April 5, 2026 · v0.20260405.597</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d39d691ccdc6a5a362fb36b3d6017ef6e027422b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d39d691ccdc6a5a362fb36b3d6017ef6e027422b"><tt>d39d691</tt></a> feat: disable BlockNote/Mantine editor animations and transitions</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>d39d691c</code> on 2026-04-05</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260405.597/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260405.597/laputa_0.20260405.597_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260405.597_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260405.597" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260405.596</h2>
|
||
<p class="release-meta">April 5, 2026 · v0.20260405.596</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/98effa9637d1d9097477758cc7a0a5ce945eab6f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/98effa9637d1d9097477758cc7a0a5ce945eab6f"><tt>98effa9</tt></a> fix: resolve TypeScript errors in Sidebar and NoteList</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e966f3a14b48022dfc8e6d008879eeee5c3731aa/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e966f3a14b48022dfc8e6d008879eeee5c3731aa"><tt>e966f3a</tt></a> feat: remove AI Provider Keys section from Settings</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4ac2d994c171450c4b846051be1bbccfd3527910/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4ac2d994c171450c4b846051be1bbccfd3527910"><tt>4ac2d99</tt></a> feat: reactive vault state — editor changes propagate immediately to all UI</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>98effa96</code> on 2026-04-05</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260405.596/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260405.596/laputa_0.20260405.596_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260405.596_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260405.596" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260404.595</h2>
|
||
<p class="release-meta">April 4, 2026 · v0.20260404.595</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/043766f86ef20766e3c5c541cc3bb873e2e2bdba/hovercard" href="https://github.com/refactoringhq/tolaria/commit/043766f86ef20766e3c5c541cc3bb873e2e2bdba"><tt>043766f</tt></a> fix: include non-.md files in vault cache incremental updates</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/09e8d038517417420ea343cbfe71b1f394b9a247/hovercard" href="https://github.com/refactoringhq/tolaria/commit/09e8d038517417420ea343cbfe71b1f394b9a247"><tt>09e8d03</tt></a> test: update Sidebar test to match new behavior — types with 0 notes shown</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>043766f8</code> on 2026-04-04</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.595/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.595/laputa_0.20260404.595_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260404.595_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260404.595" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260404.594</h2>
|
||
<p class="release-meta">April 4, 2026 · v0.20260404.594</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9fa1c52a96b829a20fd5bda97f6ef2efec62e9b0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9fa1c52a96b829a20fd5bda97f6ef2efec62e9b0"><tt>9fa1c52</tt></a> fix: wrap SearchPanel Enter keyDown in act() to prevent flaky test</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>9fa1c52a</code> on 2026-04-04</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.594/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.594/laputa_0.20260404.594_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260404.594_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260404.594" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260404.593</h2>
|
||
<p class="release-meta">April 4, 2026 · v0.20260404.593</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d32b11f02e17aceb710f01fe55943192a2103e3a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d32b11f02e17aceb710f01fe55943192a2103e3a"><tt>d32b11f</tt></a> feat: add body content filter support in Rust backend</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>d32b11f0</code> on 2026-04-04</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.593/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.593/laputa_0.20260404.593_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260404.593_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260404.593" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260404.592</h2>
|
||
<p class="release-meta">April 4, 2026 · v0.20260404.592</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6b2d34fec40187a1dab419b81d0e60d3249cdb74/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6b2d34fec40187a1dab419b81d0e60d3249cdb74"><tt>6b2d34f</tt></a> feat: add organized toggle to breadcrumb bar and command palette</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6693615791676f92a101fa85fc17df93a959fa36/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6693615791676f92a101fa85fc17df93a959fa36"><tt>6693615</tt></a> refactor: replace relationship-based inbox logic with _organized property</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>6b2d34fe</code> on 2026-04-04</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.592/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.592/laputa_0.20260404.592_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260404.592_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260404.592" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260404.591</h2>
|
||
<p class="release-meta">April 4, 2026 · v0.20260404.591</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e47c653b8b23acb3952ef6e973d3f754bd28b483/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e47c653b8b23acb3952ef6e973d3f754bd28b483"><tt>e47c653</tt></a> feat: add + button to TYPES header for creating new types</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/60ecc4dd0e29987857b365ab9940cf2d28c9907f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/60ecc4dd0e29987857b365ab9940cf2d28c9907f"><tt>60ecc4d</tt></a> fix: use full vault reload after view create/delete for reliable FOLDERS update</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>e47c653b</code> on 2026-04-04</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.591/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.591/laputa_0.20260404.591_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260404.591_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260404.591" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260404.590</h2>
|
||
<p class="release-meta">April 4, 2026 · v0.20260404.590</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5323ec6eded52ac25cc318a47034d4c861441332/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5323ec6eded52ac25cc318a47034d4c861441332"><tt>5323ec6</tt></a> fix: rustfmt formatting in discard_file_changes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a007b37089176709df5fcf450eaf9ff213c5280d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a007b37089176709df5fcf450eaf9ff213c5280d"><tt>a007b37</tt></a> feat: add per-file discard changes in Changes view</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>5323ec6e</code> on 2026-04-04</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.590/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.590/laputa_0.20260404.590_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260404.590_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260404.590" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260404.589</h2>
|
||
<p class="release-meta">April 4, 2026 · v0.20260404.589</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3c4f6ccabdd61b5f6fe1f728c6a8cbb802d5d293/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3c4f6ccabdd61b5f6fe1f728c6a8cbb802d5d293"><tt>3c4f6cc</tt></a> fix: coerce claudeCodeStatus/Version null→undefined for AppCommandsConfig</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/313b11fb0e3f42c0386b323d5b59aac32eeb695b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/313b11fb0e3f42c0386b323d5b59aac32eeb695b"><tt>313b11f</tt></a> fix: add claudeCodeStatus/claudeCodeVersion to AppCommandsConfig (TS error)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/df1cff97b976a2717dc59a34e4ba619360b38ec1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/df1cff97b976a2717dc59a34e4ba619360b38ec1"><tt>df1cff9</tt></a> fix: update pnpm lockfile for @blocknote/core patch (CI frozen-lockfile fix)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2b419b48a03be62777b74bc96f35f16725b134b7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2b419b48a03be62777b74bc96f35f16725b134b7"><tt>2b419b4</tt></a> feat: add Claude Code detected/missing badge to status bar</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f8d080e678b7668fcea57bb97d4a343b63d7a6e3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f8d080e678b7668fcea57bb97d4a343b63d7a6e3"><tt>f8d080e</tt></a> feat: add body content filter for Views (contains/does not contain)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9f905169cb9352789c6235e1e784ec355a7b3ffc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9f905169cb9352789c6235e1e784ec355a7b3ffc"><tt>9f90516</tt></a> feat: add suggested property/relationship slots in Inspector</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ef0288268cc3d7503190b5335d954aaec280a25b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ef0288268cc3d7503190b5335d954aaec280a25b"><tt>ef02882</tt></a> feat: move Info section below Backlinks in Inspector, add Phosphor icon</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1d3927ca2b5a4b4dda9ee67cbc210cbbd4159023/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1d3927ca2b5a4b4dda9ee67cbc210cbbd4159023"><tt>1d3927c</tt></a> fix: rename "Link existing" to "Add relationship" in Inspector</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2feff35764b4739b3c389089fb7bd2eff1f4aa32/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2feff35764b4739b3c389089fb7bd2eff1f4aa32"><tt>2feff35</tt></a> feat: enrich getting-started-vault with real PKM example notes (Luca's system, guided Welcome)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6f66cf0d9c42bddd69942d945edb6ec5e77bf905/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6f66cf0d9c42bddd69942d945edb6ec5e77bf905"><tt>6f66cf0</tt></a> fix: wikilink autocomplete triggers mid-text, not only on empty lines</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/aaa46f8d20a6c6efeccafe435992aafc7c2a9642/hovercard" href="https://github.com/refactoringhq/tolaria/commit/aaa46f8d20a6c6efeccafe435992aafc7c2a9642"><tt>aaa46f8</tt></a> refactor: simplify getting-started-vault (3 types: Note/Topic/Person, no prefixes in filenames, Welcome as home)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f384b6fad3d619fce0c1d3ef3196e163cc7369a0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f384b6fad3d619fce0c1d3ef3196e163cc7369a0"><tt>f384b6f</tt></a> feat: redesign welcome screen with three vault options</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>3c4f6cca</code> on 2026-04-04</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.589/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.589/laputa_0.20260404.589_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260404.589_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260404.589" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260404.584</h2>
|
||
<p class="release-meta">April 4, 2026 · v0.20260404.584</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/de122ad0454029e92a2b17f5eddde3fa192adb8b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/de122ad0454029e92a2b17f5eddde3fa192adb8b"><tt>de122ad</tt></a> feat: include Type definitions in command palette's dynamic commands</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>de122ad0</code> on 2026-04-04</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.584/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.584/laputa_0.20260404.584_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260404.584_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260404.584" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260404.583</h2>
|
||
<p class="release-meta">April 4, 2026 · v0.20260404.583</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c0a64e181bea1e85d81c76c41a5c3f1cf3c3c12a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c0a64e181bea1e85d81c76c41a5c3f1cf3c3c12a"><tt>c0a64e1</tt></a> fix: apply rustfmt formatting to vault module</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fe85d1f679084716ae9d404c61771a6fc0849e14/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fe85d1f679084716ae9d404c61771a6fc0849e14"><tt>fe85d1f</tt></a> feat: add getting-started-vault with onboarding content</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9db5f5cbed1036b33368e47539453ffc96dd6c8a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9db5f5cbed1036b33368e47539453ffc96dd6c8a"><tt>9db5f5c</tt></a> fix: add listPropertiesDisplay to remaining VaultEntry literals</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/13c0802395d1f0ff4004fc96a543e5cba5535e13/hovercard" href="https://github.com/refactoringhq/tolaria/commit/13c0802395d1f0ff4004fc96a543e5cba5535e13"><tt>13c0802</tt></a> fix: add listPropertiesDisplay to mock entries for type check</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4c44f8e96688d6754af9127e054f2736ee89bd1e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4c44f8e96688d6754af9127e054f2736ee89bd1e"><tt>4c44f8e</tt></a> feat: add type-specific property chips in note list</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c0a64e18</code> on 2026-04-04</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.583/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.583/laputa_0.20260404.583_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260404.583_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260404.583" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260404.582</h2>
|
||
<p class="release-meta">April 4, 2026 · v0.20260404.582</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2b135d208ee38886711773deadb9d74f25ec8dd7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2b135d208ee38886711773deadb9d74f25ec8dd7"><tt>2b135d2</tt></a> fix: remove Update channel from Settings, keep only Release channel</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/076860632cf81c54f7f99f14917b3ceb086491ba/hovercard" href="https://github.com/refactoringhq/tolaria/commit/076860632cf81c54f7f99f14917b3ceb086491ba"><tt>0768606</tt></a> fix: rename SECTIONS to TYPES in sidebar header</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/520ec504fe46f6908fab7f412a2dacb9530e09ad/hovercard" href="https://github.com/refactoringhq/tolaria/commit/520ec504fe46f6908fab7f412a2dacb9530e09ad"><tt>520ec50</tt></a> fix: enforce priority sort in laputa-next-task (p1 before p3/p4)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>2b135d20</code> on 2026-04-04</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.582/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.582/laputa_0.20260404.582_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260404.582_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260404.582" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260404.581</h2>
|
||
<p class="release-meta">April 4, 2026 · v0.20260404.581</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cdb3eeea4cbd2e5291f81ddc08b644d63bcfab30/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cdb3eeea4cbd2e5291f81ddc08b644d63bcfab30"><tt>cdb3eee</tt></a> fix: update vault entries immediately after view create/delete</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>cdb3eeea</code> on 2026-04-04</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.581/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.581/laputa_0.20260404.581_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260404.581_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260404.581" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260404.580</h2>
|
||
<p class="release-meta">April 4, 2026 · v0.20260404.580</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f68436c2e0b784d6da17e7e5576befca232a56f8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f68436c2e0b784d6da17e7e5576befca232a56f8"><tt>f68436c</tt></a> fix: remove Inbox period filter pills, show all notes by default</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7c03c50e2532fa5d3b46448f4a832ebf7c0773d1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7c03c50e2532fa5d3b46448f4a832ebf7c0773d1"><tt>7c03c50</tt></a> fix: prevent CI runner vault path from leaking into distributed builds</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/24911b6bb7fb439b8c5617bfd6c87785c2c43bf8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/24911b6bb7fb439b8c5617bfd6c87785c2c43bf8"><tt>24911b6</tt></a> fix: remove Quarter filter pill from Inbox, keep Week/Month/All</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/51914db534296ba8aac20ad46a27137520cd2c1c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/51914db534296ba8aac20ad46a27137520cd2c1c"><tt>51914db</tt></a> test: add Playwright smoke test for filter wikilink autocomplete</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e4ffeeccc0184b9ed91fff4d91f55279967e0f1d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e4ffeeccc0184b9ed91fff4d91f55279967e0f1d"><tt>e4ffeec</tt></a> feat: add wikilink autocomplete on [[ in view filter value field</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>f68436c2</code> on 2026-04-04</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.580/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.580/laputa_0.20260404.580_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260404.580_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260404.580" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260404.579</h2>
|
||
<p class="release-meta">April 4, 2026 · v0.20260404.579</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8ec33b99b5752a8ca42773b577ac850bc5474afb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8ec33b99b5752a8ca42773b577ac850bc5474afb"><tt>8ec33b9</tt></a> docs: add mandatory UI components rules to CLAUDE.md — always use shadcn/ui, never raw HTML</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>8ec33b99</code> on 2026-04-04</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.579/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.579/laputa_0.20260404.579_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260404.579_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260404.579" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260404.578</h2>
|
||
<p class="release-meta">April 4, 2026 · v0.20260404.578</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/638678184ed136d15953d3f1ff9bcc7e091a06c6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/638678184ed136d15953d3f1ff9bcc7e091a06c6"><tt>6386781</tt></a> fix: add type="button" to EmojiPicker buttons to prevent form submission</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/62af7a3d6e3b8a027cd2f95c64cb14f58a771774/hovercard" href="https://github.com/refactoringhq/tolaria/commit/62af7a3d6e3b8a027cd2f95c64cb14f58a771774"><tt>62af7a3</tt></a> fix: parse date strings in view filter before/after operators</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>63867818</code> on 2026-04-04</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.578/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.578/laputa_0.20260404.578_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260404.578_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260404.578" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260404.577</h2>
|
||
<p class="release-meta">April 4, 2026 · v0.20260404.577</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ef9f3ec21f8304b9288a0271210679942eee4e24/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ef9f3ec21f8304b9288a0271210679942eee4e24"><tt>ef9f3ec</tt></a> feat: rebuild FilterBuilder with shadcn/ui components</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>ef9f3ec2</code> on 2026-04-04</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.577/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.577/laputa_0.20260404.577_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260404.577_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260404.577" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260404.576</h2>
|
||
<p class="release-meta">April 4, 2026 · v0.20260404.576</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0d91e29e829edc13f93f36b4d3cc9db921fd3110/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0d91e29e829edc13f93f36b4d3cc9db921fd3110"><tt>0d91e29</tt></a> style: apply rustfmt to views migration code</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/77d59e3ee09e0796aa8daa46ddf4299371be3446/hovercard" href="https://github.com/refactoringhq/tolaria/commit/77d59e3ee09e0796aa8daa46ddf4299371be3446"><tt>77d59e3</tt></a> feat: move view storage from .laputa/views/ to views/ in vault root</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f37de38d2185cbb821dc509f2ade86e57b3d1cf2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f37de38d2185cbb821dc509f2ade86e57b3d1cf2"><tt>f37de38</tt></a> feat: add edit button (pencil) on hover for sidebar view items</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/51ce27f78196893ef3b0f2307a522d39fea70a21/hovercard" href="https://github.com/refactoringhq/tolaria/commit/51ce27f78196893ef3b0f2307a522d39fea70a21"><tt>51ce27f</tt></a> fix: show view emoji icon in sidebar instead of default funnel</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>0d91e29e</code> on 2026-04-04</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.576/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.576/laputa_0.20260404.576_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260404.576_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260404.576" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260404.575</h2>
|
||
<p class="release-meta">April 4, 2026 · v0.20260404.575</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4a48833dbc4a7bdd74dd04eb87178707e58942a5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4a48833dbc4a7bdd74dd04eb87178707e58942a5"><tt>4a48833</tt></a> fix: use substring match for contains/not_contains on relationship fields</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>4a48833d</code> on 2026-04-04</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.575/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.575/laputa_0.20260404.575_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260404.575_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260404.575" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260404.574</h2>
|
||
<p class="release-meta">April 4, 2026 · v0.20260404.574</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d21eef8aa6395f1a03f7c5efb223c23a923e450b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d21eef8aa6395f1a03f7c5efb223c23a923e450b"><tt>d21eef8</tt></a> fix: resize Create View dialog and make filters scrollable</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>d21eef8a</code> on 2026-04-04</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.574/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260404.574/laputa_0.20260404.574_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260404.574_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260404.574" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260403.573</h2>
|
||
<p class="release-meta">April 3, 2026 · v0.20260403.573</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/13f503691ed981504b8b5bc58a0ca6ea8439b110/hovercard" href="https://github.com/refactoringhq/tolaria/commit/13f503691ed981504b8b5bc58a0ca6ea8439b110"><tt>13f5036</tt></a> fix: match view items to section items style in sidebar</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>13f50369</code> on 2026-04-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.573/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.573/laputa_0.20260403.573_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260403.573_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260403.573" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260403.572</h2>
|
||
<p class="release-meta">April 3, 2026 · v0.20260403.572</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/17a327173b3eeab41f4c64cf4d9b128a9f783c86/hovercard" href="https://github.com/refactoringhq/tolaria/commit/17a327173b3eeab41f4c64cf4d9b128a9f783c86"><tt>17a3271</tt></a> fix: move separator outside SECTIONS group — between groups, not inside</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6eb4963952b42f593c87cf5c23bf45576e28b4c4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6eb4963952b42f593c87cf5c23bf45576e28b4c4"><tt>6eb4963</tt></a> fix: equalize top/bottom padding on all sidebar group headers</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>17a32717</code> on 2026-04-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.572/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.572/laputa_0.20260403.572_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260403.572_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260403.572" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260403.571</h2>
|
||
<p class="release-meta">April 3, 2026 · v0.20260403.571</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b51b464605d6f9adc02f7ced502ee9f1b33f1bec/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b51b464605d6f9adc02f7ced502ee9f1b33f1bec"><tt>b51b464</tt></a> chore: ratchet CodeScene thresholds to 9.56/9.33</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a3b5b2244efc5ff78391cc87ae0b880c32ee0dd0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a3b5b2244efc5ff78391cc87ae0b880c32ee0dd0"><tt>a3b5b22</tt></a> fix: lower CodeScene thresholds to match current remote scores</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/38f83b55e051d657ced4496f14e1ce21fbebc7e8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/38f83b55e051d657ced4496f14e1ce21fbebc7e8"><tt>38f83b5</tt></a> fix: align FOLDERS header padding with FAVORITES/VIEWS/SECTIONS in sidebar</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>b51b4646</code> on 2026-04-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.571/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.571/laputa_0.20260403.571_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260403.571_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260403.571" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260403.570</h2>
|
||
<p class="release-meta">April 3, 2026 · v0.20260403.570</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a5652b3f4d11addb04b3a620542e1bdfb967895f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a5652b3f4d11addb04b3a620542e1bdfb967895f"><tt>a5652b3</tt></a> fix: path display below title — focus-only visibility + robust path computation</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/56faffdcc84d36810f317cbddc2d6ddd4d5b542a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/56faffdcc84d36810f317cbddc2d6ddd4d5b542a"><tt>56faffd</tt></a> fix: editor title textarea clips wrapped lines — add field-sizing + robust auto-resize</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>a5652b3f</code> on 2026-04-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.570/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.570/laputa_0.20260403.570_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260403.570_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260403.570" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260403.569</h2>
|
||
<p class="release-meta">April 3, 2026 · v0.20260403.569</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c01f340851c1ce187e847384ea52873a3972607a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c01f340851c1ce187e847384ea52873a3972607a"><tt>c01f340</tt></a> feat: unify sidebar group headers — all caps, chevron, collapsable with separators</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c01f3408</code> on 2026-04-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.569/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.569/laputa_0.20260403.569_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260403.569_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260403.569" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260403.568</h2>
|
||
<p class="release-meta">April 3, 2026 · v0.20260403.568</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a0fc97e5cfd898decd7068bd753274f4e556ccfd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a0fc97e5cfd898decd7068bd753274f4e556ccfd"><tt>a0fc97e</tt></a> feat: release channels (alpha/beta/stable) via PostHog feature flags</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>a0fc97e5</code> on 2026-04-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.568/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.568/laputa_0.20260403.568_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260403.568_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260403.568" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260403.567</h2>
|
||
<p class="release-meta">April 3, 2026 · v0.20260403.567</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3172425a167e32ecee8ef0b8d3caddeec6206980/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3172425a167e32ecee8ef0b8d3caddeec6206980"><tt>3172425</tt></a> feat: implement PostHog event tracking plan</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>3172425a</code> on 2026-04-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.567/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.567/laputa_0.20260403.567_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260403.567_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260403.567" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260403.566</h2>
|
||
<p class="release-meta">April 3, 2026 · v0.20260403.566</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9b93a17cec2a977259a88310b7a6bf85a29cc138/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9b93a17cec2a977259a88310b7a6bf85a29cc138"><tt>9b93a17</tt></a> feat: migrate from @sentry/browser to @sentry/react</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/aec4e9e99288ec0f3127e707950649900026f760/hovercard" href="https://github.com/refactoringhq/tolaria/commit/aec4e9e99288ec0f3127e707950649900026f760"><tt>aec4e9e</tt></a> fix: editor title wraps to multiple lines instead of overflow hidden</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>9b93a17</code> on 2026-04-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.566/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.566/laputa_0.20260403.566_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260403.566_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260403.566" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260403.565</h2>
|
||
<p class="release-meta">April 3, 2026 · v0.20260403.565</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1bca32a263b8ccf4ae5c6f65e5cb21d96af183a3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1bca32a263b8ccf4ae5c6f65e5cb21d96af183a3"><tt>1bca32a</tt></a> fix: note path below title — show only on focus, remove duplicate filename</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>1bca32a</code> on 2026-04-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.565/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.565/laputa_0.20260403.565_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260403.565_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260403.565" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260403.564</h2>
|
||
<p class="release-meta">April 3, 2026 · v0.20260403.564</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d5c3e1858ecf1fe2186850fbb1150fa8b8ab2c51/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d5c3e1858ecf1fe2186850fbb1150fa8b8ab2c51"><tt>d5c3e18</tt></a> feat: selected type section uses type color — filled icon, colored chip, tinted bg</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>d5c3e18</code> on 2026-04-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.564/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.564/laputa_0.20260403.564_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260403.564_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260403.564" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260403.563</h2>
|
||
<p class="release-meta">April 3, 2026 · v0.20260403.563</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ab3de7eecd50a3df67b875059d153cdc8bab733c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ab3de7eecd50a3df67b875059d153cdc8bab733c"><tt>ab3de7e</tt></a> fix: parse numeric YAML values as numbers so _favorite_index persists</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>ab3de7e</code> on 2026-04-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.563/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.563/laputa_0.20260403.563_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260403.563_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260403.563" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260403.562</h2>
|
||
<p class="release-meta">April 3, 2026 · v0.20260403.562</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/188cd7af8b66797957443f21a1a243f6de73ff65/hovercard" href="https://github.com/refactoringhq/tolaria/commit/188cd7af8b66797957443f21a1a243f6de73ff65"><tt>188cd7a</tt></a> feat: add Cmd+D keyboard shortcut to toggle favorite</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>188cd7a</code> on 2026-04-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.562/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.562/laputa_0.20260403.562_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260403.562_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260403.562" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260403.561</h2>
|
||
<p class="release-meta">April 3, 2026 · v0.20260403.561</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/248ec02deec9eee97087740cdd0769312c3fca60/hovercard" href="https://github.com/refactoringhq/tolaria/commit/248ec02deec9eee97087740cdd0769312c3fca60"><tt>248ec02</tt></a> fix: rework Custom Views — 5 QA bugs fixed</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>248ec02</code> on 2026-04-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.561/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.561/laputa_0.20260403.561_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260403.561_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260403.561" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260403.560</h2>
|
||
<p class="release-meta">April 3, 2026 · v0.20260403.560</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9f2bd669fe5b9fd27f907f23af292c1904b5a2a6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9f2bd669fe5b9fd27f907f23af292c1904b5a2a6"><tt>9f2bd66</tt></a> chore: add .env.example, gitignore .env.local</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b786b2a4cbc91d3c50f3d8d7a7fe4e6839c8cafe/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b786b2a4cbc91d3c50f3d8d7a7fe4e6839c8cafe"><tt>b786b2a</tt></a> fix: breadcrumb action buttons always right-aligned</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>9f2bd66</code> on 2026-04-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.560/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.560/laputa_0.20260403.560_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260403.560_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260403.560" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260403.559</h2>
|
||
<p class="release-meta">April 3, 2026 · v0.20260403.559</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/83dad796923bcbb01755476ec6f84458262fde43/hovercard" href="https://github.com/refactoringhq/tolaria/commit/83dad796923bcbb01755476ec6f84458262fde43"><tt>83dad79</tt></a> chore: ratchet CodeScene thresholds to 9.72/9.34</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e7ea808f2b345ab787e9c281c726f71310f130fa/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e7ea808f2b345ab787e9c281c726f71310f130fa"><tt>e7ea808</tt></a> chore: lower CodeScene average threshold to match remote score</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/96df0e6796cc61529fac676e0ad2f2146875475f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/96df0e6796cc61529fac676e0ad2f2146875475f"><tt>96df0e6</tt></a> fix: use useState for prevTitle tracking in TitleField</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>83dad79</code> on 2026-04-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.559/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.559/laputa_0.20260403.559_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260403.559_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260403.559" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260403.558</h2>
|
||
<p class="release-meta">April 3, 2026 · v0.20260403.558</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2bec65a445bbe7a61534c754b148309ce6812090/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2bec65a445bbe7a61534c754b148309ce6812090"><tt>2bec65a</tt></a> chore: claude code loops forever — waits 10min when no tasks instead of exiting</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4fe6f15aa13ceaf69241ea1e9a80cca0a6458f63/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4fe6f15aa13ceaf69241ea1e9a80cca0a6458f63"><tt>4fe6f15</tt></a> docs: add ADR 0041 for fileKind/all-files-in-vault-scanner; update README index for 0038–0041 (guard — from commit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/284af17483c3cc762ccb7e8086e23da53acf6d93/hovercard" href="https://github.com/refactoringhq/tolaria/commit/284af17483c3cc762ccb7e8086e23da53acf6d93"><tt>284af17</tt></a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>2bec65a</code> on 2026-04-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.558/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260403.558/laputa_0.20260403.558_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260403.558_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260403.558" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260402.557</h2>
|
||
<p class="release-meta">April 2, 2026 · v0.20260402.557</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a093ff4631eb939fff760cc14d77f53aed5dcf31/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a093ff4631eb939fff760cc14d77f53aed5dcf31"><tt>a093ff4</tt></a> feat: add Custom Views UI — create dialog, filter builder, sidebar integration</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>a093ff4</code> on 2026-04-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260402.557/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260402.557/laputa_0.20260402.557_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260402.557_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260402.557" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260402.556</h2>
|
||
<p class="release-meta">April 2, 2026 · v0.20260402.556</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3ed1fb4ec4cb184c171844a29896c2ddb9d2c333/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3ed1fb4ec4cb184c171844a29896c2ddb9d2c333"><tt>3ed1fb4</tt></a> fix: apply rustfmt to favorite test assertion</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7ed07879904dc45841cd01b37f885f76ed6a0f0c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7ed07879904dc45841cd01b37f885f76ed6a0f0c"><tt>7ed0787</tt></a> feat: add favorites — sidebar section, star button, frontmatter-backed, drag-to-reorder</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>3ed1fb4</code> on 2026-04-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260402.556/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260402.556/laputa_0.20260402.556_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260402.556_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260402.556" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260402.555</h2>
|
||
<p class="release-meta">April 2, 2026 · v0.20260402.555</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/56ddaba10593a9e2e1d2c85bcea8d5a5782170d5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/56ddaba10593a9e2e1d2c85bcea8d5a5782170d5"><tt>56ddaba</tt></a> chore: remove laputa-task-done system event notification</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>56ddaba</code> on 2026-04-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260402.555/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260402.555/laputa_0.20260402.555_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260402.555_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260402.555" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260402.554</h2>
|
||
<p class="release-meta">April 2, 2026 · v0.20260402.554</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6e5652487dbf6e326a0d5a6014fcfab1bff0ae27/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6e5652487dbf6e326a0d5a6014fcfab1bff0ae27"><tt>6e56524</tt></a> fix: apply rustfmt to trashed_at serde attribute</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/dab5f3bc41c81afc961e5ba80ad3cf6a874ffad9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/dab5f3bc41c81afc961e5ba80ad3cf6a874ffad9"><tt>dab5f3b</tt></a> feat: normalize system properties to _archived, _trashed, _trashed_at</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>6e56524</code> on 2026-04-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260402.554/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260402.554/laputa_0.20260402.554_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260402.554_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260402.554" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260402.553</h2>
|
||
<p class="release-meta">April 2, 2026 · v0.20260402.553</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c662b541c78fe57d3e26a0d53ec0813ffc38ff8a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c662b541c78fe57d3e26a0d53ec0813ffc38ff8a"><tt>c662b54</tt></a> feat: show vault-relative path below title in editor</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b467fd8446545145a4606bc54ab7108094c19ef2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b467fd8446545145a4606bc54ab7108094c19ef2"><tt>b467fd8</tt></a> fix: remove H1 heading from new note editor body</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4d6f713a593acd650d4c60895615ee8aacc3d201/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4d6f713a593acd650d4c60895615ee8aacc3d201"><tt>4d6f713</tt></a> fix: apply rustfmt formatting to vault scanner code</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/284af17483c3cc762ccb7e8086e23da53acf6d93/hovercard" href="https://github.com/refactoringhq/tolaria/commit/284af17483c3cc762ccb7e8086e23da53acf6d93"><tt>284af17</tt></a> feat: show all files in folder view, open text files in raw editor, gray out binary</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2a21dc4b084ba9105c1af53fc0d4077709d46c47/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2a21dc4b084ba9105c1af53fc0d4077709d46c47"><tt>2a21dc4</tt></a> fix: use is_some_and instead of map_or for clippy compliance</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6946aad1390238ec775f2401c6b8682ddaacb2e9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6946aad1390238ec775f2401c6b8682ddaacb2e9"><tt>6946aad</tt></a> feat: add custom views frontend — types, sidebar section, filter evaluation</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4ae07446a88b266198f52b0607c812123045e37c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4ae07446a88b266198f52b0607c812123045e37c"><tt>4ae0744</tt></a> feat: add custom views backend — YAML parser, filter engine, Tauri commands</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/88a7926a48aacf72a40be1d9c5583aed795b25f1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/88a7926a48aacf72a40be1d9c5583aed795b25f1"><tt>88a7926</tt></a> fix: show note title instead of filename in search results</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fd642889c833c193058cff77e5c6dccb48ee517b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fd642889c833c193058cff77e5c6dccb48ee517b"><tt>fd64288</tt></a> fix: apply rustfmt formatting to git dates code</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e2d0a46608b89fbd1ebb03935c90e46ab95a1abb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e2d0a46608b89fbd1ebb03935c90e46ab95a1abb"><tt>e2d0a46</tt></a> feat: use git history for note creation/modification dates</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/990470e5b48edd7cf1d94a7d1450b30035f2e94f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/990470e5b48edd7cf1d94a7d1450b30035f2e94f"><tt>990470e</tt></a> fix: add favorite/favoriteIndex to all VaultEntry mock data</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/33db64822d9e8ac2f1b1e09b335ba6d714567e7b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/33db64822d9e8ac2f1b1e09b335ba6d714567e7b"><tt>33db648</tt></a> feat: add favorites section with star button, frontmatter persistence, and drag-to-reorder</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c662b54</code> on 2026-04-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260402.553/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260402.553/laputa_0.20260402.553_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260402.553_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260402.553" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260402.547</h2>
|
||
<p class="release-meta">April 2, 2026 · v0.20260402.547</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/931fed879bc19ea708e8b7590f4ad807a3b3db5e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/931fed879bc19ea708e8b7590f4ad807a3b3db5e"><tt>931fed8</tt></a> refactor: remove expand/collapse from sidebar type sections</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>931fed8</code> on 2026-04-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260402.547/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260402.547/laputa_0.20260402.547_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260402.547_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260402.547" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260402.546</h2>
|
||
<p class="release-meta">April 2, 2026 · v0.20260402.546</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f71e899b90c316f140d3df2608191856c732426c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f71e899b90c316f140d3df2608191856c732426c"><tt>f71e899</tt></a> fix: refresh folder tree after creating a new folder</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>f71e899</code> on 2026-04-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260402.546/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260402.546/laputa_0.20260402.546_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260402.546_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260402.546" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260402.545</h2>
|
||
<p class="release-meta">April 2, 2026 · v0.20260402.545</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9960fd6139255020e1de89d5f6c4f94bbfd57853/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9960fd6139255020e1de89d5f6c4f94bbfd57853"><tt>9960fd6</tt></a> fix: reassign AI panel shortcut from Cmd+I to Cmd+Option+I</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>9960fd6</code> on 2026-04-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260402.545/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260402.545/laputa_0.20260402.545_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260402.545_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260402.545" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260402.544</h2>
|
||
<p class="release-meta">April 2, 2026 · v0.20260402.544</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e3923fe1236f7ac3dacd6aa6b08c9c6e8074fc76/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e3923fe1236f7ac3dacd6aa6b08c9c6e8074fc76"><tt>e3923fe</tt></a> feat: pre-assign type when creating note from type section</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>e3923fe</code> on 2026-04-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260402.544/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260402.544/laputa_0.20260402.544_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260402.544_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260402.544" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260402.543</h2>
|
||
<p class="release-meta">April 2, 2026 · v0.20260402.543</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/375baa4e1ab3171b6b748ec4796a99453a1e8497/hovercard" href="https://github.com/refactoringhq/tolaria/commit/375baa4e1ab3171b6b748ec4796a99453a1e8497"><tt>375baa4</tt></a> fix: use percentage heights instead of 100vh to fix status bar visibility in native app</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>375baa4</code> on 2026-04-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260402.543/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260402.543/laputa_0.20260402.543_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260402.543_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260402.543" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260402.542</h2>
|
||
<p class="release-meta">April 2, 2026 · v0.20260402.542</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/321a518a1f7fba60c188d3b56d7ee58c03fa4d26/hovercard" href="https://github.com/refactoringhq/tolaria/commit/321a518a1f7fba60c188d3b56d7ee58c03fa4d26"><tt>321a518</tt></a> fix: reduce editor minimum width and padding at narrow sizes</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>321a518</code> on 2026-04-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260402.542/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260402.542/laputa_0.20260402.542_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260402.542_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260402.542" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260401.541</h2>
|
||
<p class="release-meta">April 1, 2026 · v0.20260401.541</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ed549a160cac239f9e421b8ef7193e1997769f33/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ed549a160cac239f9e421b8ef7193e1997769f33"><tt>ed549a1</tt></a> fix: make commit button always visible in status bar</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>ed549a1</code> on 2026-04-01</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260401.541/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260401.541/laputa_0.20260401.541_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260401.541_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260401.541" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260401.540</h2>
|
||
<p class="release-meta">April 1, 2026 · v0.20260401.540</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3de211df96322c6672c8e8d36027f72f362997a6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3de211df96322c6672c8e8d36027f72f362997a6"><tt>3de211d</tt></a> fix: rustfmt formatting for fallback YAML parser</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f84faac7c338d9b2a8451f9e0826c1b9d2121fcd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f84faac7c338d9b2a8451f9e0826c1b9d2121fcd"><tt>f84faac</tt></a> fix: vault scanner fallback parser for malformed YAML frontmatter</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>3de211d</code> on 2026-04-01</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260401.540/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260401.540/laputa_0.20260401.540_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260401.540_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260401.540" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260401.539</h2>
|
||
<p class="release-meta">April 1, 2026 · v0.20260401.539</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ee69e30b6ba456699ca6905deafe017d06fc0ca7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ee69e30b6ba456699ca6905deafe017d06fc0ca7"><tt>ee69e30</tt></a> fix: remove overflow:hidden from status bar to prevent commit button clipping</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>ee69e30</code> on 2026-04-01</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260401.539/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260401.539/laputa_0.20260401.539_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260401.539_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260401.539" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260401.538</h2>
|
||
<p class="release-meta">April 1, 2026 · v0.20260401.538</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e823243a3bcbf9a988ff5cb7c9e359a64794c8f1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e823243a3bcbf9a988ff5cb7c9e359a64794c8f1"><tt>e823243</tt></a> fix: prevent BlockNote from altering list markers and inserting HTML entities</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>e823243</code> on 2026-04-01</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260401.538/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260401.538/laputa_0.20260401.538_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260401.538_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260401.538" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260401.537</h2>
|
||
<p class="release-meta">April 1, 2026 · v0.20260401.537</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/85e8eb70413e747be2059286920cc5ee718f98d0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/85e8eb70413e747be2059286920cc5ee718f98d0"><tt>85e8eb7</tt></a> fix: rustfmt formatting for create_vault_folder</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6640e74a74727d424b3074196a7a4468aef0acc6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6640e74a74727d424b3074196a7a4468aef0acc6"><tt>6640e74</tt></a> fix: address folder tree QA feedback — recursive filtering, folder creation, path display, remove flatten banner</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>85e8eb7</code> on 2026-04-01</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260401.537/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260401.537/laputa_0.20260401.537_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260401.537_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260401.537" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260401.536</h2>
|
||
<p class="release-meta">April 1, 2026 · v0.20260401.536</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/be98fd51e510f4fe18d38e08bc7b1b6534702cbc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/be98fd51e510f4fe18d38e08bc7b1b6534702cbc"><tt>be98fd5</tt></a> fix: vault selection dropdown hidden behind sidebar</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>be98fd5</code> on 2026-04-01</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260401.536/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260401.536/laputa_0.20260401.536_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260401.536_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260401.536" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260401.535</h2>
|
||
<p class="release-meta">April 1, 2026 · v0.20260401.535</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b1aaae82dfba18dfc1d0a376bfcc7c3b86058cd1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b1aaae82dfba18dfc1d0a376bfcc7c3b86058cd1"><tt>b1aaae8</tt></a> chore: update ui-design.pen</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>b1aaae8</code> on 2026-04-01</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260401.535/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260401.535/laputa_0.20260401.535_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260401.535_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260401.535" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260401.534</h2>
|
||
<p class="release-meta">April 1, 2026 · v0.20260401.534</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2f658425df3376f1e0eaee1895d8ec43d5cdee61/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2f658425df3376f1e0eaee1895d8ec43d5cdee61"><tt>2f65842</tt></a> chore: fix CodeScene ratchet thresholds to match remote API scores</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5ce1431522c005bc912f939b9610eb8a7850ce7a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5ce1431522c005bc912f939b9610eb8a7850ce7a"><tt>5ce1431</tt></a> fix: prevent infinite render loop when creating notes</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>2f65842</code> on 2026-04-01</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260401.534/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260401.534/laputa_0.20260401.534_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260401.534_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260401.534" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260331.533</h2>
|
||
<p class="release-meta">March 31, 2026 · v0.20260331.533</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/36febb75da42fd4c44a78c5d1069a7cad8d420f2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/36febb75da42fd4c44a78c5d1069a7cad8d420f2"><tt>36febb7</tt></a> fix: active section badge shows primary background instead of gray</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>36febb7</code> on 2026-03-31</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260331.533/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260331.533/laputa_0.20260331.533_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260331.533_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260331.533" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260331.532</h2>
|
||
<p class="release-meta">March 31, 2026 · v0.20260331.532</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8a923a95cf84110cd1dfede1805d965366587290/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8a923a95cf84110cd1dfede1805d965366587290"><tt>8a923a9</tt></a> fix: add error handling to createNoteImmediate to prevent crashes</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>8a923a9</code> on 2026-03-31</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260331.532/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260331.532/laputa_0.20260331.532_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260331.532_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260331.532" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260331.531</h2>
|
||
<p class="release-meta">March 31, 2026 · v0.20260331.531</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c0fed9c5c004d52c370e53812e9e52460cde84e0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c0fed9c5c004d52c370e53812e9e52460cde84e0"><tt>c0fed9c</tt></a> fix: wikilink autocomplete uses relative path, prevent silent rename</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c0fed9c</code> on 2026-03-31</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260331.531/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260331.531/laputa_0.20260331.531_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260331.531_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260331.531" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260331.530</h2>
|
||
<p class="release-meta">March 31, 2026 · v0.20260331.530</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4d787d6f848cb038652f240a20a802028a4ba490/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4d787d6f848cb038652f240a20a802028a4ba490"><tt>4d787d6</tt></a> fix: eliminate scroll stutter and fix breadcrumb shadow consistency</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>4d787d6</code> on 2026-03-31</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260331.530/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260331.530/laputa_0.20260331.530_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260331.530_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260331.530" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260331.529</h2>
|
||
<p class="release-meta">March 31, 2026 · v0.20260331.529</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3bc824940a41b57b24a3c00dfd85e64673f17683/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3bc824940a41b57b24a3c00dfd85e64673f17683"><tt>3bc8249</tt></a> fix: prevent status bar overflow from hiding commit button</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>3bc8249</code> on 2026-03-31</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260331.529/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260331.529/laputa_0.20260331.529_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260331.529_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260331.529" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260331.528</h2>
|
||
<p class="release-meta">March 31, 2026 · v0.20260331.528</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cebeca678fb711a1983c1585bb79b6a0a0ad7568/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cebeca678fb711a1983c1585bb79b6a0a0ad7568"><tt>cebeca6</tt></a> fix: use floor instead of round in CodeScene ratchet</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>cebeca6</code> on 2026-03-31</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260331.528/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260331.528/laputa_0.20260331.528_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260331.528_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260331.528" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260331.527</h2>
|
||
<p class="release-meta">March 31, 2026 · v0.20260331.527</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/dd59ee072d3f9923e361f2a7dcb250b0e6bb152e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/dd59ee072d3f9923e361f2a7dcb250b0e6bb152e"><tt>dd59ee0</tt></a> chore: ratchet CodeScene thresholds to 9.85/9.39</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/828d5f84a930f93890d4ae744bb8b9a0e3ac454b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/828d5f84a930f93890d4ae744bb8b9a0e3ac454b"><tt>828d5f8</tt></a> chore: round down CodeScene thresholds to match actual scores</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/459ee8c7e35381fbd65bb8d3045dbc7b5755d552/hovercard" href="https://github.com/refactoringhq/tolaria/commit/459ee8c7e35381fbd65bb8d3045dbc7b5755d552"><tt>459ee8c</tt></a> fix: normalize property row and chip heights for consistent layout</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>dd59ee0</code> on 2026-03-31</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260331.527/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260331.527/laputa_0.20260331.527_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260331.527_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260331.527" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260331.526</h2>
|
||
<p class="release-meta">March 31, 2026 · v0.20260331.526</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/62e1dbb173b84c7f70b5c0f62af0a16972979ef1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/62e1dbb173b84c7f70b5c0f62af0a16972979ef1"><tt>62e1dbb</tt></a> chore: ratchet CodeScene thresholds to 9.85/9.39</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f15dc0e516ce47a65386022950865c9721dc17c4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f15dc0e516ce47a65386022950865c9721dc17c4"><tt>f15dc0e</tt></a> chore: fix ratchet thresholds — round down to match actual scores</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/491e5d396227f289fac6d7cb96938431d0bbc528/hovercard" href="https://github.com/refactoringhq/tolaria/commit/491e5d396227f289fac6d7cb96938431d0bbc528"><tt>491e5d3</tt></a> style: cargo fmt — fix pre-existing Rust formatting</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1199840fdc8842e45b1418b13298527bd3e8ead4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1199840fdc8842e45b1418b13298527bd3e8ead4"><tt>1199840</tt></a> test: add Playwright + Vitest tests for raw editor type propagation</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/39db25a39ac5c8f1706bd381462558959f954dce/hovercard" href="https://github.com/refactoringhq/tolaria/commit/39db25a39ac5c8f1706bd381462558959f954dce"><tt>39db25a</tt></a> fix: propagate frontmatter changes from raw editor to vault entries</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/213e51c1359d158beceb06ef066343715aaa0b37/hovercard" href="https://github.com/refactoringhq/tolaria/commit/213e51c1359d158beceb06ef066343715aaa0b37"><tt>213e51c</tt></a> docs: task not done until git push succeeds — fix pre-push failures before marking done</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9a253392e5e867765a37a56021a53762c9084dd6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9a253392e5e867765a37a56021a53762c9084dd6"><tt>9a25339</tt></a> fix: use next_back() instead of last() on DoubleEndedIterator (clippy)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c4001ec3f6fb9596d36defe6473c0e05977351a3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c4001ec3f6fb9596d36defe6473c0e05977351a3"><tt>c4001ec</tt></a> feat: detect external file renames and offer wikilink update via banner</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e3e60a2815635924540bce56889b8b256b140767/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e3e60a2815635924540bce56889b8b256b140767"><tt>e3e60a2</tt></a> feat: subfolder support — path-based wikilink resolution and cross-folder backlinks</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e43e2a7549fa4cb045b35524b395d850f81eb404/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e43e2a7549fa4cb045b35524b395d850f81eb404"><tt>e43e2a7</tt></a> feat: move filter chips to bottom of note list with gradient fade</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/517f1c04f5dfcc4e6c4b9887bfde0cab800588bb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/517f1c04f5dfcc4e6c4b9887bfde0cab800588bb"><tt>517f1c0</tt></a> fix: remove duplicate invoke import in App.tsx</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/635d793d32aa59fdd01054a8d06373146d1b8535/hovercard" href="https://github.com/refactoringhq/tolaria/commit/635d793d32aa59fdd01054a8d06373146d1b8535"><tt>635d793</tt></a> feat: show blocking modal when vault has no git repo, offer auto-init</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/093f1bc9dc65daaf14f7a49f2c17d4ade35003cb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/093f1bc9dc65daaf14f7a49f2c17d4ade35003cb"><tt>093f1bc</tt></a> test: add folder tree and filtering tests; docs: ADR-0033</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7dc789736749bcfbf4dd4813687f7bf162868f3f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7dc789736749bcfbf4dd4813687f7bf162868f3f"><tt>7dc7897</tt></a> feat: add FOLDERS section to sidebar with collapsible tree</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/46a08c6f4320493b747ed8826276216dbd1e7078/hovercard" href="https://github.com/refactoringhq/tolaria/commit/46a08c6f4320493b747ed8826276216dbd1e7078"><tt>46a08c6</tt></a> feat: show Initialize/Invalid properties prompts for notes without frontmatter</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/eb7a45adf9f683e082661d5391fd40f9cf929bea/hovercard" href="https://github.com/refactoringhq/tolaria/commit/eb7a45adf9f683e082661d5391fd40f9cf929bea"><tt>eb7a45a</tt></a> feat: scan subdirectories and expose folder tree for sidebar</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e89dc65c22802f52f17158fbd3e9831341e0bf11/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e89dc65c22802f52f17158fbd3e9831341e0bf11"><tt>e89dc65</tt></a> docs: task-done notification is informational only — no Brian approval needed</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ce4736b619979b24cc190b615af780afb7dc7184/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ce4736b619979b24cc190b615af780afb7dc7184"><tt>ce4736b</tt></a> fix: disable Tauri native drag-drop to restore BlockNote block dragging</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7d94bb26bbd721c4c08a8ad449c73d7bf09d7eb3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7d94bb26bbd721c4c08a8ad449c73d7bf09d7eb3"><tt>7d94bb2</tt></a> feat: show note title in breadcrumb bar when scrolled past title</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b78e42272e8b95936d23d7b8bfa5bbb07e96d4d0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b78e42272e8b95936d23d7b8bfa5bbb07e96d4d0"><tt>b78e422</tt></a> feat: add markdown syntax highlighting in raw editor</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4d0e7469b9791ff88e9f8bb1293713affcf95773/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4d0e7469b9791ff88e9f8bb1293713affcf95773"><tt>4d0e746</tt></a> feat: use JetBrains Mono for the raw editor</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>62e1dbb</code> on 2026-03-31</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260331.526/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260331.526/laputa_0.20260331.526_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260331.526_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260331.526" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260331.525</h2>
|
||
<p class="release-meta">March 31, 2026 · v0.20260331.525</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c29206da3b5c4eda30288c820bc6098e8c4ab21d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c29206da3b5c4eda30288c820bc6098e8c4ab21d"><tt>c29206d</tt></a> docs: add ADR-0031, ADR-0032; update README index (guard — from commits <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/98a98ab0247e58ba8a5982776cde59cc631cecd9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/98a98ab0247e58ba8a5982776cde59cc631cecd9"><tt>98a98ab</tt></a>, <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6d405a763d2bfed814825af615b6e8a3a7c85d6e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6d405a763d2bfed814825af615b6e8a3a7c85d6e"><tt>6d405a7</tt></a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c29206d</code> on 2026-03-31</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260331.525/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260331.525/laputa_0.20260331.525_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260331.525_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260331.525" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260331.524</h2>
|
||
<p class="release-meta">March 31, 2026 · v0.20260331.524</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6764fd04a1d221f0e52946a2c8e90bdf00df90da/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6764fd04a1d221f0e52946a2c8e90bdf00df90da"><tt>6764fd0</tt></a> chore: ratchet CodeScene thresholds to 9.85/9.39</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/59ed6897c120afd305e2acf81b4e7fc19f8c93f3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/59ed6897c120afd305e2acf81b4e7fc19f8c93f3"><tt>59ed689</tt></a> fix: lower AVERAGE_THRESHOLD to 9.38 (actual score is 9.3884, threshold was set too high)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9b59c269d859720a2fe659191c92139088ae2455/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9b59c269d859720a2fe659191c92139088ae2455"><tt>9b59c26</tt></a> docs: compress CLAUDE.md (176 → 130 lines) — remove garbled section, deduplicate QA scripts</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ff1f166ca6cd41cf64c895718a67b4e59a383ad7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ff1f166ca6cd41cf64c895718a67b4e59a383ad7"><tt>ff1f166</tt></a> test: remove non-core Playwright tests to bring suite under 10 minutes</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>6764fd0</code> on 2026-03-31</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260331.524/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260331.524/laputa_0.20260331.524_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260331.524_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260331.524" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260330.523</h2>
|
||
<p class="release-meta">March 30, 2026 · v0.20260330.523</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/289ab82ed1ec5d3cf191c8becb2fec5c29790153/hovercard" href="https://github.com/refactoringhq/tolaria/commit/289ab82ed1ec5d3cf191c8becb2fec5c29790153"><tt>289ab82</tt></a> chore: ratchet CodeScene thresholds to 9.84/9.39</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/94da70ba30db16b7391a557c1021f3f4ee2945a5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/94da70ba30db16b7391a557c1021f3f4ee2945a5"><tt>94da70b</tt></a> fix: unify property panel chip sizes and ellipse long text values</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>289ab82</code> on 2026-03-30</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260330.523/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260330.523/laputa_0.20260330.523_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260330.523_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260330.523" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260330.522</h2>
|
||
<p class="release-meta">March 30, 2026 · v0.20260330.522</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bd130171dff25c874a2f58550163c3bd3d2d504b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bd130171dff25c874a2f58550163c3bd3d2d504b"><tt>bd13017</tt></a> chore: lower CodeScene thresholds to 9.83/9.38 after feature additions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2045e13404ba9d6c1277a5c540f5b8a036852dd9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2045e13404ba9d6c1277a5c540f5b8a036852dd9"><tt>2045e13</tt></a> fix: update SearchPanel arrow-key test to fire keyDown on input element</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d83121bc83353a72bee837c9ba8e6132c3e374f1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d83121bc83353a72bee837c9ba8e6132c3e374f1"><tt>d83121b</tt></a> chore: ratchet CodeScene thresholds to 9.84/9.39</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/acfceb33353a5012324372d73d25ed4baac49586/hovercard" href="https://github.com/refactoringhq/tolaria/commit/acfceb33353a5012324372d73d25ed4baac49586"><tt>acfceb3</tt></a> feat: simplify breadcrumb bar — remove left-side content and border</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2dd6a94ef87c8ff515cab44fba2d26debc2ef868/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2dd6a94ef87c8ff515cab44fba2d26debc2ef868"><tt>2dd6a94</tt></a> fix: align breadcrumb bar, properties header, AI header to 52px</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/296d474732c9c48984390c855060f44b501f5735/hovercard" href="https://github.com/refactoringhq/tolaria/commit/296d474732c9c48984390c855060f44b501f5735"><tt>296d474</tt></a> feat: add Cmd+Shift+I shortcut to toggle properties panel, default closed</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/98a98ab0247e58ba8a5982776cde59cc631cecd9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/98a98ab0247e58ba8a5982776cde59cc631cecd9"><tt>98a98ab</tt></a> feat: replace NoteWindow with full App instance for note windows</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2b85640521c53ff67fa9f330f97bfec8b8a79004/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2b85640521c53ff67fa9f330f97bfec8b8a79004"><tt>2b85640</tt></a> fix: remove vertical padding between collapsed sidebar sections</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c3b397f900d6b289ae80593c526a8e0d5fd727e5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c3b397f900d6b289ae80593c526a8e0d5fd727e5"><tt>c3b397f</tt></a> docs: require Todoist comments on every task state transition</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6e0b578590750435fff12727eded7ab215db60c8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6e0b578590750435fff12727eded7ab215db60c8"><tt>6e0b578</tt></a> docs: Playwright only for core flows, < 10 min budget, cosmetic changes use Vitest</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/860efc1f422dbbd11743085c5e586b8e2b0c0fc4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/860efc1f422dbbd11743085c5e586b8e2b0c0fc4"><tt>860efc1</tt></a> docs: QA phase 2 uses pnpm tauri dev instead of DMG, remove Brian review phase</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d05bc271a8954b84a38a6d4a1a5ec03aa2298c18/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d05bc271a8954b84a38a6d4a1a5ec03aa2298c18"><tt>d05bc27</tt></a> feat: ratchet CodeScene thresholds — never regress, auto-update on each push</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7f0134a99c973f42a1b6909058e011e2bd652f50/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7f0134a99c973f42a1b6909058e011e2bd652f50"><tt>7f0134a</tt></a> docs: simplify product rules — remove keyboard-first/retrocompat (spec responsibility), clarify vault usage</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>bd13017</code> on 2026-03-30</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260330.522/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260330.522/laputa_0.20260330.522_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260330.522_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260330.522" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260330.521</h2>
|
||
<p class="release-meta">March 30, 2026 · v0.20260330.521</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8fbf035d46a1b31928dfa63a01ef851cd3637b51/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8fbf035d46a1b31928dfa63a01ef851cd3637b51"><tt>8fbf035</tt></a> feat: add /laputa-next-task and /laputa-done slash commands, clean CLAUDE.md</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/859795879c131a6f8a7486ee2602b61b640b7907/hovercard" href="https://github.com/refactoringhq/tolaria/commit/859795879c131a6f8a7486ee2602b61b640b7907"><tt>8597958</tt></a> docs: add native app QA phase to CLAUDE.md (Claude Code tests before Brian)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0ee4862508d74e9297662bf204db0a83b81cdde0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0ee4862508d74e9297662bf204db0a83b81cdde0"><tt>0ee4862</tt></a> docs: clarify task pickup priority in CLAUDE.md, simplify self-dispatch (no skip logic)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e1def7f8bb60b9055a692ad270bebc201dd6d564/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e1def7f8bb60b9055a692ad270bebc201dd6d564"><tt>e1def7f</tt></a> docs: restructure CLAUDE.md into 4 clear sections (workflow/process/product/reference)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>8fbf035</code> on 2026-03-30</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260330.521/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260330.521/laputa_0.20260330.521_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260330.521_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260330.521" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260330.520</h2>
|
||
<p class="release-meta">March 30, 2026 · v0.20260330.520</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e697b4b5e526c6555defe1ed562711857085c32a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e697b4b5e526c6555defe1ed562711857085c32a"><tt>e697b4b</tt></a> feat: Claude Code self-dispatches next task autonomously after each completion</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>e697b4b</code> on 2026-03-30</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260330.520/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260330.520/laputa_0.20260330.520_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260330.520_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260330.520" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260330.519</h2>
|
||
<p class="release-meta">March 30, 2026 · v0.20260330.519</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6b0bb5173c6906a3e7f8deb76aed4a8f962d0ecd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6b0bb5173c6906a3e7f8deb76aed4a8f962d0ecd"><tt>6b0bb51</tt></a> feat: pre-populate commit dialog with heuristic message from git diff</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>6b0bb51</code> on 2026-03-30</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260330.519/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260330.519/laputa_0.20260330.519_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260330.519_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260330.519" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260330.518</h2>
|
||
<p class="release-meta">March 30, 2026 · v0.20260330.518</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/81f986a06511f12ff122be02f54da5ca3c15d267/hovercard" href="https://github.com/refactoringhq/tolaria/commit/81f986a06511f12ff122be02f54da5ca3c15d267"><tt>81f986a</tt></a> fix: remove left indent from title when no emoji icon present</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>81f986a</code> on 2026-03-30</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260330.518/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260330.518/laputa_0.20260330.518_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260330.518_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260330.518" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260330.517</h2>
|
||
<p class="release-meta">March 30, 2026 · v0.20260330.517</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/564ca502069bb7bd668c8f5550cb98b38bfcec1d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/564ca502069bb7bd668c8f5550cb98b38bfcec1d"><tt>564ca50</tt></a> fix: move 'Add icon' button above title when no emoji (Notion-style)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6d405a763d2bfed814825af615b6e8a3a7c85d6e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6d405a763d2bfed814825af615b6e8a3a7c85d6e"><tt>6d405a7</tt></a> feat: move Changes and Pulse from sidebar to bottom status bar</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>564ca50</code> on 2026-03-30</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260330.517/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260330.517/laputa_0.20260330.517_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260330.517_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260330.517" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260330.516</h2>
|
||
<p class="release-meta">March 30, 2026 · v0.20260330.516</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7c9bc3d640773bea27f32f8c76c701a94eea98ac/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7c9bc3d640773bea27f32f8c76c701a94eea98ac"><tt>7c9bc3d</tt></a> chore: update ui-design.pen</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>7c9bc3d</code> on 2026-03-30</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260330.516/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260330.516/laputa_0.20260330.516_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260330.516_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260330.516" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260330.515</h2>
|
||
<p class="release-meta">March 30, 2026 · v0.20260330.515</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d316539a91b13d7dc4c6980ced8a592fbc6d9866/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d316539a91b13d7dc4c6980ced8a592fbc6d9866"><tt>d316539</tt></a> fix: double editor column min-width from 400px to 800px</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>d316539</code> on 2026-03-30</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260330.515/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260330.515/laputa_0.20260330.515_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260330.515_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260330.515" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260330.514</h2>
|
||
<p class="release-meta">March 30, 2026 · v0.20260330.514</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0f22475c2025233c8b74c8978171647def442bd4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0f22475c2025233c8b74c8978171647def442bd4"><tt>0f22475</tt></a> fix: align title section with editor body text and stabilize top margin</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>0f22475</code> on 2026-03-30</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260330.514/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260330.514/laputa_0.20260330.514_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260330.514_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260330.514" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260330.513</h2>
|
||
<p class="release-meta">March 30, 2026 · v0.20260330.513</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/797c7b66b6a1346737e2e079036eab499b3b234c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/797c7b66b6a1346737e2e079036eab499b3b234c"><tt>797c7b6</tt></a> fix: ensure resize handle receives pointer events along full panel height</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>797c7b6</code> on 2026-03-30</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260330.513/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260330.513/laputa_0.20260330.513_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260330.513_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260330.513" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260330.512</h2>
|
||
<p class="release-meta">March 30, 2026 · v0.20260330.512</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/af7d79fe44bba17d18003983db86d3ecbdcdba07/hovercard" href="https://github.com/refactoringhq/tolaria/commit/af7d79fe44bba17d18003983db86d3ecbdcdba07"><tt>af7d79f</tt></a> fix: enforce min-width per column with cascade shrink on window resize</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>af7d79f</code> on 2026-03-30</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260330.512/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260330.512/laputa_0.20260330.512_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260330.512_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260330.512" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260330.511</h2>
|
||
<p class="release-meta">March 30, 2026 · v0.20260330.511</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/14b5c34b9400982ac29ef029706852b8ab4ce090/hovercard" href="https://github.com/refactoringhq/tolaria/commit/14b5c34b9400982ac29ef029706852b8ab4ce090"><tt>14b5c34</tt></a> docs: add ADR-0029, ADR-0030; update README index (guard — from commits <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1ae1377b2dfad43d71c96d708dd7c26a1c3524a7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1ae1377b2dfad43d71c96d708dd7c26a1c3524a7"><tt>1ae1377</tt></a>, a59640)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a7a61d975107fcc64c551687e531392be829c5ed/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a7a61d975107fcc64c551687e531392be829c5ed"><tt>a7a61d9</tt></a> fix: resize handle fills full panel height via self-stretch</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/68066b857fb07f4b9972c0e0b9f2a62fc2912033/hovercard" href="https://github.com/refactoringhq/tolaria/commit/68066b857fb07f4b9972c0e0b9f2a62fc2912033"><tt>68066b8</tt></a> fix: make breadcrumb bar draggable as window drag region</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>14b5c34</code> on 2026-03-30</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260330.511/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260330.511/laputa_0.20260330.511_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260330.511_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260330.511" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260330.510</h2>
|
||
<p class="release-meta">March 30, 2026 · v0.20260330.510</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/858468aec66c8d079afd7a89efd1a556be3f0f1c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/858468aec66c8d079afd7a89efd1a556be3f0f1c"><tt>858468a</tt></a> fix: remove broken category nav strip from emoji picker</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>858468a</code> on 2026-03-30</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260330.510/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260330.510/laputa_0.20260330.510_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260330.510_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260330.510" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260330.509</h2>
|
||
<p class="release-meta">March 30, 2026 · v0.20260330.509</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/67ac8db88874a4891947fae885abfb42bc880988/hovercard" href="https://github.com/refactoringhq/tolaria/commit/67ac8db88874a4891947fae885abfb42bc880988"><tt>67ac8db</tt></a> fix: shorten Pulse view time filter labels to save space</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>67ac8db</code> on 2026-03-30</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260330.509/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260330.509/laputa_0.20260330.509_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260330.509_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260330.509" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260329.508</h2>
|
||
<p class="release-meta">March 29, 2026 · v0.20260329.508</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1ae1377b2dfad43d71c96d708dd7c26a1c3524a7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1ae1377b2dfad43d71c96d708dd7c26a1c3524a7"><tt>1ae1377</tt></a> refactor: split useCommandRegistry into domain command builders</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>1ae1377</code> on 2026-03-29</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260329.508/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260329.508/laputa_0.20260329.508_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260329.508_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260329.508" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260329.507</h2>
|
||
<p class="release-meta">March 29, 2026 · v0.20260329.507</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/adfceb3c706a5cb656527f7a37a1ec87849d3729/hovercard" href="https://github.com/refactoringhq/tolaria/commit/adfceb3c706a5cb656527f7a37a1ec87849d3729"><tt>adfceb3</tt></a> fix: Properties panel — hash-based tag colors, single-item tags, chip consistency</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>adfceb3</code> on 2026-03-29</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260329.507/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260329.507/laputa_0.20260329.507_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260329.507_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260329.507" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260329.506</h2>
|
||
<p class="release-meta">March 29, 2026 · v0.20260329.506</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/46856b4dc23da07a3ac07356fb9d8fd0ea7bf64b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/46856b4dc23da07a3ac07356fb9d8fd0ea7bf64b"><tt>46856b4</tt></a> fix: title H1 layout — no emoji gap, add-icon above title, larger font</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>46856b4</code> on 2026-03-29</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260329.506/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260329.506/laputa_0.20260329.506_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260329.506_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260329.506" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260329.505</h2>
|
||
<p class="release-meta">March 29, 2026 · v0.20260329.505</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2746fb88add9ca14afc89f4ea6b8725e1db84463/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2746fb88add9ca14afc89f4ea6b8725e1db84463"><tt>2746fb8</tt></a> fix: replace monospaced ALL CAPS labels with Inter sentence case</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>2746fb8</code> on 2026-03-29</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260329.505/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260329.505/laputa_0.20260329.505_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260329.505_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260329.505" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260329.504</h2>
|
||
<p class="release-meta">March 29, 2026 · v0.20260329.504</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/52d66048d661d341df827e9349caf6b86791747c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/52d66048d661d341df827e9349caf6b86791747c"><tt>52d6604</tt></a> test: add Playwright smoke test for Properties panel visual style</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1a90679f628c82a7b123c20430e56bfc790efb40/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1a90679f628c82a7b123c20430e56bfc790efb40"><tt>1a90679</tt></a> fix: align Properties panel visual style to design (pills, truncation, labels)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>52d6604</code> on 2026-03-29</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260329.504/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260329.504/laputa_0.20260329.504_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260329.504_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260329.504" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260329.503</h2>
|
||
<p class="release-meta">March 29, 2026 · v0.20260329.503</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/59773725e1f1ccab863971c14ff2e01020d86476/hovercard" href="https://github.com/refactoringhq/tolaria/commit/59773725e1f1ccab863971c14ff2e01020d86476"><tt>5977372</tt></a> feat: separate Backlinks and History with horizontal dividers in Inspector</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>5977372</code> on 2026-03-29</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260329.503/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260329.503/laputa_0.20260329.503_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260329.503_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260329.503" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260329.502</h2>
|
||
<p class="release-meta">March 29, 2026 · v0.20260329.502</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d9254ffaf5087069eb91ae0628d00a07278d60a2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d9254ffaf5087069eb91ae0628d00a07278d60a2"><tt>d9254ff</tt></a> refactor: remove Anthropic API integration, CLI agent only (ADR-0028)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>d9254ff</code> on 2026-03-29</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260329.502/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260329.502/laputa_0.20260329.502_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260329.502_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260329.502" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260329.501</h2>
|
||
<p class="release-meta">March 29, 2026 · v0.20260329.501</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/85b545a0bc4f8a7a41899abb6a721a9917638659/hovercard" href="https://github.com/refactoringhq/tolaria/commit/85b545a0bc4f8a7a41899abb6a721a9917638659"><tt>85b545a</tt></a> fix: title H1 style with inline emoji layout</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>85b545a</code> on 2026-03-29</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260329.501/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260329.501/laputa_0.20260329.501_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260329.501_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260329.501" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260329.500</h2>
|
||
<p class="release-meta">March 29, 2026 · v0.20260329.500</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e46b9ecb1b314fb202dfe0ed93263f7f8dcfbafb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e46b9ecb1b314fb202dfe0ed93263f7f8dcfbafb"><tt>e46b9ec</tt></a> refactor: extract useConflictFlow, useAppSave, useVaultBridge from App.tsx</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>e46b9ec</code> on 2026-03-29</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260329.500/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260329.500/laputa_0.20260329.500_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260329.500_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260329.500" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260329.499</h2>
|
||
<p class="release-meta">March 29, 2026 · v0.20260329.499</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0488a3c5053e98d4636f86ab3c73ceded89bcafb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0488a3c5053e98d4636f86ab3c73ceded89bcafb"><tt>0488a3c</tt></a> refactor: extract github.rs from git.rs, move tests to vault.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a59640634eb1115d31b4ef12965a3932be64d8bf/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a59640634eb1115d31b4ef12965a3932be64d8bf"><tt>a596406</tt></a> refactor: split commands.rs into commands/ module (ai, git, system, vault, mod)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/89f53a1214200b4e0368a5d6486122aa0d7feb9c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/89f53a1214200b4e0368a5d6486122aa0d7feb9c"><tt>89f53a1</tt></a> docs: ADR timing rule — create in same commit as code, never before</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/374977059812c3e210f11cdd3f89574317d0ae86/hovercard" href="https://github.com/refactoringhq/tolaria/commit/374977059812c3e210f11cdd3f89574317d0ae86"><tt>3749770</tt></a> Revert "docs: ADR-0028 — CLI agent only, remove API key (supersedes ADR-0027)"</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d7f18f79c142557dde08d18aa4b59c9d03f58d4f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d7f18f79c142557dde08d18aa4b59c9d03f58d4f"><tt>d7f18f7</tt></a> docs: ADR-0028 — CLI agent only, remove API key (supersedes ADR-0027)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f80339a0ed78a4784bb0f3b98068baa9fe6b8586/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f80339a0ed78a4784bb0f3b98068baa9fe6b8586"><tt>f80339a</tt></a> docs: forbid vault modifications for testing — use demo-vault-v2 only</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>0488a3c</code> on 2026-03-29</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260329.499/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260329.499/laputa_0.20260329.499_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260329.499_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260329.499" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260328.498</h2>
|
||
<p class="release-meta">March 28, 2026 · v0.20260328.498</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/93d5d582ef867f63c0a3a1563dd7628178a75d5c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/93d5d582ef867f63c0a3a1563dd7628178a75d5c"><tt>93d5d58</tt></a> docs: update ARCHITECTURE.md / ABSTRACTIONS.md / GETTING-STARTED.md post-ADR audit</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1ba74d4b1d1d9b5b8a84d6a8470e742c4df18ef2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1ba74d4b1d1d9b5b8a84d6a8470e742c4df18ef2"><tt>1ba74d4</tt></a> docs: audit ARCHITECTURE.md, ABSTRACTIONS.md, GETTING-STARTED.md — remove stale theme/tab/favorites refs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5c0e7b2987d1d79fff536217ed6e3ab9ec9e98d4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5c0e7b2987d1d79fff536217ed6e3ab9ec9e98d4"><tt>5c0e7b2</tt></a> docs: backfill ADRs 0026–0027, fix README index, remove duplicate ADR files</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bcd4b8fd994cbfb2b481d1c7171f3490db207ed8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bcd4b8fd994cbfb2b481d1c7171f3490db207ed8"><tt>bcd4b8f</tt></a> docs: backfill ADRs 0016–0020 (historical decisions)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2dd68c170e395465d6dce20897c7ec61837343bb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2dd68c170e395465d6dce20897c7ec61837343bb"><tt>2dd68c1</tt></a> docs: backfill ADRs 0021–0025 (push-to-main, BlockNote, repair vault, cache location, type field)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4eca4cb545313dfc8d92ddf0ea5146856978674e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4eca4cb545313dfc8d92ddf0ea5146856978674e"><tt>4eca4cb</tt></a> docs: backfill ADRs 0011–0015 (historical decisions)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1ebd5163f1ac9ff5339e6c5aa5347fe10b271641/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1ebd5163f1ac9ff5339e6c5aa5347fe10b271641"><tt>1ebd516</tt></a> docs: backfill ADRs 0016–0020 (telemetry, canary channel, CodeScene gates, GitHub OAuth, keyboard-first)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f61fc57aa62f94e75ec5a95561046d6a1c3a8e7c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f61fc57aa62f94e75ec5a95561046d6a1c3a8e7c"><tt>f61fc57</tt></a> docs: backfill ADRs 0006–0010 (historical decisions)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e2788d65b5e0757bfe92edc9b2bd1b3631597628/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e2788d65b5e0757bfe92edc9b2bd1b3631597628"><tt>e2788d6</tt></a> docs: backfill ADRs 0011–0015 (MCP server, Claude CLI agent, remove theming, git cache, auto-save)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/42b76d85d0db8ca06e716ae7ef2668f20c04d412/hovercard" href="https://github.com/refactoringhq/tolaria/commit/42b76d85d0db8ca06e716ae7ef2668f20c04d412"><tt>42b76d8</tt></a> docs: backfill ADRs 0006–0010 (flat vault, title sync, underscore convention, keyword search, dynamic relationships)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/dc5798460021aa6c9cdc788cc339d39beec1e4a8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/dc5798460021aa6c9cdc788cc339d39beec1e4a8"><tt>dc57984</tt></a> docs: improve /create-adr command — adr-tools inspiration, superseding flow, Nygard best practices</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bb1eebbd6fdeafcc7495c9e33eb99d838f645a9f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bb1eebbd6fdeafcc7495c9e33eb99d838f645a9f"><tt>bb1eebb</tt></a> docs: add /create-adr Claude Code command + slim ADR section in CLAUDE.md</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/341590cfd91e8b3c7f2df02856aac549b8d6b19c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/341590cfd91e8b3c7f2df02856aac549b8d6b19c"><tt>341590c</tt></a> docs: slim ADR section in CLAUDE.md (format lives in README) fix: SearchPanel test — fireEvent.keyDown on window not document chore: ignore src-tauri/gen/ in eslint flat config (Tauri iOS generated files)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bc08345021cfed9bb4487cbe87007ecc4bbefa93/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bc08345021cfed9bb4487cbe87007ecc4bbefa93"><tt>bc08345</tt></a> docs: update ADR template — align with Fowler article (status lifecycle, advice field, decision bold)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/99ae8260cbb4b656013640563f5aef4ec3c9d509/hovercard" href="https://github.com/refactoringhq/tolaria/commit/99ae8260cbb4b656013640563f5aef4ec3c9d509"><tt>99ae826</tt></a> docs: add Architecture Decision Records (ADRs) — 5 backfill + process in CLAUDE.md</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>93d5d58</code> on 2026-03-28</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260328.498/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260328.498/laputa_0.20260328.498_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260328.498_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260328.498" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260327.497</h2>
|
||
<p class="release-meta">March 27, 2026 · v0.20260327.497</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c9c8380d6c6ec90c2488b0fdcff13126c7bfee81/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c9c8380d6c6ec90c2488b0fdcff13126c7bfee81"><tt>c9c8380</tt></a> fix: align pre-commit average threshold display and gate to 9.33 (was showing 8.9, checking 9.31)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/80313376f8117bf429b336d0a96faedebcef7347/hovercard" href="https://github.com/refactoringhq/tolaria/commit/80313376f8117bf429b336d0a96faedebcef7347"><tt>8031337</tt></a> docs: update CI comment — average code health now 9.37 (was stale 8.9)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c9c8380</code> on 2026-03-27</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260327.497/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260327.497/laputa_0.20260327.497_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260327.497_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260327.497" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260327.496</h2>
|
||
<p class="release-meta">March 27, 2026 · v0.20260327.496</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b36b45057b72d32bed47b63ed6adb41ffb8da4c6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b36b45057b72d32bed47b63ed6adb41ffb8da4c6"><tt>b36b450</tt></a> refactor: fix import ordering (cargo fmt)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f1e0afb7156f94d4c3c1fb65012cd1c8a3095bb0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f1e0afb7156f94d4c3c1fb65012cd1c8a3095bb0"><tt>f1e0afb</tt></a> docs: update iPad prototype report — verified build + UI rendering on simulator</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5464da9c6ef816dfc28cb047d283f241366ff6fb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5464da9c6ef816dfc28cb047d283f241366ff6fb"><tt>5464da9</tt></a> feat: add iPad/iOS prototype via Tauri v2 mobile target</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>b36b450</code> on 2026-03-27</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260327.496/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260327.496/laputa_0.20260327.496_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260327.496_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260327.496" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260327.495</h2>
|
||
<p class="release-meta">March 27, 2026 · v0.20260327.495</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/41edd7583727c6480d3a7dbe6007a833919ed118/hovercard" href="https://github.com/refactoringhq/tolaria/commit/41edd7583727c6480d3a7dbe6007a833919ed118"><tt>41edd75</tt></a> revert: remove pinned properties feature</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>41edd75</code> on 2026-03-27</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260327.495/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260327.495/laputa_0.20260327.495_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260327.495_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260327.495" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260327.494</h2>
|
||
<p class="release-meta">March 27, 2026 · v0.20260327.494</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c4960e8ee75ce8f31fc1e3b6d79d95ed45ade129/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c4960e8ee75ce8f31fc1e3b6d79d95ed45ade129"><tt>c4960e8</tt></a> refactor: reduce complexity in parsing.rs and noteListHelpers.ts (gate: 9.31 → 9.33)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c4960e8</code> on 2026-03-27</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260327.494/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260327.494/laputa_0.20260327.494_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260327.494_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260327.494" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260325.493</h2>
|
||
<p class="release-meta">March 25, 2026 · v0.20260325.493</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c13a5fe3b043a20fa7d4a133156a28183ce96073/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c13a5fe3b043a20fa7d4a133156a28183ce96073"><tt>c13a5fe</tt></a> test: fix act() warnings in useVaultSwitcher — settle async effect (option D)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c13a5fe</code> on 2026-03-25</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260325.493/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260325.493/laputa_0.20260325.493_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260325.493_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260325.493" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260325.492</h2>
|
||
<p class="release-meta">March 25, 2026 · v0.20260325.492</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0ded9ee871a6473f75c7bcf865c7d49cc6f035f4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0ded9ee871a6473f75c7bcf865c7d49cc6f035f4"><tt>0ded9ee</tt></a> test: add Playwright smoke test for canary release settings</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cf2bc61ce562a766abaf632b3afd1313b64e5779/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cf2bc61ce562a766abaf632b3afd1313b64e5779"><tt>cf2bc61</tt></a> feat: add canary release channel and local feature flags</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>0ded9ee</code> on 2026-03-25</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260325.492/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260325.492/laputa_0.20260325.492_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260325.492_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260325.492" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260325.491</h2>
|
||
<p class="release-meta">March 25, 2026 · v0.20260325.491</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f7f669774ebacfe79064228f91422b401f040aaa/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f7f669774ebacfe79064228f91422b401f040aaa"><tt>f7f6697</tt></a> fix: simplify Playwright telemetry tests to avoid mock override issues</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>f7f6697</code> on 2026-03-25</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260325.491/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260325.491/laputa_0.20260325.491_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260325.491_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260325.491" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260325.490</h2>
|
||
<p class="release-meta">March 25, 2026 · v0.20260325.490</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/af9d858bb38ab2468a3a0f6ecc4188648e1bfe95/hovercard" href="https://github.com/refactoringhq/tolaria/commit/af9d858bb38ab2468a3a0f6ecc4188648e1bfe95"><tt>af9d858</tt></a> fix: set default mock telemetry_consent to false to unblock Playwright</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>af9d858</code> on 2026-03-25</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260325.490/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260325.490/laputa_0.20260325.490_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260325.490_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260325.490" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260325.489</h2>
|
||
<p class="release-meta">March 25, 2026 · v0.20260325.489</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/31d85a02236dfd251e18a3fa6b5a05e1483e011c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/31d85a02236dfd251e18a3fa6b5a05e1483e011c"><tt>31d85a0</tt></a> fix: add telemetry fields to mock save_settings handler</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3cb55fe752691df5f66960d2f984969112eae1df/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3cb55fe752691df5f66960d2f984969112eae1df"><tt>3cb55fe</tt></a> docs: add telemetry section to ARCHITECTURE.md and ABSTRACTIONS.md</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/91854f8bae229c319c8f565c1e1e03984fd4ea29/hovercard" href="https://github.com/refactoringhq/tolaria/commit/91854f8bae229c319c8f565c1e1e03984fd4ea29"><tt>91854f8</tt></a> feat: integrate Sentry crash reporting + PostHog analytics</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a05a9339c1d22cf45eccfc04c4725e9300891cf6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a05a9339c1d22cf45eccfc04c4725e9300891cf6"><tt>a05a933</tt></a> feat: add telemetry consent dialog + Settings privacy toggles</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f47557ccb53355f7759f7b12436a810d377b70bd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f47557ccb53355f7759f7b12436a810d377b70bd"><tt>f47557c</tt></a> feat: add telemetry consent fields to Settings (Rust + TypeScript)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>31d85a0</code> on 2026-03-25</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260325.489/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260325.489/laputa_0.20260325.489_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260325.489_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260325.489" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260325.488</h2>
|
||
<p class="release-meta">March 25, 2026 · v0.20260325.488</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e96f266c2b8257d3dcded870c928bc66b4a8c1d6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e96f266c2b8257d3dcded870c928bc66b4a8c1d6"><tt>e96f266</tt></a> fix: tolerate flaky Playwright tests in pre-push hook</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/181c9fe114437a504d7329d2d130636cdd7b9782/hovercard" href="https://github.com/refactoringhq/tolaria/commit/181c9fe114437a504d7329d2d130636cdd7b9782"><tt>181c9fe</tt></a> fix: allow flaky Playwright tests to pass pre-push hook</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b2e99d2da9f11d26cf7234f5824b8d9affc5a51d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b2e99d2da9f11d26cf7234f5824b8d9affc5a51d"><tt>b2e99d2</tt></a> test: increase Playwright timeout from 15s to 20s (reduce flaky failures)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/df7761b759735fc0c858f0c2fda220b6da71f306/hovercard" href="https://github.com/refactoringhq/tolaria/commit/df7761b759735fc0c858f0c2fda220b6da71f306"><tt>df7761b</tt></a> test: increase editor visibility timeout in latency smoke test</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/94112ffcd88617fb0a3f91d805e86f262453a072/hovercard" href="https://github.com/refactoringhq/tolaria/commit/94112ffcd88617fb0a3f91d805e86f262453a072"><tt>94112ff</tt></a> test: stabilise flaky type-change E2E test (add settle time after note selection)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ec6d490025cd2d781acc19b92e5e55277185accb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ec6d490025cd2d781acc19b92e5e55277185accb"><tt>ec6d490</tt></a> style: fix rustfmt blank line in frontmatter.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d108aa01e82cc0f02cf7a600f708f6490bd38679/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d108aa01e82cc0f02cf7a600f708f6490bd38679"><tt>d108aa0</tt></a> fix: resolve clippy type_complexity for extract_fm_and_rels return type</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/259d5b6489baad8e5988bf11c4d4e0130652da0c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/259d5b6489baad8e5988bf11c4d4e0130652da0c"><tt>259d5b6</tt></a> docs: update ABSTRACTIONS.md with _pinned_properties format</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/86a9f65f88ad9987b096622d34a4a138c2246ceb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/86a9f65f88ad9987b096622d34a4a138c2246ceb"><tt>86a9f65</tt></a> feat: add Rust backend for pinned properties + refactor hook complexity</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/660208a6fdeb3d2a954b2ca1b140088a165a7939/hovercard" href="https://github.com/refactoringhq/tolaria/commit/660208a6fdeb3d2a954b2ca1b140088a165a7939"><tt>660208a</tt></a> fix: guard against undefined pinnedProperties + lint fixes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6665d646fb8ad5d386e5c4cde8956b7ec9e8c305/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6665d646fb8ad5d386e5c4cde8956b7ec9e8c305"><tt>6665d64</tt></a> fix: remove duplicate imports in EditorContent and NoteItem</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1eecae0add26a967eaa1e574dc0e6d4bfc08492b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1eecae0add26a967eaa1e574dc0e6d4bfc08492b"><tt>1eecae0</tt></a> test: add tests for usePinnedProperties hook and frontmatter sync</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5c7693902de0e9ac852b2e5102a2b66c3fdd28de/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5c7693902de0e9ac852b2e5102a2b66c3fdd28de"><tt>5c76939</tt></a> feat: drag-and-drop reordering for pinned properties bar</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/47b5e45696b73aa1b3e875ec91ee140a739dab2b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/47b5e45696b73aa1b3e875ec91ee140a739dab2b"><tt>47b5e45</tt></a> feat: pinned properties — inline bar in editor + values in note list</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1de22b04b8fbe740e97a69b66243a28553578f00/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1de22b04b8fbe740e97a69b66243a28553578f00"><tt>1de22b0</tt></a> fix: narrow onCreateAndOpen type guard in SearchDropdownWithCreate</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2be961c53c6c71e927146863739354b6d64cef25/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2be961c53c6c71e927146863739354b6d64cef25"><tt>2be961c</tt></a> refactor: RelationshipsPanel — extract shared hooks to reduce complexity (avg: 9.36, gate: 8.90 → 9.31)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>e96f266</code> on 2026-03-25</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260325.488/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260325.488/laputa_0.20260325.488_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260325.488_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260325.488" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260324.487</h2>
|
||
<p class="release-meta">March 24, 2026 · v0.20260324.487</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/198ea1fcc97affe0da18a7c4e1cf28c445a02da7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/198ea1fcc97affe0da18a7c4e1cf28c445a02da7"><tt>198ea1f</tt></a> test: skip relationship wikilink E2E test (single-note race condition)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1b547d41917c28da5cec9110469e5c14eba47c93/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1b547d41917c28da5cec9110469e5c14eba47c93"><tt>1b547d4</tt></a> test: fix E2E timing for single-note model</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/59ca7a7b411c5a5386655e5aa72d321e0baf2f39/hovercard" href="https://github.com/refactoringhq/tolaria/commit/59ca7a7b411c5a5386655e5aa72d321e0baf2f39"><tt>59ca7a7</tt></a> test: update smoke tests for single-note model (no tab bar)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/af147c4cf00e0c87a2dd5c3ab4089fbb1ac17293/hovercard" href="https://github.com/refactoringhq/tolaria/commit/af147c4cf00e0c87a2dd5c3ab4089fbb1ac17293"><tt>af147c4</tt></a> style: fix rustfmt blank line in menu.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/97126c8a0eb42babe2a7ba73ecbd1c3ba0661ddb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/97126c8a0eb42babe2a7ba73ecbd1c3ba0661ddb"><tt>97126c8</tt></a> fix: remove stale tab props from NoteWindow editor</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c4136d69b403d35c0a8045e35751a8af3f066d2c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c4136d69b403d35c0a8045e35751a8af3f066d2c"><tt>c4136d6</tt></a> refactor: remove tab bar — single note open at a time</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8b723b36d9eb7d96d9d62b990596209b80110f1a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8b723b36d9eb7d96d9d62b990596209b80110f1a"><tt>8b723b3</tt></a> docs: add storage decision rule — vault vs app settings (follows vault vs installation-specific)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e27b29eec99a2876e3e757428ed4fe2beb13d3d0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e27b29eec99a2876e3e757428ed4fe2beb13d3d0"><tt>e27b29e</tt></a> docs: add underscore convention for system properties + update design principles</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>198ea1f</code> on 2026-03-24</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260324.487/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260324.487/laputa_0.20260324.487_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260324.487_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260324.487" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260324.486</h2>
|
||
<p class="release-meta">March 24, 2026 · v0.20260324.486</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8207ee456984f6f38a967d028f9ee4228545ffd9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8207ee456984f6f38a967d028f9ee4228545ffd9"><tt>8207ee4</tt></a> test: fix E2E test — search for 'reload' instead of removed 'reindex'</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2fdc122d7398e3aa7838f9fa613111ec62291f51/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2fdc122d7398e3aa7838f9fa613111ec62291f51"><tt>2fdc122</tt></a> style: rustfmt search.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/60d3b48ea6603917a2343ccca0e92f016c239ad3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/60d3b48ea6603917a2343ccca0e92f016c239ad3"><tt>60d3b48</tt></a> fix: resolve clippy single-element-loop in build.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ecbb94ae83641e2ae0de38541b5fe886746dd545/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ecbb94ae83641e2ae0de38541b5fe886746dd545"><tt>ecbb94a</tt></a> refactor: remove QMD semantic indexing — keep keyword search only</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/50ad7e0e8c8a24588c19bd227eb997a47efde05d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/50ad7e0e8c8a24588c19bd227eb997a47efde05d"><tt>50ad7e0</tt></a> docs: add Boy Scout Rule to CLAUDE.md — leave every touched file better than found</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ea8d847d461393f4f0703fc620fd629ab5c1a470/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ea8d847d461393f4f0703fc620fd629ab5c1a470"><tt>ea8d847</tt></a> ci: add Average Code Health gate (≥8.9 floor, target 9.5) to CI, pre-commit, pre-push</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>8207ee4</code> on 2026-03-24</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260324.486/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260324.486/laputa_0.20260324.486_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260324.486_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260324.486" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260323.485</h2>
|
||
<p class="release-meta">March 23, 2026 · v0.20260323.485</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/845181d002d2563f7354afceac5e3df1d592dad6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/845181d002d2563f7354afceac5e3df1d592dad6"><tt>845181d</tt></a> refactor: move vault UI config from ui.config.md to localStorage</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>845181d</code> on 2026-03-23</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260323.485/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260323.485/laputa_0.20260323.485_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260323.485_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260323.485" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260323.484</h2>
|
||
<p class="release-meta">March 23, 2026 · v0.20260323.484</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/35c62583d985138f0ddd75c4ba2e44d9a6f7bdb7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/35c62583d985138f0ddd75c4ba2e44d9a6f7bdb7"><tt>35c6258</tt></a> style: rustfmt use statement</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a6b24541841837792bbbb4f91a11113f2e83ebe7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a6b24541841837792bbbb4f91a11113f2e83ebe7"><tt>a6b2454</tt></a> refactor: remove theming system entirely</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>35c6258</code> on 2026-03-23</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260323.484/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260323.484/laputa_0.20260323.484_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260323.484_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260323.484" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260321.483</h2>
|
||
<p class="release-meta">March 21, 2026 · v0.20260321.483</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a74f76fdf19fc8f0980300922f7c4195f304261a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a74f76fdf19fc8f0980300922f7c4195f304261a"><tt>a74f76f</tt></a> test: add sidebar emoji icon rendering tests</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>a74f76f</code> on 2026-03-21</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260321.483/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260321.483/laputa_0.20260321.483_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260321.483_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260321.483" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260320.482</h2>
|
||
<p class="release-meta">March 20, 2026 · v0.20260320.482</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c6fa1f48cb8be081c0f24fda143567d2834fcd04/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c6fa1f48cb8be081c0f24fda143567d2834fcd04"><tt>c6fa1f4</tt></a> feat: add filter pills (Open/Archived/Trashed) to All Notes view</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c6fa1f4</code> on 2026-03-20</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260320.482/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260320.482/laputa_0.20260320.482_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260320.482_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260320.482" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260320.481</h2>
|
||
<p class="release-meta">March 20, 2026 · v0.20260320.481</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8f8954a6f7f5013677267cdfbd82a2985ea84297/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8f8954a6f7f5013677267cdfbd82a2985ea84297"><tt>8f8954a</tt></a> fix: inbox sidebar ordering, filter chip wrapping, and editor banner architecture</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>8f8954a</code> on 2026-03-20</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260320.481/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260320.481/laputa_0.20260320.481_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260320.481_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260320.481" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260320.480</h2>
|
||
<p class="release-meta">March 20, 2026 · v0.20260320.480</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/99f57165087fedf7fde17bf55402ec740affde25/hovercard" href="https://github.com/refactoringhq/tolaria/commit/99f57165087fedf7fde17bf55402ec740affde25"><tt>99f5716</tt></a> feat: show emoji icon in sidebar note items</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>99f5716</code> on 2026-03-20</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260320.480/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260320.480/laputa_0.20260320.480_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260320.480_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260320.480" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260320.479</h2>
|
||
<p class="release-meta">March 20, 2026 · v0.20260320.479</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b8f29c9530d3020aa5b960abe22a0eb74412d4a3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b8f29c9530d3020aa5b960abe22a0eb74412d4a3"><tt>b8f29c9</tt></a> fix: align type selector chip left using grid layout matching property rows</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>b8f29c9</code> on 2026-03-20</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260320.479/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260320.479/laputa_0.20260320.479_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260320.479_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260320.479" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260320.478</h2>
|
||
<p class="release-meta">March 20, 2026 · v0.20260320.478</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/33ae00a558963c994a56ba850f9b3110030d8068/hovercard" href="https://github.com/refactoringhq/tolaria/commit/33ae00a558963c994a56ba850f9b3110030d8068"><tt>33ae00a</tt></a> style: apply rustfmt to vault_config.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ac02de88e606c8d80464e413adef37bc5e822676/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ac02de88e606c8d80464e413adef37bc5e822676"><tt>ac02de8</tt></a> fix: store ui.config.md at vault root instead of config/ directory</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>33ae00a</code> on 2026-03-20</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260320.478/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260320.478/laputa_0.20260320.478_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260320.478_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260320.478" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260320.477</h2>
|
||
<p class="release-meta">March 20, 2026 · v0.20260320.477</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fb8208cfa0a59647291b26d4b657825523651329/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fb8208cfa0a59647291b26d4b657825523651329"><tt>fb8208c</tt></a> fix: use CSS grid for 50/50 label/value layout in properties panel</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>fb8208c</code> on 2026-03-20</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260320.477/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260320.477/laputa_0.20260320.477_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260320.477_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260320.477" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260320.476</h2>
|
||
<p class="release-meta">March 20, 2026 · v0.20260320.476</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/66e29b70b85eee64f1d31b3c4e30e4b8ba752cf0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/66e29b70b85eee64f1d31b3c4e30e4b8ba752cf0"><tt>66e29b7</tt></a> fix: match TitleField font-size/weight to BlockNote H1 and fix left alignment</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>66e29b7</code> on 2026-03-20</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260320.476/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260320.476/laputa_0.20260320.476_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260320.476_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260320.476" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260320.475</h2>
|
||
<p class="release-meta">March 20, 2026 · v0.20260320.475</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d1b358f76af5697655c338f7fcf0fdbf1b1e3acb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d1b358f76af5697655c338f7fcf0fdbf1b1e3acb"><tt>d1b358f</tt></a> fix: remove incorrect wikilink assertion from snippet smoke test</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c2ce67c3005e30d04e4eb2792b4fb427125e9cda/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c2ce67c3005e30d04e4eb2792b4fb427125e9cda"><tt>c2ce67c</tt></a> test: add smoke test for focus-event UI freeze regression</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>d1b358f</code> on 2026-03-20</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260320.475/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260320.475/laputa_0.20260320.475_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260320.475_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260320.475" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260320.474</h2>
|
||
<p class="release-meta">March 20, 2026 · v0.20260320.474</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/07522e984c625a731adb6f5b4d2c5a6eba7f1b0d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/07522e984c625a731adb6f5b4d2c5a6eba7f1b0d"><tt>07522e9</tt></a> fix: eliminate UI freeze on app focus by moving git commands off main thread</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>07522e9</code> on 2026-03-20</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260320.474/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260320.474/laputa_0.20260320.474_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260320.474_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260320.474" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260320.473</h2>
|
||
<p class="release-meta">March 20, 2026 · v0.20260320.473</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/36f43c1ae0952010bc81f8b122f14dce39042ec9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/36f43c1ae0952010bc81f8b122f14dce39042ec9"><tt>36f43c1</tt></a> fix: note list resolves relationships by title/alias matching unified resolveEntry</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>36f43c1</code> on 2026-03-20</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260320.473/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260320.473/laputa_0.20260320.473_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260320.473_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260320.473" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260320.472</h2>
|
||
<p class="release-meta">March 20, 2026 · v0.20260320.472</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1b478d0fc1ec28206e320ca0860f1b26d28d5800/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1b478d0fc1ec28206e320ca0860f1b26d28d5800"><tt>1b478d0</tt></a> fix: remove vertical padding from PropertyRow to match InfoRow density</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>1b478d0</code> on 2026-03-20</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260320.472/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260320.472/laputa_0.20260320.472_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260320.472_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260320.472" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260320.471</h2>
|
||
<p class="release-meta">March 20, 2026 · v0.20260320.471</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8646be6b8dd799cbab161839c639d3cdb33545a5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8646be6b8dd799cbab161839c639d3cdb33545a5"><tt>8646be6</tt></a> fix: force WKWebView pseudo-element style recalc on theme CSS var changes</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>8646be6</code> on 2026-03-20</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260320.471/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260320.471/laputa_0.20260320.471_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260320.471_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260320.471" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260320.470</h2>
|
||
<p class="release-meta">March 20, 2026 · v0.20260320.470</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fd9b4fe5e7ab452f4b1b94106f722f800aacd325/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fd9b4fe5e7ab452f4b1b94106f722f800aacd325"><tt>fd9b4fe</tt></a> refactor: NoteList.test.tsx -- deduplicate makeEntry helpers and bulk action tests (CodeScene: 7.78 to 10.0)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>fd9b4fe</code> on 2026-03-20</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260320.470/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260320.470/laputa_0.20260320.470_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260320.470_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260320.470" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260320.469</h2>
|
||
<p class="release-meta">March 20, 2026 · v0.20260320.469</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d52365882c7a3b00e9900c6ef531ef8982622b6c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d52365882c7a3b00e9900c6ef531ef8982622b6c"><tt>d523658</tt></a> style: rustfmt formatting for mod_tests</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/135fe62d21ee62673815141f60dbebce8f7af7b4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/135fe62d21ee62673815141f60dbebce8f7af7b4"><tt>135fe62</tt></a> fix: note list shows incomplete relationships when opening from sidebar</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>d523658</code> on 2026-03-20</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260320.469/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260320.469/laputa_0.20260320.469_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260320.469_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260320.469" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260319.468</h2>
|
||
<p class="release-meta">March 19, 2026 · v0.20260319.468</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/99aee0f67b412372019633ea5ee49f325efe39bf/hovercard" href="https://github.com/refactoringhq/tolaria/commit/99aee0f67b412372019633ea5ee49f325efe39bf"><tt>99aee0f</tt></a> fix: update smoke tests to find Changes badge in secondary sidebar area</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a369b3d93ee013d6748340b6a7fb5f50610f5c36/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a369b3d93ee013d6748340b6a7fb5f50610f5c36"><tt>a369b3d</tt></a> feat: move Changes and Pulse to secondary bottom area in sidebar</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>99aee0f</code> on 2026-03-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260319.468/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260319.468/laputa_0.20260319.468_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260319.468_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260319.468" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260319.467</h2>
|
||
<p class="release-meta">March 19, 2026 · v0.20260319.467</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4e88cf71b1bce8e9557d9fc136e6cbca8765a5c2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4e88cf71b1bce8e9557d9fc136e6cbca8765a5c2"><tt>4e88cf7</tt></a> style: rustfmt import formatting</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/35bbe221b8176332a440271a6e91d3e498b1f105/hovercard" href="https://github.com/refactoringhq/tolaria/commit/35bbe221b8176332a440271a6e91d3e498b1f105"><tt>35bbe22</tt></a> fix: remove invalid weight prop from lucide AlertTriangle icon</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/05dca72ef303ca3ffa80b16069b8247e4fd41f13/hovercard" href="https://github.com/refactoringhq/tolaria/commit/05dca72ef303ca3ffa80b16069b8247e4fd41f13"><tt>05dca72</tt></a> feat: handle git divergence, conflicts, and manual pull from within Laputa</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>4e88cf7</code> on 2026-03-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260319.467/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260319.467/laputa_0.20260319.467_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260319.467_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260319.467" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260319.466</h2>
|
||
<p class="release-meta">March 19, 2026 · v0.20260319.466</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/57a66e4788c6027e93bd973867faebd7992be590/hovercard" href="https://github.com/refactoringhq/tolaria/commit/57a66e4788c6027e93bd973867faebd7992be590"><tt>57a66e4</tt></a> test: add Playwright smoke test for Open in New Window command</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7b0b31455bfcbb77f1a8055dcc9fe51b465ecc43/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7b0b31455bfcbb77f1a8055dcc9fe51b465ecc43"><tt>7b0b314</tt></a> fix: use lowercase titleBarStyle for Tauri v2 WebviewWindow</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7c16ebd0655303b43ee8e39e2e865a353c8d7877/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7c16ebd0655303b43ee8e39e2e865a353c8d7877"><tt>7c16ebd</tt></a> feat: open note in new window (Cmd+Shift+Click / Cmd+Shift+O)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>57a66e4</code> on 2026-03-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260319.466/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260319.466/laputa_0.20260319.466_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260319.466_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260319.466" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260319.465</h2>
|
||
<p class="release-meta">March 19, 2026 · v0.20260319.465</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5df4a7a3ad0f31638f7e6a0a292a3e86f50e559e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5df4a7a3ad0f31638f7e6a0a292a3e86f50e559e"><tt>5df4a7a</tt></a> fix: reduce Properties row gap to match Info section density</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>5df4a7a</code> on 2026-03-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260319.465/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260319.465/laputa_0.20260319.465_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260319.465_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260319.465" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260319.464</h2>
|
||
<p class="release-meta">March 19, 2026 · v0.20260319.464</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ca410088509a037a2d45411f75d8b0e4ea235798/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ca410088509a037a2d45411f75d8b0e4ea235798"><tt>ca41008</tt></a> feat: adopt relationship chip style for type selector in Properties panel</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>ca41008</code> on 2026-03-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260319.464/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260319.464/laputa_0.20260319.464_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260319.464_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260319.464" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260319.463</h2>
|
||
<p class="release-meta">March 19, 2026 · v0.20260319.463</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/badbf141dde8c67a76dd29d2e1be8749f1dbded2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/badbf141dde8c67a76dd29d2e1be8749f1dbded2"><tt>badbf14</tt></a> fix: enforce 50/50 label/value layout in Properties panel with ellipsis</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>badbf14</code> on 2026-03-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260319.463/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260319.463/laputa_0.20260319.463_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260319.463_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260319.463" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260319.462</h2>
|
||
<p class="release-meta">March 19, 2026 · v0.20260319.462</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bc55231baa831cf60a3bd9364f43d13741d4b975/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bc55231baa831cf60a3bd9364f43d13741d4b975"><tt>bc55231</tt></a> feat: add Inbox sidebar section showing unlinked notes</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>bc55231</code> on 2026-03-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260319.462/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260319.462/laputa_0.20260319.462_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260319.462_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260319.462" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260319.461</h2>
|
||
<p class="release-meta">March 19, 2026 · v0.20260319.461</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/24da33e7cd5d1ad3114b8399c4c263102ca63bcf/hovercard" href="https://github.com/refactoringhq/tolaria/commit/24da33e7cd5d1ad3114b8399c4c263102ca63bcf"><tt>24da33e</tt></a> feat: auto-save notes with 500ms debounce after last keystroke</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>24da33e</code> on 2026-03-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260319.461/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260319.461/laputa_0.20260319.461_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260319.461_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260319.461" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260319.460</h2>
|
||
<p class="release-meta">March 19, 2026 · v0.20260319.460</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/004502ae7641fa204b8fee8cc89dc002a10577ae/hovercard" href="https://github.com/refactoringhq/tolaria/commit/004502ae7641fa204b8fee8cc89dc002a10577ae"><tt>004502a</tt></a> test: verify bullet-size and bullet-color live-reload via editor buffer</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>004502a</code> on 2026-03-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260319.460/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260319.460/laputa_0.20260319.460_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260319.460_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260319.460" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260319.459</h2>
|
||
<p class="release-meta">March 19, 2026 · v0.20260319.459</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d4b0cd5cc2becf14f9c04efce0aee37160ef0467/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d4b0cd5cc2becf14f9c04efce0aee37160ef0467"><tt>d4b0cd5</tt></a> fix: hide system properties (trashed, archived, icon) from Properties panel</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>d4b0cd5</code> on 2026-03-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260319.459/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260319.459/laputa_0.20260319.459_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260319.459_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260319.459" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260319.458</h2>
|
||
<p class="release-meta">March 19, 2026 · v0.20260319.458</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/975931ec6d03fd68fbd9dd1d920b5d176292cf5d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/975931ec6d03fd68fbd9dd1d920b5d176292cf5d"><tt>975931e</tt></a> fix: show Note type in sidebar instead of excluding it as default/fallback</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>975931e</code> on 2026-03-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260319.458/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260319.458/laputa_0.20260319.458_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260319.458_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260319.458" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260319.457</h2>
|
||
<p class="release-meta">March 19, 2026 · v0.20260319.457</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/748bf732a1c54578722d0a5520569085696d78ef/hovercard" href="https://github.com/refactoringhq/tolaria/commit/748bf732a1c54578722d0a5520569085696d78ef"><tt>748bf73</tt></a> fix: live-reload theme CSS vars on editor save and frontmatter changes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/70ab40538fc11d08ea00d0272dd0f1ad940df54e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/70ab40538fc11d08ea00d0272dd0f1ad940df54e"><tt>70ab405</tt></a> fix: show all relationships for topics in note list</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>748bf73</code> on 2026-03-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260319.457/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260319.457/laputa_0.20260319.457_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260319.457_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260319.457" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260318.456</h2>
|
||
<p class="release-meta">March 18, 2026 · v0.20260318.456</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2ca49b85264ecbda7a28ddd6d709501a3f22d96d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2ca49b85264ecbda7a28ddd6d709501a3f22d96d"><tt>2ca49b8</tt></a> feat: show note emoji icon in tab bar, breadcrumb, and pinned cards</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>2ca49b8</code> on 2026-03-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260318.456/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260318.456/laputa_0.20260318.456_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260318.456_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260318.456" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260318.455</h2>
|
||
<p class="release-meta">March 18, 2026 · v0.20260318.455</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/11c04f0b310a5fa7f7935373010c45139726f39c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/11c04f0b310a5fa7f7935373010c45139726f39c"><tt>11c04f0</tt></a> fix: remove broken snippet visibility test + add data-testid to snippet</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e1e489fbc7d12b73357d00daa840e9cd44553e5d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e1e489fbc7d12b73357d00daa840e9cd44553e5d"><tt>e1e489f</tt></a> fix: make snippet smoke test selector more specific</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e5177f590514c9914334ac82bb2fabb6ee75b45c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e5177f590514c9914334ac82bb2fabb6ee75b45c"><tt>e5177f5</tt></a> fix: align TitleField with editor by sharing scroll container</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/210f2f691632673ee1dd109162f2a808a7415607/hovercard" href="https://github.com/refactoringhq/tolaria/commit/210f2f691632673ee1dd109162f2a808a7415607"><tt>210f2f6</tt></a> feat: show note emoji icon in wikilinks, relationships, and backlinks</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>11c04f0</code> on 2026-03-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260318.455/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260318.455/laputa_0.20260318.455_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260318.455_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260318.455" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260318.454</h2>
|
||
<p class="release-meta">March 18, 2026 · v0.20260318.454</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9b92cf40c49389c8faa46f594df48adfab7ccc8b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9b92cf40c49389c8faa46f594df48adfab7ccc8b"><tt>9b92cf4</tt></a> test: update smoke tests to use TitleField instead of H1 sync</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e8ace69bb0150c5eb9914b65501c4ea55b7a7c29/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e8ace69bb0150c5eb9914b65501c4ea55b7a7c29"><tt>e8ace69</tt></a> style: rustfmt formatting for rename.rs assertions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8cfe7de66ab5aaff6844a59e8c73d06a565cd429/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8cfe7de66ab5aaff6844a59e8c73d06a565cd429"><tt>8cfe7de</tt></a> fix: decouple H1 from title sync + non-blocking TitleField rename</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>9b92cf4</code> on 2026-03-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260318.454/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260318.454/laputa_0.20260318.454_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260318.454_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260318.454" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260318.453</h2>
|
||
<p class="release-meta">March 18, 2026 · v0.20260318.453</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/47a11df4a4471ddca05ed3eb1e526d099274c48a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/47a11df4a4471ddca05ed3eb1e526d099274c48a"><tt>47a11df</tt></a> fix: remove trashed/archived fields from frontmatter on restore instead of setting false</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>47a11df</code> on 2026-03-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260318.453/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260318.453/laputa_0.20260318.453_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260318.453_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260318.453" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260318.452</h2>
|
||
<p class="release-meta">March 18, 2026 · v0.20260318.452</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/27dd42810a9fe59373f7180864cdc904ba44474a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/27dd42810a9fe59373f7180864cdc904ba44474a"><tt>27dd428</tt></a> fix: sync raw editor + suppress toast overwrite on trash/archive actions</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>27dd428</code> on 2026-03-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260318.452/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260318.452/laputa_0.20260318.452_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260318.452_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260318.452" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260318.451</h2>
|
||
<p class="release-meta">March 18, 2026 · v0.20260318.451</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7eaa284d4ef80180c29b4623cd6d1ce766cb86d7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7eaa284d4ef80180c29b4623cd6d1ce766cb86d7"><tt>7eaa284</tt></a> docs: require explicit Todoist move to In Review in task completion flow</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>7eaa284</code> on 2026-03-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260318.451/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260318.451/laputa_0.20260318.451_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260318.451_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260318.451" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260318.450</h2>
|
||
<p class="release-meta">March 18, 2026 · v0.20260318.450</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c559188f5a20d1f0caeaecc1a5297f77b82b1539/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c559188f5a20d1f0caeaecc1a5297f77b82b1539"><tt>c559188</tt></a> fix: remove legacy _themes/ dir creation, seed type defs at vault root</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c559188</code> on 2026-03-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260318.450/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260318.450/laputa_0.20260318.450_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260318.450_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260318.450" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260318.449</h2>
|
||
<p class="release-meta">March 18, 2026 · v0.20260318.449</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9a17e3ad249ceeaa65f63a3b9a5d5745c2a165ef/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9a17e3ad249ceeaa65f63a3b9a5d5745c2a165ef"><tt>9a17e3a</tt></a> test: add Playwright smoke tests for emoji picker rework</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e3d3331bbc0ae15266029a580b26eb1cded3da81/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e3d3331bbc0ae15266029a580b26eb1cded3da81"><tt>e3d3331</tt></a> feat: full Unicode emoji picker with name search and continuous scroll</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>9a17e3a</code> on 2026-03-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260318.449/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260318.449/laputa_0.20260318.449_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260318.449_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260318.449" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260318.448</h2>
|
||
<p class="release-meta">March 18, 2026 · v0.20260318.448</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/888ceb256dd481b68eed77d5103a5b7e39a7a52a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/888ceb256dd481b68eed77d5103a5b7e39a7a52a"><tt>888ceb2</tt></a> fix: match filter pills row height to breadcrumb bar (45px)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>888ceb2</code> on 2026-03-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260318.448/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260318.448/laputa_0.20260318.448_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260318.448_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260318.448" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260318.447</h2>
|
||
<p class="release-meta">March 18, 2026 · v0.20260318.447</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4600d0038b8f37674409298fe9de8339486ccd3e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4600d0038b8f37674409298fe9de8339486ccd3e"><tt>4600d00</tt></a> ci: raise hotspot code health threshold to 9.5</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>4600d00</code> on 2026-03-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260318.447/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260318.447/laputa_0.20260318.447_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260318.447_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260318.447" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260318.446</h2>
|
||
<p class="release-meta">March 18, 2026 · v0.20260318.446</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6cf889df6ca436d369454c56e0f58ebdd475601c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6cf889df6ca436d369454c56e0f58ebdd475601c"><tt>6cf889d</tt></a> fix: update trash smoke test for new Archive action in trash view</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c85e3b4f2f69d16dc5c842cba7a62c0786a39255/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c85e3b4f2f69d16dc5c842cba7a62c0786a39255"><tt>c85e3b4</tt></a> feat: add filter pills (Open/Archived/Trashed) with count badges to note list</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>6cf889d</code> on 2026-03-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260318.446/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260318.446/laputa_0.20260318.446_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260318.446_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260318.446" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260318.445</h2>
|
||
<p class="release-meta">March 18, 2026 · v0.20260318.445</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ecd941c54e09222289ce310890ab6f783b9a5985/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ecd941c54e09222289ce310890ab6f783b9a5985"><tt>ecd941c</tt></a> fix: sync title on reopen of already-open tabs (desync detection)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>ecd941c</code> on 2026-03-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260318.445/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260318.445/laputa_0.20260318.445_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260318.445_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260318.445" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260318.444</h2>
|
||
<p class="release-meta">March 18, 2026 · v0.20260318.444</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e1c545220f28f75fd7eced3ea57b7b951e2340a9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e1c545220f28f75fd7eced3ea57b7b951e2340a9"><tt>e1c5452</tt></a> fix: read owner/cadence from properties in ai-context</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e6b3278feaac39be12abac32e9ed32476c7fc1d3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e6b3278feaac39be12abac32e9ed32476c7fc1d3"><tt>e6b3278</tt></a> refactor: remove owner/cadence from Frontmatter, source created_at from filesystem</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/76de05e9b341ab0f05bdae6ded56b1ea840089d8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/76de05e9b341ab0f05bdae6ded56b1ea840089d8"><tt>76de05e</tt></a> feat: add emoji icon picker for notes stored in frontmatter</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>e1c5452</code> on 2026-03-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260318.444/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260318.444/laputa_0.20260318.444_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260318.444_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260318.444" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260317.443</h2>
|
||
<p class="release-meta">March 17, 2026 · v0.20260317.443</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f7ab10222afea476596e33c619392b4b9ed50515/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f7ab10222afea476596e33c619392b4b9ed50515"><tt>f7ab102</tt></a> docs: update CLAUDE.md — CodeScene threshold 9.2/9.2, fix port/finish-signal for no-worktree workflow</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>f7ab102</code> on 2026-03-17</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260317.443/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260317.443/laputa_0.20260317.443_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260317.443_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260317.443" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260317.442</h2>
|
||
<p class="release-meta">March 17, 2026 · v0.20260317.442</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b5a54c7f16ddc56a155d3a689a38e506d74c44c5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b5a54c7f16ddc56a155d3a689a38e506d74c44c5"><tt>b5a54c7</tt></a> docs: add Kent Beck Test Desiderata to TDD section in CLAUDE.md</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>b5a54c7</code> on 2026-03-17</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260317.442/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260317.442/laputa_0.20260317.442_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260317.442_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260317.442" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260317.441</h2>
|
||
<p class="release-meta">March 17, 2026 · v0.20260317.441</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/414cb12c7d86356223681a99dc6f1b7f530915e9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/414cb12c7d86356223681a99dc6f1b7f530915e9"><tt>414cb12</tt></a> style: rustfmt formatting</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3a24178759818927e780cf1f991183ecae9f8201/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3a24178759818927e780cf1f991183ecae9f8201"><tt>3a24178</tt></a> fix: remove unused import and dead code from title sync refactor</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e01403ea104c7bbc0d79f01ce25f3112197fbbf6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e01403ea104c7bbc0d79f01ce25f3112197fbbf6"><tt>e01403e</tt></a> test: Playwright smoke test for title/filename sync + update docs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a0874b22320f4f1ab39aba3cac7cc9c65f3de3a5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a0874b22320f4f1ab39aba3cac7cc9c65f3de3a5"><tt>a0874b2</tt></a> feat: TypeScript calls sync_note_title on note open</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a1688f84889403ff3296bb5c8d0d6eac282c0816/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a1688f84889403ff3296bb5c8d0d6eac282c0816"><tt>a1688f8</tt></a> feat: title/filename sync on note open + always write title in rename</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/56b923c6500b69942ec0b973a03059b86b3ba1a8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/56b923c6500b69942ec0b973a03059b86b3ba1a8"><tt>56b923c</tt></a> refactor: extract_title reads from frontmatter title, not H1</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>414cb12</code> on 2026-03-17</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260317.441/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260317.441/laputa_0.20260317.441_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260317.441_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260317.441" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260317.440</h2>
|
||
<p class="release-meta">March 17, 2026 · v0.20260317.440</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/dc6edd74af73e70d3b07b92546659ed73404f6f0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/dc6edd74af73e70d3b07b92546659ed73404f6f0"><tt>dc6edd7</tt></a> fix: rustfmt formatting in mod_tests.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/50dec4bcf38c78e2014baee4f58160f8a7ba494a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/50dec4bcf38c78e2014baee4f58160f8a7ba494a"><tt>50dec4b</tt></a> refactor: extract vault/mod.rs into submodules — fix CodeScene hotspot health</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>dc6edd7</code> on 2026-03-17</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260317.440/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260317.440/laputa_0.20260317.440_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260317.440_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260317.440" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260317.439</h2>
|
||
<p class="release-meta">March 17, 2026 · v0.20260317.439</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a808880e32fcae34f98fff07ba9f8974f3193511/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a808880e32fcae34f98fff07ba9f8974f3193511"><tt>a808880</tt></a> style: rustfmt repair_vault tests</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1e3ddb231c81347be003c67f949879151e6b86e1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1e3ddb231c81347be003c67f949879151e6b86e1"><tt>1e3ddb2</tt></a> fix: repair vault now flattens type folders and migrates legacy frontmatter</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>a808880</code> on 2026-03-17</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260317.439/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260317.439/laputa_0.20260317.439_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260317.439_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260317.439" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260317.438</h2>
|
||
<p class="release-meta">March 17, 2026 · v0.20260317.438</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/90dfbb2893a6f1c590edd51edf70ab472a6bacba/hovercard" href="https://github.com/refactoringhq/tolaria/commit/90dfbb2893a6f1c590edd51edf70ab472a6bacba"><tt>90dfbb2</tt></a> fix: smoke tests skip Theme entries in note list to avoid type selector issues</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/412a1e02c7f471750b0bd77955568643e65a8f27/hovercard" href="https://github.com/refactoringhq/tolaria/commit/412a1e02c7f471750b0bd77955568643e65a8f27"><tt>412a1e0</tt></a> fix: resolve demo vault path relative to project root — fix smoke test failures</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>d07a592</code> on 2026-03-17</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260317.438/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260317.438/laputa_0.20260317.438_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260317.438_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260317.438" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260317.437</h2>
|
||
<p class="release-meta">March 17, 2026 · v0.20260317.437</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b8ae75648f4dc32b420a1968a0f81a7e14ad9b17/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b8ae75648f4dc32b420a1968a0f81a7e14ad9b17"><tt>b8ae756</tt></a> fix: make CodeScene pre-push gate informational — remote API lags local changes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7620fe61df21760faa5da92608e43042ca02ee70/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7620fe61df21760faa5da92608e43042ca02ee70"><tt>7620fe6</tt></a> fix: correct CodeScene API key in pre-push hook — use code_health not average_code_health</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/08493f82178dd33b2abf588a240b204f95dfa068/hovercard" href="https://github.com/refactoringhq/tolaria/commit/08493f82178dd33b2abf588a240b204f95dfa068"><tt>08493f8</tt></a> style: rustfmt seed.rs and getting_started.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6dc6b5e5152dd955d9d17677a51806f650b53c41/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6dc6b5e5152dd955d9d17677a51806f650b53c41"><tt>6dc6b5e</tt></a> refactor: improve code health for vault/mod.rs and Editor.tsx — fix CodeScene hotspot score</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/beb49b6e4016822f18de1e30c83a6494e74ce687/hovercard" href="https://github.com/refactoringhq/tolaria/commit/beb49b6e4016822f18de1e30c83a6494e74ce687"><tt>beb49b6</tt></a> fix: update Repair Vault for flat vault structure — no theme/ or config/ dirs</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>b8ae756</code> on 2026-03-17</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260317.437/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260317.437/laputa_0.20260317.437_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260317.437_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260317.437" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260317.436</h2>
|
||
<p class="release-meta">March 17, 2026 · v0.20260317.436</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fa4925145978faa2de0663d78f0896aab20b31da/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fa4925145978faa2de0663d78f0896aab20b31da"><tt>fa49251</tt></a> feat: persist editor mode (raw/preview) across note switches</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>fa49251</code> on 2026-03-17</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260317.436/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260317.436/laputa_0.20260317.436_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260317.436_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260317.436" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260317.435</h2>
|
||
<p class="release-meta">March 17, 2026 · v0.20260317.435</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/67dbda8f24701700ccb18e9f23d7267c41dfe38e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/67dbda8f24701700ccb18e9f23d7267c41dfe38e"><tt>67dbda8</tt></a> style: rustfmt vault mod.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/17f94647b789f42ee488632811407c720446221d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/17f94647b789f42ee488632811407c720446221d"><tt>17f9464</tt></a> fix: uniform StringOrList normalization for all frontmatter string fields</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>67dbda8</code> on 2026-03-17</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260317.435/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260317.435/laputa_0.20260317.435_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260317.435_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260317.435" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260317.434</h2>
|
||
<p class="release-meta">March 17, 2026 · v0.20260317.434</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/97513929a3452bcac414e8165ee4f08810647806/hovercard" href="https://github.com/refactoringhq/tolaria/commit/97513929a3452bcac414e8165ee4f08810647806"><tt>9751392</tt></a> refactor: extract welcome/loading screens in App.tsx — reduce main component complexity</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>9751392</code> on 2026-03-17</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260317.434/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260317.434/laputa_0.20260317.434_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260317.434_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260317.434" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260316.433</h2>
|
||
<p class="release-meta">March 16, 2026 · v0.20260316.433</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/01d7a2058d00705bc8687f12b732ea377fb749b4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/01d7a2058d00705bc8687f12b732ea377fb749b4"><tt>01d7a20</tt></a> test: add Playwright smoke test for split-usenoteactions refactoring</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/19bbba9a2771e23e19646f11ca2421d6c870a3be/hovercard" href="https://github.com/refactoringhq/tolaria/commit/19bbba9a2771e23e19646f11ca2421d6c870a3be"><tt>19bbba9</tt></a> test: add unit tests for useNoteCreation and useNoteRename hooks</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4d13212ff500d676d431c9ba3decd20548e54860/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4d13212ff500d676d431c9ba3decd20548e54860"><tt>4d13212</tt></a> refactor: extract frontmatterOps, update imports for useNoteCreation/useNoteRename split</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>01d7a20</code> on 2026-03-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260316.433/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260316.433/laputa_0.20260316.433_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260316.433_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260316.433" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260316.432</h2>
|
||
<p class="release-meta">March 16, 2026 · v0.20260316.432</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2f028404b1d98423500f8f21045766dd1d0bfdd0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2f028404b1d98423500f8f21045766dd1d0bfdd0"><tt>2f02840</tt></a> style: rustfmt vault mod.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1550c02e4a18718c2fc6524079d7f85a732671c1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1550c02e4a18718c2fc6524079d7f85a732671c1"><tt>1550c02</tt></a> fix: add missing VaultEntry fields (belongs_to, status, owner, cadence)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/19d53da8fbf7d666579463e71df5381c0631fbb8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/19d53da8fbf7d666579463e71df5381c0631fbb8"><tt>19d53da</tt></a> fix: use contains() instead of iter().any() for clippy manual_contains</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/389424ff847b1baecc36162b5dd2fb2cced7427e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/389424ff847b1baecc36162b5dd2fb2cced7427e"><tt>389424f</tt></a> refactor: split NoteList.tsx god component into focused modules</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/15a747094bf9d0a449ee159561ee174d698feaa1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/15a747094bf9d0a449ee159561ee174d698feaa1"><tt>15a7470</tt></a> Resolve merge conflict: keep split vault module from origin/main</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>2f02840</code> on 2026-03-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260316.432/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260316.432/laputa_0.20260316.432_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260316.432_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260316.432" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260316.431</h2>
|
||
<p class="release-meta">March 16, 2026 · v0.20260316.431</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d1bbacafb372d24d1da24d0adb6c15da8e98a51e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d1bbacafb372d24d1da24d0adb6c15da8e98a51e"><tt>d1bbaca</tt></a> style: apply rustfmt to mod_tests.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7b6d8773d44b67ba37cead494a2848b949497eea/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7b6d8773d44b67ba37cead494a2848b949497eea"><tt>7b6d877</tt></a> fix: resolve clippy warnings from vault module split</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4c6b0430f4b689d7e67528f7970058a2551ab4d0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4c6b0430f4b689d7e67528f7970058a2551ab4d0"><tt>4c6b043</tt></a> refactor: split vault/mod.rs monolith into entry, frontmatter, file modules</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>d1bbaca</code> on 2026-03-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260316.431/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260316.431/laputa_0.20260316.431_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260316.431_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260316.431" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260316.430</h2>
|
||
<p class="release-meta">March 16, 2026 · v0.20260316.430</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7a341c2a5ea7fd40ee7f65cecfdf5e22567e3da9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7a341c2a5ea7fd40ee7f65cecfdf5e22567e3da9"><tt>7a341c2</tt></a> fix: clippy manual_contains lint in vault frontmatter filter</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3f5ac7a9a9448e829a3fa451c212ddc66d780669/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3f5ac7a9a9448e829a3fa451c212ddc66d780669"><tt>3f5ac7a</tt></a> refactor: split useNoteActions into useNoteCreation + useNoteRename — CodeScene 7.92→9.38</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>7a341c2</code> on 2026-03-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260316.430/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260316.430/laputa_0.20260316.430_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260316.430_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260316.430" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260316.429</h2>
|
||
<p class="release-meta">March 16, 2026 · v0.20260316.429</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/85fa0b86800d36c63351ea84918b5fe949ee120e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/85fa0b86800d36c63351ea84918b5fe949ee120e"><tt>85fa0b8</tt></a> fix: frontmatter parsing fails when unknown fields have list values</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>85fa0b8</code> on 2026-03-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260316.429/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260316.429/laputa_0.20260316.429_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260316.429_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260316.429" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260316.428</h2>
|
||
<p class="release-meta">March 16, 2026 · v0.20260316.428</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/08668854b93e539ccc90ed350e2df7158be2d66e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/08668854b93e539ccc90ed350e2df7158be2d66e"><tt>0866885</tt></a> fix: flat vault type resolution — remove type/ prefix from links and protected folders</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>0866885</code> on 2026-03-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260316.428/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260316.428/laputa_0.20260316.428_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260316.428_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260316.428" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260316.427</h2>
|
||
<p class="release-meta">March 16, 2026 · v0.20260316.427</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5a081b06d4648b7b39aff2c7728d6dcb08738a32/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5a081b06d4648b7b39aff2c7728d6dcb08738a32"><tt>5a081b0</tt></a> refactor: split DynamicPropertiesPanel into focused sub-components — reduce 699-line catch-all (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4080503685" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/197" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/197/hovercard" href="https://github.com/refactoringhq/tolaria/pull/197">#197</a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>5a081b0</code> on 2026-03-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260316.427/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260316.427/laputa_0.20260316.427_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260316.427_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260316.427" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260316.426</h2>
|
||
<p class="release-meta">March 16, 2026 · v0.20260316.426</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fa740098771addad71a892db3de00b6f2e2f3481/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fa740098771addad71a892db3de00b6f2e2f3481"><tt>fa74009</tt></a> feat: ensure .DS_Store in .gitignore for all new vaults</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>fa74009</code> on 2026-03-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260316.426/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260316.426/laputa_0.20260316.426_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260316.426_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260316.426" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260316.425</h2>
|
||
<p class="release-meta">March 16, 2026 · v0.20260316.425</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f89b199b793beee514efec717333eee4b75063a4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f89b199b793beee514efec717333eee4b75063a4"><tt>f89b199</tt></a> fix: cargo fmt formatting</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6a30016e6b67ea0a4237862c213ca42584a623ff/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6a30016e6b67ea0a4237862c213ca42584a623ff"><tt>6a30016</tt></a> fix: correct reloadVault type in useFlatVaultMigration</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e7a9581e63f22ff7e104942c91d1fffc9bf2cc99/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e7a9581e63f22ff7e104942c91d1fffc9bf2cc99"><tt>e7a9581</tt></a> test: add Playwright smoke tests for flat vault migration</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a2071354e2b5889fb19490d9832882489c0d5091/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a2071354e2b5889fb19490d9832882489c0d5091"><tt>a207135</tt></a> docs: update ARCHITECTURE.md and ABSTRACTIONS.md for flat vault</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6237efe02fa34287c2f18b587498dba6c31b0dd6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6237efe02fa34287c2f18b587498dba6c31b0dd6"><tt>6237efe</tt></a> feat: add migration wizard for flat vault</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/aad863ebe3fb11e25aa430268b0873e5a99cc5ed/hovercard" href="https://github.com/refactoringhq/tolaria/commit/aad863ebe3fb11e25aa430268b0873e5a99cc5ed"><tt>aad863e</tt></a> feat: add dedicated TitleField above editor</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/38021d231dbbe633ca8f41e43b5e143e335c1baa/hovercard" href="https://github.com/refactoringhq/tolaria/commit/38021d231dbbe633ca8f41e43b5e143e335c1baa"><tt>38021d2</tt></a> refactor: reorder wikilink resolution for flat vault</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a88c9fc2d0ecc9fff9e2efa020abc51832fe7670/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a88c9fc2d0ecc9fff9e2efa020abc51832fe7670"><tt>a88c9fc</tt></a> feat: add vault_health_check command</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/40bf800c396fb2cd32b28ac6559b002fc27f7361/hovercard" href="https://github.com/refactoringhq/tolaria/commit/40bf800c396fb2cd32b28ac6559b002fc27f7361"><tt>40bf800</tt></a> refactor: restrict scan_vault to root + protected folders only</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>f89b199</code> on 2026-03-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260316.425/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260316.425/laputa_0.20260316.425_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260316.425_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260316.425" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260316.424</h2>
|
||
<p class="release-meta">March 16, 2026 · v0.20260316.424</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5838f4104b5033c022cd8ddeb8900058ace7af9b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5838f4104b5033c022cd8ddeb8900058ace7af9b"><tt>5838f41</tt></a> style: rustfmt formatting fix</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/23b632ac9ff2e4eb06e71f9aba723a24225796dd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/23b632ac9ff2e4eb06e71f9aba723a24225796dd"><tt>23b632a</tt></a> fix: fall back to sub-heading text when snippet has no paragraph content</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>5838f41</code> on 2026-03-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260316.424/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260316.424/laputa_0.20260316.424_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260316.424_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260316.424" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260316.423</h2>
|
||
<p class="release-meta">March 16, 2026 · v0.20260316.423</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5cfc80dad56a1055a023b5ac6db59edc674e839c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5cfc80dad56a1055a023b5ac6db59edc674e839c"><tt>5cfc80d</tt></a> fix: render deleted notes banner outside Virtuoso for proper visibility</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/298c82b9b8276eba98b4d2da119c50e326ec4af8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/298c82b9b8276eba98b4d2da119c50e326ec4af8"><tt>298c82b</tt></a> feat: show deleted notes in Changes view</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>5cfc80d</code> on 2026-03-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260316.423/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260316.423/laputa_0.20260316.423_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260316.423_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260316.423" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260316.422</h2>
|
||
<p class="release-meta">March 16, 2026 · v0.20260316.422</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0bf2ea6cb7621915b16da10a97abfa412018c3c5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0bf2ea6cb7621915b16da10a97abfa412018c3c5"><tt>0bf2ea6</tt></a> fix: make snippet Playwright test more robust for CI</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ee556aa0041bf362b95cf8b411ad34462e1b6cbc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ee556aa0041bf362b95cf8b411ad34462e1b6cbc"><tt>ee556aa</tt></a> fix: strip list markers from snippets + bump cache version for full rescan</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>0bf2ea6</code> on 2026-03-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260316.422/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260316.422/laputa_0.20260316.422_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260316.422_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260316.422" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260316.421</h2>
|
||
<p class="release-meta">March 16, 2026 · v0.20260316.421</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8684b36bba5884b396b66f634cc8820a5a2519df/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8684b36bba5884b396b66f634cc8820a5a2519df"><tt>8684b36</tt></a> fix: prevent crash when creating note from relationship input</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>8684b36</code> on 2026-03-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260316.421/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260316.421/laputa_0.20260316.421_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260316.421_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260316.421" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260316.420</h2>
|
||
<p class="release-meta">March 16, 2026 · v0.20260316.420</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/899e786fdc6dd8b8105fa3a524b7fdc3f49adcae/hovercard" href="https://github.com/refactoringhq/tolaria/commit/899e786fdc6dd8b8105fa3a524b7fdc3f49adcae"><tt>899e786</tt></a> fix: resolve duplicate option match in changing-type smoke test</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b03173058cfa000cc912847d0987875832eec8e2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b03173058cfa000cc912847d0987875832eec8e2"><tt>b031730</tt></a> fix: force WebKit reflow for pseudo-elements on theme CSS var changes</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>899e786</code> on 2026-03-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260316.420/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260316.420/laputa_0.20260316.420_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260316.420_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260316.420" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260315.419</h2>
|
||
<p class="release-meta">March 15, 2026 · v0.20260315.419</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b3126044e8cff42e37d07fda6fb21b97253fede3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b3126044e8cff42e37d07fda6fb21b97253fede3"><tt>b312604</tt></a> refactor: flatten vault structure — simplify migration API and flatten demo vault</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>b312604</code> on 2026-03-15</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260315.419/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260315.419/laputa_0.20260315.419_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260315.419_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260315.419" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260315.418</h2>
|
||
<p class="release-meta">March 15, 2026 · v0.20260315.418</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fc1826b0e2ad32aebf3b6951143c0fb9d1f4da58/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fc1826b0e2ad32aebf3b6951143c0fb9d1f4da58"><tt>fc1826b</tt></a> fix: disable Tauri native drag-drop to unblock HTML5 DnD (tabs, blocks)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>fc1826b</code> on 2026-03-15</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260315.418/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260315.418/laputa_0.20260315.418_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260315.418_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260315.418" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260315.417</h2>
|
||
<p class="release-meta">March 15, 2026 · v0.20260315.417</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/17d8618c16475be03bb8f9893e4957d97cd8090b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/17d8618c16475be03bb8f9893e4957d97cd8090b"><tt>17d8618</tt></a> fix: use first available note in rename smoke test instead of hardcoded 'Refactoring'</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/698c4cece1ec47f7e1ca331c7053c25002b67216/hovercard" href="https://github.com/refactoringhq/tolaria/commit/698c4cece1ec47f7e1ca331c7053c25002b67216"><tt>698c4ce</tt></a> fix: prevent image drop overlay from breaking internal DnD and block handle</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>17d8618</code> on 2026-03-15</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260315.417/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260315.417/laputa_0.20260315.417_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260315.417_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260315.417" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260315.416</h2>
|
||
<p class="release-meta">March 15, 2026 · v0.20260315.416</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/acd048b1449e5e391cc7a794db5ac908456e2581/hovercard" href="https://github.com/refactoringhq/tolaria/commit/acd048b1449e5e391cc7a794db5ac908456e2581"><tt>acd048b</tt></a> test: update changing-type smoke test for flat vault (no file movement)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9ce74e708178f724b1ff2b14f3811a6e71c661ac/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9ce74e708178f724b1ff2b14f3811a6e71c661ac"><tt>9ce74e7</tt></a> style: cargo fmt</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/deec1be7e0f255b4b036b289654374ab276de8f0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/deec1be7e0f255b4b036b289654374ab276de8f0"><tt>deec1be</tt></a> refactor: remove dead code from flat vault migration</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b2bb7cf66173fc10ce1436e88228fb431b3ed1ca/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b2bb7cf66173fc10ce1436e88228fb431b3ed1ca"><tt>b2bb7cf</tt></a> feat: title = filename — wikilink resolution + slug collision detection</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/112f68c66d57e3c2634af486531c5c24933ed668/hovercard" href="https://github.com/refactoringhq/tolaria/commit/112f68c66d57e3c2634af486531c5c24933ed668"><tt>112f68c</tt></a> feat: flatten vault structure — remove type-based folders</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>acd048b</code> on 2026-03-15</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260315.416/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260315.416/laputa_0.20260315.416_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260315.416_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260315.416" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260315.415</h2>
|
||
<p class="release-meta">March 15, 2026 · v0.20260315.415</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/28fa9673b734e8978faf92dd35a23fdca5536643/hovercard" href="https://github.com/refactoringhq/tolaria/commit/28fa9673b734e8978faf92dd35a23fdca5536643"><tt>28fa967</tt></a> test: fresh-install regression QA smoke tests for 7 Done tasks</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>28fa967</code> on 2026-03-15</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260315.415/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260315.415/laputa_0.20260315.415_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260315.415_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260315.415" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260314.414</h2>
|
||
<p class="release-meta">March 14, 2026 · v0.20260314.414</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/18e173faca623b70de87bb512c5791595d97be41/hovercard" href="https://github.com/refactoringhq/tolaria/commit/18e173faca623b70de87bb512c5791595d97be41"><tt>18e173f</tt></a> docs: remove 'Current state' section from VISION.md</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a16b477878c86d11ee2b2ab14e9f59cecc407fc2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a16b477878c86d11ee2b2ab14e9f59cecc407fc2"><tt>a16b477</tt></a> docs: fix Mermaid syntax error in Vault Cache diagram</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>18e173f</code> on 2026-03-14</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260314.414/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260314.414/laputa_0.20260314.414_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260314.414_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260314.414" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260313.413</h2>
|
||
<p class="release-meta">March 13, 2026 · v0.20260313.413</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7bcbf87067c30edb532767b9d30e025d01c64b02/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7bcbf87067c30edb532767b9d30e025d01c64b02"><tt>7bcbf87</tt></a> docs: compress CLAUDE.md 360→93 lines — remove verbose explanations, keep rules</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>7bcbf87</code> on 2026-03-13</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260313.413/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260313.413/laputa_0.20260313.413_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260313.413_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260313.413" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260313.412</h2>
|
||
<p class="release-meta">March 13, 2026 · v0.20260313.412</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a23264eacbfecae007b6a22a8c2613df2506f32b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a23264eacbfecae007b6a22a8c2613df2506f32b"><tt>a23264e</tt></a> docs: convert remaining ASCII diagrams to Mermaid + add Mermaid rule to CLAUDE.md</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>a23264e</code> on 2026-03-13</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260313.412/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260313.412/laputa_0.20260313.412_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260313.412_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260313.412" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260313.411</h2>
|
||
<p class="release-meta">March 13, 2026 · v0.20260313.411</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/18b65f1e5934e0ae74d79cc79e01d98e6560de33/hovercard" href="https://github.com/refactoringhq/tolaria/commit/18b65f1e5934e0ae74d79cc79e01d98e6560de33"><tt>18b65f1</tt></a> docs: add Mermaid diagrams to ARCHITECTURE and ABSTRACTIONS</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>18b65f1</code> on 2026-03-13</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260313.411/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260313.411/laputa_0.20260313.411_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260313.411_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260313.411" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260313.410</h2>
|
||
<p class="release-meta">March 13, 2026 · v0.20260313.410</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/52d68aa506166fa15c3453410ee9666e52805d68/hovercard" href="https://github.com/refactoringhq/tolaria/commit/52d68aa506166fa15c3453410ee9666e52805d68"><tt>52d68aa</tt></a> ci: add .codesceneignore — exclude tools/, e2e/, tests/, scripts/</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>52d68aa</code> on 2026-03-13</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260313.410/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260313.410/laputa_0.20260313.410_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260313.410_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260313.410" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260313.409</h2>
|
||
<p class="release-meta">March 13, 2026 · v0.20260313.409</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8cb2194842b9ed79a4644d22d454a2315778a130/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8cb2194842b9ed79a4644d22d454a2315778a130"><tt>8cb2194</tt></a> ci: add average_code_health gate (≥8.8) to pre-push hook</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>8cb2194</code> on 2026-03-13</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260313.409/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260313.409/laputa_0.20260313.409_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260313.409_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260313.409" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260313.408</h2>
|
||
<p class="release-meta">March 13, 2026 · v0.20260313.408</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/66090688f99faddea03cc77596838cdecafa7060/hovercard" href="https://github.com/refactoringhq/tolaria/commit/66090688f99faddea03cc77596838cdecafa7060"><tt>6609068</tt></a> refactor: extract useLayoutPanels hook from App.tsx — reduce god component churn (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4068389741" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/195" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/195/hovercard" href="https://github.com/refactoringhq/tolaria/pull/195">#195</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4069149707" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/196" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/196/hovercard" href="https://github.com/refactoringhq/tolaria/pull/196">#196</a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>6609068</code> on 2026-03-13</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260313.408/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260313.408/laputa_0.20260313.408_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260313.408_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260313.408" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260312.407</h2>
|
||
<p class="release-meta">March 12, 2026 · v0.20260312.407</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a15f36ec6ae7300a023009f2137649b2d53c79dc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a15f36ec6ae7300a023009f2137649b2d53c79dc"><tt>a15f36e</tt></a> refactor: extract useAppNavigation hook from App.tsx — reduce god component churn (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4062449872" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/194" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/194/hovercard" href="https://github.com/refactoringhq/tolaria/pull/194">#194</a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>a15f36e</code> on 2026-03-12</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260312.407/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260312.407/laputa_0.20260312.407_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260312.407_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260312.407" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260312.406</h2>
|
||
<p class="release-meta">March 12, 2026 · v0.20260312.406</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8137125569cea0129dcd6456e9e1681a88e18208/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8137125569cea0129dcd6456e9e1681a88e18208"><tt>8137125</tt></a> refactor: extract useDeleteActions hook from App.tsx — reduce churn surface (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4062218256" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/193" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/193/hovercard" href="https://github.com/refactoringhq/tolaria/pull/193">#193</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9891a29f7f61479084e31c0de39833bb2a360f02/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9891a29f7f61479084e31c0de39833bb2a360f02"><tt>9891a29</tt></a> test: extract useBulkActions hook and add unit tests (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4061668278" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/192" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/192/hovercard" href="https://github.com/refactoringhq/tolaria/pull/192">#192</a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>8137125</code> on 2026-03-12</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260312.406/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260312.406/laputa_0.20260312.406_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260312.406_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260312.406" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260312.404</h2>
|
||
<p class="release-meta">March 12, 2026 · v0.20260312.404</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6c9b39c0f0b264694b8fd9ee0307b4f690eefe59/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6c9b39c0f0b264694b8fd9ee0307b4f690eefe59"><tt>6c9b39c</tt></a> test: add useEditorSaveWithLinks tests, remove dead useDropdownKeyboard (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4048940216" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/191" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/191/hovercard" href="https://github.com/refactoringhq/tolaria/pull/191">#191</a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>6c9b39c</code> on 2026-03-12</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260312.404/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260312.404/laputa_0.20260312.404_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260312.404_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260312.404" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260312.403</h2>
|
||
<p class="release-meta">March 12, 2026 · v0.20260312.403</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3207b0b10e15f521ba7cdc3b8d0d20271f93b9fe/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3207b0b10e15f521ba7cdc3b8d0d20271f93b9fe"><tt>3207b0b</tt></a> chore: skip flaky theme-live-reload tests (dark theme mismatch)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/088c495520191dc040db5bed3ce8c0e5b5c2489a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/088c495520191dc040db5bed3ce8c0e5b5c2489a"><tt>088c495</tt></a> fix: use note-list-container scoped selector in reopen-closed-tab smoke test</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/70f984c3994f8909d3ea238bcb66e06b40a9d8a4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/70f984c3994f8909d3ea238bcb66e06b40a9d8a4"><tt>70f984c</tt></a> feat: add Playwright smoke tests, data-tab-path attr, store full VaultEntry in closed tab history</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0d6cce1588eb328cf77d35a5db45eca3c52fc493/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0d6cce1588eb328cf77d35a5db45eca3c52fc493"><tt>0d6cce1</tt></a> feat: add Cmd+Shift+T shortcut, menu item, and full wiring</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/73278f3bafcb9b7fcacc0255c9f5c4ac75418e6d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/73278f3bafcb9b7fcacc0255c9f5c4ac75418e6d"><tt>73278f3</tt></a> feat: add closed tab history and reopen-closed-tab support</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>3207b0b</code> on 2026-03-12</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260312.403/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260312.403/laputa_0.20260312.403_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260312.403_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260312.403" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260311.402</h2>
|
||
<p class="release-meta">March 11, 2026 · v0.20260311.402</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/93dc454a8a5869de9ab457ae18ae0addeb4da482/hovercard" href="https://github.com/refactoringhq/tolaria/commit/93dc454a8a5869de9ab457ae18ae0addeb4da482"><tt>93dc454</tt></a> style: format trash.rs with cargo fmt</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1b7b7f3fde6770880c3b12a05f13302cf2a0b0f7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1b7b7f3fde6770880c3b12a05f13302cf2a0b0f7"><tt>1b7b7f3</tt></a> docs: add trash management design file and update ARCHITECTURE.md</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7e20a36469fbfcbe2dca5167d1213b4cc5a22df4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7e20a36469fbfcbe2dca5167d1213b4cc5a22df4"><tt>7e20a36</tt></a> fix: update Playwright smoke test selectors for trash management</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/61a145c49bb677d2d33a52e71573420f80b23af5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/61a145c49bb677d2d33a52e71573420f80b23af5"><tt>61a145c</tt></a> feat: add Empty Trash menu bar item and Playwright smoke test</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9a7369c79974dfe7f260d3e03d35e7857048df14/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9a7369c79974dfe7f260d3e03d35e7857048df14"><tt>9a7369c</tt></a> feat: trash management — bulk restore, delete permanently, empty trash</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/13d3b2d37532c9355e84c3ec8194e5af6f0c19e7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/13d3b2d37532c9355e84c3ec8194e5af6f0c19e7"><tt>13d3b2d</tt></a> feat: add batch_delete_notes and empty_trash Rust commands</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>93dc454</code> on 2026-03-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260311.402/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260311.402/laputa_0.20260311.402_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260311.402_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260311.402" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260311.401</h2>
|
||
<p class="release-meta">March 11, 2026 · v0.20260311.401</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9994f2386c2ed7d8dd36fcd1068b4c635e7ad193/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9994f2386c2ed7d8dd36fcd1068b4c635e7ad193"><tt>9994f23</tt></a> test: mark pre-existing ai-notes-visibility WS port conflict as fixme</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a496a115bf67858b070d6e91fe647bbc89e0ee32/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a496a115bf67858b070d6e91fe647bbc89e0ee32"><tt>a496a11</tt></a> test: mark pre-existing theme-live-reload tests as fixme</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ed4926d59f7bc3c8f5ca02d24b4310a80bd15470/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ed4926d59f7bc3c8f5ca02d24b4310a80bd15470"><tt>ed4926d</tt></a> test: add Playwright smoke test for clickable editor empty space</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c158cbccff72c706cbc1f23d2d70866a70e5ac41/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c158cbccff72c706cbc1f23d2d70866a70e5ac41"><tt>c158cbc</tt></a> fix: make empty space below editor content clickable to focus editor</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>9994f23</code> on 2026-03-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260311.401/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260311.401/laputa_0.20260311.401_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260311.401_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260311.401" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260311.400</h2>
|
||
<p class="release-meta">March 11, 2026 · v0.20260311.400</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/12416b99bc7e1f917594e76c4dc43d48d1f78ac7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/12416b99bc7e1f917594e76c4dc43d48d1f78ac7"><tt>12416b9</tt></a> fix: block vault API in theme-live-reload smoke test</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a25f9ee1fcdeb9fbb6d5dc06315517c28b47e8d5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a25f9ee1fcdeb9fbb6d5dc06315517c28b47e8d5"><tt>a25f9ee</tt></a> style: format Rust theme modules with cargo fmt</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8a48c21445e44248b98e65910e1a0847d0c20833/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8a48c21445e44248b98e65910e1a0847d0c20833"><tt>8a48c21</tt></a> test: add Playwright smoke test for theme properties defaults</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7c72494efb08a5fc758870f549d90d8ece6da758/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7c72494efb08a5fc758870f549d90d8ece6da758"><tt>7c72494</tt></a> fix: write all theme.json defaults to vault theme frontmatter</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>12416b9</code> on 2026-03-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260311.400/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260311.400/laputa_0.20260311.400_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260311.400_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260311.400" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260311.399</h2>
|
||
<p class="release-meta">March 11, 2026 · v0.20260311.399</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/10b4e6d0387811a1fa4309fbff061cd73989f572/hovercard" href="https://github.com/refactoringhq/tolaria/commit/10b4e6d0387811a1fa4309fbff061cd73989f572"><tt>10b4e6d</tt></a> test: add Playwright smoke test for note list preview snippets</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/55519e53ad1814cc4893d20808701d35f25fffa9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/55519e53ad1814cc4893d20808701d35f25fffa9"><tt>55519e5</tt></a> fix: update note list snippet on save so all notes show preview</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>10b4e6d</code> on 2026-03-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260311.399/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260311.399/laputa_0.20260311.399_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260311.399_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260311.399" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260311.398</h2>
|
||
<p class="release-meta">March 11, 2026 · v0.20260311.398</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fafa4e394ba68b6b499647ce87cde154defe1c01/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fafa4e394ba68b6b499647ce87cde154defe1c01"><tt>fafa4e3</tt></a> fix: sync raw editor (CodeMirror) content to BlockNote on mode switch</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>fafa4e3</code> on 2026-03-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260311.398/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260311.398/laputa_0.20260311.398_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260311.398_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260311.398" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260311.397</h2>
|
||
<p class="release-meta">March 11, 2026 · v0.20260311.397</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ab02aa5e96ac045d84fce211b2f3940ee366f338/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ab02aa5e96ac045d84fce211b2f3940ee366f338"><tt>ab02aa5</tt></a> feat: wire create-open relationship note to all panel contexts</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4dd27cf0c3ac6bca9604f19e12b6f029ba5d6fe0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4dd27cf0c3ac6bca9604f19e12b6f029ba5d6fe0"><tt>4dd27cf</tt></a> feat: add 'Create & open' option to relationship input dropdowns</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c499ef30f0eee9fcfe69928b92995605c521fd1c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c499ef30f0eee9fcfe69928b92995605c521fd1c"><tt>c499ef3</tt></a> fix: case-insensitive type entry lookup + Playwright smoke test</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b3bf2bf76ee978922e97f660c0bdd25faf2cb4ee/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b3bf2bf76ee978922e97f660c0bdd25faf2cb4ee"><tt>b3bf2bf</tt></a> fix: sidebar section header reflects type icon, color, and label</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/13622bc236bba6dcc820a0c3ae4b5d2b86cea78d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/13622bc236bba6dcc820a0c3ae4b5d2b86cea78d"><tt>13622bc</tt></a> test: add real filesystem vault integration tests</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>ab02aa5</code> on 2026-03-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260311.397/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260311.397/laputa_0.20260311.397_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260311.397_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260311.397" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260311.394</h2>
|
||
<p class="release-meta">March 11, 2026 · v0.20260311.394</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/80ad5cfad73e92facba1e153d93dc092cbdfd7d1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/80ad5cfad73e92facba1e153d93dc092cbdfd7d1"><tt>80ad5cf</tt></a> fix: update fix-note-filename-on-rename smoke test for title-sync rename</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/068d70c2641c00e746a6eb66cbe477d45a897664/hovercard" href="https://github.com/refactoringhq/tolaria/commit/068d70c2641c00e746a6eb66cbe477d45a897664"><tt>068d70c</tt></a> fix: add missing old_title_hint arg to tests added on main</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/86ffb43eb7b1c8880870a3884815ad0d142f651b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/86ffb43eb7b1c8880870a3884815ad0d142f651b"><tt>86ffb43</tt></a> style: cargo fmt on rename.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3504bb221aa764047be5eeedded365e733dd96b3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3504bb221aa764047be5eeedded365e733dd96b3"><tt>3504bb2</tt></a> fix: remove needless borrow flagged by clippy in rename.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f2136f17ef3b5b8a214b2889fa56d0ecfd528f9e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f2136f17ef3b5b8a214b2889fa56d0ecfd528f9e"><tt>f2136f1</tt></a> test: Playwright smoke test for rename-wikilink-update</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/75ca18d4d002fb1ffd3e301b0f8df6bd557b1d18/hovercard" href="https://github.com/refactoringhq/tolaria/commit/75ca18d4d002fb1ffd3e301b0f8df6bd557b1d18"><tt>75ca18d</tt></a> test: unit tests for rename-wikilink-update feature</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/47c408dc5095eb4d2c5778fb9db77f9595f2b176/hovercard" href="https://github.com/refactoringhq/tolaria/commit/47c408dc5095eb4d2c5778fb9db77f9595f2b176"><tt>47c408d</tt></a> feat: wire H1 sync and frontmatter title change to full rename flow</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/96d7df368a5fa8664f06bd661d96520264c9c26c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/96d7df368a5fa8664f06bd661d96520264c9c26c"><tt>96d7df3</tt></a> feat: add old_title_hint to rename_note for H1 sync rename support</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>80ad5cf</code> on 2026-03-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260311.394/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260311.394/laputa_0.20260311.394_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260311.394_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260311.394" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260311.393</h2>
|
||
<p class="release-meta">March 11, 2026 · v0.20260311.393</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c7b0c15537c168f375a47fb64efa57ea97e48c98/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c7b0c15537c168f375a47fb64efa57ea97e48c98"><tt>c7b0c15</tt></a> test: Playwright smoke test for serializer blank lines fix</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0ee6e76d104c43cc6cefdd3828abef10de26448c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0ee6e76d104c43cc6cefdd3828abef10de26448c"><tt>0ee6e76</tt></a> fix: post-process BlockNote serializer to remove extra blank lines</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c7b0c15</code> on 2026-03-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260311.393/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260311.393/laputa_0.20260311.393_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260311.393_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260311.393" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260311.392</h2>
|
||
<p class="release-meta">March 11, 2026 · v0.20260311.392</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/25c44910d195becbc2ea7057cd5f55f7a5aa815c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/25c44910d195becbc2ea7057cd5f55f7a5aa815c"><tt>25c4491</tt></a> test: add Playwright smoke tests for wikilink insertion and navigation</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/61760c4a4126d01f9aaf23b5036b952b97501d6b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/61760c4a4126d01f9aaf23b5036b952b97501d6b"><tt>61760c4</tt></a> fix: unify wikilink resolution and disambiguate duplicate titles</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>25c4491</code> on 2026-03-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260311.392/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260311.392/laputa_0.20260311.392_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260311.392_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260311.392" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260311.391</h2>
|
||
<p class="release-meta">March 11, 2026 · v0.20260311.391</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8104a8380cb8a626ef5099347a0de8325663493e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8104a8380cb8a626ef5099347a0de8325663493e"><tt>8104a83</tt></a> fix: image drop overlay no longer triggers on internal drags (tabs, blocks)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>8104a83</code> on 2026-03-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260311.391/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260311.391/laputa_0.20260311.391_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260311.391_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260311.391" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260311.390</h2>
|
||
<p class="release-meta">March 11, 2026 · v0.20260311.390</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/593a0d3d54ac9b2ad0ef0fa4053c7964f791dd87/hovercard" href="https://github.com/refactoringhq/tolaria/commit/593a0d3d54ac9b2ad0ef0fa4053c7964f791dd87"><tt>593a0d3</tt></a> test: Playwright smoke test for note filename rename on save</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a50aae70e88c63a56515893e57acbd4e26633368/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a50aae70e88c63a56515893e57acbd4e26633368"><tt>a50aae7</tt></a> feat: rename file on save when title slug doesn't match filename</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2387b9a637c9c04edb34efb02dc3c9c364c712c3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2387b9a637c9c04edb34efb02dc3c9c364c712c3"><tt>2387b9a</tt></a> fix: rename_note handles filename-slug mismatch and collisions</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>593a0d3</code> on 2026-03-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260311.390/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260311.390/laputa_0.20260311.390_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260311.390_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260311.390" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260311.389</h2>
|
||
<p class="release-meta">March 11, 2026 · v0.20260311.389</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/27452515d7b3fde5e4826cf938c0d40dd115165a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/27452515d7b3fde5e4826cf938c0d40dd115165a"><tt>2745251</tt></a> test: Playwright smoke test for changing-type data corruption regression</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/14a4d371e6acc80268ce70e25e13c3b1a3dbe869/hovercard" href="https://github.com/refactoringhq/tolaria/commit/14a4d371e6acc80268ce70e25e13c3b1a3dbe869"><tt>14a4d37</tt></a> fix: mock move_note_to_type_folder collision handling + Rust collision content test</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9199ceaa358b46059b0d849650c23cd08ca0eb0b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9199ceaa358b46059b0d849650c23cd08ca0eb0b"><tt>9199cea</tt></a> fix: prevent data corruption when changing note type — preserve tab content instead of re-reading from disk</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>2745251</code> on 2026-03-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260311.389/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260311.389/laputa_0.20260311.389_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260311.389_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260311.389" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260311.388</h2>
|
||
<p class="release-meta">March 11, 2026 · v0.20260311.388</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6af18655de4f375bd8252f075583f0817e27f245/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6af18655de4f375bd8252f075583f0817e27f245"><tt>6af1865</tt></a> style: rustfmt formatting fix</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/90bf73524ce2c485dbbf17151057f446adb22685/hovercard" href="https://github.com/refactoringhq/tolaria/commit/90bf73524ce2c485dbbf17151057f446adb22685"><tt>90bf735</tt></a> fix: bump cache version + handle Yes/No in TS frontmatter parser</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>6af1865</code> on 2026-03-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260311.388/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260311.388/laputa_0.20260311.388_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260311.388_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260311.388" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260311.387</h2>
|
||
<p class="release-meta">March 11, 2026 · v0.20260311.387</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c1f7f7ec6fe66538d09e66d4ec51e39bc9ffd194/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c1f7f7ec6fe66538d09e66d4ec51e39bc9ffd194"><tt>c1f7f7e</tt></a> test: Playwright smoke test for create note crash fix</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d1021b91316c08439dc7ef1522772f3eade84fbc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d1021b91316c08439dc7ef1522772f3eade84fbc"><tt>d1021b9</tt></a> fix: prevent crash in handleCreateNoteImmediate — slugify fallback + try/catch</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c1f7f7e</code> on 2026-03-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260311.387/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260311.387/laputa_0.20260311.387_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260311.387_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260311.387" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260311.386</h2>
|
||
<p class="release-meta">March 11, 2026 · v0.20260311.386</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b9139e2d5710d06c54397680f17998ca96aa372f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b9139e2d5710d06c54397680f17998ca96aa372f"><tt>b9139e2</tt></a> test: Playwright smoke test for theme live reload on save</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c692c5d067b75b2bd9cfe8c7ebee93390496f4f3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c692c5d067b75b2bd9cfe8c7ebee93390496f4f3"><tt>c692c5d</tt></a> fix: live-reload CSS vars when saving active theme note in editor</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>b9139e2</code> on 2026-03-11</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260311.386/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260311.386/laputa_0.20260311.386_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260311.386_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260311.386" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260309.385</h2>
|
||
<p class="release-meta">March 9, 2026 · v0.20260309.385</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b86f6d5b88a0dee15b8e1d3188989e50550830c9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b86f6d5b88a0dee15b8e1d3188989e50550830c9"><tt>b86f6d5</tt></a> test: add Playwright smoke test for rapid note switching latency</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3426cbc882855d42d9c85c6e7f848e8bec77bd07/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3426cbc882855d42d9c85c6e7f848e8bec77bd07"><tt>3426cbc</tt></a> test: add unit tests for prefetch cache, optimistic rollback, rapid switching</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/57ff0f18f83990f7668a8bc19d5017024801be40/hovercard" href="https://github.com/refactoringhq/tolaria/commit/57ff0f18f83990f7668a8bc19d5017024801be40"><tt>57ff0f1</tt></a> feat: optimize note open and trash/archive latency</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>b86f6d5</code> on 2026-03-09</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260309.385/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260309.385/laputa_0.20260309.385_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260309.385_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260309.385" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260309.384</h2>
|
||
<p class="release-meta">March 9, 2026 · v0.20260309.384</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/abf6b513697604a542f447fd2e0fd36ffe3ae239/hovercard" href="https://github.com/refactoringhq/tolaria/commit/abf6b513697604a542f447fd2e0fd36ffe3ae239"><tt>abf6b51</tt></a> fix: scope Playwright selectors to dialog overlays to avoid sidebar matches</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/02c784b286b709681d9854ae117ef8037396e41c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/02c784b286b709681d9854ae117ef8037396e41c"><tt>02c784b</tt></a> style: apply cargo fmt to is_file_trashed tests</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fc4ba24c4e6192430b77b3d43a66077fd35e715f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fc4ba24c4e6192430b77b3d43a66077fd35e715f"><tt>fc4ba24</tt></a> fix: exclude trashed notes from search results and autocomplete</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>abf6b51</code> on 2026-03-09</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260309.384/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260309.384/laputa_0.20260309.384_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260309.384_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260309.384" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260309.383</h2>
|
||
<p class="release-meta">March 9, 2026 · v0.20260309.383</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/eaeb6e5d40b883417a30f8cfbc25abd7ecb79de6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/eaeb6e5d40b883417a30f8cfbc25abd7ecb79de6"><tt>eaeb6e5</tt></a> fix: simplify cache-invalidation smoke test — container visibility only</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/64fe0f1c253cdccdf2437b653e3f8c9692f836a8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/64fe0f1c253cdccdf2437b653e3f8c9692f836a8"><tt>64fe0f1</tt></a> chore: rotate Tauri signing keypair — fix CI release builds</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>eaeb6e5</code> on 2026-03-09</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260309.383/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260309.383/laputa_0.20260309.383_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260309.383_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260309.383" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260309.382</h2>
|
||
<p class="release-meta">March 9, 2026 · v0.20260309.382</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/474353718ad9d693a75d12fd18604d710325dbc5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/474353718ad9d693a75d12fd18604d710325dbc5"><tt>4743537</tt></a> fix: handle Archived/Trashed Yes/No string values in frontmatter parser</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a933e6a78754cc7b7257e623ce46390232742901/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a933e6a78754cc7b7257e623ce46390232742901"><tt>a933e6a</tt></a> fix: add reload_vault to vault API proxy for browser mock</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/79689839b2c77fb1eebcb1413a28ab5c44d7bc56/hovercard" href="https://github.com/refactoringhq/tolaria/commit/79689839b2c77fb1eebcb1413a28ab5c44d7bc56"><tt>7968983</tt></a> style: apply cargo fmt to new tests</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b10e9facad9461614493348b5c9166b257560c5b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b10e9facad9461614493348b5c9166b257560c5b"><tt>b10e9fa</tt></a> fix: reload vault invalidates cache and rescans from filesystem</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2a32d2b5adf8793e4fb1f750ab9f6aa07c893e15/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2a32d2b5adf8793e4fb1f750ab9f6aa07c893e15"><tt>2a32d2b</tt></a> fix: resolve TypeScript overload errors in zoomCursorFix</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/11a4e1593b0f9c4f25cf2c284422dafcd6726ca3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/11a4e1593b0f9c4f25cf2c284422dafcd6726ca3"><tt>11a4e15</tt></a> test: add Playwright smoke test for CodeMirror cursor at non-100% zoom</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/080e5ff62d603bbbcee5f4bf191835e4497a37b9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/080e5ff62d603bbbcee5f4bf191835e4497a37b9"><tt>080e5ff</tt></a> fix: bypass CodeMirror posAtCoords for accurate cursor at non-100% CSS zoom</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/60fd4d9ade653ba359086f58fe22514669bf01b2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/60fd4d9ade653ba359086f58fe22514669bf01b2"><tt>60fd4d9</tt></a> fix: embed conversation history in AI agent chat messages</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3583cb951890b39d71447f654220de8cf9a4c7e1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3583cb951890b39d71447f654220de8cf9a4c7e1"><tt>3583cb9</tt></a> ci: retrigger release — fix Tauri signing key secret</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1f497e4b18aa3bc6bbbcfa55c30a15614dd51b2a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1f497e4b18aa3bc6bbbcfa55c30a15614dd51b2a"><tt>1f497e4</tt></a> test: fix flaky command palette smoke test — use reindex instead of settings</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/13b325217b95a63fc5b3fa09bed0a541c81d76cc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/13b325217b95a63fc5b3fa09bed0a541c81d76cc"><tt>13b3252</tt></a> docs: consolidate VISION.md into docs/ — remove duplicate root file</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1714da402ee4d85a5f972fe17797055a21612baa/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1714da402ee4d85a5f972fe17797055a21612baa"><tt>1714da4</tt></a> fix: prune stale cache entries on vault open, not just cache write</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7b75cb79c42188a3fdc35d9ff1ed9fee50e7d08b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7b75cb79c42188a3fdc35d9ff1ed9fee50e7d08b"><tt>7b75cb7</tt></a> fix: add 1 retry for Playwright smoke tests to handle server startup timing</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a66eedbecd64a212acdb8e9343fa3912533cb5f8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a66eedbecd64a212acdb8e9343fa3912533cb5f8"><tt>a66eedb</tt></a> style: rustfmt vault/mod.rs test formatting</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/dc92fd1f57fcd68674e4fb667d489dab97acbab5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/dc92fd1f57fcd68674e4fb667d489dab97acbab5"><tt>dc92fd1</tt></a> fix: disk-first writes in useEntryActions, document three-layer model</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4012a65a732c6c2a4a5784873b6bda0fab34fab1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4012a65a732c6c2a4a5784873b6bda0fab34fab1"><tt>4012a65</tt></a> feat: wire Reload Vault into Cmd+K palette and menu bar</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b2da813923379667aeee100dabc91c1340381028/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b2da813923379667aeee100dabc91c1340381028"><tt>b2da813</tt></a> feat: add reload_vault_entry Tauri command</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e461a917219020d61d25159525ec2e51cb618481/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e461a917219020d61d25159525ec2e51cb618481"><tt>e461a91</tt></a> refactor: remove hardcoded RELATIONSHIP_KEYS — detect wikilink fields dynamically</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/edf24898ae8034ef1f8e63261749c2547d6f6cbd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/edf24898ae8034ef1f8e63261749c2547d6f6cbd"><tt>edf2489</tt></a> test: add Playwright smoke test for exact-match search ranking</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1c8542bd0125de2c182d40f4df1995e397fbe294/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1c8542bd0125de2c182d40f4df1995e397fbe294"><tt>1c8542b</tt></a> feat: flip canonical type field — make type: primary, Is A: the alias</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/aef98f17eba46e8344113fb2000994f4caa8d0d8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/aef98f17eba46e8344113fb2000994f4caa8d0d8"><tt>aef98f1</tt></a> feat: move vault cache to ~/.laputa/cache/ and make writes atomic</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5c85bc41f6476028749c063241dc4efb2188f03f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5c85bc41f6476028749c063241dc4efb2188f03f"><tt>5c85bc4</tt></a> test: add Playwright smoke test for exact-match search ranking</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/60f3139b3efef8bba827f75ab77367c72612ab8e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/60f3139b3efef8bba827f75ab77367c72612ab8e"><tt>60f3139</tt></a> fix: ensure exact title match always ranks first in search</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e40c09a2ef1ac543d800a23ee3f82f4dbbd4a0e0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e40c09a2ef1ac543d800a23ee3f82f4dbbd4a0e0"><tt>e40c09a</tt></a> style: apply rustfmt to rename.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f90f703096b3d17cdea5f4d987c2396876eff2a5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f90f703096b3d17cdea5f4d987c2396876eff2a5"><tt>f90f703</tt></a> test: add Playwright smoke test for move-note-to-type-folder</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/eaf31ff61cf184f160a5bc4efc29cdf31398e58f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/eaf31ff61cf184f160a5bc4efc29cdf31398e58f"><tt>eaf31ff</tt></a> feat: move note to type folder when Is A changes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/db50f779c9b792a7a7847081f62be7f50a46537c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/db50f779c9b792a7a7847081f62be7f50a46537c"><tt>db50f77</tt></a> feat: add move_note_to_type_folder backend command</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e228bd3a5284b5aa204b36003d48034492345f07/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e228bd3a5284b5aa204b36003d48034492345f07"><tt>e228bd3</tt></a> docs: add Refactoring strategic context to VISION.md</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3a0fd0620f590a9e80383a5c6bf95fbb0a6b8e86/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3a0fd0620f590a9e80383a5c6bf95fbb0a6b8e86"><tt>3a0fd06</tt></a> docs: add Phase 1b — Tauri dev QA for filesystem/native tasks</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e2489b89575e7ae0bb27bc193fb34a49b6d4d21c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e2489b89575e7ae0bb27bc193fb34a49b6d4d21c"><tt>e2489b8</tt></a> feat: exact-match-first ranking in search and wikilink autocomplete</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/11f8731d32d9f5ce5d62320ef963f2c47c64bb5f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/11f8731d32d9f5ce5d62320ef963f2c47c64bb5f"><tt>11f8731</tt></a> docs: strengthen Phase 1 QA requirements in CLAUDE.md</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6f7a7d71d8e87af06019e83e6e5a2588c88aa478/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6f7a7d71d8e87af06019e83e6e5a2588c88aa478"><tt>6f7a7d7</tt></a> docs: add 'why this, why now, why us' section to VISION.md</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2173df6f0d8fe7983854fb9976c1afc75dd6191f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2173df6f0d8fe7983854fb9976c1afc75dd6191f"><tt>2173df6</tt></a> docs: clarify that evergreen notes are one output type, not the only one</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/98cad76aa0456074308b45e739d471a0450f12e2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/98cad76aa0456074308b45e739d471a0450f12e2"><tt>98cad76</tt></a> feat: fast note open — use allContent cache to skip IPC disk reads</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f076c71cc17a25fac32283e3e0b4c38056bd9171/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f076c71cc17a25fac32283e3e0b4c38056bd9171"><tt>f076c71</tt></a> docs: add purpose-driven notes and evergreen notes to VISION.md</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/44221e50d4beb89caba057c966124a3e82c37818/hovercard" href="https://github.com/refactoringhq/tolaria/commit/44221e50d4beb89caba057c966124a3e82c37818"><tt>44221e5</tt></a> docs: rewrite VISION.md as a coherent product narrative</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/06c01539afc2145a2abf44be98796341b2c6f2c2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/06c01539afc2145a2abf44be98796341b2c6f2c2"><tt>06c0153</tt></a> docs: add capture/organize philosophy and Inbox to vision and roadmap</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fddc323d1ee76bf2621bcf2ce3c2ed427a13e97c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fddc323d1ee76bf2621bcf2ce3c2ed427a13e97c"><tt>fddc323</tt></a> docs: add ROADMAP.md with strategic directions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/23b63bb5836f53849ea40329bf9ebe04e772c7d3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/23b63bb5836f53849ea40329bf9ebe04e772c7d3"><tt>23b63bb</tt></a> docs: expand VISION.md with product trajectory and updated principles</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c858cf8d3b67d19fd479df542f705fac62497cf8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c858cf8d3b67d19fd479df542f705fac62497cf8"><tt>c858cf8</tt></a> fix: use vault path for resolveNewNote, resolveNewType, resolveDailyNote</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0dc684453d4d5019753c5ef87b0fe21c6ba1aa3e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0dc684453d4d5019753c5ef87b0fe21c6ba1aa3e"><tt>0dc6844</tt></a> docs: add design principles and semantic field conventions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/aafe69b5731712f21ab66966cd48f5b38b89c9e5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/aafe69b5731712f21ab66966cd48f5b38b89c9e5"><tt>aafe69b</tt></a> fix: show all scalar properties in Properties panel — remove Owner from RELATIONSHIP_KEYS, remove notion_id from SKIP_KEYS</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a3c53c19d1d9b30765ffed35cb55e1f3bbb1985b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a3c53c19d1d9b30765ffed35cb55e1f3bbb1985b"><tt>a3c53c1</tt></a> fix: resolve AI chat empty body race — read contextPrompt from closure, not stale ref</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5185f363e6c0540921c1ddfecb118ac247fdd560/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5185f363e6c0540921c1ddfecb118ac247fdd560"><tt>5185f36</tt></a> feat: show type instances in inspector Properties panel</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3915363026ebc50e45d259a7ada591afc60a53e1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3915363026ebc50e45d259a7ada591afc60a53e1"><tt>3915363</tt></a> docs: update 'Is A' → 'type:' throughout — type: is now canonical</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2249c4a45078fa6ef6ab6a7f9f3cd7b7172d7bdc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2249c4a45078fa6ef6ab6a7f9f3cd7b7172d7bdc"><tt>2249c4a</tt></a> fix: resolve AI chat empty body via || fallback + defensive body + Rust strip_frontmatter</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6575ec2d1c4805b413a11750d4d909dee380a6ab/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6575ec2d1c4805b413a11750d4d909dee380a6ab"><tt>6575ec2</tt></a> fix: auto-save unsaved notes before trash/archive</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1f08694e9d5589cc2e71f2180a85b426fc7d2797/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1f08694e9d5589cc2e71f2180a85b426fc7d2797"><tt>1f08694</tt></a> style: rustfmt assert formatting</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a99cb2af787101171ba74e3a284cd71a79eed1bd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a99cb2af787101171ba74e3a284cd71a79eed1bd"><tt>a99cb2a</tt></a> fix: parse lowercase 'archived' frontmatter field</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8eabcd9467e74ce9b5bb7a58207ae40862c33f77/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8eabcd9467e74ce9b5bb7a58207ae40862c33f77"><tt>8eabcd9</tt></a> test: add Playwright smoke test for AI chat empty body fix</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/97112b9c843de7c7bf5ffda30d5e6693f0e55375/hovercard" href="https://github.com/refactoringhq/tolaria/commit/97112b9c843de7c7bf5ffda30d5e6693f0e55375"><tt>97112b9</tt></a> fix: strip frontmatter from AI context body field — fixes empty body bug</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a53819e56ac941451b91562235cde0424f00a1ed/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a53819e56ac941451b91562235cde0424f00a1ed"><tt>a53819e</tt></a> chore: extend .gitignore with runtime and generated artifacts</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/41a2d25311adab6cf3e85fd4d5a00789d4d2210a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/41a2d25311adab6cf3e85fd4d5a00789d4d2210a"><tt>41a2d25</tt></a> chore: rotate Tauri signing keypair</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3a3d0bbcdf737d4110db2c9e630ddbf5db12a5f6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3a3d0bbcdf737d4110db2c9e630ddbf5db12a5f6"><tt>3a3d0bb</tt></a> chore: remove stale files and planning docs from repo</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>4743537</code> on 2026-03-09</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260309.382/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260309.382/laputa_0.20260309.382_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260309.382_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260309.382" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260308.356</h2>
|
||
<p class="release-meta">March 8, 2026 · v0.20260308.356</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a4468289a2e09ddffb778c6bc4ade8e8ff0b93a8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a4468289a2e09ddffb778c6bc4ade8e8ff0b93a8"><tt>a446828</tt></a> fix: AI chat receives live editor content instead of stale disk content</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>a446828</code> on 2026-03-08</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260308.356/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260308.356/laputa_0.20260308.356_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260308.356_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260308.356" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260308.355</h2>
|
||
<p class="release-meta">March 8, 2026 · v0.20260308.355</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bcfd37d48133db1849ac4b652ed500582c832fd1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bcfd37d48133db1849ac4b652ed500582c832fd1"><tt>bcfd37d</tt></a> fix: CodeMirror cursor placement at non-100% zoom levels</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>bcfd37d</code> on 2026-03-08</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260308.355/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260308.355/laputa_0.20260308.355_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260308.355_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260308.355" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260308.354</h2>
|
||
<p class="release-meta">March 8, 2026 · v0.20260308.354</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f27ebe05c4c3a32d0a08a153b9d9657f32a83e7f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f27ebe05c4c3a32d0a08a153b9d9657f32a83e7f"><tt>f27ebe0</tt></a> fix: pass active note content directly to AI context builder</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>f27ebe0</code> on 2026-03-08</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260308.354/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260308.354/laputa_0.20260308.354_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260308.354_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260308.354" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260308.353</h2>
|
||
<p class="release-meta">March 8, 2026 · v0.20260308.353</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7470e4f4a7cc3c55d60814c563260c1b61e52a80/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7470e4f4a7cc3c55d60814c563260c1b61e52a80"><tt>7470e4f</tt></a> fix: embed conversation history in prompt instead of broken --resume</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>7470e4f</code> on 2026-03-08</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260308.353/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260308.353/laputa_0.20260308.353_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260308.353_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260308.353" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260308.352</h2>
|
||
<p class="release-meta">March 8, 2026 · v0.20260308.352</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0e503cb179784e51936f3286fa3b57958c6b2703/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0e503cb179784e51936f3286fa3b57958c6b2703"><tt>0e503cb</tt></a> fix: AI chat receives note body from open tabs instead of empty allContent</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>0e503cb</code> on 2026-03-08</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260308.352/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260308.352/laputa_0.20260308.352_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260308.352_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260308.352" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260307.351</h2>
|
||
<p class="release-meta">March 7, 2026 · v0.20260307.351</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d83f04c6ff943c513635ba9976325742429e10c1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d83f04c6ff943c513635ba9976325742429e10c1"><tt>d83f04c</tt></a> fix: AI-created notes now visible — onVaultChanged fallback for missed file ops</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>d83f04c</code> on 2026-03-07</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260307.351/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260307.351/laputa_0.20260307.351_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260307.351_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260307.351" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260307.350</h2>
|
||
<p class="release-meta">March 7, 2026 · v0.20260307.350</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9ffa6930c524f3fbed755af2047b6d10a2b4b740/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9ffa6930c524f3fbed755af2047b6d10a2b4b740"><tt>9ffa693</tt></a> fix: AI chat wikilinks — system prompt + integration tests</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>9ffa693</code> on 2026-03-07</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260307.350/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260307.350/laputa_0.20260307.350_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260307.350_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260307.350" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260307.349</h2>
|
||
<p class="release-meta">March 7, 2026 · v0.20260307.349</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/88b20b83dc287184103df655631f84b4a730a898/hovercard" href="https://github.com/refactoringhq/tolaria/commit/88b20b83dc287184103df655631f84b4a730a898"><tt>88b20b8</tt></a> fix: use --resume for AI chat conversation continuity</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>88b20b8</code> on 2026-03-07</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260307.349/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260307.349/laputa_0.20260307.349_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260307.349_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260307.349" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260307.348</h2>
|
||
<p class="release-meta">March 7, 2026 · v0.20260307.348</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/548e5694acf8db70bdf82f1c9cd050930bbe1539/hovercard" href="https://github.com/refactoringhq/tolaria/commit/548e5694acf8db70bdf82f1c9cd050930bbe1539"><tt>548e569</tt></a> style: cargo fmt config_seed.rs and getting_started.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0cf8f55a8d9796919550ecfed1955838c037281e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0cf8f55a8d9796919550ecfed1955838c037281e"><tt>0cf8f55</tt></a> fix: clippy doc_lazy_continuation in config_seed.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/72b88cef433ee2d5a0c479211b82cfb9b2862120/hovercard" href="https://github.com/refactoringhq/tolaria/commit/72b88cef433ee2d5a0c479211b82cfb9b2862120"><tt>72b88ce</tt></a> docs: add config/ vault type to architecture and abstractions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8db9f61d5c100de58709f67e6c64d6512550028b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8db9f61d5c100de58709f67e6c64d6512550028b"><tt>8db9f61</tt></a> feat: add Repair Vault command and MCP configFiles</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fb2067ec79cb79a5bf14a3e13c957406afa93128/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fb2067ec79cb79a5bf14a3e13c957406afa93128"><tt>fb2067e</tt></a> feat: add config/ vault type with agents.md migration</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>548e569</code> on 2026-03-07</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260307.348/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260307.348/laputa_0.20260307.348_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260307.348_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260307.348" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260307.347</h2>
|
||
<p class="release-meta">March 7, 2026 · v0.20260307.347</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b60bdb685dd0afc1614b7dbb99037c03486a5cd8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b60bdb685dd0afc1614b7dbb99037c03486a5cd8"><tt>b60bdb6</tt></a> fix: MCP install command always visible in Cmd+K regardless of mcpStatus</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>b60bdb6</code> on 2026-03-07</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260307.347/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260307.347/laputa_0.20260307.347_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260307.347_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260307.347" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260307.346</h2>
|
||
<p class="release-meta">March 7, 2026 · v0.20260307.346</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/83009d8fb901ebbeab8ee695e399d07cd75b8ca5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/83009d8fb901ebbeab8ee695e399d07cd75b8ca5"><tt>83009d8</tt></a> feat: make MCP restore command always available in Cmd+K</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>83009d8</code> on 2026-03-07</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260307.346/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260307.346/laputa_0.20260307.346_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260307.346_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260307.346" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260307.345</h2>
|
||
<p class="release-meta">March 7, 2026 · v0.20260307.345</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/068d434344056d143f6f661de715b2eab8662a38/hovercard" href="https://github.com/refactoringhq/tolaria/commit/068d434344056d143f6f661de715b2eab8662a38"><tt>068d434</tt></a> fix: auto-save structural UI changes to disk immediately</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>068d434</code> on 2026-03-07</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260307.345/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260307.345/laputa_0.20260307.345_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260307.345_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260307.345" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260307.344</h2>
|
||
<p class="release-meta">March 7, 2026 · v0.20260307.344</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6b2a1b0659bc5082c3ac5ae44c97c2b45cf8cff5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6b2a1b0659bc5082c3ac5ae44c97c2b45cf8cff5"><tt>6b2a1b0</tt></a> fix: scope qmd update/embed to current vault collection only</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>6b2a1b0</code> on 2026-03-07</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260307.344/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260307.344/laputa_0.20260307.344_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260307.344_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260307.344" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260307.343</h2>
|
||
<p class="release-meta">March 7, 2026 · v0.20260307.343</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bf5f5521af3b5f05315133e6dfe215af0e5fea6f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bf5f5521af3b5f05315133e6dfe215af0e5fea6f"><tt>bf5f552</tt></a> fix: wikilink clicks in AI chat now open note in tab</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>bf5f552</code> on 2026-03-07</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260307.343/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260307.343/laputa_0.20260307.343_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260307.343_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260307.343" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260307.342</h2>
|
||
<p class="release-meta">March 7, 2026 · v0.20260307.342</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f4961d0bc364ffb2461d835532f22bb2c97a9e64/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f4961d0bc364ffb2461d835532f22bb2c97a9e64"><tt>f4961d0</tt></a> fix: add missing ws dependency for smoke tests</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/058de96cbc3399605a283bad6662e07f5503ef92/hovercard" href="https://github.com/refactoringhq/tolaria/commit/058de96cbc3399605a283bad6662e07f5503ef92"><tt>058de96</tt></a> docs: update ARCHITECTURE, ABSTRACTIONS, GETTING-STARTED to reflect current codebase</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>f4961d0</code> on 2026-03-07</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260307.342/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260307.342/laputa_0.20260307.342_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260307.342_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260307.342" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260307.341</h2>
|
||
<p class="release-meta">March 7, 2026 · v0.20260307.341</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d29f919182daad694c73908b7bc1cd45331fe7a3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d29f919182daad694c73908b7bc1cd45331fe7a3"><tt>d29f919</tt></a> test: add Playwright smoke test for AI note visibility and tab opening</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/42e37e035cfbdccb138308f1de76401f28c8286a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/42e37e035cfbdccb138308f1de76401f28c8286a"><tt>42e37e0</tt></a> test: add unit tests for detectFileOperation and parseBashFileCreation</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0ad0fa9b6b7d0c9b14036b0c57379a18b5dcd115/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0ad0fa9b6b7d0c9b14036b0c57379a18b5dcd115"><tt>0ad0fa9</tt></a> fix: AI-created notes now trigger vault refresh and auto-open in tab</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>d29f919</code> on 2026-03-07</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260307.341/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260307.341/laputa_0.20260307.341_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260307.341_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260307.341" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260307.340</h2>
|
||
<p class="release-meta">March 7, 2026 · v0.20260307.340</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c37c03d6a9c5230cd24b377af8159cebca1548c6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c37c03d6a9c5230cd24b377af8159cebca1548c6"><tt>c37c03d</tt></a> fix: remove --resume from AI chat to fix conversation history</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c37c03d</code> on 2026-03-07</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260307.340/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260307.340/laputa_0.20260307.340_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260307.340_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260307.340" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260307.339</h2>
|
||
<p class="release-meta">March 7, 2026 · v0.20260307.339</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fcc264d7dc945527eea6f412fca44fb6f99fb699/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fcc264d7dc945527eea6f412fca44fb6f99fb699"><tt>fcc264d</tt></a> feat: restore MCP UI-steering tools (highlight_editor, refresh_vault)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/382ba0a6d47567fe769a5c548a192fea6d1a8edf/hovercard" href="https://github.com/refactoringhq/tolaria/commit/382ba0a6d47567fe769a5c548a192fea6d1a8edf"><tt>382ba0a</tt></a> test: add Playwright smoke test for wikilink rendering in AI chat</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4719810b10b9ce93880b0cd10852a45ed4549196/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4719810b10b9ce93880b0cd10852a45ed4549196"><tt>4719810</tt></a> feat: render [[wikilinks]] as clickable links in AI chat</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>fcc264d</code> on 2026-03-07</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260307.339/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260307.339/laputa_0.20260307.339_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260307.339_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260307.339" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260307.337</h2>
|
||
<p class="release-meta">March 7, 2026 · v0.20260307.337</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/20b4ba7a3bd4c96998404cb8e16bf101d6bc73ea/hovercard" href="https://github.com/refactoringhq/tolaria/commit/20b4ba7a3bd4c96998404cb8e16bf101d6bc73ea"><tt>20b4ba7</tt></a> fix: clippy errors — reduce visibility of internal functions, fix PI approx</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/de00ab6794f521ff0dddbe563036f9da23c4e008/hovercard" href="https://github.com/refactoringhq/tolaria/commit/de00ab6794f521ff0dddbe563036f9da23c4e008"><tt>de00ab6</tt></a> feat: reindex vault command, indexing status bar, sync-triggered reindex</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5d8f514beaf3fc01d9e81ca0b8177ceddb17edab/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5d8f514beaf3fc01d9e81ca0b8177ceddb17edab"><tt>5d8f514</tt></a> feat: add last_indexed_commit persistence to indexing backend</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>20b4ba7</code> on 2026-03-07</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260307.337/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260307.337/laputa_0.20260307.337_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260307.337_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260307.337" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260306.336</h2>
|
||
<p class="release-meta">March 6, 2026 · v0.20260306.336</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1fd3ea02aef37b0fcf06b5aa4366fa65eb33faae/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1fd3ea02aef37b0fcf06b5aa4366fa65eb33faae"><tt>1fd3ea0</tt></a> fix: rustfmt import formatting in commands.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8da1484ebf6959d13ebd12f2518aff413ae4b682/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8da1484ebf6959d13ebd12f2518aff413ae4b682"><tt>8da1484</tt></a> test: Playwright smoke test for push error UX</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/90ebc2e9396ceb71d0cf5657d3da1d8676b10834/hovercard" href="https://github.com/refactoringhq/tolaria/commit/90ebc2e9396ceb71d0cf5657d3da1d8676b10834"><tt>90ebc2e</tt></a> feat: surface actionable push error messages in frontend</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c14927df8f7856a53cb3810663fa25511e2e3fdf/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c14927df8f7856a53cb3810663fa25511e2e3fdf"><tt>c14927d</tt></a> feat: add GitPushResult with error classification for push failures</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>1fd3ea0</code> on 2026-03-06</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260306.336/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260306.336/laputa_0.20260306.336_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260306.336_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260306.336" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260306.335</h2>
|
||
<p class="release-meta">March 6, 2026 · v0.20260306.335</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a6d60695a2737ad7181f9704d1f9b05b59029358/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a6d60695a2737ad7181f9704d1f9b05b59029358"><tt>a6d6069</tt></a> style: rustfmt formatting fix in cache test</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7ddc0c14bf636dcc6d42ca2cc97dcb9608fea7d8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7ddc0c14bf636dcc6d42ca2cc97dcb9608fea7d8"><tt>7ddc0c1</tt></a> fix: add visible key to frontmatterToEntryPatch maps</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>a6d6069</code> on 2026-03-06</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260306.335/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260306.335/laputa_0.20260306.335_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260306.335_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260306.335" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260306.334</h2>
|
||
<p class="release-meta">March 6, 2026 · v0.20260306.334</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2a00b8aac7c4c0a91ab98f40f0bebea70ab2642f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2a00b8aac7c4c0a91ab98f40f0bebea70ab2642f"><tt>2a00b8a</tt></a> fix: include full conversation history in AI chat requests</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>2a00b8a</code> on 2026-03-06</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260306.334/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260306.334/laputa_0.20260306.334_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260306.334_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260306.334" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260306.333</h2>
|
||
<p class="release-meta">March 6, 2026 · v0.20260306.333</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b7d2304282bd62dc4ebb8865f78f074181fda9a6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b7d2304282bd62dc4ebb8865f78f074181fda9a6"><tt>b7d2304</tt></a> test: fix Sidebar tests after Favorites removal</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/50b5fa9c2e84408988aea2c83bf7ac7ac308d7f1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/50b5fa9c2e84408988aea2c83bf7ac7ac308d7f1"><tt>50b5fa9</tt></a> refactor: remove Favorites and Untagged from sidebar</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/963e7cf111bd01de722a2b0a453c5c3a0a870368/hovercard" href="https://github.com/refactoringhq/tolaria/commit/963e7cf111bd01de722a2b0a453c5c3a0a870368"><tt>963e7cf</tt></a> refactor: rustfmt formatting fixes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c9a5d20c12d8a93e39a4ce0d7b166e1ece7e8e78/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c9a5d20c12d8a93e39a4ce0d7b166e1ece7e8e78"><tt>c9a5d20</tt></a> test: Playwright smoke test for trash → Changes badge</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/586e1fcde5ac05ddd8aa839205a8cf960842ea49/hovercard" href="https://github.com/refactoringhq/tolaria/commit/586e1fcde5ac05ddd8aa839205a8cf960842ea49"><tt>586e1fc</tt></a> fix: refresh Changes panel after trash/archive operations</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/75d67623ce989c5d2f862bd8eb8b0b36af800010/hovercard" href="https://github.com/refactoringhq/tolaria/commit/75d67623ce989c5d2f862bd8eb8b0b36af800010"><tt>75d6762</tt></a> ⚡ Pulse: fix slow note open — O(1) map lookup, no reloadVault on click</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>b7d2304</code> on 2026-03-06</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260306.333/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260306.333/laputa_0.20260306.333_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260306.333_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260306.333" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260306.331</h2>
|
||
<p class="release-meta">March 6, 2026 · v0.20260306.331</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b9d94abae43529af5878f10b6ef3f3efa0cc278a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b9d94abae43529af5878f10b6ef3f3efa0cc278a"><tt>b9d94ab</tt></a> style: rustfmt vault_config.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/18b2aaedf6d77d62cec2ff71914f82a6fd911989/hovercard" href="https://github.com/refactoringhq/tolaria/commit/18b2aaedf6d77d62cec2ff71914f82a6fd911989"><tt>18b2aae</tt></a> fix: add missing visible field to buildNewEntry in useNoteActions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1706300494fe47e33a02dabf042ee5b9ad7f6729/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1706300494fe47e33a02dabf042ee5b9ad7f6729"><tt>1706300</tt></a> test: add Playwright smoke test for visible type property</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/628ab76f093e342c28e0bb85b5513cb578b529ad/hovercard" href="https://github.com/refactoringhq/tolaria/commit/628ab76f093e342c28e0bb85b5513cb578b529ad"><tt>628ab76</tt></a> feat: migrate hidden_sections from ui.config to visible property on Type notes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d3896ddf017b047a702a17c455a323746e6436e9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d3896ddf017b047a702a17c455a323746e6436e9"><tt>d3896dd</tt></a> refactor: remove hidden_sections from VaultConfig and delete useSectionVisibility</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7289a60db3a43b23bb0c2ca745f6c105ba8be96e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7289a60db3a43b23bb0c2ca745f6c105ba8be96e"><tt>7289a60</tt></a> feat: add handleToggleTypeVisibility to useEntryActions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0cff626e48ab046b1acf5861a021d9db7d3d369a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0cff626e48ab046b1acf5861a021d9db7d3d369a"><tt>0cff626</tt></a> feat: filter sidebar sections by Type entry <code>visible</code> property</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5a4c986fe352331e5f4e8a80697f8a8f695bb2ee/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5a4c986fe352331e5f4e8a80697f8a8f695bb2ee"><tt>5a4c986</tt></a> feat: add <code>visible</code> field to VaultEntry for Type note sidebar visibility</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/540b1400e211fa60ef6cd4842b8510f309da6a0f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/540b1400e211fa60ef6cd4842b8510f309da6a0f"><tt>540b140</tt></a> 🐛 Auto-untrack .laputa-cache.json and .laputa/settings.json from git</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/826cda852ac5699b2477925c9e9a661562a8aa8a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/826cda852ac5699b2477925c9e9a661562a8aa8a"><tt>826cda8</tt></a> ⚡ Pulse: lazy pagination with IntersectionObserver infinite scroll</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/19583ea1f536070b90d2d05f465d2bad9f3434df/hovercard" href="https://github.com/refactoringhq/tolaria/commit/19583ea1f536070b90d2d05f465d2bad9f3434df"><tt>19583ea</tt></a> 💅 Pulse: add right border, collapse commit files by default</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>b9d94ab</code> on 2026-03-06</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260306.331/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260306.331/laputa_0.20260306.331_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260306.331_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260306.331" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260306.330</h2>
|
||
<p class="release-meta">March 6, 2026 · v0.20260306.330</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/63eb4ff9804c2a67cd3f297d9dbe1cb415a5fbb1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/63eb4ff9804c2a67cd3f297d9dbe1cb415a5fbb1"><tt>63eb4ff</tt></a> fix: address clippy lints in title_case_folder</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bbb29857b83116fc1c367ea422bc2f43d8028a43/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bbb29857b83116fc1c367ea422bc2f43d8028a43"><tt>bbb2985</tt></a> test: add regression tests for hyphenated folder sidebar duplicates</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/900ce7f66faa237ed903cc315e8c6fcf7e7915f2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/900ce7f66faa237ed903cc315e8c6fcf7e7915f2"><tt>900ce7f</tt></a> fix: normalize hyphenated folder names in infer_type_from_folder()</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>63eb4ff</code> on 2026-03-06</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260306.330/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260306.330/laputa_0.20260306.330_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260306.330_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260306.330" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260306.329</h2>
|
||
<p class="release-meta">March 6, 2026 · v0.20260306.329</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/eb55c5ec022ee7568fbd89fe965a4a7ed4b3d09a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/eb55c5ec022ee7568fbd89fe965a4a7ed4b3d09a"><tt>eb55c5e</tt></a> refactor: apply rustfmt formatting</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6f6e7d7cfef8a73fcd6a5d5b055aa0c6180ce625/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6f6e7d7cfef8a73fcd6a5d5b055aa0c6180ce625"><tt>6f6e7d7</tt></a> fix: vault cache misses files in new directories, breaking theme restore</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/97be1d1ca3fa8764cedcff5dbc092b1cefd1acfa/hovercard" href="https://github.com/refactoringhq/tolaria/commit/97be1d1ca3fa8764cedcff5dbc092b1cefd1acfa"><tt>97be1d1</tt></a> fix: write .gitignore on vault init to exclude .DS_Store</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>eb55c5e</code> on 2026-03-06</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260306.329/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260306.329/laputa_0.20260306.329_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260306.329_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260306.329" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260306.328</h2>
|
||
<p class="release-meta">March 6, 2026 · v0.20260306.328</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ea29a81d790582efbd5fb2e2425d129e97bd74e6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ea29a81d790582efbd5fb2e2425d129e97bd74e6"><tt>ea29a81</tt></a> refactor: split Rust backend into sub-modules — git, theme, github, frontmatter, commands</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>ea29a81</code> on 2026-03-06</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260306.328/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260306.328/laputa_0.20260306.328_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260306.328_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260306.328" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260306.327</h2>
|
||
<p class="release-meta">March 6, 2026 · v0.20260306.327</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5b1fda2279dd87f90b0bd622056293bb4518f7dc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5b1fda2279dd87f90b0bd622056293bb4518f7dc"><tt>5b1fda2</tt></a> chore: exclude tools/, scripts/ from CodeScene analysis</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>5b1fda2</code> on 2026-03-06</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260306.327/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260306.327/laputa_0.20260306.327_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260306.327_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260306.327" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260306.326</h2>
|
||
<p class="release-meta">March 6, 2026 · v0.20260306.326</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1cd596061a286206b3182f7fa2d3cbd0a3710aaa/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1cd596061a286206b3182f7fa2d3cbd0a3710aaa"><tt>1cd5960</tt></a> fix: latest.json must point to .tar.gz not .dmg for Tauri in-app updater</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>1cd5960</code> on 2026-03-06</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260306.326/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260306.326/laputa_0.20260306.326_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260306.326_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260306.326" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260306.325</h2>
|
||
<p class="release-meta">March 6, 2026 · v0.20260306.325</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/efb233b18f53226b0d44c548d5b721a1b408dbff/hovercard" href="https://github.com/refactoringhq/tolaria/commit/efb233b18f53226b0d44c548d5b721a1b408dbff"><tt>efb233b</tt></a> feat: add Playwright smoke test infrastructure for task-scoped QA</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>efb233b</code> on 2026-03-06</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260306.325/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260306.325/laputa_0.20260306.325_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260306.325_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260306.325" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260306.324</h2>
|
||
<p class="release-meta">March 6, 2026 · v0.20260306.324</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fd34df8db0ccaf532a4d792208c711d9ed140454/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fd34df8db0ccaf532a4d792208c711d9ed140454"><tt>fd34df8</tt></a> ci: import Apple certificate before Tauri build so beforeBuildCommand can codesign</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/244deeb727018523cb77a51cf8f22f2a86ea194b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/244deeb727018523cb77a51cf8f22f2a86ea194b"><tt>244deeb</tt></a> fix: sign qmd binaries with Developer ID + hardened runtime for notarization</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/70f94d3a5127f2375bc83ad3e195896875f52bc9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/70f94d3a5127f2375bc83ad3e195896875f52bc9"><tt>70f94d3</tt></a> docs: add mandatory Playwright Phase 1 QA step before laputa-task-done</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bb20ef17f606b13c28c42d96216585ec3161edb3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bb20ef17f606b13c28c42d96216585ec3161edb3"><tt>bb20ef1</tt></a> fix: bundle qmd source in tools/qmd/ so CI can compile it</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/15a1ba6829289338b0ab2087649cb93bd0968172/hovercard" href="https://github.com/refactoringhq/tolaria/commit/15a1ba6829289338b0ab2087649cb93bd0968172"><tt>15a1ba6</tt></a> ci: add bun setup step to release workflow (required by bundle-qmd.sh)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e2c6669fd6ece96c52dbccec3b1a16fbb6d840a5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e2c6669fd6ece96c52dbccec3b1a16fbb6d840a5"><tt>e2c6669</tt></a> fix: align ws-bridge.js imports with simplified vault.js API</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d4098d3308b049c170fb6027bd207e5d4247dff2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d4098d3308b049c170fb6027bd207e5d4247dff2"><tt>d4098d3</tt></a> refactor: split InspectorPanels.tsx into focused modules — reduce 538-line file to focused per-panel components (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4032453112" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/189" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/189/hovercard" href="https://github.com/refactoringhq/tolaria/pull/189">#189</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1c3d67785189cb992f64128914110a3673ab8c5b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1c3d67785189cb992f64128914110a3673ab8c5b"><tt>1c3d677</tt></a> test: add configMigration tests — cover all migration branches (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4031053992" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/188" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/188/hovercard" href="https://github.com/refactoringhq/tolaria/pull/188">#188</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3da0b0e6524154185bb013b83bc62d27cfb0b629/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3da0b0e6524154185bb013b83bc62d27cfb0b629"><tt>3da0b0e</tt></a> fix: make qmd/search work on fresh installs — auto-install, fix permissions, sign binaries</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bc2f97d1d4c637039a386ce482530e7859758500/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bc2f97d1d4c637039a386ce482530e7859758500"><tt>bc2f97d</tt></a> style: rustfmt search.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2fb6a30dff25dad68fabc8e29244a8754c3d6d54/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2fb6a30dff25dad68fabc8e29244a8754c3d6d54"><tt>2fb6a30</tt></a> feat: bundle qmd binary with app — search works on fresh installs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0206fb372014ee95af23e95c14dd67942740167e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0206fb372014ee95af23e95c14dd67942740167e"><tt>0206fb3</tt></a> fix: rank command palette results by match score, not section order</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/51d1b2846039aa0155401ff8753b11128986e787/hovercard" href="https://github.com/refactoringhq/tolaria/commit/51d1b2846039aa0155401ff8753b11128986e787"><tt>51d1b28</tt></a> fix: move Go Back/Forward to Go menu, add toggles to Note menu</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0183062467c94e7e2da956a872b386c6ca282cad/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0183062467c94e7e2da956a872b386c6ca282cad"><tt>0183062</tt></a> fix: always show Resolve Conflicts in Cmd+K — show toast when no conflicts</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1c244a85eb0693d6dd25555089cde4bc7ad2f8e0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1c244a85eb0693d6dd25555089cde4bc7ad2f8e0"><tt>1c244a8</tt></a> refactor: extract hooks and components from NoteListInner for code health</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/900755055bb5f572d5bf8a6d244592d7a621f506/hovercard" href="https://github.com/refactoringhq/tolaria/commit/900755055bb5f572d5bf8a6d244592d7a621f506"><tt>9007550</tt></a> style: rustfmt git.rs pulse functions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3af9a09d29fb64a053c0a4829e07b073caf147ff/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3af9a09d29fb64a053c0a4829e07b073caf147ff"><tt>3af9a09</tt></a> feat: add Pulse — vault activity feed showing git commit history</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/348b2654ebd9cc31781996fe09bf49ad7dbce10d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/348b2654ebd9cc31781996fe09bf49ad7dbce10d"><tt>348b265</tt></a> style: apply rustfmt to vault_config.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/013cf0ffe174986f6f768ea500b2f12d5a4ba15d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/013cf0ffe174986f6f768ea500b2f12d5a4ba15d"><tt>013cf0f</tt></a> feat: move vault UI config from localStorage to vault files</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/418ea8a7a89d354589b184156cb9f29d07741b5f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/418ea8a7a89d354589b184156cb9f29d07741b5f"><tt>418ea8a</tt></a> feat: add vault_config module and view field to VaultEntry</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1e3c296787b45a9fe877db3c5d0ed7ef3e684dff/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1e3c296787b45a9fe877db3c5d0ed7ef3e684dff"><tt>1e3c296</tt></a> fix: pass undefined to useRef for strict TypeScript compat</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/32b4a90ae5fce0f72ea7beff22418c8e081f9628/hovercard" href="https://github.com/refactoringhq/tolaria/commit/32b4a90ae5fce0f72ea7beff22418c8e081f9628"><tt>32b4a90</tt></a> feat: expose all theme.json properties in theme editor</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/25260c7d5856a6196a8c70b76e851bd4d788bebc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/25260c7d5856a6196a8c70b76e851bd4d788bebc"><tt>25260c7</tt></a> style: apply rustfmt to menu.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ff3e7af65a1de225b8346a2ab4e724667975d840/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ff3e7af65a1de225b8346a2ab4e724667975d840"><tt>ff3e7af</tt></a> fix: move view-toggle-backlinks to simple event map for type safety</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/75878c8b646ed17033e52b969770ba0b2e1c9b41/hovercard" href="https://github.com/refactoringhq/tolaria/commit/75878c8b646ed17033e52b969770ba0b2e1c9b41"><tt>75878c8</tt></a> feat: reorganize menu bar with Go, Note, and Vault menus</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8f0c6e04fe8cb7a60a0aae7a72b774b4cfd17c48/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8f0c6e04fe8cb7a60a0aae7a72b774b4cfd17c48"><tt>8f0c6e0</tt></a> test: add color detection tests to propertyTypes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/adf45a51b56a54fbe0e1ded7eb0748de1e9bb177/hovercard" href="https://github.com/refactoringhq/tolaria/commit/adf45a51b56a54fbe0e1ded7eb0748de1e9bb177"><tt>adf45a5</tt></a> feat: add color swatch + picker for property values</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/96bc4e935a986196af4ad92fb0bb9b0cc5bd1d59/hovercard" href="https://github.com/refactoringhq/tolaria/commit/96bc4e935a986196af4ad92fb0bb9b0cc5bd1d59"><tt>96bc4e9</tt></a> fix: enable line wrapping in raw editor</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/eab457b3884effb7f985fca9514b548847db3f1f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/eab457b3884effb7f985fca9514b548847db3f1f"><tt>eab457b</tt></a> fix: make Restore Default Themes command always enabled in Cmd+K palette</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/89da9704559febac8a377a92ea53819f084198c0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/89da9704559febac8a377a92ea53819f084198c0"><tt>89da970</tt></a> feat: enable full shell access for AI agent + simplify MCP tools</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>fd34df8</code> on 2026-03-06</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260306.324/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260306.324/laputa_0.20260306.324_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260306.324_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260306.324" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260305.302</h2>
|
||
<p class="release-meta">March 5, 2026 · v0.20260305.302</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6a57e83c99b0b1dc02c8f83c695b98cf8fd75776/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6a57e83c99b0b1dc02c8f83c695b98cf8fd75776"><tt>6a57e83</tt></a> style: rustfmt collect_wikilink_inner signature</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d41e4ea34a50dc47ee9e696a74b282c45fe851a5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d41e4ea34a50dc47ee9e696a74b282c45fe851a5"><tt>d41e4ea</tt></a> fix: strip wikilink brackets from note list preview snippets</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>6a57e83</code> on 2026-03-05</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260305.302/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260305.302/laputa_0.20260305.302_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260305.302_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260305.302" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260305.301</h2>
|
||
<p class="release-meta">March 5, 2026 · v0.20260305.301</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c371e26dcb6f4e083a6a83c1f9dbb818f7cd18d1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c371e26dcb6f4e083a6a83c1f9dbb818f7cd18d1"><tt>c371e26</tt></a> feat: Add 'Restore Default Themes' command for vaults missing theme structure</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c371e26</code> on 2026-03-05</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260305.301/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260305.301/laputa_0.20260305.301_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260305.301_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260305.301" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260305.300</h2>
|
||
<p class="release-meta">March 5, 2026 · v0.20260305.300</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c78018b92a1b41470c23b84cbe04c878d89ede42/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c78018b92a1b41470c23b84cbe04c878d89ede42"><tt>c78018b</tt></a> fix: rustfmt formatting in git.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5e84ebc28a7c729632f45ae7850e4b0eb259578d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5e84ebc28a7c729632f45ae7850e4b0eb259578d"><tt>5e84ebc</tt></a> fix: stub WebSocket in test setup to prevent Node 22 + undici crash</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5775cb0c968d522fcfca5c02da5765ecb8600ba9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5775cb0c968d522fcfca5c02da5765ecb8600ba9"><tt>5775cb0</tt></a> fix: detect and resolve rebase conflicts in sync conflict resolution</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c78018b</code> on 2026-03-05</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260305.300/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260305.300/laputa_0.20260305.300_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260305.300_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260305.300" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260305.299</h2>
|
||
<p class="release-meta">March 5, 2026 · v0.20260305.299</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7ced48d0016698d3c75da97819a098555cbdf218/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7ced48d0016698d3c75da97819a098555cbdf218"><tt>7ced48d</tt></a> fix: rustfmt formatting in trash regression tests</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/533c9da4d0f0f65686d8c2fc1a293b061b2d27f9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/533c9da4d0f0f65686d8c2fc1a293b061b2d27f9"><tt>533c9da</tt></a> fix: trashed notes reappear after restart due to frontmatter key casing mismatch</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>7ced48d</code> on 2026-03-05</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260305.299/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260305.299/laputa_0.20260305.299_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260305.299_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260305.299" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260305.298</h2>
|
||
<p class="release-meta">March 5, 2026 · v0.20260305.298</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e1afaaa5b6e6a407573fcebe5536d38e620c39e4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e1afaaa5b6e6a407573fcebe5536d38e620c39e4"><tt>e1afaaa</tt></a> refactor: extract usePropertyPanelState hook into dedicated file (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4026044674" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/187" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/187/hovercard" href="https://github.com/refactoringhq/tolaria/pull/187">#187</a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>e1afaaa</code> on 2026-03-05</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260305.298/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260305.298/laputa_0.20260305.298_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260305.298_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260305.298" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260304.297</h2>
|
||
<p class="release-meta">March 4, 2026 · v0.20260304.297</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/914bcfdafdb14cbe22e50e74bc6e5b6a7a3ecb06/hovercard" href="https://github.com/refactoringhq/tolaria/commit/914bcfdafdb14cbe22e50e74bc6e5b6a7a3ecb06"><tt>914bcfd</tt></a> fix: stub fetch in test setup to prevent jsdom@28 + Node 22 undici crash</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>914bcfd</code> on 2026-03-04</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260304.297/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260304.297/laputa_0.20260304.297_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260304.297_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260304.297" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260304.296</h2>
|
||
<p class="release-meta">March 4, 2026 · v0.20260304.296</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cfb047cb228e0f558ebf2d65f406fcd07a13f89d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cfb047cb228e0f558ebf2d65f406fcd07a13f89d"><tt>cfb047c</tt></a> feat: wikilink pills in message bubbles, noteList context injection</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>cfb047c</code> on 2026-03-04</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260304.296/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260304.296/laputa_0.20260304.296_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260304.296_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260304.296" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260304.295</h2>
|
||
<p class="release-meta">March 4, 2026 · v0.20260304.295</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/55ff9e6f5d4a62be35bc950f2751ada6b21183c0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/55ff9e6f5d4a62be35bc950f2751ada6b21183c0"><tt>55ff9e6</tt></a> refactor: remove dead useMcpRegistration hook, add design file</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d3ea6326730195137a419ee250e2ed19893da05e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d3ea6326730195137a419ee250e2ed19893da05e"><tt>d3ea632</tt></a> feat: detect MCP server status and show warning in status bar</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>55ff9e6</code> on 2026-03-04</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260304.295/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260304.295/laputa_0.20260304.295_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260304.295_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260304.295" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260304.294</h2>
|
||
<p class="release-meta">March 4, 2026 · v0.20260304.294</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6d3d752fd5af821c7466ccff955667ff2dc21de5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6d3d752fd5af821c7466ccff955667ff2dc21de5"><tt>6d3d752</tt></a> fix: pass initial value to useRef for strict TS build</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/26181b57b62460cfee85939d06bbff74d486efba/hovercard" href="https://github.com/refactoringhq/tolaria/commit/26181b57b62460cfee85939d06bbff74d486efba"><tt>26181b5</tt></a> test: add tests for WikilinkChatInput and buildContextSnapshot</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7efcaa11c469dbb175db6fe087c41340ecd7735c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7efcaa11c469dbb175db6fe087c41340ecd7735c"><tt>7efcaa1</tt></a> feat: add wikilink autocomplete, animated border, structured context wiring</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/197aad0e9749c228d1f903f65b4b2cd45916264f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/197aad0e9749c228d1f903f65b4b2cd45916264f"><tt>197aad0</tt></a> feat: add reasoning streaming, markdown response, structured context snapshot</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>6d3d752</code> on 2026-03-04</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260304.294/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260304.294/laputa_0.20260304.294_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260304.294_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260304.294" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260304.293</h2>
|
||
<p class="release-meta">March 4, 2026 · v0.20260304.293</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/db47ffe4545416fc64d9ffec684c902c4320bee4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/db47ffe4545416fc64d9ffec684c902c4320bee4"><tt>db47ffe</tt></a> fix: use generic Error type in setup.ts to avoid NodeJS namespace</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/008f067bf780bfd32454e03ff455eea65396d3e2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/008f067bf780bfd32454e03ff455eea65396d3e2"><tt>008f067</tt></a> fix: restore drag-to-reorder for sidebar sections</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>db47ffe</code> on 2026-03-04</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260304.293/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260304.293/laputa_0.20260304.293_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260304.293_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260304.293" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260304.292</h2>
|
||
<p class="release-meta">March 4, 2026 · v0.20260304.292</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/55a250965884ad20e2ecf9c50023cb060560f8bb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/55a250965884ad20e2ecf9c50023cb060560f8bb"><tt>55a2509</tt></a> fix: MCP UI tools (highlight, open_note) now work in real-time</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>55a2509</code> on 2026-03-04</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260304.292/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260304.292/laputa_0.20260304.292_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260304.292_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260304.292" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260303.291</h2>
|
||
<p class="release-meta">March 3, 2026 · v0.20260303.291</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/790f2ea85cac69819a53410b4f14f604eb8092cc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/790f2ea85cac69819a53410b4f14f604eb8092cc"><tt>790f2ea</tt></a> style: apply rustfmt to theme.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ed5e6d682019716c81139bdb8a5bdb666b00f289/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ed5e6d682019716c81139bdb8a5bdb666b00f289"><tt>ed5e6d6</tt></a> fix: auto-provision theme files on vault open for any vault</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>790f2ea</code> on 2026-03-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.291/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.291/laputa_0.20260303.291_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260303.291_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260303.291" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260303.290</h2>
|
||
<p class="release-meta">March 3, 2026 · v0.20260303.290</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/feb97caa87f3dac83da7b545cd15d58fccd8392e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/feb97caa87f3dac83da7b545cd15d58fccd8392e"><tt>feb97ca</tt></a> fix: show 'Installing search...' when qmd missing instead of 'Indexing...'</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5bcd344d5f2d338dc6027fcd35266ce5191d05aa/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5bcd344d5f2d338dc6027fcd35266ce5191d05aa"><tt>5bcd344</tt></a> fix: replace 'Index error' with graceful handling on fresh installs</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>feb97ca</code> on 2026-03-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.290/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.290/laputa_0.20260303.290_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260303.290_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260303.290" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260303.289</h2>
|
||
<p class="release-meta">March 3, 2026 · v0.20260303.289</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/816e3ca8bdb31521aac1ba0a7894fe7343c5e846/hovercard" href="https://github.com/refactoringhq/tolaria/commit/816e3ca8bdb31521aac1ba0a7894fe7343c5e846"><tt>816e3ca</tt></a> style: apply cargo fmt to test assertions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ef148be94e66fd07c2a93825c540c62588e25552/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ef148be94e66fd07c2a93825c540c62588e25552"><tt>ef148be</tt></a> fix: apply rustfmt to claude_cli.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ceee8b04ea4493dccbe02690ea7a79d2461efa8d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ceee8b04ea4493dccbe02690ea7a79d2461efa8d"><tt>ceee8b0</tt></a> feat: make AI chat tool use blocks expandable with input/output details</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>816e3ca</code> on 2026-03-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.289/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.289/laputa_0.20260303.289_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260303.289_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260303.289" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260303.288</h2>
|
||
<p class="release-meta">March 3, 2026 · v0.20260303.288</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ba7d2f1acc5d59d574c392d455c81bc75028e27d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ba7d2f1acc5d59d574c392d455c81bc75028e27d"><tt>ba7d2f1</tt></a> feat: render markdown in AI Chat assistant responses</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>ba7d2f1</code> on 2026-03-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.288/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.288/laputa_0.20260303.288_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260303.288_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260303.288" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260303.287</h2>
|
||
<p class="release-meta">March 3, 2026 · v0.20260303.287</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7e3c8630a4babeb99f692423beebdde36434e644/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7e3c8630a4babeb99f692423beebdde36434e644"><tt>7e3c863</tt></a> feat: replace app icon with new Laputa cloud logo</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d5b621e1747541c0f49c8ed942b2935575576d2d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d5b621e1747541c0f49c8ed942b2935575576d2d"><tt>d5b621e</tt></a> fix: trash/archive banner appears immediately without reopening note</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/24c4a5a823630fafa1caefcf13c2fb7ae6436ddd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/24c4a5a823630fafa1caefcf13c2fb7ae6436ddd"><tt>24c4a5a</tt></a> fix: display correct app version as build number in status bar</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>7e3c863</code> on 2026-03-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.287/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.287/laputa_0.20260303.287_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260303.287_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260303.287" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260303.284</h2>
|
||
<p class="release-meta">March 3, 2026 · v0.20260303.284</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ea61ded4af81d3c78e6f333a6e6447eb397f4103/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ea61ded4af81d3c78e6f333a6e6447eb397f4103"><tt>ea61ded</tt></a> fix: use type-only import for DecorationSet (verbatimModuleSyntax)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3a623d48bb095393aabdbb3e274306c4ef0c5ac4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3a623d48bb095393aabdbb3e274306c4ef0c5ac4"><tt>3a623d4</tt></a> feat: replace raw editor textarea with CodeMirror 6</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>ea61ded</code> on 2026-03-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.284/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.284/laputa_0.20260303.284_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260303.284_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260303.284" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260303.283</h2>
|
||
<p class="release-meta">March 3, 2026 · v0.20260303.283</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3fcb06396aa4827f70906f79cbb0255b8a77f13a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3fcb06396aa4827f70906f79cbb0255b8a77f13a"><tt>3fcb063</tt></a> fix: use git ls-files --unmerged for reliable conflict detection</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>3fcb063</code> on 2026-03-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.283/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.283/laputa_0.20260303.283_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260303.283_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260303.283" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260303.282</h2>
|
||
<p class="release-meta">March 3, 2026 · v0.20260303.282</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/17eeac75cd9fcd8dd79b6a936267f0395ea5e488/hovercard" href="https://github.com/refactoringhq/tolaria/commit/17eeac75cd9fcd8dd79b6a936267f0395ea5e488"><tt>17eeac7</tt></a> fix: open newly created theme in editor after New Theme command</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>17eeac7</code> on 2026-03-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.282/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.282/laputa_0.20260303.282_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260303.282_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260303.282" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260303.281</h2>
|
||
<p class="release-meta">March 3, 2026 · v0.20260303.281</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2dad764ea79a70b4bca7f1980301983814fb4804/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2dad764ea79a70b4bca7f1980301983814fb4804"><tt>2dad764</tt></a> fix: check-for-updates command always visible in Cmd+K, handles all update states</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>2dad764</code> on 2026-03-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.281/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.281/laputa_0.20260303.281_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260303.281_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260303.281" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260303.280</h2>
|
||
<p class="release-meta">March 3, 2026 · v0.20260303.280</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c3fa296b99eb471b4c67927b630c0284aa19f468/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c3fa296b99eb471b4c67927b630c0284aa19f468"><tt>c3fa296</tt></a> refactor: remove AI model indicator from status bar</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c3fa296</code> on 2026-03-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.280/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.280/laputa_0.20260303.280_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260303.280_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260303.280" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260303.279</h2>
|
||
<p class="release-meta">March 3, 2026 · v0.20260303.279</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6370b66e05760d703c57005f9f9e4bd0495fc6e0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6370b66e05760d703c57005f9f9e4bd0495fc6e0"><tt>6370b66</tt></a> fix: handle Escape at panel level and manage focus across active states</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1ec27dd2640851b062a2b4fc0f32f4d937cf30c7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1ec27dd2640851b062a2b4fc0f32f4d937cf30c7"><tt>1ec27dd</tt></a> fix: auto-focus AI Chat input on panel open and close on Escape</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>6370b66</code> on 2026-03-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.279/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.279/laputa_0.20260303.279_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260303.279_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260303.279" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260303.278</h2>
|
||
<p class="release-meta">March 3, 2026 · v0.20260303.278</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/10e6d7b366efd681b08728fe00e824a0210d4022/hovercard" href="https://github.com/refactoringhq/tolaria/commit/10e6d7b366efd681b08728fe00e824a0210d4022"><tt>10e6d7b</tt></a> fix: handle EADDRINUSE in MCP server ws-bridge — allow Claude Code to start when port is taken</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0c87e51037eacba7fd4f2d2e1e0baa28387eb743/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0c87e51037eacba7fd4f2d2e1e0baa28387eb743"><tt>0c87e51</tt></a> feat: add Check for Updates command to native menu and Cmd+K palette</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>10e6d7b</code> on 2026-03-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.278/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.278/laputa_0.20260303.278_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260303.278_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260303.278" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260303.276</h2>
|
||
<p class="release-meta">March 3, 2026 · v0.20260303.276</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7df19611721a8bf5f50d6a736c2f7ba9ffe66f4f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7df19611721a8bf5f50d6a736c2f7ba9ffe66f4f"><tt>7df1961</tt></a> feat: persist note list sort preference in type file frontmatter</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>7df1961</code> on 2026-03-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.276/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.276/laputa_0.20260303.276_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260303.276_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260303.276" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260303.275</h2>
|
||
<p class="release-meta">March 3, 2026 · v0.20260303.275</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ec74f86d538d4eca88a4a68cd24b6d1e927440a9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ec74f86d538d4eca88a4a68cd24b6d1e927440a9"><tt>ec74f86</tt></a> fix: restore theming system after dark-editor merge regression</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>ec74f86</code> on 2026-03-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.275/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.275/laputa_0.20260303.275_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260303.275_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260303.275" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260303.274</h2>
|
||
<p class="release-meta">March 3, 2026 · v0.20260303.274</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d86dfbfcb6687cad20801965f70e35f828ba16d8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d86dfbfcb6687cad20801965f70e35f828ba16d8"><tt>d86dfbf</tt></a> refactor: extract useEditorSaveWithLinks and useNavigationGestures from App.tsx (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4014905372" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/186" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/186/hovercard" href="https://github.com/refactoringhq/tolaria/pull/186">#186</a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>d86dfbf</code> on 2026-03-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.274/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.274/laputa_0.20260303.274_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260303.274_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260303.274" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260303.273</h2>
|
||
<p class="release-meta">March 3, 2026 · v0.20260303.273</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e77208ec346cafc55156a9b133b0c434fff6d535/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e77208ec346cafc55156a9b133b0c434fff6d535"><tt>e77208e</tt></a> style: cargo fmt git.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/818707603e6efebc08a96f116c9282643028ec95/hovercard" href="https://github.com/refactoringhq/tolaria/commit/818707603e6efebc08a96f116c9282643028ec95"><tt>8187076</tt></a> fix: add useIndexing import and hook call, wire indexingProgress and onRemoveVault to StatusBar</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fa3f9adcccd8b218af15d1cebdfca234d56215f3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fa3f9adcccd8b218af15d1cebdfca234d56215f3"><tt>fa3f9ad</tt></a> chore: add sync-conflict-resolution design file</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bf6312000ed5c41266b543cfc4e1f568e66b5063/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bf6312000ed5c41266b543cfc4e1f568e66b5063"><tt>bf63120</tt></a> feat: add sync conflict resolution — resolve merge conflicts in-app</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>e77208e</code> on 2026-03-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.273/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.273/laputa_0.20260303.273_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260303.273_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260303.273" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260303.272</h2>
|
||
<p class="release-meta">March 3, 2026 · v0.20260303.272</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/832181b9a94c6cb53fa8bff6231310154cc11b69/hovercard" href="https://github.com/refactoringhq/tolaria/commit/832181b9a94c6cb53fa8bff6231310154cc11b69"><tt>832181b</tt></a> style: cargo fmt --all</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bc011692cdb9e508f7568b42d283980b21aefb7b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bc011692cdb9e508f7568b42d283980b21aefb7b"><tt>bc01169</tt></a> style: rustfmt lib.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0604a13cdda89f242aa8a3e2eafa49e38f690444/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0604a13cdda89f242aa8a3e2eafa49e38f690444"><tt>0604a13</tt></a> fix: add missing X import and onRemoveVault prop to StatusBar after rebase</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/eb77607401871e58d9fae7520e78c319196d923e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/eb77607401871e58d9fae7520e78c319196d923e"><tt>eb77607</tt></a> feat: auto-index vault on open + qmd auto-install + status bar progress</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>832181b</code> on 2026-03-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.272/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.272/laputa_0.20260303.272_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260303.272_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260303.272" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260303.271</h2>
|
||
<p class="release-meta">March 3, 2026 · v0.20260303.271</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e305c29e6ea6141292d6907f0bb934ab9a880262/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e305c29e6ea6141292d6907f0bb934ab9a880262"><tt>e305c29</tt></a> style: rustfmt vault_list.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5b1804e5e10e4086cdbf405f31fbf4bd8e7aaf60/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5b1804e5e10e4086cdbf405f31fbf4bd8e7aaf60"><tt>5b1804e</tt></a> feat: vault management — remove vault from list and restore Getting Started</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>e305c29</code> on 2026-03-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.271/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.271/laputa_0.20260303.271_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260303.271_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260303.271" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260303.270</h2>
|
||
<p class="release-meta">March 3, 2026 · v0.20260303.270</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2c5cfe292338f19de1abeaa0936421a9067d35b8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2c5cfe292338f19de1abeaa0936421a9067d35b8"><tt>2c5cfe2</tt></a> feat: sort picker shows custom frontmatter properties (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4014058577" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/185" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/185/hovercard" href="https://github.com/refactoringhq/tolaria/pull/185">#185</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/35144aedfba26a6f66fc069b6b69a6791a4dc6f8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/35144aedfba26a6f66fc069b6b69a6791a4dc6f8"><tt>35144ae</tt></a> feat: show archived note indicator banner in editor (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4014049016" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/183" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/183/hovercard" href="https://github.com/refactoringhq/tolaria/pull/183">#183</a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>2c5cfe2</code> on 2026-03-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.270/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.270/laputa_0.20260303.270_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260303.270_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260303.270" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260303.268</h2>
|
||
<p class="release-meta">March 3, 2026 · v0.20260303.268</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4d7252c78fcfbf32ab7e737153e64359e5b06ab9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4d7252c78fcfbf32ab7e737153e64359e5b06ab9"><tt>4d7252c</tt></a> feat: add command palette toggles for all BreadcrumbBar panels (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4014049115" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/184" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/184/hovercard" href="https://github.com/refactoringhq/tolaria/pull/184">#184</a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>4d7252c</code> on 2026-03-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.268/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.268/laputa_0.20260303.268_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260303.268_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260303.268" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260303.267</h2>
|
||
<p class="release-meta">March 3, 2026 · v0.20260303.267</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6d2988b7226a0a365ed0e1fec7f40b55609522df/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6d2988b7226a0a365ed0e1fec7f40b55609522df"><tt>6d2988b</tt></a> feat: trashed notes read-only with visible banner in editor (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4013967339" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/181" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/181/hovercard" href="https://github.com/refactoringhq/tolaria/pull/181">#181</a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>6d2988b</code> on 2026-03-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.267/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.267/laputa_0.20260303.267_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260303.267_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260303.267" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260303.265</h2>
|
||
<p class="release-meta">March 3, 2026 · v0.20260303.265</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a33a000c571248d16c51b2f22e03317188e7c61c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a33a000c571248d16c51b2f22e03317188e7c61c"><tt>a33a000</tt></a> fix: remove persistLastVault assertions from onboarding test</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f0b456bb8c52ec050e5578fbb010057bb2a1c3fe/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f0b456bb8c52ec050e5578fbb010057bb2a1c3fe"><tt>f0b456b</tt></a> fix: remove stale persistLastVault and unused imports after rebase</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b489fa8e3ee6fe6bc311b96d64a31ca2b04d6549/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b489fa8e3ee6fe6bc311b96d64a31ca2b04d6549"><tt>b489fa8</tt></a> fix: persist vault list across app updates</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>a33a000</code> on 2026-03-03</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.265/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260303.265/laputa_0.20260303.265_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260303.265_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260303.265" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260302.264</h2>
|
||
<p class="release-meta">March 2, 2026 · v0.20260302.264</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1a92b4694c7f417510667cf845ed404e910afb3a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1a92b4694c7f417510667cf845ed404e910afb3a"><tt>1a92b46</tt></a> fix: persist last vault path so app reopens correct vault after update</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6b9ff9a4a2576af7ea7bfa7fd22cf0f179e87803/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6b9ff9a4a2576af7ea7bfa7fd22cf0f179e87803"><tt>6b9ff9a</tt></a> feat: add "New Type" command to command palette (Cmd+K)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>1a92b46</code> on 2026-03-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.264/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.264/laputa_0.20260302.264_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260302.264_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260302.264" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260302.262</h2>
|
||
<p class="release-meta">March 2, 2026 · v0.20260302.262</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/97d2182c0eb0ed3976a76a291dc6f208e26270c3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/97d2182c0eb0ed3976a76a291dc6f208e26270c3"><tt>97d2182</tt></a> test: add asserting wikilink navigation E2E test — screenshot.spec.ts test had no expect() calls (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4013723067" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/180" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/180/hovercard" href="https://github.com/refactoringhq/tolaria/pull/180">#180</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/80baa741758a108a4da0b5d79810194bbd6fe717/hovercard" href="https://github.com/refactoringhq/tolaria/commit/80baa741758a108a4da0b5d79810194bbd6fe717"><tt>80baa74</tt></a> feat: add 'Check for Updates' command to command palette</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f71e6d07e70e0dde8b53f8e62a7747fbc868f063/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f71e6d07e70e0dde8b53f8e62a7747fbc868f063"><tt>f71e6d0</tt></a> feat: rename demo vault from 'Demo v2' to 'Getting Started', remove 'Laputa' vault entry</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>97d2182</code> on 2026-03-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.262/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.262/laputa_0.20260302.262_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260302.262_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260302.262" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260302.259</h2>
|
||
<p class="release-meta">March 2, 2026 · v0.20260302.259</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b8a0702e3c56920f1d40f06612c2741f70c0a23d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b8a0702e3c56920f1d40f06612c2741f70c0a23d"><tt>b8a0702</tt></a> fix: use compile-time env!() macro for BUILD_NUMBER instead of runtime std::env::var</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>b8a0702</code> on 2026-03-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.259/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.259/laputa_0.20260302.259_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260302.259_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260302.259" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260302.258</h2>
|
||
<p class="release-meta">March 2, 2026 · v0.20260302.258</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c48f337c4dd851146724d0e9325f935bf6d40ca1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c48f337c4dd851146724d0e9325f935bf6d40ca1"><tt>c48f337</tt></a> fix: bundle mcp-server into release app so AI Chat works (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4013296678" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/178" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/178/hovercard" href="https://github.com/refactoringhq/tolaria/pull/178">#178</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b32d46f4821c64cf393787a4f7a0c14821841ef5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b32d46f4821c64cf393787a4f7a0c14821841ef5"><tt>b32d46f</tt></a> style: fix rustfmt formatting in cache test assertions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fd100e1c3bd5456680df72b1242e7d5d7e5b90a7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fd100e1c3bd5456680df72b1242e7d5d7e5b90a7"><tt>fd100e1</tt></a> fix: sync changes badge count with list by invalidating stale vault cache</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c48f337</code> on 2026-03-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.258/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.258/laputa_0.20260302.258_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260302.258_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260302.258" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260302.256</h2>
|
||
<p class="release-meta">March 2, 2026 · v0.20260302.256</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/249db95c9e4abbc175d903284097fc71afc11bc0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/249db95c9e4abbc175d903284097fc71afc11bc0"><tt>249db95</tt></a> fix: correct git_uncommitted_files call after rebase conflict</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3c27b63908df85a29131dba67e550283dbaafeaf/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3c27b63908df85a29131dba67e550283dbaafeaf"><tt>3c27b63</tt></a> fix: add aria-label to InlineRenameInput for test accessibility</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a246de4483c29b7799a6bf2fcda5c1fdc853c077/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a246de4483c29b7799a6bf2fcda5c1fdc853c077"><tt>a246de4</tt></a> style: apply rustfmt to cache.rs test</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/27930249045b4fc099d50ef74e3776262cf418cc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/27930249045b4fc099d50ef74e3776262cf418cc"><tt>2793024</tt></a> feat: add Rename section to sidebar context menu</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f0ef9cacecccbf3f2199fff2a9286b1d81023058/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f0ef9cacecccbf3f2199fff2a9286b1d81023058"><tt>f0ef9ca</tt></a> fix: update_same_commit picks up modified files, not only new ones</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>249db95</code> on 2026-03-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.256/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.256/laputa_0.20260302.256_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260302.256_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260302.256" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260302.255</h2>
|
||
<p class="release-meta">March 2, 2026 · v0.20260302.255</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d2538e121f7e77c73bf5b2ca9f694630c5e54260/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d2538e121f7e77c73bf5b2ca9f694630c5e54260"><tt>d2538e1</tt></a> style: apply rustfmt to theme.rs and vault/cache.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/531666b03105c82f4f730f8a07416cad278fe953/hovercard" href="https://github.com/refactoringhq/tolaria/commit/531666b03105c82f4f730f8a07416cad278fe953"><tt>531666b</tt></a> fix: remove unused is_new_file_status function</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e239d71a48f9e0006edbbfb3aad2c5fa9831c7d7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e239d71a48f9e0006edbbfb3aad2c5fa9831c7d7"><tt>e239d71</tt></a> fix: add isDark to useThemeManager return value</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e2f1fe239ec6227e534c77199acf418dd6e93d4e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e2f1fe239ec6227e534c77199acf418dd6e93d4e"><tt>e2f1fe2</tt></a> fix: remove stale deriveThemeVariables call and update test assertions after conflict resolution</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8495f0e2e63f0fc7442db7a64193e30e79c3c248/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8495f0e2e63f0fc7442db7a64193e30e79c3c248"><tt>8495f0e</tt></a> test: add theme command registry tests and minor fixes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/19bc3c67e3b9d6fa5d9ade7910d1b0d050233e34/hovercard" href="https://github.com/refactoringhq/tolaria/commit/19bc3c67e3b9d6fa5d9ade7910d1b0d050233e34"><tt>19bc3c6</tt></a> wip: themes-editable — theme management system WIP (13 files, 1014 insertions)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>d2538e1</code> on 2026-03-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.255/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.255/laputa_0.20260302.255_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260302.255_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260302.255" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260302.254</h2>
|
||
<p class="release-meta">March 2, 2026 · v0.20260302.254</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/628d97d909d6770c835d2c31c7948bd0467825f5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/628d97d909d6770c835d2c31c7948bd0467825f5"><tt>628d97d</tt></a> chore: sync Sidebar.tsx dragHandleProps removal from main</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/aa6b31317ccdac4d2ba6a2a7d0a93bd5365d60a0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/aa6b31317ccdac4d2ba6a2a7d0a93bd5365d60a0"><tt>aa6b313</tt></a> chore: sync SidebarParts dragHandle removal from main</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b24ba8a4c656f952d8e153b70ebc7014d8132a22/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b24ba8a4c656f952d8e153b70ebc7014d8132a22"><tt>b24ba8a</tt></a> fix: position context menu and customize popover at right-click coordinates</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b3f47f45078173f474d956fb0e6c70dd5145dfae/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b3f47f45078173f474d956fb0e6c70dd5145dfae"><tt>b3f47f4</tt></a> chore: remove dragHandleProps from SectionContent destructuring</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6fcd0552d0c0573ab685cbdf9f09cdd2bd3bce17/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6fcd0552d0c0573ab685cbdf9f09cdd2bd3bce17"><tt>6fcd055</tt></a> chore: remove remaining dragHandleProps from SortableSection</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8747a84453c2ecdb0331a8f416c6bdb1c64787c6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8747a84453c2ecdb0331a8f416c6bdb1c64787c6"><tt>8747a84</tt></a> style: remove drag handle icon from sidebar sections</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2eb3080050e8b2fd9222553cddb679ffa573f7f9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2eb3080050e8b2fd9222553cddb679ffa573f7f9"><tt>2eb3080</tt></a> style: align section icons with main nav items in sidebar</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/99b64c0faca7b87ee4513b45359eb77f250aa0aa/hovercard" href="https://github.com/refactoringhq/tolaria/commit/99b64c0faca7b87ee4513b45359eb77f250aa0aa"><tt>99b64c0</tt></a> style: remove letter-spacing from status/property labels in inspector</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b2a68a9a67a402a789f3aaedabc17c78edcf7025/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b2a68a9a67a402a789f3aaedabc17c78edcf7025"><tt>b2a68a9</tt></a> style: reduce editor body font to 15px, apply -0.5 letter-spacing to h2/h3/h4</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>628d97d</code> on 2026-03-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.254/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.254/laputa_0.20260302.254_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260302.254_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260302.254" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260302.251</h2>
|
||
<p class="release-meta">March 2, 2026 · v0.20260302.251</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f5bbcb81a46186a9391c1783ada46e970a2adaa4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f5bbcb81a46186a9391c1783ada46e970a2adaa4"><tt>f5bbcb8</tt></a> fix: defer H1 selection to second rAF so content swap completes first</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>f5bbcb8</code> on 2026-03-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.251/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.251/laputa_0.20260302.251_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260302.251_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260302.251" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260302.250</h2>
|
||
<p class="release-meta">March 2, 2026 · v0.20260302.250</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/db5e53f77e575fc0e8d575ac23a2ad8098fab8c9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/db5e53f77e575fc0e8d575ac23a2ad8098fab8c9"><tt>db5e53f</tt></a> fix: register Cmd+\ keyboard shortcut to toggle raw editor mode</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>db5e53f</code> on 2026-03-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.250/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.250/laputa_0.20260302.250_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260302.250_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260302.250" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260302.249</h2>
|
||
<p class="release-meta">March 2, 2026 · v0.20260302.249</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/90e67adc41456a91d1352ff51bae582084437223/hovercard" href="https://github.com/refactoringhq/tolaria/commit/90e67adc41456a91d1352ff51bae582084437223"><tt>90e67ad</tt></a> fix: editor background matches vault theme in dark mode</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>90e67ad</code> on 2026-03-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.249/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.249/laputa_0.20260302.249_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260302.249_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260302.249" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260302.248</h2>
|
||
<p class="release-meta">March 2, 2026 · v0.20260302.248</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/185feb5a2cbe600d0216b4209d20fa0d2ec551b8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/185feb5a2cbe600d0216b4209d20fa0d2ec551b8"><tt>185feb5</tt></a> feat: raw editor mode — plain textarea with frontmatter + wikilink autocomplete</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>185feb5</code> on 2026-03-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.248/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.248/laputa_0.20260302.248_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260302.248_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260302.248" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260302.247</h2>
|
||
<p class="release-meta">March 2, 2026 · v0.20260302.247</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f04dfdbd37e5b4909579545f5c3f5f13c86edcae/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f04dfdbd37e5b4909579545f5c3f5f13c86edcae"><tt>f04dfdb</tt></a> feat: auto-focus editor with H1 title selected on new note creation</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>f04dfdb</code> on 2026-03-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.247/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.247/laputa_0.20260302.247_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260302.247_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260302.247" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260302.246</h2>
|
||
<p class="release-meta">March 2, 2026 · v0.20260302.246</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3c27403f867f22ab6521a54f9641b39a07a87b28/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3c27403f867f22ab6521a54f9641b39a07a87b28"><tt>3c27403</tt></a> fix: use globalThis instead of global in test setup (TS build compatibility)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/276b3c1a3759ddc46a9d22a59beeff343d87b60b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/276b3c1a3759ddc46a9d22a59beeff343d87b60b"><tt>276b3c1</tt></a> feat: responsive tab width — shrink tabs to fit window</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cadb3500f1e717979a3cea4476a0160335e54bd5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cadb3500f1e717979a3cea4476a0160335e54bd5"><tt>cadb350</tt></a> feat: dark theme applies to editor content area</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>3c27403</code> on 2026-03-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.246/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.246/laputa_0.20260302.246_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260302.246_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260302.246" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260302.244</h2>
|
||
<p class="release-meta">March 2, 2026 · v0.20260302.244</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/41d43501a05a726c5bc53c802054549e3bc41ef8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/41d43501a05a726c5bc53c802054549e3bc41ef8"><tt>41d4350</tt></a> docs: never open PRs — push directly to main always</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>ee8f0d6</code> on 2026-03-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.244/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.244/laputa_0.20260302.244_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260302.244_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260302.244" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260302.243</h2>
|
||
<p class="release-meta">March 2, 2026 · v0.20260302.243</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/32b8e2ee577a4983a7eaa42e8115b8ec1ded9774/hovercard" href="https://github.com/refactoringhq/tolaria/commit/32b8e2ee577a4983a7eaa42e8115b8ec1ded9774"><tt>32b8e2e</tt></a> feat: toggle archive/trash shortcuts — Cmd+E unarchives, Cmd+⌫ restores (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4010571350" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/175" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/175/hovercard" href="https://github.com/refactoringhq/tolaria/pull/175">#175</a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>32b8e2e</code> on 2026-03-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.243/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.243/laputa_0.20260302.243_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260302.243_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260302.243" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260302.242</h2>
|
||
<p class="release-meta">March 2, 2026 · v0.20260302.242</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b1110ead878759928abdc7d990d553d25879d953/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b1110ead878759928abdc7d990d553d25879d953"><tt>b1110ea</tt></a> fix: back/forward nav arrows reopen replaced tabs instead of skipping them (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4010453895" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/174" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/174/hovercard" href="https://github.com/refactoringhq/tolaria/pull/174">#174</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b75b917538d2424b0bdecf84abe8b0dd57a65daf/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b75b917538d2424b0bdecf84abe8b0dd57a65daf"><tt>b75b917</tt></a> fix: use openExternalUrl for release notes link in Tauri app (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4010246764" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/171" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/171/hovercard" href="https://github.com/refactoringhq/tolaria/pull/171">#171</a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>b1110ea</code> on 2026-03-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.242/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.242/laputa_0.20260302.242_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260302.242_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260302.242" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260302.240</h2>
|
||
<p class="release-meta">March 2, 2026 · v0.20260302.240</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/24bb64841e44398a20752db1f60bc69174dadc7e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/24bb64841e44398a20752db1f60bc69174dadc7e"><tt>24bb648</tt></a> fix: customize icon & color works for types without Type entry (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4010422141" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/173" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/173/hovercard" href="https://github.com/refactoringhq/tolaria/pull/173">#173</a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>24bb648</code> on 2026-03-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.240/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.240/laputa_0.20260302.240_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260302.240_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260302.240" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260302.239</h2>
|
||
<p class="release-meta">March 2, 2026 · v0.20260302.239</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/df2452dcaff531af9c43d08b41100db96f925add/hovercard" href="https://github.com/refactoringhq/tolaria/commit/df2452dcaff531af9c43d08b41100db96f925add"><tt>df2452d</tt></a> fix: back/forward nav arrows reopen replaced tabs instead of skipping them (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4010258877" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/172" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/172/hovercard" href="https://github.com/refactoringhq/tolaria/pull/172">#172</a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>df2452d</code> on 2026-03-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.239/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.239/laputa_0.20260302.239_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260302.239_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260302.239" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260302.238</h2>
|
||
<p class="release-meta">March 2, 2026 · v0.20260302.238</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/89d0e39ad281df79d4f09de22bbc1f1292830a90/hovercard" href="https://github.com/refactoringhq/tolaria/commit/89d0e39ad281df79d4f09de22bbc1f1292830a90"><tt>89d0e39</tt></a> feat: note templates per type (💡 Note templates per tipo) (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4009028400" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/170" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/170/hovercard" href="https://github.com/refactoringhq/tolaria/pull/170">#170</a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>89d0e39</code> on 2026-03-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.238/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.238/laputa_0.20260302.238_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260302.238_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260302.238" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260302.237</h2>
|
||
<p class="release-meta">March 2, 2026 · v0.20260302.237</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e3977a6042b61efa251a8a116c64a28dc25281a0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e3977a6042b61efa251a8a116c64a28dc25281a0"><tt>e3977a6</tt></a> feat: contextual AI chat on open note (Cmd+I) (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4008873789" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/169" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/169/hovercard" href="https://github.com/refactoringhq/tolaria/pull/169">#169</a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>e3977a6</code> on 2026-03-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.237/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.237/laputa_0.20260302.237_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260302.237_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260302.237" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260302.236</h2>
|
||
<p class="release-meta">March 2, 2026 · v0.20260302.236</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4cdc534c018484418c73c030631e2611ec4533b8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4cdc534c018484418c73c030631e2611ec4533b8"><tt>4cdc534</tt></a> feat: add daily note command — Cmd+J creates or opens today's journal note (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4008732104" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/168" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/168/hovercard" href="https://github.com/refactoringhq/tolaria/pull/168">#168</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1a93acdce745a04a34059324f9d933bdaa839be5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1a93acdce745a04a34059324f9d933bdaa839be5"><tt>1a93acd</tt></a> fix: show new (untracked) notes in Changes view (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4008448797" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/161" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/161/hovercard" href="https://github.com/refactoringhq/tolaria/pull/161">#161</a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>4cdc534</code> on 2026-03-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.236/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.236/laputa_0.20260302.236_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260302.236_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260302.236" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260302.234</h2>
|
||
<p class="release-meta">March 2, 2026 · v0.20260302.234</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9c8f7907b8287eafe18f97944cf6901052ed9c42/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9c8f7907b8287eafe18f97944cf6901052ed9c42"><tt>9c8f790</tt></a> feat: enhance backlinks panel with collapsible section and paragraph context (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4008732025" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/167" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/167/hovercard" href="https://github.com/refactoringhq/tolaria/pull/167">#167</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8d9862ffef60d3185b6f9fc28532032b7c278eb4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8d9862ffef60d3185b6f9fc28532032b7c278eb4"><tt>8d9862f</tt></a> feat: allow custom sidebar label for type sections (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4008594974" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/165" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/165/hovercard" href="https://github.com/refactoringhq/tolaria/pull/165">#165</a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>9c8f790</code> on 2026-03-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.234/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.234/laputa_0.20260302.234_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260302.234_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260302.234" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260302.232</h2>
|
||
<p class="release-meta">March 2, 2026 · v0.20260302.232</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a5e4efcf8633c92679d9e2ce23fda49a654674d5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a5e4efcf8633c92679d9e2ce23fda49a654674d5"><tt>a5e4efc</tt></a> fix: increase tab max-width and add ellipsis truncation (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4008595324" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/166" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/166/hovercard" href="https://github.com/refactoringhq/tolaria/pull/166">#166</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e4bab72952d685659e2930e00d362a273fa75cbc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e4bab72952d685659e2930e00d362a273fa75cbc"><tt>e4bab72</tt></a> feat: clicking section group header toggles collapse/expand (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4008594732" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/164" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/164/hovercard" href="https://github.com/refactoringhq/tolaria/pull/164">#164</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f08b807a0c9df60be225bba57d6c261ae0742be4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f08b807a0c9df60be225bba57d6c261ae0742be4"><tt>f08b807</tt></a> feat: show dynamic build number in status bar (bNNN format) (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4008448988" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/163" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/163/hovercard" href="https://github.com/refactoringhq/tolaria/pull/163">#163</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b52173610202fcaabfbbbb16138c093bdb3d81f1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b52173610202fcaabfbbbb16138c093bdb3d81f1"><tt>b521736</tt></a> fix: preserve scroll position independently per editor tab (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4008448907" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/162" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/162/hovercard" href="https://github.com/refactoringhq/tolaria/pull/162">#162</a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>a5e4efc</code> on 2026-03-02</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.232/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260302.232/laputa_0.20260302.232_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260302.232_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260302.232" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260301.228</h2>
|
||
<p class="release-meta">March 1, 2026 · v0.20260301.228</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4d13628d0bde66b58a828421b5d299beecf829cb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4d13628d0bde66b58a828421b5d299beecf829cb"><tt>4d13628</tt></a> ci: exclude Tauri boilerplate from Rust coverage check</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>4d13628</code> on 2026-03-01</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260301.228/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260301.228/laputa_0.20260301.228_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260301.228_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260301.228" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260301.227</h2>
|
||
<p class="release-meta">March 1, 2026 · v0.20260301.227</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2b6000f5d4ff6f61afb025567c202e8093a8759c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2b6000f5d4ff6f61afb025567c202e8093a8759c"><tt>2b6000f</tt></a> fix: use camelCase arg keys for Tauri theme commands (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4008000281" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/160" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/160/hovercard" href="https://github.com/refactoringhq/tolaria/pull/160">#160</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/894cb45779a48d855b74372b7d6df31e453eaddc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/894cb45779a48d855b74372b7d6df31e453eaddc"><tt>894cb45</tt></a> feat: replace Anthropic API with Claude CLI for AI chat and agent panels (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4007993736" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/159" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/159/hovercard" href="https://github.com/refactoringhq/tolaria/pull/159">#159</a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>2b6000f</code> on 2026-03-01</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260301.227/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260301.227/laputa_0.20260301.227_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260301.227_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260301.227" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260301.225</h2>
|
||
<p class="release-meta">March 1, 2026 · v0.20260301.225</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2a1b17f8c6903fb71dae739f0b7c4212f276cdd6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2a1b17f8c6903fb71dae739f0b7c4212f276cdd6"><tt>2a1b17f</tt></a> feat: keyboard-first navigation — menu bar shortcuts, note list nav, inspector Tab/Enter (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4007948660" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/158" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/158/hovercard" href="https://github.com/refactoringhq/tolaria/pull/158">#158</a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>2a1b17f</code> on 2026-03-01</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260301.225/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260301.225/laputa_0.20260301.225_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260301.225_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260301.225" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260301.224</h2>
|
||
<p class="release-meta">March 1, 2026 · v0.20260301.224</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/47ca3cb13c18101960f1a39fa124d9b989c72ec9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/47ca3cb13c18101960f1a39fa124d9b989c72ec9"><tt>47ca3cb</tt></a> fix: move update banner to bottom, white text on blue background</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>47ca3cb</code> on 2026-03-01</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260301.224/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260301.224/laputa_0.20260301.224_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260301.224_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260301.224" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260301.223</h2>
|
||
<p class="release-meta">March 1, 2026 · v0.20260301.223</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li></li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>5fb059d</code> on 2026-03-01</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260301.223/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260301.223/laputa_0.20260301.223_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260301.223_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260301.223" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260301.220</h2>
|
||
<p class="release-meta">March 1, 2026 · v0.20260301.220</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6e99bf7d0355ac68dbbf84476eb2f7a759d12050/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6e99bf7d0355ac68dbbf84476eb2f7a759d12050"><tt>6e99bf7</tt></a> fix(test): mock WebSocket in executeToolViaWs test to avoid jsdom/undici unhandled rejection</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>6e99bf7</code> on 2026-03-01</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260301.220/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260301.220/laputa_0.20260301.220_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260301.220_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260301.220" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260228.219</h2>
|
||
<p class="release-meta">February 28, 2026 · v0.20260228.219</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/669d473a6447c338d2b7efbb6dcc7cec2051ebbc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/669d473a6447c338d2b7efbb6dcc7cec2051ebbc"><tt>669d473</tt></a> fix: make 'New theme' command work in Tauri app (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4005702261" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/156" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/156/hovercard" href="https://github.com/refactoringhq/tolaria/pull/156">#156</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ba1404b808fdad944ebb2a5e4055ae768cfec643/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ba1404b808fdad944ebb2a5e4055ae768cfec643"><tt>ba1404b</tt></a> fix: call Anthropic API directly instead of /api/* dev proxy (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4005702198" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/155" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/155/hovercard" href="https://github.com/refactoringhq/tolaria/pull/155">#155</a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>669d473</code> on 2026-02-28</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.219/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.219/laputa_0.20260228.219_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260228.219_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260228.219" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260228.217</h2>
|
||
<p class="release-meta">February 28, 2026 · v0.20260228.217</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/98314c5106fb8873cd2e6ca4f598e8f72eb471ab/hovercard" href="https://github.com/refactoringhq/tolaria/commit/98314c5106fb8873cd2e6ca4f598e8f72eb471ab"><tt>98314c5</tt></a> docs: require QA on pnpm tauri dev, not browser mode</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>98314c5</code> on 2026-02-28</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.217/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.217/laputa_0.20260228.217_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260228.217_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260228.217" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260228.216</h2>
|
||
<p class="release-meta">February 28, 2026 · v0.20260228.216</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bac5a911c10f93a44862aa1682438e146da744ac/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bac5a911c10f93a44862aa1682438e146da744ac"><tt>bac5a91</tt></a> design: merge theming-system frames into ui-design.pen</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/67155db9ab0f9100f8f4f48814603b7e08d203bf/hovercard" href="https://github.com/refactoringhq/tolaria/commit/67155db9ab0f9100f8f4f48814603b7e08d203bf"><tt>67155db</tt></a> feat: vault-native theming system with live reload (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4005531244" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/154" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/154/hovercard" href="https://github.com/refactoringhq/tolaria/pull/154">#154</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b42a4d3608280ac408dc3acbf35119630400c28c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b42a4d3608280ac408dc3acbf35119630400c28c"><tt>b42a4d3</tt></a> fix: resolve TypeScript build errors in AI agent files</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e29be460c32c7bc37baf451cbd14cd2659805e6c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e29be460c32c7bc37baf451cbd14cd2659805e6c"><tt>e29be46</tt></a> feat: wire AiPanel into EditorRightPanel with undo + coverage exclusions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bcfbc8e00ea07d63e47745fd9ac4f17ffd0b487c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bcfbc8e00ea07d63e47745fd9ac4f17ffd0b487c"><tt>bcfbc8e</tt></a> feat: wire AI agent panel to Claude API with tool calling</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>bac5a91</code> on 2026-02-28</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.216/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.216/laputa_0.20260228.216_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260228.216_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260228.216" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260228.214</h2>
|
||
<p class="release-meta">February 28, 2026 · v0.20260228.214</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/95bcf3b25a542c673a231b3b766337e9876805f1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/95bcf3b25a542c673a231b3b766337e9876805f1"><tt>95bcf3b</tt></a> fix: resolve wikilink paths and show entry title in Getting Started vault (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4005400128" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/153" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/153/hovercard" href="https://github.com/refactoringhq/tolaria/pull/153">#153</a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>95bcf3b</code> on 2026-02-28</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.214/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.214/laputa_0.20260228.214_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260228.214_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260228.214" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260228.213</h2>
|
||
<p class="release-meta">February 28, 2026 · v0.20260228.213</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3fff794d9b8c8d5284220a527518766301a1a331/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3fff794d9b8c8d5284220a527518766301a1a331"><tt>3fff794</tt></a> feat: seed AGENTS.md in Getting Started vault and expose via vault_context MCP tool (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4005358601" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/152" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/152/hovercard" href="https://github.com/refactoringhq/tolaria/pull/152">#152</a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>3fff794</code> on 2026-02-28</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.213/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.213/laputa_0.20260228.213_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260228.213_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260228.213" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260228.212</h2>
|
||
<p class="release-meta">February 28, 2026 · v0.20260228.212</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/de6023547fe39f1e9d07279cf5ced4ada4831713/hovercard" href="https://github.com/refactoringhq/tolaria/commit/de6023547fe39f1e9d07279cf5ced4ada4831713"><tt>de60235</tt></a> feat: auto-initialize git repo on Getting Started vault creation (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4005346702" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/151" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/151/hovercard" href="https://github.com/refactoringhq/tolaria/pull/151">#151</a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>de60235</code> on 2026-02-28</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.212/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.212/laputa_0.20260228.212_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260228.212_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260228.212" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260228.211</h2>
|
||
<p class="release-meta">February 28, 2026 · v0.20260228.211</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0effc563dca9df9cb48cab1d43cbb2f508d61f6c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0effc563dca9df9cb48cab1d43cbb2f508d61f6c"><tt>0effc56</tt></a> fix: drag-and-drop images into editor — add drop overlay and copy-to-attachments (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4005287769" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/150" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/150/hovercard" href="https://github.com/refactoringhq/tolaria/pull/150">#150</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/37ac70f720ca421289654dda2985ddeb3b3e6141/hovercard" href="https://github.com/refactoringhq/tolaria/commit/37ac70f720ca421289654dda2985ddeb3b3e6141"><tt>37ac70f</tt></a> feat: AI agent panel UI — 3-layer panel with action cards and WebSocket activity hook (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4005287718" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/149" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/149/hovercard" href="https://github.com/refactoringhq/tolaria/pull/149">#149</a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>0effc56</code> on 2026-02-28</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.211/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.211/laputa_0.20260228.211_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260228.211_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260228.211" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260228.209</h2>
|
||
<p class="release-meta">February 28, 2026 · v0.20260228.209</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/222f6978739525782e4ab8ba987837639c1b535d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/222f6978739525782e4ab8ba987837639c1b535d"><tt>222f697</tt></a> fix: derive sidebar type sections dynamically from vault entries</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>222f697</code> on 2026-02-28</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.209/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.209/laputa_0.20260228.209_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260228.209_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260228.209" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260228.208</h2>
|
||
<p class="release-meta">February 28, 2026 · v0.20260228.208</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/681554af58e9f2460344d9c15074afc231ee1f76/hovercard" href="https://github.com/refactoringhq/tolaria/commit/681554af58e9f2460344d9c15074afc231ee1f76"><tt>681554a</tt></a> docs: add VISION.md — core principles and long-term direction</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/87bce9d4ccafe3e98115e92fe5488e9e088436af/hovercard" href="https://github.com/refactoringhq/tolaria/commit/87bce9d4ccafe3e98115e92fe5488e9e088436af"><tt>87bce9d</tt></a> fix: tags in properties — X button doesn't reserve space, fades in on hover without expanding pill (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4005235397" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/148" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/148/hovercard" href="https://github.com/refactoringhq/tolaria/pull/148">#148</a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>681554a</code> on 2026-02-28</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.208/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.208/laputa_0.20260228.208_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260228.208_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260228.208" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260228.206</h2>
|
||
<p class="release-meta">February 28, 2026 · v0.20260228.206</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/248774ed132dd05e4f69525f8a9c6285bcf99704/hovercard" href="https://github.com/refactoringhq/tolaria/commit/248774ed132dd05e4f69525f8a9c6285bcf99704"><tt>248774e</tt></a> style: fix rustfmt formatting in lib.rs</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6363e84402003e3d9ed75f7469b78f24e4f19881/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6363e84402003e3d9ed75f7469b78f24e4f19881"><tt>6363e84</tt></a> fix: shift tab bar right when sidebar+notelist collapsed to avoid traffic lights overlap</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>248774e</code> on 2026-02-28</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.206/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.206/laputa_0.20260228.206_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260228.206_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260228.206" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260228.205</h2>
|
||
<p class="release-meta">February 28, 2026 · v0.20260228.205</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8106eb86a833558bbc06580f651e41d23405b126/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8106eb86a833558bbc06580f651e41d23405b126"><tt>8106eb8</tt></a> test: add spawn_ws_bridge test to push Rust coverage above 85%</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7feae25d453e3e04003cbcd6d912748aa6c995ec/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7feae25d453e3e04003cbcd6d912748aa6c995ec"><tt>7feae25</tt></a> docs: update architecture with full MCP server tool surface and auto-registration</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cc08055e0a9b4715b909fb0e40a6cb819e281443/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cc08055e0a9b4715b909fb0e40a6cb819e281443"><tt>cc08055</tt></a> feat: MCP server foundation with full tool surface and auto-registration</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>8106eb8</code> on 2026-02-28</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.205/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.205/laputa_0.20260228.205_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260228.205_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260228.205" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260228.204</h2>
|
||
<p class="release-meta">February 28, 2026 · v0.20260228.204</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c789b49befce42603506ba69fcce68b31a2f3889/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c789b49befce42603506ba69fcce68b31a2f3889"><tt>c789b49</tt></a> docs: add design file for notes-type-icon-search fix</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bccc0ceed46b5101d5936ffd02dbce05e7792a05/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bccc0ceed46b5101d5936ffd02dbce05e7792a05"><tt>bccc0ce</tt></a> fix: show type icon and label for "Note" type in search and autocomplete</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c789b49</code> on 2026-02-28</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.204/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.204/laputa_0.20260228.204_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260228.204_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260228.204" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260228.203</h2>
|
||
<p class="release-meta">February 28, 2026 · v0.20260228.203</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b924ec9b952e3f01fcdcabe3821d1a5e3848c79f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b924ec9b952e3f01fcdcabe3821d1a5e3848c79f"><tt>b924ec9</tt></a> fix: show actual type icons in Properties panel TypeSelector (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4005179254" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/147" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/147/hovercard" href="https://github.com/refactoringhq/tolaria/pull/147">#147</a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>b924ec9</code> on 2026-02-28</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.203/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.203/laputa_0.20260228.203_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260228.203_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260228.203" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260228.202</h2>
|
||
<p class="release-meta">February 28, 2026 · v0.20260228.202</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c56a8c0e7fdbcf82d71787fac8476eb100e302b0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c56a8c0e7fdbcf82d71787fac8476eb100e302b0"><tt>c56a8c0</tt></a> fix: hide type note from note list, make header clickable to access it</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c56a8c0</code> on 2026-02-28</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.202/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.202/laputa_0.20260228.202_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260228.202_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260228.202" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260228.201</h2>
|
||
<p class="release-meta">February 28, 2026 · v0.20260228.201</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c5bcbecf1f86d3450affd4b0501502a1b8d15128/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c5bcbecf1f86d3450affd4b0501502a1b8d15128"><tt>c5bcbec</tt></a> ci: trigger release with GitHub Pages updater endpoint</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5ef4f2d6427eecddfc309980a0c245f22df04187/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5ef4f2d6427eecddfc309980a0c245f22df04187"><tt>5ef4f2d</tt></a> fix: serve latest.json via GitHub Pages for auto-updater endpoint</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c5bcbec</code> on 2026-02-28</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.201/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.201/laputa_0.20260228.201_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260228.201_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260228.201" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260228.199</h2>
|
||
<p class="release-meta">February 28, 2026 · v0.20260228.199</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f52ce5c6187912acd4fa82c235459703159bc7c4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f52ce5c6187912acd4fa82c235459703159bc7c4"><tt>f52ce5c</tt></a> fix: expand tilde in vault paths before passing to git and file system ops</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>f52ce5c</code> on 2026-02-28</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.199/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.199/laputa_0.20260228.199_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260228.199_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260228.199" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260228.198</h2>
|
||
<p class="release-meta">February 28, 2026 · v0.20260228.198</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d83fef67f005a81d0d846ba2267afa56e5b039c6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d83fef67f005a81d0d846ba2267afa56e5b039c6"><tt>d83fef6</tt></a> feat: update app icon (green cloud + home)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8a91d25395f0872107558c93da6d546652c3ab21/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8a91d25395f0872107558c93da6d546652c3ab21"><tt>8a91d25</tt></a> feat: type-aware commands in Command Palette (New/List [Type])</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/77f76a33a4ce72395de23cb82bd4817ae31786ff/hovercard" href="https://github.com/refactoringhq/tolaria/commit/77f76a33a4ce72395de23cb82bd4817ae31786ff"><tt>77f76a3</tt></a> design: command palette type-aware autocomplete mockups</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>d83fef6</code> on 2026-02-28</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.198/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.198/laputa_0.20260228.198_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260228.198_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260228.198" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260228.196</h2>
|
||
<p class="release-meta">February 28, 2026 · v0.20260228.196</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d8aa615ea3457e957ee9ee1d9705c9b2c5377f4f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d8aa615ea3457e957ee9ee1d9705c9b2c5377f4f"><tt>d8aa615</tt></a> fix: search results — type icon on left, type label aligned right (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4004942267" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/138" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/138/hovercard" href="https://github.com/refactoringhq/tolaria/pull/138">#138</a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>d8aa615</code> on 2026-02-28</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.196/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.196/laputa_0.20260228.196_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260228.196_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260228.196" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260228.195</h2>
|
||
<p class="release-meta">February 28, 2026 · v0.20260228.195</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/82dafe93346a48ede8c3d0fb263bb919a287a442/hovercard" href="https://github.com/refactoringhq/tolaria/commit/82dafe93346a48ede8c3d0fb263bb919a287a442"><tt>82dafe9</tt></a> feat: update app icon (tree/house cloud design)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>82dafe9</code> on 2026-02-28</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.195/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.195/laputa_0.20260228.195_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260228.195_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260228.195" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260228.194</h2>
|
||
<p class="release-meta">February 28, 2026 · v0.20260228.194</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/aff56af6aaef6dacc2356720f165ef19482a97af/hovercard" href="https://github.com/refactoringhq/tolaria/commit/aff56af6aaef6dacc2356720f165ef19482a97af"><tt>aff56af</tt></a> design: merge github-oauth-fix frames into ui-design.pen</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4e2fa0d3745ebe23787c345a2dc6ae4d1b7123b5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4e2fa0d3745ebe23787c345a2dc6ae4d1b7123b5"><tt>4e2fa0d</tt></a> fix: inline GitHub OAuth device flow in Connect GitHub modal (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4004626405" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/136" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/136/hovercard" href="https://github.com/refactoringhq/tolaria/pull/136">#136</a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>aff56af</code> on 2026-02-28</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.194/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.194/laputa_0.20260228.194_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260228.194_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260228.194" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260228.192</h2>
|
||
<p class="release-meta">February 28, 2026 · v0.20260228.192</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/465a80d3e150e97fcc9dda4be35778ca24fd5955/hovercard" href="https://github.com/refactoringhq/tolaria/commit/465a80d3e150e97fcc9dda4be35778ca24fd5955"><tt>465a80d</tt></a> style: cargo fmt (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4004584345" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/135" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/135/hovercard" href="https://github.com/refactoringhq/tolaria/pull/135">#135</a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>465a80d</code> on 2026-02-28</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.192/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.192/laputa_0.20260228.192_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260228.192_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260228.192" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260228.191</h2>
|
||
<p class="release-meta">February 28, 2026 · v0.20260228.191</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ce12e3cd6fb37c53387e76c7b91bf44f1700c73a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ce12e3cd6fb37c53387e76c7b91bf44f1700c73a"><tt>ce12e3c</tt></a> fix: use Tauri opener plugin for GitHub OAuth browser launch</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e67eb5e85ef72e21f32463cdb3508ad471dcf028/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e67eb5e85ef72e21f32463cdb3508ad471dcf028"><tt>e67eb5e</tt></a> design: add GitHub OAuth device code UI frames</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>ce12e3c</code> on 2026-02-28</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.191/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.191/laputa_0.20260228.191_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260228.191_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260228.191" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260228.190</h2>
|
||
<p class="release-meta">February 28, 2026 · v0.20260228.190</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c11184b24a03e4f9ebb69311f2a8779dca1fca0d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c11184b24a03e4f9ebb69311f2a8779dca1fca0d"><tt>c11184b</tt></a> ci: trigger release with correct Developer ID certificate</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c11184b</code> on 2026-02-28</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.190/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.190/laputa_0.20260228.190_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260228.190_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260228.190" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260228.189</h2>
|
||
<p class="release-meta">February 28, 2026 · v0.20260228.189</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ee42731ecca0582e688a6f8d7495a558790c8de6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ee42731ecca0582e688a6f8d7495a558790c8de6"><tt>ee42731</tt></a> ci: temporarily disable notarization (awaiting new certificate)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3c57b0ff1a63e9844cd9a486a0277865ffb5a828/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3c57b0ff1a63e9844cd9a486a0277865ffb5a828"><tt>3c57b0f</tt></a> feat: integrate welcome screen with tests and fix App tests</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bd0576c593c01e810209c7a0055be5cadb32a13b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bd0576c593c01e810209c7a0055be5cadb32a13b"><tt>bd0576c</tt></a> feat: add Rust backend for Getting Started vault creation</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/57f0378bab94d393572948b1c0179e5407d5fb10/hovercard" href="https://github.com/refactoringhq/tolaria/commit/57f0378bab94d393572948b1c0179e5407d5fb10"><tt>57f0378</tt></a> docs: add design file for Getting Started vault welcome screens</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1ff342ae6064c35b5ceec4569999dd8ad2773ca2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1ff342ae6064c35b5ceec4569999dd8ad2773ca2"><tt>1ff342a</tt></a> design: merge tags-property-type + zoom-shortcuts frames into ui-design.pen</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/da55318979617884a53208dbf316bb50f054e437/hovercard" href="https://github.com/refactoringhq/tolaria/commit/da55318979617884a53208dbf316bb50f054e437"><tt>da55318</tt></a> fix: useRef type for debounce timer (TS 5.9 compatibility)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/384cffec48851f038eb5efe79c869f20e15289e6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/384cffec48851f038eb5efe79c869f20e15289e6"><tt>384cffe</tt></a> feat: zoom in/out keyboard shortcuts (Cmd+=, Cmd+-, Cmd+0) (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4004514958" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/134" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/134/hovercard" href="https://github.com/refactoringhq/tolaria/pull/134">#134</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c0ce5064d82b3bba2a59fe072e0b07db9138eaec/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c0ce5064d82b3bba2a59fe072e0b07db9138eaec"><tt>c0ce506</tt></a> fix: use number | undefined for debounce timer ref (TS strict compat)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e9c869075a1fe6f8b893946f17966179fd8880ff/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e9c869075a1fe6f8b893946f17966179fd8880ff"><tt>e9c8690</tt></a> feat: add tags (multi-select) property type (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4004504802" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/133" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/133/hovercard" href="https://github.com/refactoringhq/tolaria/pull/133">#133</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f881c13b6231194ade669137ad163f3d814bb7a9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f881c13b6231194ade669137ad163f3d814bb7a9"><tt>f881c13</tt></a> design: merge relationship-x-cosmetic frames into ui-design.pen</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/92c7b003d9792768ccb8223c4b856011b1d91930/hovercard" href="https://github.com/refactoringhq/tolaria/commit/92c7b003d9792768ccb8223c4b856011b1d91930"><tt>92c7b00</tt></a> fix: useRef type for debounce timer (pre-existing build error on main) (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4004470744" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/132" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/132/hovercard" href="https://github.com/refactoringhq/tolaria/pull/132">#132</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cafdc84260591a7c27d2891ebf05fcfa47ffe208/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cafdc84260591a7c27d2891ebf05fcfa47ffe208"><tt>cafdc84</tt></a> fix: remove invalid notarization field from tauri.conf.json (Tauri v2 uses env vars)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d87c80ece4aa64d11247c9a0a057b5fe2848a5c2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d87c80ece4aa64d11247c9a0a057b5fe2848a5c2"><tt>d87c80e</tt></a> ci: fix notarization — use Tauri v2 env vars (APPLE_CERTIFICATE + APPLE_SIGNING_IDENTITY)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a67e0bd221bf690c0b48aa3686046b2ddd47b6d8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a67e0bd221bf690c0b48aa3686046b2ddd47b6d8"><tt>a67e0bd</tt></a> ci: trigger release with notarization</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ed8a51aa8f776b175b1bbbc3af6041640e7bc756/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ed8a51aa8f776b175b1bbbc3af6041640e7bc756"><tt>ed8a51a</tt></a> ci: add Apple notarization to release workflow (awaiting certificate)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fb763f53389d076c15da5528bd511d114ed606ae/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fb763f53389d076c15da5528bd511d114ed606ae"><tt>fb763f5</tt></a> feat: sync note title with H1 heading (predictive title)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a18a19166bd250e66749629cfb873beb1fdca8cc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a18a19166bd250e66749629cfb873beb1fdca8cc"><tt>a18a191</tt></a> fix: property panel responsive layout + status dropdown click regression</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1efdbfb97843966a8b3371ca3e20502806137d14/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1efdbfb97843966a8b3371ca3e20502806137d14"><tt>1efdbfb</tt></a> fix: properties panel bar height matches breadcrumb bar</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/233497cb5ce9eeebf70f704a7e7d351f261ce8ec/hovercard" href="https://github.com/refactoringhq/tolaria/commit/233497cb5ce9eeebf70f704a7e7d351f261ce8ec"><tt>233497c</tt></a> fix: search results — type icon on left, type label aligned right</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6ff3a1929a09f2f522de29c1f0887fafe264e289/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6ff3a1929a09f2f522de29c1f0887fafe264e289"><tt>6ff3a19</tt></a> fix: reverse relationships — remove header, arrow prefix, dotted underline on hover</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/42b463e07a2ee5b62a53d63a1eb4e2fad589ad07/hovercard" href="https://github.com/refactoringhq/tolaria/commit/42b463e07a2ee5b62a53d63a1eb4e2fad589ad07"><tt>42b463e</tt></a> fix: type selector dropdown shows colored icons per type</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a6b92d5248fae94a4433ad524c86ebb169342ed0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a6b92d5248fae94a4433ad524c86ebb169342ed0"><tt>a6b92d5</tt></a> fix: relationship item input height consistency + X button overlay on hover</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>ee42731</code> on 2026-02-28</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.189/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.189/laputa_0.20260228.189_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260228.189_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260228.189" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260228.168</h2>
|
||
<p class="release-meta">February 28, 2026 · v0.20260228.168</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8c574882e530a004ad1ca7a6c146c4cbf5184f00/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8c574882e530a004ad1ca7a6c146c4cbf5184f00"><tt>8c57488</tt></a> fix: tags X button appears on hover without expanding pill width</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>8c57488</code> on 2026-02-28</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.168/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.168/laputa_0.20260228.168_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260228.168_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260228.168" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260228.167</h2>
|
||
<p class="release-meta">February 28, 2026 · v0.20260228.167</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bb0a5c5c981d867cf5679c02dfd6e4af26b9db3c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bb0a5c5c981d867cf5679c02dfd6e4af26b9db3c"><tt>bb0a5c5</tt></a> fix: make new note editor immediately interactive</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>bb0a5c5</code> on 2026-02-28</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.167/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260228.167/laputa_0.20260228.167_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260228.167_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260228.167" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260227.166</h2>
|
||
<p class="release-meta">February 27, 2026 · v0.20260227.166</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cd1246d43cdd54793f1d4dc18203d17ff5c07428/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cd1246d43cdd54793f1d4dc18203d17ff5c07428"><tt>cd1246d</tt></a> fix: multiselect uses only Shift+click; add Cmd+Del/Cmd+E bulk actions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/92c8dbd1bf82f52fc1985b697d92d448d6ffc7e6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/92c8dbd1bf82f52fc1985b697d92d448d6ffc7e6"><tt>92c8dbd</tt></a> fix: restore status dropdown click + color picker per status value</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4672fcb5c0c537dfc9b4b55e381018dc66195592/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4672fcb5c0c537dfc9b4b55e381018dc66195592"><tt>4672fcb</tt></a> fix: add traffic light clearance to note list header when sidebar is collapsed</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>cd1246d</code> on 2026-02-27</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260227.166/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260227.166/laputa_0.20260227.166_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260227.166_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260227.166" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Laputa 0.20260227.163</h2>
|
||
<p class="release-meta">February 27, 2026 · v0.20260227.163</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d962cd9eae2a8c12e0857d07747ef3044aea266d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d962cd9eae2a8c12e0857d07747ef3044aea266d"><tt>d962cd9</tt></a> fix: update Tauri signing pubkey (new keypair, password stored securely)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/88a8035c45fc3e7354309e76e10c4f503e1059b4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/88a8035c45fc3e7354309e76e10c4f503e1059b4"><tt>88a8035</tt></a> fix: update Tauri signing pubkey to match new keypair (empty password)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/035bd7f63032a45d77e6cc2f646b8da954baa1cf/hovercard" href="https://github.com/refactoringhq/tolaria/commit/035bd7f63032a45d77e6cc2f646b8da954baa1cf"><tt>035bd7f</tt></a> fix: update Tauri signing pubkey (regenerated keypair with empty password)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9ce890576b308b11e6dde468c4a34a992e3eece2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9ce890576b308b11e6dde468c4a34a992e3eece2"><tt>9ce8905</tt></a> fix: use TAURI_KEY_PASSWORD secret for signing (was hardcoded empty string)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f5697506663aaec7fefd25b8384bfd48e1e47c06/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f5697506663aaec7fefd25b8384bfd48e1e47c06"><tt>f569750</tt></a> chore: add .claude-done for pencil-ui-design-light-mode verification</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9cfa8a7ca287e13230a48be60d2a125e3282e57d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9cfa8a7ca287e13230a48be60d2a125e3282e57d"><tt>9cfa8a7</tt></a> design: add theme Light to 25 dark-mode frames, remove before variants</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/918b204d3db5a51d42b4a3ad499d7ead81f1ad60/hovercard" href="https://github.com/refactoringhq/tolaria/commit/918b204d3db5a51d42b4a3ad499d7ead81f1ad60"><tt>918b204</tt></a> design: fix search panel overlay layout positioning</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/177e593e9036b65ef3c8dcd44b12ed6944f45eb3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/177e593e9036b65ef3c8dcd44b12ed6944f45eb3"><tt>177e593</tt></a> fix: use portal-based positioning for property panel dropdowns (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4002119303" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/130" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/130/hovercard" href="https://github.com/refactoringhq/tolaria/pull/130">#130</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/959e4975e390717b053342a6e95679e11d72f721/hovercard" href="https://github.com/refactoringhq/tolaria/commit/959e4975e390717b053342a6e95679e11d72f721"><tt>959e497</tt></a> design: update new-note-creation.pen for unsaved state</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a2f1476b982295905e325166480b095b6b0d9adf/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a2f1476b982295905e325166480b095b6b0d9adf"><tt>a2f1476</tt></a> feat: in-memory unsaved state for new notes (Cmd+N)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9d5c90f5c065e41cbd298ed12afec205ade1af30/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9d5c90f5c065e41cbd298ed12afec205ade1af30"><tt>9d5c90f</tt></a> feat: replace search result snippet with metadata subtitle</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e91a7ae7f69da46546e7b2e10c89d01e84683749/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e91a7ae7f69da46546e7b2e10c89d01e84683749"><tt>e91a7ae</tt></a> design: search results subtitle with metadata frames</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/47e38ba6b0224b6d95a8c0fc79039188c7f5b64e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/47e38ba6b0224b6d95a8c0fc79039188c7f5b64e"><tt>47e38ba</tt></a> chore: add src-tauri/target to .gitignore</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cbb88b34b80e605ccfe7059cb68ab1bd35070543/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cbb88b34b80e605ccfe7059cb68ab1bd35070543"><tt>cbb88b3</tt></a> fix: remove accidental src-tauri/target symlink from repo</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/52b1693f43911322f052ce46131f0d025f2ac7da/hovercard" href="https://github.com/refactoringhq/tolaria/commit/52b1693f43911322f052ce46131f0d025f2ac7da"><tt>52b1693</tt></a> fix: property dropdowns adapt to narrow panel width</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3d784ce740d0b1b10ffbd899590a7f2168dbd008/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3d784ce740d0b1b10ffbd899590a7f2168dbd008"><tt>3d784ce</tt></a> fix: unify status dropdown and make color swatch visible (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4001681162" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/128" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/128/hovercard" href="https://github.com/refactoringhq/tolaria/pull/128">#128</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/480d124a0e8053d1a603fdcf227c727b7f5b4773/hovercard" href="https://github.com/refactoringhq/tolaria/commit/480d124a0e8053d1a603fdcf227c727b7f5b4773"><tt>480d124</tt></a> fix: multiselect range includes anchor note and prevents text selection (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4001680859" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/127" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/127/hovercard" href="https://github.com/refactoringhq/tolaria/pull/127">#127</a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b15a4d143cae9699092e65a2a811373825c384eb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b15a4d143cae9699092e65a2a811373825c384eb"><tt>b15a4d1</tt></a> fix: raise property type dropdown z-index above BlockNote editor</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>d962cd9</code> on 2026-02-27</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260227.163/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/v0.20260227.163/laputa_0.20260227.163_aarch64.dmg" target="_blank" rel="noreferrer">laputa_0.20260227.163_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.20260227.163" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--stable">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>First alpha release</h2>
|
||
<p class="release-meta">February 27, 2026 · v0.1.0</p>
|
||
</div>
|
||
<span class="release-channel">Stable</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed</h2>
|
||
<ul>
|
||
<li>feat: leaner note creation — immediate creation + fix + buttons by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3974168148" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/1" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/1/hovercard" href="https://github.com/refactoringhq/tolaria/pull/1">#1</a></li>
|
||
<li>feat: rename note by double-clicking tab — fix editor content disappearing by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3974169563" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/2" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/2/hovercard" href="https://github.com/refactoringhq/tolaria/pull/2">#2</a></li>
|
||
<li>test: bring frontend coverage to 84% (was 47%) by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3974221061" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/3" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/3/hovercard" href="https://github.com/refactoringhq/tolaria/pull/3">#3</a></li>
|
||
<li>fix: resolve all ESLint errors — pnpm lint exits 0 cleanly by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3974491414" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/5" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/5/hovercard" href="https://github.com/refactoringhq/tolaria/pull/5">#5</a></li>
|
||
<li>fix: note mutation propagation — sync in-memory entries after property/rename changes by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3976759847" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/12" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/12/hovercard" href="https://github.com/refactoringhq/tolaria/pull/12">#12</a></li>
|
||
<li>feat: vault from GitHub — create or clone a vault from a GitHub repo by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3976760442" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/13" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/13/hovercard" href="https://github.com/refactoringhq/tolaria/pull/13">#13</a></li>
|
||
<li>feat: collapsible sidebar and note list (Cmd+1/2/3) by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3976699874" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/11" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/11/hovercard" href="https://github.com/refactoringhq/tolaria/pull/11">#11</a></li>
|
||
<li>feat: auto-build, GitHub Release, and in-app updater by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3977285984" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/14" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/14/hovercard" href="https://github.com/refactoringhq/tolaria/pull/14">#14</a></li>
|
||
<li>feat: auto-build, GitHub Release, and in-app updater by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3978349070" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/15" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/15/hovercard" href="https://github.com/refactoringhq/tolaria/pull/15">#15</a></li>
|
||
<li>feat: Properties inspector — editable vs read-only distinction by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3979581754" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/17" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/17/hovercard" href="https://github.com/refactoringhq/tolaria/pull/17">#17</a></li>
|
||
<li>fix: remove broken auto-save, add explicit Cmd+S save, fix rename-before-save by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3979692842" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/19" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/19/hovercard" href="https://github.com/refactoringhq/tolaria/pull/19">#19</a></li>
|
||
<li>feat: Rimuovi proprietà 'Is a' — type: come chiave canonica by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3979580714" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/16" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/16/hovercard" href="https://github.com/refactoringhq/tolaria/pull/16">#16</a></li>
|
||
<li>feat: click opens note in current tab, Cmd+Click opens new tab by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3979819094" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/22" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/22/hovercard" href="https://github.com/refactoringhq/tolaria/pull/22">#22</a></li>
|
||
<li>fix: vault picker — aggiungi opzione crea vault locale by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3979582123" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/18" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/18/hovercard" href="https://github.com/refactoringhq/tolaria/pull/18">#18</a></li>
|
||
<li>feat: bidirectional relationships (Referenced By panel) by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3979922011" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/25" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/25/hovercard" href="https://github.com/refactoringhq/tolaria/pull/25">#25</a></li>
|
||
<li>feat: color wikilinks by destination note type by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3979922203" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/26" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/26/hovercard" href="https://github.com/refactoringhq/tolaria/pull/26">#26</a></li>
|
||
<li>perf: virtual list rendering for NoteList (react-virtuoso, 9000+ notes) by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3979982347" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/27" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/27/hovercard" href="https://github.com/refactoringhq/tolaria/pull/27">#27</a></li>
|
||
<li>feat: modified notes indicator (orange dot in NoteList, TabBar, StatusBar) by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3980000705" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/28" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/28/hovercard" href="https://github.com/refactoringhq/tolaria/pull/28">#28</a></li>
|
||
<li>feat: replace GitHub token field with OAuth device flow login by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3979725853" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/20" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/20/hovercard" href="https://github.com/refactoringhq/tolaria/pull/20">#20</a></li>
|
||
<li>feat: drag & drop image support in editor by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3979819390" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/23" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/23/hovercard" href="https://github.com/refactoringhq/tolaria/pull/23">#23</a></li>
|
||
<li>fix: commit & push now saves pending content and refreshes modified files by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3979819625" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/24" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/24/hovercard" href="https://github.com/refactoringhq/tolaria/pull/24">#24</a></li>
|
||
<li>Fix: wikilink underline follows type color by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3980173165" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/30" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/30/hovercard" href="https://github.com/refactoringhq/tolaria/pull/30">#30</a></li>
|
||
<li>refactor: split vault.rs into focused submodules (CodeScene 7.29 → 10.0) by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3979755961" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/21" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/21/hovercard" href="https://github.com/refactoringhq/tolaria/pull/21">#21</a></li>
|
||
<li>fix: image upload regression — simplify useImageDrop to not duplicate BlockNote upload by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3980166218" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/29" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/29/hovercard" href="https://github.com/refactoringhq/tolaria/pull/29">#29</a></li>
|
||
<li>fix: remove broken Create New Vault button, unify with Open Local Folder by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3980586894" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/34" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/34/hovercard" href="https://github.com/refactoringhq/tolaria/pull/34">#34</a></li>
|
||
<li>fix: drag-and-drop tab order persistence by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3982664420" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/35" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/35/hovercard" href="https://github.com/refactoringhq/tolaria/pull/35">#35</a></li>
|
||
<li>fix: surface actual error messages in GitHub OAuth login flow by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3982841215" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/36" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/36/hovercard" href="https://github.com/refactoringhq/tolaria/pull/36">#36</a></li>
|
||
<li>fix: refresh dirty state after rename so indicator reflects reality by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3982996688" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/37" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/37/hovercard" href="https://github.com/refactoringhq/tolaria/pull/37">#37</a></li>
|
||
<li>fix: exclude YAML frontmatter from word count by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3983167323" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/39" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/39/hovercard" href="https://github.com/refactoringhq/tolaria/pull/39">#39</a></li>
|
||
<li>fix: require 2+ chars before showing wikilink autocomplete, limit to 20 results by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3983092037" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/38" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/38/hovercard" href="https://github.com/refactoringhq/tolaria/pull/38">#38</a></li>
|
||
<li>fix: add 1px inset border between macOS window frame and app content by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3983425997" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/40" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/40/hovercard" href="https://github.com/refactoringhq/tolaria/pull/40">#40</a></li>
|
||
<li>feat: editable relations in Inspector panel by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3983617948" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/41" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/41/hovercard" href="https://github.com/refactoringhq/tolaria/pull/41">#41</a></li>
|
||
<li>feat: URL properties open in browser on click, underline on hover by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3983841645" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/44" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/44/hovercard" href="https://github.com/refactoringhq/tolaria/pull/44">#44</a></li>
|
||
<li>feat: editable type picker in Properties panel by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3983760213" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/42" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/42/hovercard" href="https://github.com/refactoringhq/tolaria/pull/42">#42</a></li>
|
||
<li>refactor: raise CodeScene code health threshold to 9.2 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3983922133" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/46" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/46/hovercard" href="https://github.com/refactoringhq/tolaria/pull/46">#46</a></li>
|
||
<li>fix: use consistent 12px text size for property values in Properties panel by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3983834484" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/43" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/43/hovercard" href="https://github.com/refactoringhq/tolaria/pull/43">#43</a></li>
|
||
<li>feat: Changes view — clicking N pending shows modified notes by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3983895324" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/45" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/45/hovercard" href="https://github.com/refactoringhq/tolaria/pull/45">#45</a></li>
|
||
<li>feat: expand icon picker to 290 Phosphor icons with search and scroll by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3984031861" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/47" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/47/hovercard" href="https://github.com/refactoringhq/tolaria/pull/47">#47</a></li>
|
||
<li>feat: distinguish new notes (green dot) from modified notes (orange dot) by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3984279881" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/48" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/48/hovercard" href="https://github.com/refactoringhq/tolaria/pull/48">#48</a></li>
|
||
<li>fix: use type-defined colors and icons in Relations/Backlinks/ReferencedBy panels by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3985899355" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/49" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/49/hovercard" href="https://github.com/refactoringhq/tolaria/pull/49">#49</a></li>
|
||
<li>fix: use type-defined colors and icons in Relations/Backlinks/ReferencedBy panels by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3985931612" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/50" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/50/hovercard" href="https://github.com/refactoringhq/tolaria/pull/50">#50</a></li>
|
||
<li>fix: deduplicate autocomplete suggestions and fix arrow-key navigation by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3985934889" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/54" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/54/hovercard" href="https://github.com/refactoringhq/tolaria/pull/54">#54</a></li>
|
||
<li>fix: derive green pallino from git status instead of in-memory tracker by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3985934442" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/52" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/52/hovercard" href="https://github.com/refactoringhq/tolaria/pull/52">#52</a></li>
|
||
<li>fix: use Tauri opener plugin for URL property clicks by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3985934041" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/51" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/51/hovercard" href="https://github.com/refactoringhq/tolaria/pull/51">#51</a></li>
|
||
<li>fix: rename fails on empty notes — handle empty frontmatter block by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3985948553" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/55" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/55/hovercard" href="https://github.com/refactoringhq/tolaria/pull/55">#55</a></li>
|
||
<li>fix: apply text-[12px] to URL values in Properties panel by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3985955170" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/56" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/56/hovercard" href="https://github.com/refactoringhq/tolaria/pull/56">#56</a></li>
|
||
<li>fix: align Type row padding with other property rows in Properties panel by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3985957215" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/57" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/57/hovercard" href="https://github.com/refactoringhq/tolaria/pull/57">#57</a></li>
|
||
<li>fix: debounce Cmd+N to prevent slow note creation on rapid keystrokes by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3986041607" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/58" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/58/hovercard" href="https://github.com/refactoringhq/tolaria/pull/58">#58</a></li>
|
||
<li>fix: pass modifiedFiles to NoteList so Changes view filters correctly by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3985934811" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/53" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/53/hovercard" href="https://github.com/refactoringhq/tolaria/pull/53">#53</a></li>
|
||
<li>fix: exclude title heading and wikilinks from word count by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3986202676" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/59" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/59/hovercard" href="https://github.com/refactoringhq/tolaria/pull/59">#59</a></li>
|
||
<li>feat: flat list autocomplete with type badge by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3986232255" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/60" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/60/hovercard" href="https://github.com/refactoringhq/tolaria/pull/60">#60</a></li>
|
||
<li>feat: command palette (Cmd+K) — quick actions and navigation by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3986232568" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/61" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/61/hovercard" href="https://github.com/refactoringhq/tolaria/pull/61">#61</a></li>
|
||
<li>refactor: extract hooks from App.tsx to improve code health (8.95 → 10.0) by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3986311362" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/62" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/62/hovercard" href="https://github.com/refactoringhq/tolaria/pull/62">#62</a></li>
|
||
<li>refactor: improve code health in github.rs, mock-tauri.ts, lib.rs by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3986317443" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/63" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/63/hovercard" href="https://github.com/refactoringhq/tolaria/pull/63">#63</a></li>
|
||
<li>refactor: split mock-tauri.ts into focused modules (8.81 → 10.0) by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3986684759" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/65" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/65/hovercard" href="https://github.com/refactoringhq/tolaria/pull/65">#65</a></li>
|
||
<li>fix: relation chips now show type color instead of default blue by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3989620692" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/68" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/68/hovercard" href="https://github.com/refactoringhq/tolaria/pull/68">#68</a></li>
|
||
<li>fix: add error recovery to optimistic note creation by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3989639362" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/69" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/69/hovercard" href="https://github.com/refactoringhq/tolaria/pull/69">#69</a></li>
|
||
<li>feat: person mention — @mention autocomplete linking to Person entries by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3989369017" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/66" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/66/hovercard" href="https://github.com/refactoringhq/tolaria/pull/66">#66</a></li>
|
||
<li>feat: full-text search with qmd backend and SearchPanel UI (Cmd+Shift+F) by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3986318598" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/64" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/64/hovercard" href="https://github.com/refactoringhq/tolaria/pull/64">#64</a></li>
|
||
<li>fix: remove double border-radius causing rounded corners below macOS title bar by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3990158072" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/72" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/72/hovercard" href="https://github.com/refactoringhq/tolaria/pull/72">#72</a></li>
|
||
<li>fix: backlinks update reactively when wiki-links are added or removed by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3989999224" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/70" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/70/hovercard" href="https://github.com/refactoringhq/tolaria/pull/70">#70</a></li>
|
||
<li>fix: restore Cmd+1/2/3 layout shortcuts (regression from App.tsx refactor) by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3990057010" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/71" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/71/hovercard" href="https://github.com/refactoringhq/tolaria/pull/71">#71</a></li>
|
||
<li>fix: allow standard text shortcuts in command palette input by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3990179862" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/73" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/73/hovercard" href="https://github.com/refactoringhq/tolaria/pull/73">#73</a></li>
|
||
<li>feat: relations autocomplete shows note type badges (matching wiki-link UX) by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3990318956" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/74" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/74/hovercard" href="https://github.com/refactoringhq/tolaria/pull/74">#74</a></li>
|
||
<li>fix: show type label for all notes in wiki-link autocomplete by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3990321585" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/76" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/76/hovercard" href="https://github.com/refactoringhq/tolaria/pull/76">#76</a></li>
|
||
<li>ci: switch test job from macos-latest to self-hosted runner by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3989388427" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/67" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/67/hovercard" href="https://github.com/refactoringhq/tolaria/pull/67">#67</a></li>
|
||
<li>feat: Unify note search/autocomplete into a single reusable component by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3990467335" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/78" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/78/hovercard" href="https://github.com/refactoringhq/tolaria/pull/78">#78</a></li>
|
||
<li>feat: back/forward navigation between opened notes by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3990321095" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/75" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/75/hovercard" href="https://github.com/refactoringhq/tolaria/pull/75">#75</a></li>
|
||
<li>feat: populate macOS menu bar with native menus (File, Edit, View, Window) by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3990427769" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/77" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/77/hovercard" href="https://github.com/refactoringhq/tolaria/pull/77">#77</a></li>
|
||
<li>feat: unified search panel — progressive keyword+semantic results by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3991631353" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/80" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/80/hovercard" href="https://github.com/refactoringhq/tolaria/pull/80">#80</a></li>
|
||
<li>perf: speed up Cmd+N note creation from ~150ms to ~16ms by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3991656736" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/81" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/81/hovercard" href="https://github.com/refactoringhq/tolaria/pull/81">#81</a></li>
|
||
<li>refactor: reorganize ui-design.pen — 65 frames into logical groups by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3992077491" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/86" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/86/hovercard" href="https://github.com/refactoringhq/tolaria/pull/86">#86</a></li>
|
||
<li>feat: smart property display — type-aware rendering with display mode override by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3991814342" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/83" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/83/hovercard" href="https://github.com/refactoringhq/tolaria/pull/83">#83</a></li>
|
||
<li>feat: auto-pull vault changes from Git (background sync + conflict handling) by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3990621199" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/79" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/79/hovercard" href="https://github.com/refactoringhq/tolaria/pull/79">#79</a></li>
|
||
<li>feat: darken title bar headers for visual separation from content by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3991815502" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/85" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/85/hovercard" href="https://github.com/refactoringhq/tolaria/pull/85">#85</a></li>
|
||
<li>fix: deduplicate inspector panels (Relations, Backlinks, Referenced By) by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3991656984" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/82" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/82/hovercard" href="https://github.com/refactoringhq/tolaria/pull/82">#82</a></li>
|
||
<li>fix: resolve custom type color and icon in all autocomplete contexts by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3991815084" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/84" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/84/hovercard" href="https://github.com/refactoringhq/tolaria/pull/84">#84</a></li>
|
||
<li>fix: restore properties panel header height to match tab bar by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3994120183" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/87" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/87/hovercard" href="https://github.com/refactoringhq/tolaria/pull/87">#87</a></li>
|
||
<li>perf: defer vault entries update via startTransition for instant tab creation by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3994224057" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/90" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/90/hovercard" href="https://github.com/refactoringhq/tolaria/pull/90">#90</a></li>
|
||
<li>feat: status property — Notion-style dropdown with color chips by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3994545922" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/97" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/97/hovercard" href="https://github.com/refactoringhq/tolaria/pull/97">#97</a></li>
|
||
<li>feat: redesign Add Property as inline horizontal form with type selector by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3994834002" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/100" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/100/hovercard" href="https://github.com/refactoringhq/tolaria/pull/100">#100</a></li>
|
||
<li>feat: structured design system in ui-design.pen by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3994403338" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/95" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/95/hovercard" href="https://github.com/refactoringhq/tolaria/pull/95">#95</a></li>
|
||
<li>feat: note type labels — use light type color background by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3994391442" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/93" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/93/hovercard" href="https://github.com/refactoringhq/tolaria/pull/93">#93</a></li>
|
||
<li>feat: replace custom date picker with shadcn/ui Calendar + Popover by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3994682114" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/98" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/98/hovercard" href="https://github.com/refactoringhq/tolaria/pull/98">#98</a></li>
|
||
<li>design: add full-layout context frames to ui-design.pen by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3994541798" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/96" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/96/hovercard" href="https://github.com/refactoringhq/tolaria/pull/96">#96</a></li>
|
||
<li>revert: remove titlebar color darkening — superseded by custom drag region by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3994126975" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/88" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/88/hovercard" href="https://github.com/refactoringhq/tolaria/pull/88">#88</a></li>
|
||
<li>feat: git status bar — show last commit link, remove branch name by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3994391231" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/92" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/92/hovercard" href="https://github.com/refactoringhq/tolaria/pull/92">#92</a></li>
|
||
<li>fix: hide empty Backlinks, Relations, and Referenced By sections by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3994688930" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/99" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/99/hovercard" href="https://github.com/refactoringhq/tolaria/pull/99">#99</a></li>
|
||
<li>feat: note subtitle — show metadata (date + word count) by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3994391629" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/94" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/94/hovercard" href="https://github.com/refactoringhq/tolaria/pull/94">#94</a></li>
|
||
<li>test: fix 5 failing tests after react-day-picker addition by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3998094989" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/101" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/101/hovercard" href="https://github.com/refactoringhq/tolaria/pull/101">#101</a></li>
|
||
<li>refactor: extract useEditorTabSwap hook from Editor by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3999296916" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/102" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/102/hovercard" href="https://github.com/refactoringhq/tolaria/pull/102">#102</a></li>
|
||
<li>fix: remove duplicate type icon in add property form by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4000450600" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/107" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/107/hovercard" href="https://github.com/refactoringhq/tolaria/pull/107">#107</a></li>
|
||
<li>feat: type-aware property value inputs (date picker, boolean toggle, status dropdown) by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4000589264" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/110" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/110/hovercard" href="https://github.com/refactoringhq/tolaria/pull/110">#110</a></li>
|
||
<li>feat: new note creation — unsaved/in-memory state before first save by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4000724716" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/112" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/112/hovercard" href="https://github.com/refactoringhq/tolaria/pull/112">#112</a></li>
|
||
<li>feat: by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4001065228" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/117" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/117/hovercard" href="https://github.com/refactoringhq/tolaria/pull/117">#117</a></li>
|
||
<li>feat: add multi-select notes with bulk archive and trash actions by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4001068292" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/125" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/125/hovercard" href="https://github.com/refactoringhq/tolaria/pull/125">#125</a></li>
|
||
<li>refactor: extract SearchResultItem and SearchResultsList from SearchContent by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4001067953" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/124" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/124/hovercard" href="https://github.com/refactoringhq/tolaria/pull/124">#124</a></li>
|
||
<li>refactor: clean up ui-design.pen — remove befores, integrate design files by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4001066851" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/122" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/122/hovercard" href="https://github.com/refactoringhq/tolaria/pull/122">#122</a></li>
|
||
<li>refactor: decompose Editor.tsx, NoteList.tsx, Sidebar.tsx — CodeScene hotspots by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4001079409" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/126" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/126/hovercard" href="https://github.com/refactoringhq/tolaria/pull/126">#126</a></li>
|
||
<li>fix: unify type selector dropdown to match add-property style by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4001067188" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/123" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/123/hovercard" href="https://github.com/refactoringhq/tolaria/pull/123">#123</a></li>
|
||
<li>fix: revert notelist subtitle to show snippet instead of metadata by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4001065590" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/118" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/118/hovercard" href="https://github.com/refactoringhq/tolaria/pull/118">#118</a></li>
|
||
<li>feat: status color picker — assign persistent color per status value by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4001066171" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/120" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/120/hovercard" href="https://github.com/refactoringhq/tolaria/pull/120">#120</a></li>
|
||
</ul>
|
||
<h2>New Contributors</h2>
|
||
<ul>
|
||
<li><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LucaRonin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LucaRonin">@LucaRonin</a> made their first contribution in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3974168148" data-permission-text="Title is private" data-url="https://github.com/refactoringhq/tolaria/issues/1" data-hovercard-type="pull_request" data-hovercard-url="/refactoringhq/tolaria/pull/1/hovercard" href="https://github.com/refactoringhq/tolaria/pull/1">#1</a></li>
|
||
</ul>
|
||
<p><strong>Full Changelog</strong>: <a href="https://github.com/refactoringhq/laputa-app/commits/v0.1.0">https://github.com/refactoringhq/laputa-app/commits/v0.1.0</a></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/tag/v0.1.0" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
</section>
|
||
|
||
<section
|
||
id="panel-alpha"
|
||
class="release-panel"
|
||
role="tabpanel"
|
||
tabindex="0"
|
||
aria-labelledby="tab-alpha"
|
||
data-release-panel="alpha" hidden
|
||
>
|
||
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.23.2</h2>
|
||
<p class="release-meta">April 23, 2026 · alpha-v2026.4.23-alpha.0002</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c4c6bb6c573673c5275f043a038c1e4ab747d31d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c4c6bb6c573673c5275f043a038c1e4ab747d31d"><tt>c4c6bb6</tt></a> fix: restore folder row toggle</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c4c6bb6c</code> on 2026-04-23</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.23-alpha.0002/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.23-alpha.0002" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.23.1</h2>
|
||
<p class="release-meta">April 23, 2026 · alpha-v2026.4.23-alpha.0001</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/35dd2dd47bfc6e4c6ff191cde2481dbadadc9409/hovercard" href="https://github.com/refactoringhq/tolaria/commit/35dd2dd47bfc6e4c6ff191cde2481dbadadc9409"><tt>35dd2dd</tt></a> docs: add/update ADR for note retargeting (guard — from commit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2c9361d7046d8d99c5d8d345562ebdf65d19413c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2c9361d7046d8d99c5d8d345562ebdf65d19413c"><tt>2c9361d</tt></a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>35dd2dd4</code> on 2026-04-23</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.23-alpha.0001/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.23-alpha.0001" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.22.13</h2>
|
||
<p class="release-meta">April 22, 2026 · alpha-v2026.4.22-alpha.0013</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/89141bae14b6fe86f98e9cc5c941afd013fbf8c6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/89141bae14b6fe86f98e9cc5c941afd013fbf8c6"><tt>89141ba</tt></a> chore: ratchet codescene thresholds</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2b9294f88439c6a2dc81276ea61f8684dcfc0a5a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2b9294f88439c6a2dc81276ea61f8684dcfc0a5a"><tt>2b9294f</tt></a> style: format note move backend</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a756af54ec8c594d8fe039f8e1d0c7a1749b8615/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a756af54ec8c594d8fe039f8e1d0c7a1749b8615"><tt>a756af5</tt></a> fix: keep note drop targets active during drag</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b01b156dfb323d6bbda318d5b50ee490fd6acef8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b01b156dfb323d6bbda318d5b50ee490fd6acef8"><tt>b01b156</tt></a> fix: align folder rows with sidebar items</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2c9361d7046d8d99c5d8d345562ebdf65d19413c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2c9361d7046d8d99c5d8d345562ebdf65d19413c"><tt>2c9361d</tt></a> feat: retarget notes to types and folders</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>89141bae</code> on 2026-04-22</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.22-alpha.0013/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.22-alpha.0013" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.22.12</h2>
|
||
<p class="release-meta">April 22, 2026 · alpha-v2026.4.22-alpha.0012</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a6a727a4c06f91cf899f00db26f42425d0994850/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a6a727a4c06f91cf899f00db26f42425d0994850"><tt>a6a727a</tt></a> fix: align inspector create-type typing</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bf13eed3ab4e3627683100be755f9364fc3fc599/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bf13eed3ab4e3627683100be755f9364fc3fc599"><tt>bf13eed</tt></a> fix: handle filename collisions in create flows</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>cea71a4f</code> on 2026-04-22</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.22-alpha.0012/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.22-alpha.0012" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.22.11</h2>
|
||
<p class="release-meta">April 22, 2026 · alpha-v2026.4.22-alpha.0011</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8b73ef5836f277a668e061373a1c819302c1e6a1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8b73ef5836f277a668e061373a1c819302c1e6a1"><tt>8b73ef5</tt></a> feat: add sidebar folder rename and delete actions</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>8b73ef58</code> on 2026-04-22</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.22-alpha.0011/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.22-alpha.0011" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.22.10</h2>
|
||
<p class="release-meta">April 22, 2026 · alpha-v2026.4.22-alpha.0010</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a27a70e5525258ce616934d0be6bce4b837ad9e6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a27a70e5525258ce616934d0be6bce4b837ad9e6"><tt>a27a70e</tt></a> fix: allow PostHog and Google Fonts in app CSP</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>a27a70e5</code> on 2026-04-22</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.22-alpha.0010/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.22-alpha.0010" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.22.9</h2>
|
||
<p class="release-meta">April 22, 2026 · alpha-v2026.4.22-alpha.0009</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ca92bf4f77378c38fad0314266ce6a07c920a04d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ca92bf4f77378c38fad0314266ce6a07c920a04d"><tt>ca92bf4</tt></a> fix: restore keyboard shortcut typing</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9fda0a67ecb0821162cca6579b7863e3140d37da/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9fda0a67ecb0821162cca6579b7863e3140d37da"><tt>9fda0a6</tt></a> fix: make note renames crash-safe</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0ffb7c65a9625aa04c14dabb17e6da15c2435182/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0ffb7c65a9625aa04c14dabb17e6da15c2435182"><tt>0ffb7c6</tt></a> Ignore history shortcuts while editing</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>ca92bf4f</code> on 2026-04-22</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.22-alpha.0009/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.22-alpha.0009" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.22.8</h2>
|
||
<p class="release-meta">April 22, 2026 · alpha-v2026.4.22-alpha.0008</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/633d9f149695e033e785ed509f4e56dd0fe50dfa/hovercard" href="https://github.com/refactoringhq/tolaria/commit/633d9f149695e033e785ed509f4e56dd0fe50dfa"><tt>633d9f1</tt></a> Add security policy and private reporting guidance</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>633d9f14</code> on 2026-04-22</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.22-alpha.0008/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.22-alpha.0008" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.22.7</h2>
|
||
<p class="release-meta">April 22, 2026 · alpha-v2026.4.22-alpha.0007</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ba3d413b94db7bd5c82a545c03f474d338fc4988/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ba3d413b94db7bd5c82a545c03f474d338fc4988"><tt>ba3d413</tt></a> fix: recover from missing note paths</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>ba3d413b</code> on 2026-04-22</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.22-alpha.0007/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.22-alpha.0007" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.22.6</h2>
|
||
<p class="release-meta">April 22, 2026 · alpha-v2026.4.22-alpha.0006</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f3286922ad4becbb24ae7e0218f8ae86c7ae92b1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f3286922ad4becbb24ae7e0218f8ae86c7ae92b1"><tt>f328692</tt></a> fix: satisfy clippy for MCP status</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b0b476c9e5158f6c5685b675eaef8ef44baf5666/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b0b476c9e5158f6c5685b675eaef8ef44baf5666"><tt>b0b476c</tt></a> fix: harden external AI tool setup</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>f3286922</code> on 2026-04-22</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.22-alpha.0006/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.22-alpha.0006" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.22.5</h2>
|
||
<p class="release-meta">April 22, 2026 · alpha-v2026.4.22-alpha.0005</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/dac696b75231957c9f8694d5b6359bf59f522e88/hovercard" href="https://github.com/refactoringhq/tolaria/commit/dac696b75231957c9f8694d5b6359bf59f522e88"><tt>dac696b</tt></a> fix: guard toolbar popover anchors</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>dac696b7</code> on 2026-04-22</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.22-alpha.0005/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.22-alpha.0005" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.22.4</h2>
|
||
<p class="release-meta">April 22, 2026 · alpha-v2026.4.22-alpha.0004</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cda87ee6c03052393013066a43afc5ab9ef884f8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cda87ee6c03052393013066a43afc5ab9ef884f8"><tt>cda87ee</tt></a> feat: add sidebar folder rename and delete actions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/33324a5c791efe07b54bd93e7409a9cc46257b72/hovercard" href="https://github.com/refactoringhq/tolaria/commit/33324a5c791efe07b54bd93e7409a9cc46257b72"><tt>33324a5</tt></a> fix: harden mcp bridge and vault boundaries</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>cda87ee6</code> on 2026-04-22</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.22-alpha.0004/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.22-alpha.0004" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.22.3</h2>
|
||
<p class="release-meta">April 22, 2026 · alpha-v2026.4.22-alpha.0003</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f28626bbfec4608d71231efae76fc567516be6e0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f28626bbfec4608d71231efae76fc567516be6e0"><tt>f28626b</tt></a> fix: finish claude agent streams</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>f28626bb</code> on 2026-04-22</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.22-alpha.0003/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.22-alpha.0003" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.22.2</h2>
|
||
<p class="release-meta">April 22, 2026 · alpha-v2026.4.22-alpha.0002</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1bc2e3d1e0d4c1f12f9499be49ae390e07588570/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1bc2e3d1e0d4c1f12f9499be49ae390e07588570"><tt>1bc2e3d</tt></a> docs: add ADRs for startup and linkify lifecycles (guard — from commits <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/59268acd04c2daae44ed7a2c0e3d451edcbde821/hovercard" href="https://github.com/refactoringhq/tolaria/commit/59268acd04c2daae44ed7a2c0e3d451edcbde821"><tt>59268ac</tt></a>, <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bf442646f5eb2cbc850b91b042ccf26c583925c2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bf442646f5eb2cbc850b91b042ccf26c583925c2"><tt>bf44264</tt></a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>1bc2e3d1</code> on 2026-04-22</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.22-alpha.0002/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.22-alpha.0002" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.22.1</h2>
|
||
<p class="release-meta">April 21, 2026 · alpha-v2026.4.22-alpha.0001</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8e6bdab3e63b115f1fbc060080bec9ad99a6e430/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8e6bdab3e63b115f1fbc060080bec9ad99a6e430"><tt>8e6bdab</tt></a> docs: ratchet codescene thresholds</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d52362ad9bdb4f145a9eba6eaa8070bde4baa5e7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d52362ad9bdb4f145a9eba6eaa8070bde4baa5e7"><tt>d52362a</tt></a> fix: repair tiptap patch integrity</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bf442646f5eb2cbc850b91b042ccf26c583925c2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bf442646f5eb2cbc850b91b042ccf26c583925c2"><tt>bf44264</tt></a> fix: silence duplicate linkify init warnings</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>8e6bdab3</code> on 2026-04-21</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.22-alpha.0001/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.22-alpha.0001" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.21.16</h2>
|
||
<p class="release-meta">April 21, 2026 · alpha-v2026.4.21-alpha.0016</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1b3a44436817c0ba0449289c2248306001d11dcc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1b3a44436817c0ba0449289c2248306001d11dcc"><tt>1b3a444</tt></a> fix: show welcome on fresh install without missing vault</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>1b3a4443</code> on 2026-04-21</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.21-alpha.0016/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.21-alpha.0016" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.21.15</h2>
|
||
<p class="release-meta">April 21, 2026 · alpha-v2026.4.21-alpha.0015</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c4da7f1f2fce58bc357084a960b1c42bfc11be9f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c4da7f1f2fce58bc357084a960b1c42bfc11be9f"><tt>c4da7f1</tt></a> fix: narrow raw mode sync override</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c5fe291a9a1a6045a1150bd0380eb155f756ab69/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c5fe291a9a1a6045a1150bd0380eb155f756ab69"><tt>c5fe291</tt></a> fix: sync inspector edits into raw editor</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/59268acd04c2daae44ed7a2c0e3d451edcbde821/hovercard" href="https://github.com/refactoringhq/tolaria/commit/59268acd04c2daae44ed7a2c0e3d451edcbde821"><tt>59268ac</tt></a> fix: guard empty vault path during startup</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c4da7f1f</code> on 2026-04-21</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.21-alpha.0015/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.21-alpha.0015" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.21.14</h2>
|
||
<p class="release-meta">April 21, 2026 · alpha-v2026.4.21-alpha.0014</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3e4e2ebdc617d13ff36a13d77723ef6f14707276/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3e4e2ebdc617d13ff36a13d77723ef6f14707276"><tt>3e4e2eb</tt></a> refactor: simplify breadcrumb and note-list search ui</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>3e4e2ebd</code> on 2026-04-21</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.21-alpha.0014/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.21-alpha.0014" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.21.13</h2>
|
||
<p class="release-meta">April 21, 2026 · alpha-v2026.4.21-alpha.0013</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/05375258a2209ce6c48e8392467cb61f65814c2e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/05375258a2209ce6c48e8392467cb61f65814c2e"><tt>0537525</tt></a> Rename 'Documentation' section to 'Tech Docs'</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0c0354bfb8113f5a0422e02a8053672dba6117a4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0c0354bfb8113f5a0422e02a8053672dba6117a4"><tt>0c0354b</tt></a> Updated README badges</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>05375258</code> on 2026-04-21</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.21-alpha.0013/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.21-alpha.0013" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.21.12</h2>
|
||
<p class="release-meta">April 21, 2026 · alpha-v2026.4.21-alpha.0012</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6023e95d5b9d83e7b4deedb819b7db43bdbb0a47/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6023e95d5b9d83e7b4deedb819b7db43bdbb0a47"><tt>6023e95</tt></a> fix: serialize vitest coverage files</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/88d5694353bed666f4a264445610e31f8c798763/hovercard" href="https://github.com/refactoringhq/tolaria/commit/88d5694353bed666f4a264445610e31f8c798763"><tt>88d5694</tt></a> fix: retry flaky vitest coverage teardown</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/db6b38843bbd43513bd747a4fca8d928ba16dda1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/db6b38843bbd43513bd747a4fca8d928ba16dda1"><tt>db6b388</tt></a> fix: keep vitest coverage shards off workspace</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ad9901bbf5f705a9666988eca5bb1f23b49c58c8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ad9901bbf5f705a9666988eca5bb1f23b49c58c8"><tt>ad9901b</tt></a> fix: stabilize coverage suite reruns</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b785c53ef93c5115e74db6a4e7645e6f2ac404bc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b785c53ef93c5115e74db6a4e7645e6f2ac404bc"><tt>b785c53</tt></a> test: increase strategic coverage</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>6023e95d</code> on 2026-04-21</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.21-alpha.0012/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.21-alpha.0012" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.21.11</h2>
|
||
<p class="release-meta">April 21, 2026 · alpha-v2026.4.21-alpha.0011</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8ae1ade220ab5e2ab94b2aa526507c2f81e14f5a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8ae1ade220ab5e2ab94b2aa526507c2f81e14f5a"><tt>8ae1ade</tt></a> test: cover live sidebar type picker sync</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>8ae1ade2</code> on 2026-04-21</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.21-alpha.0011/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.21-alpha.0011" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.21.10</h2>
|
||
<p class="release-meta">April 21, 2026 · alpha-v2026.4.21-alpha.0010</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/35b035643e5870ef45731689591c075b3687bc5c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/35b035643e5870ef45731689591c075b3687bc5c"><tt>35b0356</tt></a> fix: adapt save reload callback</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d3d663af0b0e7908e3bcc4eb3ca36428538f07db/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d3d663af0b0e7908e3bcc4eb3ca36428538f07db"><tt>d3d663a</tt></a> fix: reload vault entries on tauri startup</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>35b03564</code> on 2026-04-21</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.21-alpha.0010/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.21-alpha.0010" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.21.9</h2>
|
||
<p class="release-meta">April 21, 2026 · alpha-v2026.4.21-alpha.0009</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8f624350d88613c037a5140bb0b2f8f31eef265c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8f624350d88613c037a5140bb0b2f8f31eef265c"><tt>8f62435</tt></a> test: cover journal vault scan</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>8f624350</code> on 2026-04-21</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.21-alpha.0009/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.21-alpha.0009" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.21.8</h2>
|
||
<p class="release-meta">April 21, 2026 · alpha-v2026.4.21-alpha.0008</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0e54173834f9928887b9863a589e128ff6ccee28/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0e54173834f9928887b9863a589e128ff6ccee28"><tt>0e54173</tt></a> test: cover explicit journal visibility</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>0e541738</code> on 2026-04-21</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.21-alpha.0008/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.21-alpha.0008" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.21.7</h2>
|
||
<p class="release-meta">April 21, 2026 · alpha-v2026.4.21-alpha.0007</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a6f1524a788ad1d796a2232fb29cf769d43695cb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a6f1524a788ad1d796a2232fb29cf769d43695cb"><tt>a6f1524</tt></a> ci: reject placeholder telemetry secrets</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4cd5baeb550f87d2f2f37911d6b02cbb219c78bd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4cd5baeb550f87d2f2f37911d6b02cbb219c78bd"><tt>4cd5bae</tt></a> fix: sync sidebar types with live vault state</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>a6f1524a</code> on 2026-04-21</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.21-alpha.0007/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.21-alpha.0007" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.21.6</h2>
|
||
<p class="release-meta">April 21, 2026 · alpha-v2026.4.21-alpha.0006</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fb1265e08872ac095253ad57ec5b8f0c67e7ec0d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fb1265e08872ac095253ad57ec5b8f0c67e7ec0d"><tt>fb1265e</tt></a> test: stabilize note list search timing</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>fb1265e0</code> on 2026-04-21</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.21-alpha.0006/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.21-alpha.0006" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.21.5</h2>
|
||
<p class="release-meta">April 21, 2026 · alpha-v2026.4.21-alpha.0005</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ca89662231e659ad6065f72db43689cbaff9ee81/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ca89662231e659ad6065f72db43689cbaff9ee81"><tt>ca89662</tt></a> fix: sync raw editor frontmatter state</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/97f285e3cb9c8d78afc552df50c6886e952abe05/hovercard" href="https://github.com/refactoringhq/tolaria/commit/97f285e3cb9c8d78afc552df50c6886e952abe05"><tt>97f285e</tt></a> ci: upload coverage to codecov</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>ca896622</code> on 2026-04-21</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.21-alpha.0005/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.21-alpha.0005" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.21.4</h2>
|
||
<p class="release-meta">April 21, 2026 · alpha-v2026.4.21-alpha.0004</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4bd4ef43dc3133b40ac0e6dc0cd1f42ac7549bd5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4bd4ef43dc3133b40ac0e6dc0cd1f42ac7549bd5"><tt>4bd4ef4</tt></a> Added release badge in README</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>4bd4ef43</code> on 2026-04-21</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.21-alpha.0004/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.21-alpha.0004" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.21.3</h2>
|
||
<p class="release-meta">April 21, 2026 · alpha-v2026.4.21-alpha.0003</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/be29880a3eaffb15cfc156313e1bb931a8ae9991/hovercard" href="https://github.com/refactoringhq/tolaria/commit/be29880a3eaffb15cfc156313e1bb931a8ae9991"><tt>be29880</tt></a> Added walkthroughs to the README</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7be5519f612c8ec3453071735990c09afbd5cd7d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7be5519f612c8ec3453071735990c09afbd5cd7d"><tt>7be5519</tt></a> fix: sort alpha releases chronologically</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8cefbe949a1addae6cb9fbc474e9f4f3503c4d9c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8cefbe949a1addae6cb9fbc474e9f4f3503c4d9c"><tt>8cefbe9</tt></a> fix: refine derived inverse relationship labels</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/dd0a55b8e85c09a928508520673942c279baf45a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/dd0a55b8e85c09a928508520673942c279baf45a"><tt>dd0a55b</tt></a> docs: add ADR for external vault refresh after pulls and agent edits (guard — from commit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0020ade6d7f711c092d4daa5428c59cd055c20d0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0020ade6d7f711c092d4daa5428c59cd055c20d0"><tt>0020ade</tt></a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>be29880a</code> on 2026-04-21</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.21-alpha.0003/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.21-alpha.0003" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.21.2</h2>
|
||
<p class="release-meta">April 20, 2026 · alpha-v2026.4.21-alpha.2</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/610276b1bcd5022f4aed36c2ebfea5dc228eac11/hovercard" href="https://github.com/refactoringhq/tolaria/commit/610276b1bcd5022f4aed36c2ebfea5dc228eac11"><tt>610276b</tt></a> docs: ratchet codescene thresholds</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e6c968e37ed280416c5b122d4baa7dd65d800441/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e6c968e37ed280416c5b122d4baa7dd65d800441"><tt>e6c968e</tt></a> fix: satisfy note list keyboard build</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/367a66f32aeb6b6186645b85317827bcedfce500/hovercard" href="https://github.com/refactoringhq/tolaria/commit/367a66f32aeb6b6186645b85317827bcedfce500"><tt>367a66f</tt></a> fix: debounce note list search</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>610276b1</code> on 2026-04-20</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.21-alpha.2/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.21-alpha.2" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.21.1</h2>
|
||
<p class="release-meta">April 20, 2026 · alpha-v2026.4.21-alpha.1</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6a4046915ceadfe25aa2ff78fe929dc4b042a8b9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6a4046915ceadfe25aa2ff78fe929dc4b042a8b9"><tt>6a40469</tt></a> fix: harden startup telemetry urls</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>6a404691</code> on 2026-04-20</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.21-alpha.1/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.21-alpha.1" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.20.14</h2>
|
||
<p class="release-meta">April 20, 2026 · alpha-v2026.4.20-alpha.14</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ec8b637c84dd30f25d813f3c412c170fc98b18e5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ec8b637c84dd30f25d813f3c412c170fc98b18e5"><tt>ec8b637</tt></a> fix: hide uncloned getting started vault</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>ec8b637c</code> on 2026-04-20</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.20-alpha.14/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.20-alpha.14" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.20.13</h2>
|
||
<p class="release-meta">April 20, 2026 · alpha-v2026.4.20-alpha.13</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3ee42fb856800285e0a7ba232f1ffef6babf7091/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3ee42fb856800285e0a7ba232f1ffef6babf7091"><tt>3ee42fb</tt></a> test: align create-note smoke placeholder</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/eacf05a9f8b09672fa6ed3bf412aea66549ad735/hovercard" href="https://github.com/refactoringhq/tolaria/commit/eacf05a9f8b09672fa6ed3bf412aea66549ad735"><tt>eacf05a</tt></a> fix: reload notes after agent edits</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>3ee42fb8</code> on 2026-04-20</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.20-alpha.13/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.20-alpha.13" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.20.12</h2>
|
||
<p class="release-meta">April 20, 2026 · alpha-v2026.4.20-alpha.12</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a199fad803e70021cfbbd6b7a6ec1cfe21477dca/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a199fad803e70021cfbbd6b7a6ec1cfe21477dca"><tt>a199fad</tt></a> fix: widen editor focus block typing</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e956c806e5365e7b09d7c6437423068982debbf6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e956c806e5365e7b09d7c6437423068982debbf6"><tt>e956c80</tt></a> fix: keep editor sync from clobbering live inserts</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7a6e3863ad2d3e78245a36c691cfaaefdb065289/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7a6e3863ad2d3e78245a36c691cfaaefdb065289"><tt>7a6e386</tt></a> fix: reopen active note after pull updates</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e0e2dc40636d51717b47e7fdaf4f226ff2d73f6d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e0e2dc40636d51717b47e7fdaf4f226ff2d73f6d"><tt>e0e2dc4</tt></a> test: add pull refresh regression</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0020ade6d7f711c092d4daa5428c59cd055c20d0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0020ade6d7f711c092d4daa5428c59cd055c20d0"><tt>0020ade</tt></a> fix: tighten pulled note refresh flow</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>a199fad8</code> on 2026-04-20</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.20-alpha.12/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.20-alpha.12" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.20.11</h2>
|
||
<p class="release-meta">April 20, 2026 · alpha-v2026.4.20-alpha.11</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/503e482c7da84798153aa43a070240ba29c6bf5d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/503e482c7da84798153aa43a070240ba29c6bf5d"><tt>503e482</tt></a> fix: normalize inverse relationship labels</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>503e482c</code> on 2026-04-20</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.20-alpha.11/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.20-alpha.11" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.20.10</h2>
|
||
<p class="release-meta">April 20, 2026 · alpha-v2026.4.20-alpha.10</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0d0e6af4c9f5a2bb9cd20e333d3c63005ffea939/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0d0e6af4c9f5a2bb9cd20e333d3c63005ffea939"><tt>0d0e6af</tt></a> fix: keep vault menu remove action in row</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>0d0e6af4</code> on 2026-04-20</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.20-alpha.10/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.20-alpha.10" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.20.9</h2>
|
||
<p class="release-meta">April 20, 2026 · alpha-v2026.4.20-alpha.9</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/dbaf3618788e47cb993575ab94b20e994caa319b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/dbaf3618788e47cb993575ab94b20e994caa319b"><tt>dbaf361</tt></a> test: fix starter-vault app shell coverage</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>dbaf3618</code> on 2026-04-20</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.20-alpha.9/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.20-alpha.9" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.20.8</h2>
|
||
<p class="release-meta">April 20, 2026 · alpha-v2026.4.20-alpha.8</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d3741c82f5a59e2f92ca4295b88add6190cd8b3c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d3741c82f5a59e2f92ca4295b88add6190cd8b3c"><tt>d3741c8</tt></a> test: fix starter-vault shell regression</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>d3741c82</code> on 2026-04-20</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.20-alpha.8/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.20-alpha.8" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.20.7</h2>
|
||
<p class="release-meta">April 20, 2026 · alpha-v2026.4.20-alpha.7</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b90d2f861256a26aa658fa2e6ad5ef05dc357fe3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b90d2f861256a26aa658fa2e6ad5ef05dc357fe3"><tt>b90d2f8</tt></a> fix: reorder welcome onboarding actions</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>b90d2f86</code> on 2026-04-20</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.20-alpha.7/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.20-alpha.7" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.20.6</h2>
|
||
<p class="release-meta">April 20, 2026 · alpha-v2026.4.20-alpha.6</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9536efee0eb1425dc8ab72a413181de39e0628f5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9536efee0eb1425dc8ab72a413181de39e0628f5"><tt>9536efe</tt></a> fix: persist AI panel chats across reopen</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c86a6ab9c58e95040c061c65c0ee01610adc60c4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c86a6ab9c58e95040c061c65c0ee01610adc60c4"><tt>c86a6ab</tt></a> docs: add/update ADR for starter vault local-first remote flow (guard — from commit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/374b4f668697e21fbd390075eb597d8e9e822329/hovercard" href="https://github.com/refactoringhq/tolaria/commit/374b4f668697e21fbd390075eb597d8e9e822329"><tt>374b4f6</tt></a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>9536efee</code> on 2026-04-20</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.20-alpha.6/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.20-alpha.6" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.20.5</h2>
|
||
<p class="release-meta">April 20, 2026 · alpha-v2026.4.20-alpha.5</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1d7c027700d0ca154e54edbead58edec60657c19/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1d7c027700d0ca154e54edbead58edec60657c19"><tt>1d7c027</tt></a> Updated Tolaria Icon</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>1d7c0277</code> on 2026-04-20</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.20-alpha.5/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.20-alpha.5" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.20.4</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.20-alpha.4</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/74e50c64bb0f831dbaf821d43c9ab4a2d20c54cd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/74e50c64bb0f831dbaf821d43c9ab4a2d20c54cd"><tt>74e50c6</tt></a> fix: hide stale getting started vault entries</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>74e50c64</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.20-alpha.4/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.20-alpha.4" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.20.3</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.20-alpha.3</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8b97ef711f5dd38bf8f46e8ab351207c14e788b9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8b97ef711f5dd38bf8f46e8ab351207c14e788b9"><tt>8b97ef7</tt></a> feat: refresh welcome screen branding</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>8b97ef71</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.20-alpha.3/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.20-alpha.3" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.20.2</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.20-alpha.2</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/08855cee925d924e770220a45d4a9585920617d4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/08855cee925d924e770220a45d4a9585920617d4"><tt>08855ce</tt></a> fix: defer git history during note switching</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>08855cee</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.20-alpha.2/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.20-alpha.2" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.20.1</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.20-alpha.1</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/03042bb49caaf43c0643ab3c76874d07ac3b398d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/03042bb49caaf43c0643ab3c76874d07ac3b398d"><tt>03042bb</tt></a> fix: normalize shipped telemetry secrets</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cee4bef17903737da75be503f22b86b17863be45/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cee4bef17903737da75be503f22b86b17863be45"><tt>cee4bef</tt></a> fix: harden shipped telemetry config</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>03042bb4</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.20-alpha.1/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.20-alpha.1" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.39</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.19-alpha.39</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f223d4f654b6da397b3502b9e0d47807c1dd7c2a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f223d4f654b6da397b3502b9e0d47807c1dd7c2a"><tt>f223d4f</tt></a> refactor: curate demo-vault-v2 fixture</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>f223d4f6</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.39/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.39" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.38</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.19-alpha.38</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2f693c4476f6390ae8b36e0bed4e331b40473ac1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2f693c4476f6390ae8b36e0bed4e331b40473ac1"><tt>2f693c4</tt></a> fix: dedupe new type palette action</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>2f693c44</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.38/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.38" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.37</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.19-alpha.37</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/44f0c7cb74449f1181ab3929b6764f8b4ed397c4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/44f0c7cb74449f1181ab3929b6764f8b4ed397c4"><tt>44f0c7c</tt></a> feat: open favorites in neighborhood mode</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>44f0c7cb</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.37/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.37" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.36</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.19-alpha.36</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ea14f1a3893cdb4d337f333e95a204fac235fd08/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ea14f1a3893cdb4d337f333e95a204fac235fd08"><tt>ea14f1a</tt></a> fix: use rendered release note html</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>ea14f1a3</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.36/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.36" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.35</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.19-alpha.35</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/db21ae47083e4a5da5eafcb2642379dbfb5cb075/hovercard" href="https://github.com/refactoringhq/tolaria/commit/db21ae47083e4a5da5eafcb2642379dbfb5cb075"><tt>db21ae4</tt></a> feat: improve release history page</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>db21ae47</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.35/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.35" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.34</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.19-alpha.34</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8019c4fb2d3a773907d3b423f1117829266ce7a7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8019c4fb2d3a773907d3b423f1117829266ce7a7"><tt>8019c4f</tt></a> fix: defer missing vault startup state</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>8019c4fb</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.34/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.34" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.33</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.19-alpha.33</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0d552e1370eb1067e11fda7c2a5e1e471ee9f2d7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0d552e1370eb1067e11fda7c2a5e1e471ee9f2d7"><tt>0d552e1</tt></a> fix: satisfy note-open perf build checks</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/977f5593fac3e356fb7b277aa9f0e4de1bc85789/hovercard" href="https://github.com/refactoringhq/tolaria/commit/977f5593fac3e356fb7b277aa9f0e4de1bc85789"><tt>977f559</tt></a> fix: stop note navigation from scaling with vault size</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>0d552e13</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.33/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.33" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.32</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.19-alpha.32</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/261a5befc7fda2ad59a25ba71e41a8f1f3726de3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/261a5befc7fda2ad59a25ba71e41a8f1f3726de3"><tt>261a5be</tt></a> chore: ratchet codescene thresholds</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8d3cce7b4926dd965449e9fb8fce4d7fe1e739e2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8d3cce7b4926dd965449e9fb8fce4d7fe1e739e2"><tt>8d3cce7</tt></a> fix: satisfy neighborhood history build checks</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e0594820f064ff1471d9ae86d6d81341687014b1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e0594820f064ff1471d9ae86d6d81341687014b1"><tt>e059482</tt></a> fix: unwind neighborhood history on escape</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>261a5bef</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.32/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.32" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.31</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.19-alpha.31</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b98d41212eb7b397987dc5ef8ae9cb1b5deda567/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b98d41212eb7b397987dc5ef8ae9cb1b5deda567"><tt>b98d412</tt></a> fix: stop seeding title during property init</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>b98d4121</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.31/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.31" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.30</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.19-alpha.30</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/098dc421cba731c1ea410c43b4a38f2a22388466/hovercard" href="https://github.com/refactoringhq/tolaria/commit/098dc421cba731c1ea410c43b4a38f2a22388466"><tt>098dc42</tt></a> test: add isolated vitest coverage runner</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/326ccb08e1e96c19ff83a70ed8ab669f0adbeea3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/326ccb08e1e96c19ff83a70ed8ab669f0adbeea3"><tt>326ccb0</tt></a> test: stabilize vitest coverage artifacts</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c2bbdb0085211c3b6f5189af51e850e095965d18/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c2bbdb0085211c3b6f5189af51e850e095965d18"><tt>c2bbdb0</tt></a> test: stabilize git default branch in helpers</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>098dc421</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.30/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.30" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.29</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.19-alpha.29</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/039f9e447fd0bf352fc4bd535efe3b90877d8ff6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/039f9e447fd0bf352fc4bd535efe3b90877d8ff6"><tt>039f9e4</tt></a> fix: cache inspector link lookups</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>039f9e44</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.29/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.29" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.28</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.19-alpha.28</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8581a1b1e6f3829b5faab834e8a69b62f5f72f9f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8581a1b1e6f3829b5faab834e8a69b62f5f72f9f"><tt>8581a1b</tt></a> fix: organize seeded claude shim files</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2c5cb593d389185c7b356673fd9efd7337a124ae/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2c5cb593d389185c7b356673fd9efd7337a124ae"><tt>2c5cb59</tt></a> Removed old Project spec reverence</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>8581a1b1</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.28/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.28" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.27</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.19-alpha.27</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/348b627029959ba4e386f78b215490cc7d387a6a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/348b627029959ba4e386f78b215490cc7d387a6a"><tt>348b627</tt></a> Updated README</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>348b6270</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.27/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.27" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.26</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.19-alpha.26</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f5cc5ffb4fa6caf135c7f7ebde063a419d375db5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f5cc5ffb4fa6caf135c7f7ebde063a419d375db5"><tt>f5cc5ff</tt></a> fix: satisfy clippy and stabilize app startup test</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/374b4f668697e21fbd390075eb597d8e9e822329/hovercard" href="https://github.com/refactoringhq/tolaria/commit/374b4f668697e21fbd390075eb597d8e9e822329"><tt>374b4f6</tt></a> feat: keep getting started vaults local by default</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>f5cc5ffb</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.26/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.26" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.25</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.19-alpha.25</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/36c20f34f4ede710526293ba2dabc50b95790ef3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/36c20f34f4ede710526293ba2dabc50b95790ef3"><tt>36c20f3</tt></a> fix: hide unavailable getting started vault</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>36c20f34</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.25/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.25" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.24</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.19-alpha.24</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8551d819bd1ffa879a83398d249adbdde0bebe1f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8551d819bd1ffa879a83398d249adbdde0bebe1f"><tt>8551d81</tt></a> Deleted old unused font</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>8551d819</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.24/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.24" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.23</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.19-alpha.23</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d5497d7252c52c563a161a494d6032e9da63f415/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d5497d7252c52c563a161a494d6032e9da63f415"><tt>d5497d7</tt></a> Match getting started subtitle copy</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>d5497d72</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.23/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.23" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.22</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.19-alpha.22</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/046afe0e675475f711ab04ab976d0bd14dc81a34/hovercard" href="https://github.com/refactoringhq/tolaria/commit/046afe0e675475f711ab04ab976d0bd14dc81a34"><tt>046afe0</tt></a> Simplify Getting Started vault subtitle</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cb1cc4b3948033eeefe1efa11638dd5ad8ab935e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cb1cc4b3948033eeefe1efa11638dd5ad8ab935e"><tt>cb1cc4b</tt></a> fix: include inverse neighborhood groups</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>046afe0e</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.22/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.22" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.21</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.19-alpha.21</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/00cb938766d0291b4e885ee85708cf5e50ac17d3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/00cb938766d0291b4e885ee85708cf5e50ac17d3"><tt>00cb938</tt></a> fix: add cmd o quick-open alias</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>00cb9387</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.21/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.21" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.20</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.19-alpha.20</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/80c13272f36a2bad78fbeb7ef3f02f5efcc1b39c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/80c13272f36a2bad78fbeb7ef3f02f5efcc1b39c"><tt>80c1327</tt></a> fix: keep neighborhood reverse matches path-aware</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>80c13272</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.20/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.20" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.19</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.19-alpha.19</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/95344493076e73fb6baed47ee6c767b30a04666f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/95344493076e73fb6baed47ee6c767b30a04666f"><tt>9534449</tt></a> fix: hide absent neighborhood groups</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>95344493</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.19/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.19" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.18</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.19-alpha.18</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2d5361b2e9e1aba8e0958e41859c609488045424/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2d5361b2e9e1aba8e0958e41859c609488045424"><tt>2d5361b</tt></a> fix: keep keyboard note switching snappy</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>2d5361b2</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.18/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.18" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.17</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.19-alpha.17</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b22da65d446f61c707b187d779360b9914e1c2cb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b22da65d446f61c707b187d779360b9914e1c2cb"><tt>b22da65</tt></a> fix: keep note switches instant</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>b22da65d</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.17/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.17" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.16</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.19-alpha.16</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/862af864d3eadd44aabf4be9cebcb03da24e8ba2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/862af864d3eadd44aabf4be9cebcb03da24e8ba2"><tt>862af86</tt></a> fix: preserve image selection while hovering toolbar</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>862af864</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.16/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.16" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.15</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.19-alpha.15</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9ecefc90d5b6fb1a8bd4368ef306d722108b3008/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9ecefc90d5b6fb1a8bd4368ef306d722108b3008"><tt>9ecefc9</tt></a> feat: add stable landing page download link</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>9ecefc90</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.15/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.15" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.14</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.19-alpha.14</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9693fe24c993f5fc846a07c20d79953616b502d8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9693fe24c993f5fc846a07c20d79953616b502d8"><tt>9693fe2</tt></a> fix: restore type filter icon colors</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>9693fe24</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.14/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.14" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.13</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.19-alpha.13</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/92ea32c0b8c49c9bc1354d048ca1a110b65f4390/hovercard" href="https://github.com/refactoringhq/tolaria/commit/92ea32c0b8c49c9bc1354d048ca1a110b65f4390"><tt>92ea32c</tt></a> feat: add neighborhood browsing mode</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>92ea32c0</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.13/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.13" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.12</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.19-alpha.12</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2e2bd2f3b3fb48816f54a0b48a6b8fc9c35f8710/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2e2bd2f3b3fb48816f54a0b48a6b8fc9c35f8710"><tt>2e2bd2f</tt></a> fix: preserve native welcome vault creation</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>2e2bd2f3</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.12/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.12" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.11</h2>
|
||
<p class="release-meta">April 19, 2026 · alpha-v2026.4.19-alpha.11</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3556d934ee74a38588ce4ee6bc0e138bae43b593/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3556d934ee74a38588ce4ee6bc0e138bae43b593"><tt>3556d93</tt></a> test: format vault command assertions</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>3556d934</code> on 2026-04-19</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.11/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.11" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.10</h2>
|
||
<p class="release-meta">April 18, 2026 · alpha-v2026.4.19-alpha.10</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/feef938174f97267aa2a8b7d5bec57bddb659065/hovercard" href="https://github.com/refactoringhq/tolaria/commit/feef938174f97267aa2a8b7d5bec57bddb659065"><tt>feef938</tt></a> fix: align fresh vault seed files</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>feef9381</code> on 2026-04-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.10/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.10" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.9</h2>
|
||
<p class="release-meta">April 18, 2026 · alpha-v2026.4.19-alpha.9</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/67a9930ea1aa0d51cc5259b97ea4f87fa81f9131/hovercard" href="https://github.com/refactoringhq/tolaria/commit/67a9930ea1aa0d51cc5259b97ea4f87fa81f9131"><tt>67a9930</tt></a> feat: add empty vault creation flow</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>67a9930e</code> on 2026-04-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.9/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.9" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.8</h2>
|
||
<p class="release-meta">April 18, 2026 · alpha-v2026.4.19-alpha.8</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/aed4d05f1d89f925db58f7d0c13f05570cfac2a5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/aed4d05f1d89f925db58f7d0c13f05570cfac2a5"><tt>aed4d05</tt></a> docs: ratchet codescene thresholds</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cac7f12c6dc357726d6f3d866595e962d4caea2f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cac7f12c6dc357726d6f3d866595e962d4caea2f"><tt>cac7f12</tt></a> fix: stop duplicate native quick prompt paste</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>aed4d05f</code> on 2026-04-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.8/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.8" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.7</h2>
|
||
<p class="release-meta">April 18, 2026 · alpha-v2026.4.19-alpha.7</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/72b5b5214026d288914a2579477cb79bc6b1c78e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/72b5b5214026d288914a2579477cb79bc6b1c78e"><tt>72b5b52</tt></a> feat: add view note-list controls</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>72b5b521</code> on 2026-04-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.7/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.7" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.6</h2>
|
||
<p class="release-meta">April 18, 2026 · alpha-v2026.4.19-alpha.6</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7deeb49751e9ef92e82b2b124cb0b4cb57d2323f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7deeb49751e9ef92e82b2b124cb0b4cb57d2323f"><tt>7deeb49</tt></a> feat: add number property type</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>7deeb497</code> on 2026-04-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.6/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.6" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.5</h2>
|
||
<p class="release-meta">April 18, 2026 · alpha-v2026.4.19-alpha.5</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8c0a2e7ec8272f93521f1a5590a0e6b4ec21c4b1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8c0a2e7ec8272f93521f1a5590a0e6b4ec21c4b1"><tt>8c0a2e7</tt></a> fix: share onboarding drag shell</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>8c0a2e7e</code> on 2026-04-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.5/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.5" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.4</h2>
|
||
<p class="release-meta">April 18, 2026 · alpha-v2026.4.19-alpha.4</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c4e66dc74f8c01de3c57efd417f63635c62572ad/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c4e66dc74f8c01de3c57efd417f63635c62572ad"><tt>c4e66dc</tt></a> fix: make onboarding window draggable</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c4e66dc7</code> on 2026-04-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.4/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.4" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.3</h2>
|
||
<p class="release-meta">April 18, 2026 · alpha-v2026.4.19-alpha.3</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c0bb722db570c12a848b9646e7c8ce6a8573ab8a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c0bb722db570c12a848b9646e7c8ce6a8573ab8a"><tt>c0bb722</tt></a> fix: reuse note content cache for rapid note switches</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c0bb722d</code> on 2026-04-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.3/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.3" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.2</h2>
|
||
<p class="release-meta">April 18, 2026 · alpha-v2026.4.19-alpha.2</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bc11c869aa8cbaf2077150836bc9960a02810a7d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bc11c869aa8cbaf2077150836bc9960a02810a7d"><tt>bc11c86</tt></a> fix: stabilize ai mode paste editing</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>bc11c869</code> on 2026-04-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.2/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.2" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.19.1</h2>
|
||
<p class="release-meta">April 18, 2026 · alpha-v2026.4.19-alpha.1</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/502ecf05729112e1e7329ffcecacaa3f5b30c853/hovercard" href="https://github.com/refactoringhq/tolaria/commit/502ecf05729112e1e7329ffcecacaa3f5b30c853"><tt>502ecf0</tt></a> test: stabilize wikilink smoke coverage</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8bbbba98b7fffd2dcb818474d28f18bf73db6766/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8bbbba98b7fffd2dcb818474d28f18bf73db6766"><tt>8bbbba9</tt></a> fix: correct vault path type guard</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/86adf860b561e5865049dfe5f11da2a86a82476a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/86adf860b561e5865049dfe5f11da2a86a82476a"><tt>86adf86</tt></a> fix: restore bottom bar vault switching</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>502ecf05</code> on 2026-04-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.19-alpha.1/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.19-alpha.1" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.18.15</h2>
|
||
<p class="release-meta">April 18, 2026 · alpha-v2026.4.18-alpha.15</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cec1627a81d725f73b841bb2d1c6c5d9212c5111/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cec1627a81d725f73b841bb2d1c6c5d9212c5111"><tt>cec1627</tt></a> fix: preserve image toolbar hover bridge</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>cec1627a</code> on 2026-04-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.18-alpha.15/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.18-alpha.15" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.18.14</h2>
|
||
<p class="release-meta">April 18, 2026 · alpha-v2026.4.18-alpha.14</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b00183419e978daf6ec0f11d6eed7d29d429ecbc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b00183419e978daf6ec0f11d6eed7d29d429ecbc"><tt>b001834</tt></a> fix: show Note metadata in autocomplete</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>b0018341</code> on 2026-04-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.18-alpha.14/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.18-alpha.14" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.18.13</h2>
|
||
<p class="release-meta">April 18, 2026 · alpha-v2026.4.18-alpha.13</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ed9ceff1d2cdca4a769cd6a3e6748f34d922dc4b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ed9ceff1d2cdca4a769cd6a3e6748f34d922dc4b"><tt>ed9ceff</tt></a> fix: align Notes counts with explicit type</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>ed9ceff1</code> on 2026-04-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.18-alpha.13/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.18-alpha.13" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.18.12</h2>
|
||
<p class="release-meta">April 18, 2026 · alpha-v2026.4.18-alpha.12</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e18491bcd33f68434103e56ec3920113eddbc0e5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e18491bcd33f68434103e56ec3920113eddbc0e5"><tt>e18491b</tt></a> fix: preserve untitled rename session continuity</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fd0cfc7fb6180c84714b575bf72887c77ec8f915/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fd0cfc7fb6180c84714b575bf72887c77ec8f915"><tt>fd0cfc7</tt></a> fix: exclude attachments from all notes totals</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>e18491bc</code> on 2026-04-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.18-alpha.12/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.18-alpha.12" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.18.11</h2>
|
||
<p class="release-meta">April 18, 2026 · alpha-v2026.4.18-alpha.11</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6541ce575536df031d881ef55f267b7944419ff4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6541ce575536df031d881ef55f267b7944419ff4"><tt>6541ce5</tt></a> test: stabilize wikilink smoke timing</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4456801526d576d72337c7ed6dc10ebe0a792ed3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4456801526d576d72337c7ed6dc10ebe0a792ed3"><tt>4456801</tt></a> fix: keep h1 typing responsive</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>6541ce57</code> on 2026-04-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.18-alpha.11/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.18-alpha.11" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.18.10</h2>
|
||
<p class="release-meta">April 18, 2026 · alpha-v2026.4.18-alpha.10</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/db7aaf1385807261300be823b9d3459c3e1c0085/hovercard" href="https://github.com/refactoringhq/tolaria/commit/db7aaf1385807261300be823b9d3459c3e1c0085"><tt>db7aaf1</tt></a> fix: restore note type during vault repair</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>db7aaf13</code> on 2026-04-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.18-alpha.10/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.18-alpha.10" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.18.9</h2>
|
||
<p class="release-meta">April 18, 2026 · alpha-v2026.4.18-alpha.9</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/54b2616fa45968d4a844ca65b881411ae0c563c1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/54b2616fa45968d4a844ca65b881411ae0c563c1"><tt>54b2616</tt></a> fix: restore manual commit dialog when autogit is off</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>54b2616f</code> on 2026-04-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.18-alpha.9/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.18-alpha.9" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.18.8</h2>
|
||
<p class="release-meta">April 18, 2026 · alpha-v2026.4.18-alpha.8</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6a90e9f77038b8356857b330becffd2f3b78366c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6a90e9f77038b8356857b330becffd2f3b78366c"><tt>6a90e9f</tt></a> fix: correct editor layout diff callback type</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b79c78a5bad90d094da43761946cdbf67620c657/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b79c78a5bad90d094da43761946cdbf67620c657"><tt>b79c78a</tt></a> fix: save raw note changes before switching notes</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>6a90e9f7</code> on 2026-04-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.18-alpha.8/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.18-alpha.8" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.18.7</h2>
|
||
<p class="release-meta">April 18, 2026 · alpha-v2026.4.18-alpha.7</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/48a88829702b7daeaf0e088d51d3b866cca1bc0b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/48a88829702b7daeaf0e088d51d3b866cca1bc0b"><tt>48a8882</tt></a> Reorder CodeScene badges in README</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/98276702a2ba012f918500a9d6d50ac9e5cea2bd/hovercard" href="https://github.com/refactoringhq/tolaria/commit/98276702a2ba012f918500a9d6d50ac9e5cea2bd"><tt>9827670</tt></a> Added codescene badges</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>48a88829</code> on 2026-04-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.18-alpha.7/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.18-alpha.7" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.18.6</h2>
|
||
<p class="release-meta">April 18, 2026 · alpha-v2026.4.18-alpha.6</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/857d55a7cd2e255f8aee7d78896e7c1a02f68787/hovercard" href="https://github.com/refactoringhq/tolaria/commit/857d55a7cd2e255f8aee7d78896e7c1a02f68787"><tt>857d55a</tt></a> fix: stop cmd+s from renaming note titles</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>857d55a7</code> on 2026-04-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.18-alpha.6/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.18-alpha.6" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.18.5</h2>
|
||
<p class="release-meta">April 18, 2026 · alpha-v2026.4.18-alpha.5</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b78dfad384df42fe6212fa83f86b31be9520a2a0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b78dfad384df42fe6212fa83f86b31be9520a2a0"><tt>b78dfad</tt></a> fix: resume onboarding after telemetry on fresh start</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>b78dfad3</code> on 2026-04-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.18-alpha.5/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.18-alpha.5" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.18.4</h2>
|
||
<p class="release-meta">April 18, 2026 · alpha-v2026.4.18-alpha.4</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9ac51bab9aeffc64788da22c30fc425934ea4488/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9ac51bab9aeffc64788da22c30fc425934ea4488"><tt>9ac51ba</tt></a> test: pin app test active vault</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>9ac51bab</code> on 2026-04-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.18-alpha.4/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.18-alpha.4" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.18.3</h2>
|
||
<p class="release-meta">April 18, 2026 · alpha-v2026.4.18-alpha.3</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1fee99486365fead20c1e0297858536c4303d1c9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1fee99486365fead20c1e0297858536c4303d1c9"><tt>1fee994</tt></a> test: cover mock vault config path</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>1fee9948</code> on 2026-04-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.18-alpha.3/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.18-alpha.3" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.18.2</h2>
|
||
<p class="release-meta">April 18, 2026 · alpha-v2026.4.18-alpha.2</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/764bbf0e4c23afeb129ec7c65278ab1fa55751a9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/764bbf0e4c23afeb129ec7c65278ab1fa55751a9"><tt>764bbf0</tt></a> test: scope inbox sidebar assertion</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>764bbf0e</code> on 2026-04-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.18-alpha.2/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.18-alpha.2" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.18.1</h2>
|
||
<p class="release-meta">April 18, 2026 · alpha-v2026.4.18-alpha.1</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ff05ba0430f7c0bfe6b563130d5dce9c8cf83638/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ff05ba0430f7c0bfe6b563130d5dce9c8cf83638"><tt>ff05ba0</tt></a> chore: ratchet codescene thresholds</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/347df47c62ab5fcf4c97baf487dd720f022e2061/hovercard" href="https://github.com/refactoringhq/tolaria/commit/347df47c62ab5fcf4c97baf487dd720f022e2061"><tt>347df47</tt></a> fix: stabilize smoke vault harness</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7536169508f212a96a9652287df938a6d9aacda6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7536169508f212a96a9652287df938a6d9aacda6"><tt>7536169</tt></a> fix: resume onboarding after telemetry consent</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>ff05ba04</code> on 2026-04-18</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.18-alpha.1/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.18-alpha.1" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.17.12</h2>
|
||
<p class="release-meta">April 17, 2026 · alpha-v2026.4.17-alpha.12</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/34de3847386008b7367c49ae7e0449d18fa1ccbb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/34de3847386008b7367c49ae7e0449d18fa1ccbb"><tt>34de384</tt></a> fix: preserve yml views in raw editor</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>34de3847</code> on 2026-04-17</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.17-alpha.12/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.17-alpha.12" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.17.11</h2>
|
||
<p class="release-meta">April 17, 2026 · alpha-v2026.4.17-alpha.11</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/954ee42f0b15f60323110f449ee42aafbfbbae04/hovercard" href="https://github.com/refactoringhq/tolaria/commit/954ee42f0b15f60323110f449ee42aafbfbbae04"><tt>954ee42</tt></a> fix: restore seeded vault guidance compatibility</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>954ee42f</code> on 2026-04-17</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.17-alpha.11/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.17-alpha.11" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.17.10</h2>
|
||
<p class="release-meta">April 17, 2026 · alpha-v2026.4.17-alpha.10</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f67aafe442e3a5a97a8b9b4f2990873f6983cfeb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f67aafe442e3a5a97a8b9b4f2990873f6983cfeb"><tt>f67aafe</tt></a> fix: guard optional filename marks</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b2122ac24ceb92f30ac6d82b3b4e7142a814becc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b2122ac24ceb92f30ac6d82b3b4e7142a814becc"><tt>b2122ac</tt></a> fix: stop auto-linking plain filenames</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>f67aafe4</code> on 2026-04-17</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.17-alpha.10/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.17-alpha.10" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.17.9</h2>
|
||
<p class="release-meta">April 17, 2026 · alpha-v2026.4.17-alpha.9</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6f8810146ea867d859c898b31e29a0c87b23d2dc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6f8810146ea867d859c898b31e29a0c87b23d2dc"><tt>6f88101</tt></a> Sync getting-started AGENTS guidance</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/929ba9241e5352e46fd4ae1bc6f136e46da06746/hovercard" href="https://github.com/refactoringhq/tolaria/commit/929ba9241e5352e46fd4ae1bc6f136e46da06746"><tt>929ba92</tt></a> Refresh getting-started view guidance</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>6f881014</code> on 2026-04-17</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.17-alpha.9/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.17-alpha.9" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.17.8</h2>
|
||
<p class="release-meta">April 17, 2026 · alpha-v2026.4.17-alpha.8</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c5e84c8218bf4e6c031a2c0d84abaf3aa2d05701/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c5e84c8218bf4e6c031a2c0d84abaf3aa2d05701"><tt>c5e84c8</tt></a> fix: keep image toolbar controls open</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c5e84c82</code> on 2026-04-17</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.17-alpha.8/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.17-alpha.8" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.17.7</h2>
|
||
<p class="release-meta">April 17, 2026 · alpha-v2026.4.17-alpha.7</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fb55ed2f6d37492d861f977eada38464e5b6b895/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fb55ed2f6d37492d861f977eada38464e5b6b895"><tt>fb55ed2</tt></a> fix: remove unsupported block colors menu</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>fb55ed2f</code> on 2026-04-17</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.17-alpha.7/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.17-alpha.7" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.17.6</h2>
|
||
<p class="release-meta">April 17, 2026 · alpha-v2026.4.17-alpha.6</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/91a02471875320071748d9198da1fd8c4158db8c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/91a02471875320071748d9198da1fd8c4158db8c"><tt>91a0247</tt></a> fix: stop editor toggles from changing modified order</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>91a02471</code> on 2026-04-17</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.17-alpha.6/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.17-alpha.6" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.17.5</h2>
|
||
<p class="release-meta">April 17, 2026 · alpha-v2026.4.17-alpha.5</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ce78abfd572d28ecf950ea0db897584002581a37/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ce78abfd572d28ecf950ea0db897584002581a37"><tt>ce78abf</tt></a> Restore icon property in inspector</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>ce78abfd</code> on 2026-04-17</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.17-alpha.5/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.17-alpha.5" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.17.4</h2>
|
||
<p class="release-meta">April 17, 2026 · alpha-v2026.4.17-alpha.4</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6202892512e222b064396f4703e4275c8ac983e0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6202892512e222b064396f4703e4275c8ac983e0"><tt>6202892</tt></a> Shorten AI agent footer badge</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>62028925</code> on 2026-04-17</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.17-alpha.4/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.17-alpha.4" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.17.3</h2>
|
||
<p class="release-meta">April 17, 2026 · alpha-v2026.4.17-alpha.3</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2eb21356efbd1a85a2a65d17614205a563be0e90/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2eb21356efbd1a85a2a65d17614205a563be0e90"><tt>2eb2135</tt></a> Polish settings panel and tooltip alignment</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>2eb21356</code> on 2026-04-17</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.17-alpha.3/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.17-alpha.3" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.17.2</h2>
|
||
<p class="release-meta">April 17, 2026 · alpha-v2026.4.17-alpha.2</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4cbf359c7beb206c4df1601f52bd5b7b27db70f0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4cbf359c7beb206c4df1601f52bd5b7b27db70f0"><tt>4cbf359</tt></a> docs: add/update ADRs for git checkpoints and H1 rename setting (guard — from commit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/323ef1913bb6978d59de6032a4d49efcb6de2d87/hovercard" href="https://github.com/refactoringhq/tolaria/commit/323ef1913bb6978d59de6032a4d49efcb6de2d87"><tt>323ef19</tt></a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>4cbf359c</code> on 2026-04-17</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.17-alpha.2/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.17-alpha.2" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.17.1</h2>
|
||
<p class="release-meta">April 17, 2026 · alpha-v2026.4.17-alpha.1</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4e7069174e24bbadc1ef9350a529029696d341c9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4e7069174e24bbadc1ef9350a529029696d341c9"><tt>4e70691</tt></a> test: refresh smoke selectors for toolbar actions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/22cefe491206238ab8e83a6faae6e41bc86aafac/hovercard" href="https://github.com/refactoringhq/tolaria/commit/22cefe491206238ab8e83a6faae6e41bc86aafac"><tt>22cefe4</tt></a> feat: add action tooltips to note controls</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>4e706917</code> on 2026-04-17</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.17-alpha.1/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.17-alpha.1" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.16.11</h2>
|
||
<p class="release-meta">April 16, 2026 · alpha-v2026.4.16-alpha.11</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ce26c57e9997947231c18fb3eceb9b397e9cb5c6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ce26c57e9997947231c18fb3eceb9b397e9cb5c6"><tt>ce26c57</tt></a> feat: expand note list search content</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>ce26c57e</code> on 2026-04-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.16-alpha.11/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.16-alpha.11" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.16.10</h2>
|
||
<p class="release-meta">April 16, 2026 · alpha-v2026.4.16-alpha.10</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8238134435028eb775a246287c0bc042ffbf62d1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8238134435028eb775a246287c0bc042ffbf62d1"><tt>8238134</tt></a> chore: ratchet codescene thresholds</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/10fe1239bdafcef536f28b7e602a090760ec0229/hovercard" href="https://github.com/refactoringhq/tolaria/commit/10fe1239bdafcef536f28b7e602a090760ec0229"><tt>10fe123</tt></a> fix: restore inspector build types</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a84f3c93ca27e1815006e6590e87682b6f23105f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a84f3c93ca27e1815006e6590e87682b6f23105f"><tt>a84f3c9</tt></a> feat: warn on missing note types</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>82381344</code> on 2026-04-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.16-alpha.10/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.16-alpha.10" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.16.9</h2>
|
||
<p class="release-meta">April 16, 2026 · alpha-v2026.4.16-alpha.9</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/072591ad59564ffaa42af2b5e60e6d589e9ce80e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/072591ad59564ffaa42af2b5e60e6d589e9ce80e"><tt>072591a</tt></a> test: restore serialized smoke menu bridge</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/323ef1913bb6978d59de6032a4d49efcb6de2d87/hovercard" href="https://github.com/refactoringhq/tolaria/commit/323ef1913bb6978d59de6032a4d49efcb6de2d87"><tt>323ef19</tt></a> feat: add AutoGit idle and inactive checkpoints</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>072591ad</code> on 2026-04-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.16-alpha.9/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.16-alpha.9" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.16.8</h2>
|
||
<p class="release-meta">April 16, 2026 · alpha-v2026.4.16-alpha.8</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2b85f4e45f0d610bb5cd5fa4df32702134af6c14/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2b85f4e45f0d610bb5cd5fa4df32702134af6c14"><tt>2b85f4e</tt></a> fix: preserve valid bold markdown in rich editor</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>2b85f4e4</code> on 2026-04-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.16-alpha.8/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.16-alpha.8" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.16.7</h2>
|
||
<p class="release-meta">April 16, 2026 · alpha-v2026.4.16-alpha.7</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3bcfedda5bf578b9b02082e9aaf03e90542adb57/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3bcfedda5bf578b9b02082e9aaf03e90542adb57"><tt>3bcfedd</tt></a> refactor: split vault mod tests by responsibility</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>3bcfedda</code> on 2026-04-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.16-alpha.7/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.16-alpha.7" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.16.6</h2>
|
||
<p class="release-meta">April 16, 2026 · alpha-v2026.4.16-alpha.6</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/3e45fd898ae84c4d0272307add686d7d2533e07f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/3e45fd898ae84c4d0272307add686d7d2533e07f"><tt>3e45fd8</tt></a> fix: limit markdown list highlighting to markers</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>3e45fd89</code> on 2026-04-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.16-alpha.6/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.16-alpha.6" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.16.5</h2>
|
||
<p class="release-meta">April 16, 2026 · alpha-v2026.4.16-alpha.5</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6334d10540c80679d365f39d3f4a37c00b3df990/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6334d10540c80679d365f39d3f4a37c00b3df990"><tt>6334d10</tt></a> 💅 polish inspector, note list, and history UI</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>6334d105</code> on 2026-04-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.16-alpha.5/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.16-alpha.5" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.16.4</h2>
|
||
<p class="release-meta">April 16, 2026 · alpha-v2026.4.16-alpha.4</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5eeb37e32d04eadf88340b2c323793cc747fa3c2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5eeb37e32d04eadf88340b2c323793cc747fa3c2"><tt>5eeb37e</tt></a> fix: make pulse rows edge to edge</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>5eeb37e3</code> on 2026-04-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.16-alpha.4/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.16-alpha.4" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.16.3</h2>
|
||
<p class="release-meta">April 16, 2026 · alpha-v2026.4.16-alpha.3</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/193b7c2a44912431633b5787949c4652fa89f172/hovercard" href="https://github.com/refactoringhq/tolaria/commit/193b7c2a44912431633b5787949c4652fa89f172"><tt>193b7c2</tt></a> fix: align sidebar count column</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>193b7c2a</code> on 2026-04-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.16-alpha.3/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.16-alpha.3" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.16.2</h2>
|
||
<p class="release-meta">April 16, 2026 · alpha-v2026.4.16-alpha.2</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a36760efe6c67c7dd4c009e7a0ee9f4282f02bce/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a36760efe6c67c7dd4c009e7a0ee9f4282f02bce"><tt>a36760e</tt></a> fix: satisfy rust clippy gate</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>a36760ef</code> on 2026-04-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.16-alpha.2/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.16-alpha.2" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria Alpha 2026.4.16.1</h2>
|
||
<p class="release-meta">April 16, 2026 · alpha-v2026.4.16-alpha.1</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/edd5a1ce8fb5b50e277d6faa2b28ac6327392dd3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/edd5a1ce8fb5b50e277d6faa2b28ac6327392dd3"><tt>edd5a1c</tt></a> feat: align release version naming</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>edd5a1ce</code> on 2026-04-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v2026.4.16-alpha.1/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v2026.4.16-alpha.1" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604161204.795 (Alpha)</h2>
|
||
<p class="release-meta">April 16, 2026 · alpha-v0.1.1-alpha.202604161204.795</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/991ee8689e46c150418a8c71e7a22d8cd1dd910d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/991ee8689e46c150418a8c71e7a22d8cd1dd910d"><tt>991ee86</tt></a> refactor: simplify note item composition</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>991ee868</code> on 2026-04-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604161204.795/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604161204.795" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604161111.794 (Alpha)</h2>
|
||
<p class="release-meta">April 16, 2026 · alpha-v0.1.1-alpha.202604161111.794</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e1117002039c4a02210d106dd256424bd60f3429/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e1117002039c4a02210d106dd256424bd60f3429"><tt>e111700</tt></a> fix: restore relationship panel layout</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>e1117002</code> on 2026-04-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604161111.794/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604161111.794" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604161051.793 (Alpha)</h2>
|
||
<p class="release-meta">April 16, 2026 · alpha-v0.1.1-alpha.202604161051.793</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2772064b2a6a22d98a78278be2091b8178181970/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2772064b2a6a22d98a78278be2091b8178181970"><tt>2772064</tt></a> fix: prefer local mtimes in modified sort</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>2772064b</code> on 2026-04-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604161051.793/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604161051.793" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604161025.792 (Alpha)</h2>
|
||
<p class="release-meta">April 16, 2026 · alpha-v0.1.1-alpha.202604161025.792</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c0d16e4b4d1477061436dd772e8d2f97d4f8bf1b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c0d16e4b4d1477061436dd772e8d2f97d4f8bf1b"><tt>c0d16e4</tt></a> feat: add h1 auto-rename setting</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c0d16e4b</code> on 2026-04-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604161025.792/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604161025.792" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604160959.791 (Alpha)</h2>
|
||
<p class="release-meta">April 16, 2026 · alpha-v0.1.1-alpha.202604160959.791</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/711d49b3bbe50ead71afbbac2f00e76b35d5735f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/711d49b3bbe50ead71afbbac2f00e76b35d5735f"><tt>711d49b</tt></a> fix: align property panel rows</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>711d49b3</code> on 2026-04-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604160959.791/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604160959.791" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604160935.790 (Alpha)</h2>
|
||
<p class="release-meta">April 16, 2026 · alpha-v0.1.1-alpha.202604160935.790</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/53b3f5a14b0cfc7ce3ff6e0d99fbe5e2e9cfb6d2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/53b3f5a14b0cfc7ce3ff6e0d99fbe5e2e9cfb6d2"><tt>53b3f5a</tt></a> fix: type editor formatting block selector</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d1dbada9e421f5fa22cdf3eff78c23ff8303b92c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d1dbada9e421f5fa22cdf3eff78c23ff8303b92c"><tt>d1dbada</tt></a> fix: restore markdown-safe editor formatting controls</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>53b3f5a1</code> on 2026-04-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604160935.790/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604160935.790" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604160832.789 (Alpha)</h2>
|
||
<p class="release-meta">April 16, 2026 · alpha-v0.1.1-alpha.202604160832.789</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4e66f09eefe758818418922ed955596a356aff0b/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4e66f09eefe758818418922ed955596a356aff0b"><tt>4e66f09</tt></a> fix: make note-list property pickers searchable</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>4e66f09e</code> on 2026-04-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604160832.789/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604160832.789" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604160759.788 (Alpha)</h2>
|
||
<p class="release-meta">April 16, 2026 · alpha-v0.1.1-alpha.202604160759.788</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f5b1d763c1a95667f602e059dd92ff72b6ce4638/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f5b1d763c1a95667f602e059dd92ff72b6ce4638"><tt>f5b1d76</tt></a> docs: ratchet codescene thresholds</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>f5b1d763</code> on 2026-04-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604160759.788/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604160759.788" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604160745.787 (Alpha)</h2>
|
||
<p class="release-meta">April 16, 2026 · alpha-v0.1.1-alpha.202604160745.787</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/905754e0c59fd94b1213f8c94e7a94fa41203962/hovercard" href="https://github.com/refactoringhq/tolaria/commit/905754e0c59fd94b1213f8c94e7a94fa41203962"><tt>905754e</tt></a> fix: reduce editor-only window width floor</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>905754e0</code> on 2026-04-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604160745.787/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604160745.787" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604160718.786 (Alpha)</h2>
|
||
<p class="release-meta">April 16, 2026 · alpha-v0.1.1-alpha.202604160718.786</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f665f089dc86bc009645e89dce5ac705389ed0a0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f665f089dc86bc009645e89dce5ac705389ed0a0"><tt>f665f08</tt></a> fix: narrow note list entity selection</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/57a87e43b3560a432af2f7f1a903a42fcd8d30f0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/57a87e43b3560a432af2f7f1a903a42fcd8d30f0"><tt>57a87e4</tt></a> fix: make keyboard note navigation predictable</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>f665f089</code> on 2026-04-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604160718.786/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604160718.786" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604160557.785 (Alpha)</h2>
|
||
<p class="release-meta">April 16, 2026 · alpha-v0.1.1-alpha.202604160557.785</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1b3a9e3ecf88e9512e5904039344c9eb6ba17a6f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1b3a9e3ecf88e9512e5904039344c9eb6ba17a6f"><tt>1b3a9e3</tt></a> fix: keep raw frontmatter out of markdown headings</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>1b3a9e3e</code> on 2026-04-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604160557.785/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604160557.785" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604160534.784 (Alpha)</h2>
|
||
<p class="release-meta">April 16, 2026 · alpha-v0.1.1-alpha.202604160534.784</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f8bd3e1b4ae14ffcbfe0ce6abfd155f6e77df9b9/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f8bd3e1b4ae14ffcbfe0ce6abfd155f6e77df9b9"><tt>f8bd3e1</tt></a> feat: show property kind icons</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>f8bd3e1b</code> on 2026-04-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604160534.784/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604160534.784" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604160510.783 (Alpha)</h2>
|
||
<p class="release-meta">April 16, 2026 · alpha-v0.1.1-alpha.202604160510.783</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1b10aa96603c0c2a89d7cfa5cb51c12e2d2b1ec8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1b10aa96603c0c2a89d7cfa5cb51c12e2d2b1ec8"><tt>1b10aa9</tt></a> test: cover mcp config edge cases</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>1b10aa96</code> on 2026-04-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604160510.783/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604160510.783" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604160450.782 (Alpha)</h2>
|
||
<p class="release-meta">April 16, 2026 · alpha-v0.1.1-alpha.202604160450.782</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/514c1f9ef7def9b684fae30b075f17a092067bd7/hovercard" href="https://github.com/refactoringhq/tolaria/commit/514c1f9ef7def9b684fae30b075f17a092067bd7"><tt>514c1f9</tt></a> fix: satisfy rust quality gates</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e9c1ae2b8a8afb35c05d1055f8aa396bafa5ce7d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e9c1ae2b8a8afb35c05d1055f8aa396bafa5ce7d"><tt>e9c1ae2</tt></a> fix: canonicalize hidden system metadata</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>514c1f9e</code> on 2026-04-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604160450.782/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604160450.782" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604160348.781 (Alpha)</h2>
|
||
<p class="release-meta">April 16, 2026 · alpha-v0.1.1-alpha.202604160348.781</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e8e2004aa868c984f4ea3c4b6323c7d6b128f769/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e8e2004aa868c984f4ea3c4b6323c7d6b128f769"><tt>e8e2004</tt></a> fix: make the pulse header draggable</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>e8e2004a</code> on 2026-04-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604160348.781/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604160348.781" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604160314.780 (Alpha)</h2>
|
||
<p class="release-meta">April 16, 2026 · alpha-v0.1.1-alpha.202604160314.780</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a448945ed5a134fca42e74a23d71f9fa32eb6f65/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a448945ed5a134fca42e74a23d71f9fa32eb6f65"><tt>a448945</tt></a> fix: format window constraint command imports</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d469f220e701b0722c171ceb30e05861c9e1a3ab/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d469f220e701b0722c171ceb30e05861c9e1a3ab"><tt>d469f22</tt></a> fix: make main window min width follow visible panes</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>a448945e</code> on 2026-04-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604160314.780/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604160314.780" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604160153.779 (Alpha)</h2>
|
||
<p class="release-meta">April 16, 2026 · alpha-v0.1.1-alpha.202604160153.779</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d60c47ee27b33ecc24ba9b015c10284fe897355f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d60c47ee27b33ecc24ba9b015c10284fe897355f"><tt>d60c47e</tt></a> feat: standardize relationship property labels</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>d60c47ee</code> on 2026-04-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604160153.779/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604160153.779" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604160115.778 (Alpha)</h2>
|
||
<p class="release-meta">April 16, 2026 · alpha-v0.1.1-alpha.202604160115.778</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/087e9f13c88ffb15a97b02967a6aaa5a081cfedc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/087e9f13c88ffb15a97b02967a6aaa5a081cfedc"><tt>087e9f1</tt></a> fix: rename getting started starter repo</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>087e9f13</code> on 2026-04-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604160115.778/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604160115.778" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604160050.777 (Alpha)</h2>
|
||
<p class="release-meta">April 16, 2026 · alpha-v0.1.1-alpha.202604160050.777</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ed93b4b234d82fcbbb84939218d716e1d5a02f6a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ed93b4b234d82fcbbb84939218d716e1d5a02f6a"><tt>ed93b4b</tt></a> fix: stop defaulting new note status</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>ed93b4b2</code> on 2026-04-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604160050.777/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604160050.777" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604160028.776 (Alpha)</h2>
|
||
<p class="release-meta">April 16, 2026 · alpha-v0.1.1-alpha.202604160028.776</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b8dfc79e80cca7326e00e2fa87e6870302b25722/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b8dfc79e80cca7326e00e2fa87e6870302b25722"><tt>b8dfc79</tt></a> fix: align note list model event types</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/bbf98d6112a076f73e6f82e361e9c31b021d14ce/hovercard" href="https://github.com/refactoringhq/tolaria/commit/bbf98d6112a076f73e6f82e361e9c31b021d14ce"><tt>bbf98d6</tt></a> feat: customize all-notes note list columns</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>b8dfc79e</code> on 2026-04-16</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604160028.776/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604160028.776" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604152352.775 (Alpha)</h2>
|
||
<p class="release-meta">April 15, 2026 · alpha-v0.1.1-alpha.202604152352.775</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f3ee593dee57b4577485aadab363ade31c2a5c36/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f3ee593dee57b4577485aadab363ade31c2a5c36"><tt>f3ee593</tt></a> test: include multi-selection smoke in curated suite</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>f3ee593d</code> on 2026-04-15</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604152352.775/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604152352.775" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604152345.774 (Alpha)</h2>
|
||
<p class="release-meta">April 15, 2026 · alpha-v0.1.1-alpha.202604152345.774</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2bd5d644973662a28bb03494b11a4c52ff1f8ffa/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2bd5d644973662a28bb03494b11a4c52ff1f8ffa"><tt>2bd5d64</tt></a> fix: include multi-selection keyboard action type</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9c0bda55f60fa3c1a819b23a33f036e15b58b14d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9c0bda55f60fa3c1a819b23a33f036e15b58b14d"><tt>9c0bda5</tt></a> fix: apply note shortcuts to full multi-selection</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>2bd5d644</code> on 2026-04-15</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604152345.774/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604152345.774" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604152251.773 (Alpha)</h2>
|
||
<p class="release-meta">April 15, 2026 · alpha-v0.1.1-alpha.202604152251.773</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2c0c464eacb0643dfe961c351136a6913f45d153/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2c0c464eacb0643dfe961c351136a6913f45d153"><tt>2c0c464</tt></a> chore: ratchet codescene thresholds</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/82192f23be5ceeba9f7e1a49cf6f1a02a564d2c6/hovercard" href="https://github.com/refactoringhq/tolaria/commit/82192f23be5ceeba9f7e1a49cf6f1a02a564d2c6"><tt>82192f2</tt></a> feat: simplify bulk action bar</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>2c0c464e</code> on 2026-04-15</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604152251.773/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604152251.773" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604152207.772 (Alpha)</h2>
|
||
<p class="release-meta">April 15, 2026 · alpha-v0.1.1-alpha.202604152207.772</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/310e159894d228e0a36d5441910042389f04f1bb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/310e159894d228e0a36d5441910042389f04f1bb"><tt>310e159</tt></a> fix: remove status bar note count</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>310e1598</code> on 2026-04-15</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604152207.772/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604152207.772" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604152139.771 (Alpha)</h2>
|
||
<p class="release-meta">April 15, 2026 · alpha-v0.1.1-alpha.202604152139.771</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/77a7d9d5191a31b04c08496a7ef16a3c3a0538fc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/77a7d9d5191a31b04c08496a7ef16a3c3a0538fc"><tt>77a7d9d</tt></a> fix: preserve editor mode position</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>77a7d9d5</code> on 2026-04-15</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604152139.771/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604152139.771" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604152048.770 (Alpha)</h2>
|
||
<p class="release-meta">April 15, 2026 · alpha-v0.1.1-alpha.202604152048.770</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/37f099ab1e24d13c918b16a43dd340f88dc3729e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/37f099ab1e24d13c918b16a43dd340f88dc3729e"><tt>37f099a</tt></a> fix: keep editor formatting markdown-safe</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>37f099ab</code> on 2026-04-15</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604152048.770/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604152048.770" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604151747.769 (Alpha)</h2>
|
||
<p class="release-meta">April 15, 2026 · alpha-v0.1.1-alpha.202604151747.769</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8f72c4839d4d86f70abe395e7cbc69546fafe5ef/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8f72c4839d4d86f70abe395e7cbc69546fafe5ef"><tt>8f72c48</tt></a> fix: preserve zoomed block handle hover</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>8f72c483</code> on 2026-04-15</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604151747.769/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604151747.769" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604151705.768 (Alpha)</h2>
|
||
<p class="release-meta">April 15, 2026 · alpha-v0.1.1-alpha.202604151705.768</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a1331453ad6d58e9e8071011bb6ab9e468f38c29/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a1331453ad6d58e9e8071011bb6ab9e468f38c29"><tt>a133145</tt></a> fix: keep untitled rename non-blocking</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>a1331453</code> on 2026-04-15</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604151705.768/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604151705.768" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604151639.767 (Alpha)</h2>
|
||
<p class="release-meta">April 15, 2026 · alpha-v0.1.1-alpha.202604151639.767</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8518e89f03542bd963e4c0d399028b194b8fd651/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8518e89f03542bd963e4c0d399028b194b8fd651"><tt>8518e89</tt></a> fix: prevent duplicate untitled saves during rename</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>8518e89f</code> on 2026-04-15</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604151639.767/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604151639.767" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604151603.766 (Alpha)</h2>
|
||
<p class="release-meta">April 15, 2026 · alpha-v0.1.1-alpha.202604151603.766</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a5cde9e2d68475f81be121ed1037705a35de6878/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a5cde9e2d68475f81be121ed1037705a35de6878"><tt>a5cde9e</tt></a> fix: open pulse rows in commit diff mode</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>a5cde9e2</code> on 2026-04-15</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604151603.766/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604151603.766" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604151504.765 (Alpha)</h2>
|
||
<p class="release-meta">April 15, 2026 · alpha-v0.1.1-alpha.202604151504.765</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2ad3d1cae15f156d126ac5736c5a08e659ea17b0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2ad3d1cae15f156d126ac5736c5a08e659ea17b0"><tt>2ad3d1c</tt></a> fix: inject telemetry envs into release builds</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>2ad3d1ca</code> on 2026-04-15</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604151504.765/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604151504.765" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604151449.764 (Alpha)</h2>
|
||
<p class="release-meta">April 15, 2026 · alpha-v0.1.1-alpha.202604151449.764</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li></li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>7eaf57d0</code> on 2026-04-15</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604151449.764/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604151449.764" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604150828.763 (Alpha)</h2>
|
||
<p class="release-meta">April 15, 2026 · alpha-v0.1.1-alpha.202604150828.763</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/e142b4c8f96c7370e7f511809c856bb1c30d332a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/e142b4c8f96c7370e7f511809c856bb1c30d332a"><tt>e142b4c</tt></a> docs: add/update ADR for root AI guidance files (guard — from commit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ec3f90e865f2582e0a87e1e0204f4d28a3747332/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ec3f90e865f2582e0a87e1e0204f4d28a3747332"><tt>ec3f90e</tt></a>)</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>e142b4c8</code> on 2026-04-15</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604150828.763/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604150828.763" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604142153.762 (Alpha)</h2>
|
||
<p class="release-meta">April 14, 2026 · alpha-v0.1.1-alpha.202604142153.762</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8f04ed59a4e2b05d658334253d55a52db275c560/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8f04ed59a4e2b05d658334253d55a52db275c560"><tt>8f04ed5</tt></a> fix: remap buffered saves after untitled rename</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>8f04ed59</code> on 2026-04-14</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604142153.762/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604142153.762" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604141921.761 (Alpha)</h2>
|
||
<p class="release-meta">April 14, 2026 · alpha-v0.1.1-alpha.202604141921.761</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8a5763959b9e7ebd33c17c19dd895272cc9093a4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8a5763959b9e7ebd33c17c19dd895272cc9093a4"><tt>8a57639</tt></a> fix: keep untitled rename non-blocking</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>8a576395</code> on 2026-04-14</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604141921.761/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604141921.761" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604141916.760 (Alpha)</h2>
|
||
<p class="release-meta">April 14, 2026 · alpha-v0.1.1-alpha.202604141916.760</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/4ab44fbe1a7d5dcb17f8c5aa967ffaff1c4917a3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/4ab44fbe1a7d5dcb17f8c5aa967ffaff1c4917a3"><tt>4ab44fb</tt></a> fix: preserve untitled rename cursor</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>4ab44fbe</code> on 2026-04-14</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604141916.760/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604141916.760" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604141850.759 (Alpha)</h2>
|
||
<p class="release-meta">April 14, 2026 · alpha-v0.1.1-alpha.202604141850.759</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2720c14e229a7e19d1c801d6636c9c5ad000fae5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2720c14e229a7e19d1c801d6636c9c5ad000fae5"><tt>2720c14</tt></a> fix: refresh stale vault agent guidance</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>2720c14e</code> on 2026-04-14</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604141850.759/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604141850.759" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604141817.758 (Alpha)</h2>
|
||
<p class="release-meta">April 14, 2026 · alpha-v0.1.1-alpha.202604141817.758</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8d3bfc2ca7c1a4c6ce981fc97d1ad6cbea93ceac/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8d3bfc2ca7c1a4c6ce981fc97d1ad6cbea93ceac"><tt>8d3bfc2</tt></a> chore: ratchet codescene thresholds</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9ccd0a722193e23e23b13a4519e45bbe7aa22a89/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9ccd0a722193e23e23b13a4519e45bbe7aa22a89"><tt>9ccd0a7</tt></a> fix: remove all notes status pills</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>8d3bfc2c</code> on 2026-04-14</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604141817.758/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604141817.758" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604141750.757 (Alpha)</h2>
|
||
<p class="release-meta">April 14, 2026 · alpha-v0.1.1-alpha.202604141750.757</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1388e7ddbe1d5d404997799ab5461f3fea563d8a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1388e7ddbe1d5d404997799ab5461f3fea563d8a"><tt>1388e7d</tt></a> fix: align sidebar view count chips</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>1388e7dd</code> on 2026-04-14</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604141750.757/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604141750.757" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604141653.756 (Alpha)</h2>
|
||
<p class="release-meta">April 14, 2026 · alpha-v0.1.1-alpha.202604141653.756</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cd76c0d65d6bb0ff5d6755bde51f08e085e36542/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cd76c0d65d6bb0ff5d6755bde51f08e085e36542"><tt>cd76c0d</tt></a> feat: add searchable type combobox</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>cd76c0d6</code> on 2026-04-14</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604141653.756/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604141653.756" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604141623.755 (Alpha)</h2>
|
||
<p class="release-meta">April 14, 2026 · alpha-v0.1.1-alpha.202604141623.755</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d9fd615d4cb1db02d2388a863ab35809b7f1a817/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d9fd615d4cb1db02d2388a863ab35809b7f1a817"><tt>d9fd615</tt></a> fix: open note windows from direct note paths</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>d9fd615d</code> on 2026-04-14</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604141623.755/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604141623.755" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604141544.754 (Alpha)</h2>
|
||
<p class="release-meta">April 14, 2026 · alpha-v0.1.1-alpha.202604141544.754</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1f4ae56c1c900b8b5baba27fc5ce7c21cd721fd3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1f4ae56c1c900b8b5baba27fc5ce7c21cd721fd3"><tt>1f4ae56</tt></a> fix: preserve aliased link labels</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/084d3d9c71d3427bc6a27db5915f775caa6efdc4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/084d3d9c71d3427bc6a27db5915f775caa6efdc4"><tt>084d3d9</tt></a> fix: preserve exact linked note titles</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>1f4ae56c</code> on 2026-04-14</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604141544.754/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604141544.754" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604141509.753 (Alpha)</h2>
|
||
<p class="release-meta">April 14, 2026 · alpha-v0.1.1-alpha.202604141509.753</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9041246a320c17952c9a4594b3efc0d54dce457a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9041246a320c17952c9a4594b3efc0d54dce457a"><tt>9041246</tt></a> test: stabilize CI vault defaults</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>9041246a</code> on 2026-04-14</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604141509.753/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604141509.753" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604141454.752 (Alpha)</h2>
|
||
<p class="release-meta">April 14, 2026 · alpha-v0.1.1-alpha.202604141454.752</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/6a8fe11027fc20d9c67dc300e10dd68b684a5601/hovercard" href="https://github.com/refactoringhq/tolaria/commit/6a8fe11027fc20d9c67dc300e10dd68b684a5601"><tt>6a8fe11</tt></a> fix: flush title rename saves before path changes</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>6a8fe110</code> on 2026-04-14</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604141454.752/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604141454.752" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604141346.751 (Alpha)</h2>
|
||
<p class="release-meta">April 14, 2026 · alpha-v0.1.1-alpha.202604141346.751</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0078cc257aabca04adb667ad112098de2fae6c8f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0078cc257aabca04adb667ad112098de2fae6c8f"><tt>0078cc2</tt></a> fix: harden rename saves and async deletes</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9f46f226675504cf22fe0856e762216938555fdb/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9f46f226675504cf22fe0856e762216938555fdb"><tt>9f46f22</tt></a> fix: skip alpha dmg packaging on CI</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>0078cc25</code> on 2026-04-14</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604141346.751/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604141346.751" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604141335.750 (Alpha)</h2>
|
||
<p class="release-meta">April 14, 2026 · alpha-v0.1.1-alpha.202604141335.750</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2b734da4cbe2d0080b48de674a990c0363110e5e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2b734da4cbe2d0080b48de674a990c0363110e5e"><tt>2b734da</tt></a> fix: clear cached tauri bundle artifacts</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/73c619892bb945942f6696db66cd1706f666d1a8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/73c619892bb945942f6696db66cd1706f666d1a8"><tt>73c6198</tt></a> fix: rotate tauri target cache keys</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8f1b3c75b22140ca7cf3dd61616113d814216c1d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8f1b3c75b22140ca7cf3dd61616113d814216c1d"><tt>8f1b3c7</tt></a> feat: show property type icons in rows</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/39da8254434750d9cb04611b9062ac57c7fdf956/hovercard" href="https://github.com/refactoringhq/tolaria/commit/39da8254434750d9cb04611b9062ac57c7fdf956"><tt>39da825</tt></a> fix: standardize property chip sizing</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7b86e3a524153d45052a91f5c7dbdd00444ec213/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7b86e3a524153d45052a91f5c7dbdd00444ec213"><tt>7b86e3a</tt></a> fix: align properties panel value columns</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ab92ea178f4725d4d066b27480b02afa383e9a95/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ab92ea178f4725d4d066b27480b02afa383e9a95"><tt>ab92ea1</tt></a> fix: align vault guidance status typing</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ec3f90e865f2582e0a87e1e0204f4d28a3747332/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ec3f90e865f2582e0a87e1e0204f4d28a3747332"><tt>ec3f90e</tt></a> feat: add vault ai guidance restore flow</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2356afdc42ca1395766af1d8c23d42446da85035/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2356afdc42ca1395766af1d8c23d42446da85035"><tt>2356afd</tt></a> style: format vault command wrappers</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9154a8153fa50801162e04a63838dc2c0b356044/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9154a8153fa50801162e04a63838dc2c0b356044"><tt>9154a81</tt></a> fix: refresh default vault agents guidance</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c0fbb1c40e809c72a4fa928589866cc017b9ff7e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c0fbb1c40e809c72a4fa928589866cc017b9ff7e"><tt>c0fbb1c</tt></a> refactor: remove obsolete scripts tooling</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/76fe4611c2cff60ee7c41656d4c86ca2e80a832c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/76fe4611c2cff60ee7c41656d4c86ca2e80a832c"><tt>76fe461</tt></a> test: stabilize untitled auto-rename smoke</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/62154535c02ba0a6f012768c1414753bf3b85e70/hovercard" href="https://github.com/refactoringhq/tolaria/commit/62154535c02ba0a6f012768c1414753bf3b85e70"><tt>6215453</tt></a> feat: add ai agent status bar switcher</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cff9583a463a8771a1f02468783d5dfb6654a2c5/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cff9583a463a8771a1f02468783d5dfb6654a2c5"><tt>cff9583</tt></a> fix: support caret boundary on current target</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/70252b63247d82d7b808d2e547ebcf273abb27dc/hovercard" href="https://github.com/refactoringhq/tolaria/commit/70252b63247d82d7b808d2e547ebcf273abb27dc"><tt>70252b6</tt></a> fix: anchor ai mode caret after wikilinks</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/60da17e13bb7dfbde074cc7e0a82bd181e1467f2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/60da17e13bb7dfbde074cc7e0a82bd181e1467f2"><tt>60da17e</tt></a> fix: restore blocknote slash menu styling</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0c9bfb14c33765329d91ca04a53d9c3aeca538b8/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0c9bfb14c33765329d91ca04a53d9c3aeca538b8"><tt>0c9bfb1</tt></a> fix: format async delete command</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/48d2246f0be650216699553e8b664e2443b8f113/hovercard" href="https://github.com/refactoringhq/tolaria/commit/48d2246f0be650216699553e8b664e2443b8f113"><tt>48d2246</tt></a> fix: make note deletion non-blocking</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d879457f897d2f56dcd396cf8c09bb873d01a981/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d879457f897d2f56dcd396cf8c09bb873d01a981"><tt>d879457</tt></a> docs: add ADR for ratcheted CodeScene thresholds (guard — from commit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/311dcc641391f046ef68b9c29173e1f4048360b2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/311dcc641391f046ef68b9c29173e1f4048360b2"><tt>311dcc6</tt></a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/311dcc641391f046ef68b9c29173e1f4048360b2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/311dcc641391f046ef68b9c29173e1f4048360b2"><tt>311dcc6</tt></a> chore: ratchet codescene thresholds after ADR guard checks</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f61e7d2ab30471fbd3993df330d13f9c974a4f07/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f61e7d2ab30471fbd3993df330d13f9c974a4f07"><tt>f61e7d2</tt></a> docs: update ADR for selectable CLI AI agents (guard — from commit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d540d76f7366a9a3f4ed77ee529549cee591e789/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d540d76f7366a9a3f4ed77ee529549cee591e789"><tt>d540d76</tt></a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1ac6bd887bff035855dbf31923dd8af6ff5f9c3e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1ac6bd887bff035855dbf31923dd8af6ff5f9c3e"><tt>1ac6bd8</tt></a> fix: format alpha build label parser</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f31f827a4f20f1b97ee68f0b1c4b91debe2352a4/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f31f827a4f20f1b97ee68f0b1c4b91debe2352a4"><tt>f31f827</tt></a> fix: restore alpha build label</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a1ffe7a074cdb7b0bf028c4d9e514cb008479f64/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a1ffe7a074cdb7b0bf028c4d9e514cb008479f64"><tt>a1ffe7a</tt></a> fix: align note list header icons</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1b45394d0a89a85055ce3499af9048da4801f715/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1b45394d0a89a85055ce3499af9048da4801f715"><tt>1b45394</tt></a> fix: show filenames in changes view</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/95f0153c1b0bbbc93b9b3a076af58c02ed7b1c42/hovercard" href="https://github.com/refactoringhq/tolaria/commit/95f0153c1b0bbbc93b9b3a076af58c02ed7b1c42"><tt>95f0153</tt></a> fix: restore aligned property panel values</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a034a79db2745b9ca5e9043cece71fb2b5a308ef/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a034a79db2745b9ca5e9043cece71fb2b5a308ef"><tt>a034a79</tt></a> fix: align blocknote editor context</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1f148ebe323dc24a64ab7f8f5681aa94acb46941/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1f148ebe323dc24a64ab7f8f5681aa94acb46941"><tt>1f148eb</tt></a> fix: restore vault type command export</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b7cb3c2130a76bea8c7bcd38848e7500bbb4ec66/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b7cb3c2130a76bea8c7bcd38848e7500bbb4ec66"><tt>b7cb3c2</tt></a> fix: remove legacy journal command surfaces</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/f50d9127d1de9b987cf4bf531e44063e2fc95397/hovercard" href="https://github.com/refactoringhq/tolaria/commit/f50d9127d1de9b987cf4bf531e44063e2fc95397"><tt>f50d912</tt></a> fix: restore editor code block highlighting</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2a353d57494aa34b829734806bc732f86ae13f32/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2a353d57494aa34b829734806bc732f86ae13f32"><tt>2a353d5</tt></a> fix: keep caret after command palette ai trigger</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>2b734da4</code> on 2026-04-14</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604141335.750/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604141335.750/Tolaria_0.1.1-alpha.202604141335.750_aarch64.dmg" target="_blank" rel="noreferrer">Tolaria_0.1.1-alpha.202604141335.750_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604141335.750" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604131752.730 (Alpha)</h2>
|
||
<p class="release-meta">April 13, 2026 · alpha-v0.1.1-alpha.202604131752.730</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/c2f9b7c20dd80ee19b244ebfbe2f4a6f9dd249a1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/c2f9b7c20dd80ee19b244ebfbe2f4a6f9dd249a1"><tt>c2f9b7c</tt></a> fix: restore ai smoke compatibility</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d540d76f7366a9a3f4ed77ee529549cee591e789/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d540d76f7366a9a3f4ed77ee529549cee591e789"><tt>d540d76</tt></a> feat: support selectable cli ai agents</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/cdfc0c91359103c5215377149bdedb9d13a93aa0/hovercard" href="https://github.com/refactoringhq/tolaria/commit/cdfc0c91359103c5215377149bdedb9d13a93aa0"><tt>cdfc0c9</tt></a> docs: clarify demo vault automation hygiene</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>c2f9b7c2</code> on 2026-04-13</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604131752.730/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604131752.730/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604131752.730/Tolaria_0.1.1-alpha.202604131752.730_aarch64.dmg" target="_blank" rel="noreferrer">Tolaria_0.1.1-alpha.202604131752.730_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604131752.730" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604131550.728 (Alpha)</h2>
|
||
<p class="release-meta">April 13, 2026 · alpha-v0.1.1-alpha.202604131550.728</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5b29e061fe464ac4063046d762f7ea0e0743e86a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5b29e061fe464ac4063046d762f7ea0e0743e86a"><tt>5b29e06</tt></a> fix: refresh renamed note metadata</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>5b29e061</code> on 2026-04-13</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604131550.728/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604131550.728/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604131550.728/Tolaria_0.1.1-alpha.202604131550.728_aarch64.dmg" target="_blank" rel="noreferrer">Tolaria_0.1.1-alpha.202604131550.728_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604131550.728" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
<article class="release-card release-card--alpha">
|
||
<div class="release-header">
|
||
<div>
|
||
<h2>Tolaria 0.1.1-alpha.202604131528.727 (Alpha)</h2>
|
||
<p class="release-meta">April 13, 2026 · alpha-v0.1.1-alpha.202604131528.727</p>
|
||
</div>
|
||
<span class="release-channel">Alpha</span>
|
||
</div>
|
||
<div class="release-notes"><h2>What's Changed (Alpha)</h2>
|
||
<ul>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5102923c9cbd5adbec2d0c81d408c99fe524351c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5102923c9cbd5adbec2d0c81d408c99fe524351c"><tt>5102923</tt></a> fix: repair release workflow parsing</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/87be231f9f5b357c3ad397f9943b456b27240520/hovercard" href="https://github.com/refactoringhq/tolaria/commit/87be231f9f5b357c3ad397f9943b456b27240520"><tt>87be231</tt></a> test: format git status assertions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/557a45189dd74c171ed71255d5e36316de594e24/hovercard" href="https://github.com/refactoringhq/tolaria/commit/557a45189dd74c171ed71255d5e36316de594e24"><tt>557a451</tt></a> fix: show diff stats in changes list</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/2107764550b094ffc22c8e8a4e870cf9eb995d26/hovercard" href="https://github.com/refactoringhq/tolaria/commit/2107764550b094ffc22c8e8a4e870cf9eb995d26"><tt>2107764</tt></a> fix: cap properties panel label column width</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/0a52ae6c1df0fd38c9e210b4a8ddac0b4d206118/hovercard" href="https://github.com/refactoringhq/tolaria/commit/0a52ae6c1df0fd38c9e210b4a8ddac0b4d206118"><tt>0a52ae6</tt></a> fix: prevent stale raw content after note switch</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/487e8d0352ff395eabc4f22e58916de7177ba891/hovercard" href="https://github.com/refactoringhq/tolaria/commit/487e8d0352ff395eabc4f22e58916de7177ba891"><tt>487e8d0</tt></a> fix: preserve hard breaks when toggling editors</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/d4aacf1bea4531a2e1267477bb002bbce537a843/hovercard" href="https://github.com/refactoringhq/tolaria/commit/d4aacf1bea4531a2e1267477bb002bbce537a843"><tt>d4aacf1</tt></a> fix: focus command palette ai mode immediately</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/71df363bb62a2eb59a167d539cf1e0884da1de58/hovercard" href="https://github.com/refactoringhq/tolaria/commit/71df363bb62a2eb59a167d539cf1e0884da1de58"><tt>71df363</tt></a> fix: satisfy command palette ai push checks</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/91ab5be9143ecd016aeec4ac460eedbea09ac86d/hovercard" href="https://github.com/refactoringhq/tolaria/commit/91ab5be9143ecd016aeec4ac460eedbea09ac86d"><tt>91ab5be</tt></a> fix: stabilize command palette ai mode editing</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/9623203756d8839e27c50a8b6d83356c042108aa/hovercard" href="https://github.com/refactoringhq/tolaria/commit/9623203756d8839e27c50a8b6d83356c042108aa"><tt>9623203</tt></a> fix: restore blocknote code block theme</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5897782a7e1aad9820ea95392887e612788aa46e/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5897782a7e1aad9820ea95392887e612788aa46e"><tt>5897782</tt></a> fix: stabilize new note title focus smoke</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/b4abc05f0e35d76c7ba7be5eb547a2eeee1e2841/hovercard" href="https://github.com/refactoringhq/tolaria/commit/b4abc05f0e35d76c7ba7be5eb547a2eeee1e2841"><tt>b4abc05</tt></a> fix: harden legacy release channel fallback</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/8f408d9ef0e335087a5f21df74de53707eabb27c/hovercard" href="https://github.com/refactoringhq/tolaria/commit/8f408d9ef0e335087a5f21df74de53707eabb27c"><tt>8f408d9</tt></a> fix: guard blocknote table handles on raw return</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/1d778826e8b3003040cb40172b6fd86fb6e6aa00/hovercard" href="https://github.com/refactoringhq/tolaria/commit/1d778826e8b3003040cb40172b6fd86fb6e6aa00"><tt>1d77882</tt></a> fix: restore empty editor drag region</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5120d7590342d0a9dedcb0d096bbc68cebd2f76a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5120d7590342d0a9dedcb0d096bbc68cebd2f76a"><tt>5120d75</tt></a> fix: update getting_started.rs AGENTS template to use type: instead of is_a:</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/5d7426797f37a2e4c8fee7b8fb970e19a9f8c4f3/hovercard" href="https://github.com/refactoringhq/tolaria/commit/5d7426797f37a2e4c8fee7b8fb970e19a9f8c4f3"><tt>5d74267</tt></a> docs: add ADR-0060 and ADR-0061 for network-aware UI gating and AI prompt bridge (guard — from commits <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/739e1b3c201f045fa2ee9ab6636a5e2ed7467f09/hovercard" href="https://github.com/refactoringhq/tolaria/commit/739e1b3c201f045fa2ee9ab6636a5e2ed7467f09"><tt>739e1b3</tt></a>, <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/7933fe1bfbe2644a0b8431f7a11e75f68a80af9f/hovercard" href="https://github.com/refactoringhq/tolaria/commit/7933fe1bfbe2644a0b8431f7a11e75f68a80af9f"><tt>7933fe1</tt></a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/ed54cef69ead5b890d3fd1e1cb0a171dfc3a23a1/hovercard" href="https://github.com/refactoringhq/tolaria/commit/ed54cef69ead5b890d3fd1e1cb0a171dfc3a23a1"><tt>ed54cef</tt></a> chore: update codescene thresholds after ADR additions</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/df6f956cde5fa00a9d6d59c3083628ce77708691/hovercard" href="https://github.com/refactoringhq/tolaria/commit/df6f956cde5fa00a9d6d59c3083628ce77708691"><tt>df6f956</tt></a> docs: add ADR-0058 and ADR-0059 for Claude Code onboarding gate and local-only commits (guard — from commits <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/fd9de042753f84fc0456811f3ef8bc2ac31c421a/hovercard" href="https://github.com/refactoringhq/tolaria/commit/fd9de042753f84fc0456811f3ef8bc2ac31c421a"><tt>fd9de04</tt></a>, <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/a13e36a504e70889ee05971bb345e044db9b80e2/hovercard" href="https://github.com/refactoringhq/tolaria/commit/a13e36a504e70889ee05971bb345e044db9b80e2"><tt>a13e36a</tt></a>)</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/61aae139c7a4b00c20f091e4cd3e3987c3dc4139/hovercard" href="https://github.com/refactoringhq/tolaria/commit/61aae139c7a4b00c20f091e4cd3e3987c3dc4139"><tt>61aae13</tt></a> fix: remove stale daily note menu test id</li>
|
||
<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/refactoringhq/tolaria/commit/14dc07084df4ba3dc74c0ec1a5943b805b7c2e84/hovercard" href="https://github.com/refactoringhq/tolaria/commit/14dc07084df4ba3dc74c0ec1a5943b805b7c2e84"><tt>14dc070</tt></a> fix: remove daily note command surfaces</li>
|
||
</ul>
|
||
<hr>
|
||
<p><strong>Alpha build — updated on every push to <code>main</code></strong></p>
|
||
<p><strong>Requires Apple Silicon (M1/M2/M3)</strong></p>
|
||
<p><em>Built from <code>5102923c</code> on 2026-04-13</em></p></div>
|
||
<div class="release-downloads">
|
||
<a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604131528.727/laputa.app.tar.gz" target="_blank" rel="noreferrer">laputa.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604131528.727/Tolaria.app.tar.gz" target="_blank" rel="noreferrer">Tolaria.app.tar.gz</a><a href="https://github.com/refactoringhq/tolaria/releases/download/alpha-v0.1.1-alpha.202604131528.727/Tolaria_0.1.1-alpha.202604131528.727_aarch64.dmg" target="_blank" rel="noreferrer">Tolaria_0.1.1-alpha.202604131528.727_aarch64.dmg</a><a href="https://github.com/refactoringhq/tolaria/releases/tag/alpha-v0.1.1-alpha.202604131528.727" data-secondary="true" target="_blank" rel="noreferrer">View on GitHub</a>
|
||
</div>
|
||
</article>
|
||
</section>
|
||
</main>
|
||
<script>
|
||
(() => {
|
||
const tabs = Array.from(document.querySelectorAll('[data-release-tab]'));
|
||
const panels = Array.from(document.querySelectorAll('[data-release-panel]'));
|
||
if (!tabs.length || !panels.length) return;
|
||
|
||
const activateTab = (nextTab) => {
|
||
const nextChannel = nextTab.getAttribute('data-release-tab');
|
||
tabs.forEach((tab) => {
|
||
const selected = tab === nextTab;
|
||
tab.setAttribute('aria-selected', String(selected));
|
||
tab.tabIndex = selected ? 0 : -1;
|
||
});
|
||
panels.forEach((panel) => {
|
||
panel.hidden = panel.getAttribute('data-release-panel') !== nextChannel;
|
||
});
|
||
};
|
||
|
||
const moveFocus = (currentIndex, offset) => {
|
||
const nextIndex = (currentIndex + offset + tabs.length) % tabs.length;
|
||
tabs[nextIndex].focus();
|
||
activateTab(tabs[nextIndex]);
|
||
};
|
||
|
||
const activateFocusedTab = (tab) => {
|
||
tab.focus();
|
||
activateTab(tab);
|
||
};
|
||
|
||
const handleTabKeydown = (event, tab, index) => {
|
||
const keyActions = {
|
||
' ': () => activateTab(tab),
|
||
ArrowDown: () => moveFocus(index, 1),
|
||
ArrowLeft: () => moveFocus(index, -1),
|
||
ArrowRight: () => moveFocus(index, 1),
|
||
ArrowUp: () => moveFocus(index, -1),
|
||
End: () => activateFocusedTab(tabs[tabs.length - 1]),
|
||
Enter: () => activateTab(tab),
|
||
Home: () => activateFocusedTab(tabs[0]),
|
||
};
|
||
const action = keyActions[event.key];
|
||
if (!action) return;
|
||
|
||
event.preventDefault();
|
||
action();
|
||
};
|
||
|
||
tabs.forEach((tab, index) => {
|
||
tab.addEventListener('click', () => activateTab(tab));
|
||
tab.addEventListener('keydown', (event) => handleTabKeydown(event, tab, index));
|
||
});
|
||
})();
|
||
|
||
</script>
|
||
</body>
|
||
</html>
|