[READ-ONLY] Mirror of https://github.com/thang-qt/ThreadLine. Alternative frontend for HackerNews and Lobsters threadline.thangqt.com/
0

Configure Feed

Select the types of activity you want to include in your feed.

Disable thread guide rail highlighting by default

Quang Thang (Jul 11, 2026, 8:01 PM +0700) 8b298dec 70e636af

+6 -1
+5
src/settings.test.ts
··· 6 6 expect(STORAGE_KEY).toBe('hnster.preferences.v1'); 7 7 }); 8 8 9 + it('defaults thread guide rail hover highlighting off', () => { 10 + expect(defaultSettings.highlightThreads).toBe(false); 11 + expect(normalizeSettings({}).highlightThreads).toBe(false); 12 + }); 13 + 9 14 it('falls back from corrupt shapes and clamps values', () => { 10 15 const settings = normalizeSettings({ theme: 'bad', columns: 99, typeScale: 2, sourceWeight: { hn: -1, lobsters: 10 } }); 11 16 expect(settings.theme).toBe(defaultSettings.theme);
+1 -1
src/settings.ts
··· 16 16 lobstersFeed: 'hottest', 17 17 blockedDomains: [], 18 18 lobstersTags: [], 19 - highlightThreads: true 19 + highlightThreads: false 20 20 }; 21 21 22 22 // Compatibility key from the original HNster name. Do not change without migration.