handy online tools for AT Protocol boat.kelinci.net
atproto bluesky atcute typescript solidjs
20
fork

Configure Feed

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

refactor: rename car unpack

Mary 000e119e 308acc55

+6 -6
+2 -2
src/routes.ts
··· 41 41 component: lazy(() => import('./views/repository/repo-export')), 42 42 }, 43 43 { 44 - path: '/car-unpack', 45 - component: lazy(() => import('./views/repository/car-unpack')), 44 + path: '/repo-archive-unpack', 45 + component: lazy(() => import('./views/repository/repo-archive-unpack')), 46 46 }, 47 47 48 48 {
+2 -2
src/views/frontpage.tsx
··· 61 61 icon: ArchiveOutlinedIcon, 62 62 }, 63 63 { 64 - name: `Unpack CAR file`, 64 + name: `Unpack archive`, 65 65 description: `Extract a repository archive into a tarball`, 66 - href: '/car-unpack', 66 + href: '/repo-archive-unpack', 67 67 icon: DirectionsCarOutlinedIcon, 68 68 }, 69 69 {
+2 -2
src/views/repository/car-unpack.tsx src/views/repository/repo-archive-unpack.tsx
··· 157 157 ); 158 158 }; 159 159 160 - useTitle(() => `Unpack CAR file — boat`); 160 + useTitle(() => `Unpack archive — boat`); 161 161 162 162 return ( 163 163 <> 164 164 <div class="p-4"> 165 - <h1 class="text-lg font-bold text-purple-800">Unpack CAR file</h1> 165 + <h1 class="text-lg font-bold text-purple-800">Unpack archive</h1> 166 166 <p class="text-gray-600">Extract a repository archive into a tarball</p> 167 167 </div> 168 168 <hr class="mx-4 border-gray-300" />