diff --git a/Dockerfile b/Dockerfile index 963b2d1..0cbaf5b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -# Multi-stage Docker build for the sideload.js frontend. +# Multi-stage Docker build for the Side Impactor frontend. # --- Stage 1: build --- FROM oven/bun:1.3-alpine AS build diff --git a/README.md b/README.md index 9f9a56b..bc56d72 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Sideload.js +# Side Impactor Browser-based IPA signing and installation. Pair an iOS device over WebUSB, sign with your Apple Developer account, and install — all from a single web page. @@ -57,3 +57,4 @@ bun run test:frontend # frontend vitest suite (141 tests) - [webmuxd](https://github.com/hack-different/webmuxd) - [zsign](https://github.com/nicehash/zsign) - [openssl-wasm](https://github.com/nicehash/openssl-wasm) + diff --git a/frontend/index.html b/frontend/index.html index d81068f..601f9c1 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -9,7 +9,7 @@ name="description" content="Browser-based AltStore-style developer signing — pair, sign, install IPAs locally." /> - AltStore Web — Sign & Install + Side Impactor — Sign & Install
diff --git a/frontend/src/components/Header.test.tsx b/frontend/src/components/Header.test.tsx index 8b99b28..93d0fd2 100644 --- a/frontend/src/components/Header.test.tsx +++ b/frontend/src/components/Header.test.tsx @@ -23,7 +23,7 @@ describe('Header', () => { it('wordmark click also navigates to login (and prevents the anchor default)', async () => { const onNav = vi.fn(); render(
); - const link = screen.getByRole('link', { name: /AltStore Web/ }); + const link = screen.getByRole('link', { name: /Side Impactor/ }); await userEvent.click(link); expect(onNav).toHaveBeenCalledWith('login'); // Hash should not have been mutated by the default anchor behavior. diff --git a/frontend/src/components/Header.tsx b/frontend/src/components/Header.tsx index 0a77224..b0992ed 100644 --- a/frontend/src/components/Header.tsx +++ b/frontend/src/components/Header.tsx @@ -20,7 +20,7 @@ export function Header({ currentPage, onNavigate }: HeaderProps) { A - AltStore Web + Side Impactor