From 07ef17fcaaf01087b4fb635cf8182db2f23fc64d Mon Sep 17 00:00:00 2001 From: zemion Date: Sun, 17 May 2026 12:36:09 +0200 Subject: [PATCH 1/5] README.md aktualisiert --- README => README.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename README => README.md (100%) diff --git a/README b/README.md similarity index 100% rename from README rename to README.md From 618a8fc86e534d42160058fb121769574709d86b Mon Sep 17 00:00:00 2001 From: zemion Date: Sun, 17 May 2026 12:36:40 +0200 Subject: [PATCH 2/5] switch to README.md --- README => README.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename README => README.md (100%) diff --git a/README b/README.md similarity index 100% rename from README rename to README.md From 3a0a90bd4af23a002113d9367798ef89aaf2b9dd Mon Sep 17 00:00:00 2001 From: zemion Date: Sat, 23 May 2026 15:02:40 +0200 Subject: [PATCH 3/5] merge files inital commit --- CHANGELOG.md | 16 ++ README | 327 ++++++++++++++++++++++++++++ package-lock.json | 38 ++-- package.json | 2 +- src/App.tsx | 273 ++++++++++------------- src/components/FileLoader.tsx | 22 +- src/components/HelpDialog.tsx | 6 +- src/components/MergeQueuePanel.tsx | 232 ++++++++++++++++++++ src/merge/mergeQueueHelpers.test.ts | 82 +++++++ src/merge/mergeQueueHelpers.ts | 86 ++++++++ src/merge/mergeTypes.ts | 16 ++ src/merge/useMergeQueue.ts | 102 +++++++++ src/pdf/pdfMergeService.test.ts | 57 +++++ src/pdf/pdfService.ts | 70 ++++++ src/styles.css | 91 ++++++++ src/version.ts | 2 +- 16 files changed, 1232 insertions(+), 190 deletions(-) create mode 100644 README create mode 100644 src/components/MergeQueuePanel.tsx create mode 100644 src/merge/mergeQueueHelpers.test.ts create mode 100644 src/merge/mergeQueueHelpers.ts create mode 100644 src/merge/mergeTypes.ts create mode 100644 src/merge/useMergeQueue.ts create mode 100644 src/pdf/pdfMergeService.test.ts diff --git a/CHANGELOG.md b/CHANGELOG.md index fd1f4f8..0bb9862 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,22 @@ All notable changes to `pdf-tools` are documented here. The project follows a pragmatic versioning scheme while the app is still below `1.0.0`: minor versions mark coherent user-facing milestones; patch versions mark fixes and small improvements. +## 0.3.2 — Multi-file merge queue release + +### Added + +- Added a multi-file merge queue for selecting, loading, reviewing, reordering, removing, and merging several incoming PDFs. +- Added queue merge modes for replacing the current document, appending after the current workspace, or inserting at a chosen one-based page position. +- Added merge queue helper tests for queue ordering, readiness checks, insert-position clamping, and merged filename generation. +- Added PDF merge service tests for queue-only and base-plus-incoming merge results. + +### Changed + +- Changed the file picker to accept multiple PDFs. A single file with no active workspace still opens directly; otherwise selected files are added to the merge queue. +- Replaced the old single-file merge card with a queue-based merge panel. +- Merging now creates a new unsaved workspace from the materialized merge result, preserving the current workspace state before append/insert merges. +- Bumped the app/package version to `0.3.2`. + ## 0.3.1 — Split ZIP export release ### Added diff --git a/README b/README new file mode 100644 index 0000000..ef8b7c2 --- /dev/null +++ b/README @@ -0,0 +1,327 @@ +# pdf-tools / PDF Workbench + +`pdf-tools` is a self-hostable, browser-only PDF workbench for fast page-level PDF operations. It is built for situations where uploading PDFs to a third-party service is undesirable, but users still need simple, visual tools to split, merge, reorder, rotate, duplicate, delete, extract, and export pages. + +Current hosted version: + +Current release: **v0.3.2 — Multi-file merge queue release**. See [`CHANGELOG.md`](CHANGELOG.md) for release notes and milestone history. + +The app is a static React/Vite single-page application. There is no backend service, no server-side queue, and no server-side document storage. When hosted correctly, the server only delivers HTML, JavaScript, CSS, and static assets; PDF processing happens in the user's browser. + +## Purpose + +Many everyday PDF tasks are not full document-authoring tasks. They are page-workbench tasks: + +- remove pages before sending a document; +- rotate scanned pages; +- split a PDF into single-page files and download them individually or as one ZIP archive; +- merge one or more PDFs into the current workspace; +- extract a subset of pages; +- reorder pages visually; +- keep a local working state while experimenting; +- undo and redo page operations before exporting. + +`pdf-tools` focuses on this page-level workflow. It is intentionally not a full PDF editor, OCR solution, digital-signature workflow, DMS, or Adobe Acrobat replacement. + +## Where the project comes from + +The project started as a pragmatic, browser-only PDF helper for quick administrative and document-preparation tasks. The guiding idea is simple: many users need small PDF operations, but sensitive or internal documents should not have to leave the browser just to remove, rotate, split, or rearrange pages. + +This makes the project especially useful for self-hosted environments, public-sector settings, universities, small organizations, and internal tools where operational simplicity and document locality matter. + +## Distinguishing features + +- **Browser-only processing**: PDF files are processed locally in the browser. The hosting server does not receive the selected PDFs. +- **Static self-hosting**: The production build can be served by any static web server or reverse proxy. +- **Visual page workspace**: Users work with page thumbnails, drag-and-drop ordering, selection, page preview, and page-level actions. +- **Named local workspaces**: Workspaces can be saved in the browser with the PDF binary and editing state stored in IndexedDB. +- **Undo/redo command history**: Workspace operations are recorded as commands with label, timestamp, and payload. The history view shows undo and redo states. +- **Progressive thumbnails**: Thumbnails are generated progressively so the UI becomes useful before all pages have finished rendering. +- **Thumbnail cache by page and rotation**: Rotated thumbnails are cached and only changed thumbnails need to be regenerated. +- **Stable page references**: Duplicated pages and reordered pages are tracked as workspace page references rather than only by original page number. +- **Multi-file merge queue**: Loading several PDFs opens a queue where users can review, reorder, remove, append, insert, or replace before merging. +- **In-app help**: The app includes a Help/Tutorial dialog with keyboard shortcuts and workflow explanations. + +## Current features + +### File and workspace handling + +- Load a local PDF file. +- Save a named workspace in the browser. +- Restore saved workspaces from IndexedDB. +- Reset the active workspace, with a save prompt for unsaved changes. +- Delete saved workspaces after confirmation. +- Store workspace history and redo history. + +### Page operations + +- Generate page thumbnails in the browser. +- Reorder pages with drag and drop. +- Select individual pages. +- Select page ranges with Shift-click. +- Drag a selected page to move the whole selection. +- Duplicate/copy selected pages into a chosen position. +- Rotate pages clockwise and counter-clockwise. +- Delete one page or all selected pages after confirmation. +- Preview pages in a modal overlay. +- Flip through preview pages with buttons or arrow keys. + +### Export tools + +- Export the current reordered/rotated/duplicated/deleted workspace as a new PDF. +- Extract selected pages into a new PDF. +- Open selected pages as a new active workspace for continued editing. +- Split the source PDF into single-page PDFs. +- Download all split results as one ZIP archive. +- Merge several PDFs through a queue, then replace, append, or insert them into the current workspace. + +### Keyboard shortcuts + +| Shortcut | Action | +| -------------------------- | --------------------------------------------------- | +| `F1` / `?` | Open in-app help and tutorial | +| `Ctrl`/`⌘` + `A` | Select all pages | +| `Delete` / `Backspace` | Delete selected pages after confirmation | +| `Esc` | Clear the current selection or close an open dialog | +| `Ctrl`/`⌘` + `Z` | Undo | +| `Ctrl`/`⌘` + `Shift` + `Z` | Redo | +| `Ctrl`/`⌘` + `Y` | Redo | +| `←` / `→` in preview | Move to previous / next page | +| `Esc` in preview | Close preview | + +Keyboard shortcuts are ignored while typing in form fields. + +## In-app documentation concept + +The app includes a Help/Tutorial dialog reachable from the header via **Help ?**, `F1`, or `?`. + +Recommended structure for in-app documentation: + +1. **Quick tutorial**: short task-oriented steps from loading a PDF to exporting. +2. **Keyboard shortcuts**: a compact reference for power users. +3. **Concepts**: explain the difference between a PDF file, a workspace, command history, and exported output. +4. **Privacy model**: state clearly that processing is browser-local and workspaces are saved in local browser storage. +5. **Roadmap hints**: link users to the README or project repository for planned features, instead of overloading the app UI. + +This keeps the app useful for first-time users without turning the main interface into a manual. + +## Administrator notes + +### Deployment model + +`pdf-tools` is deployed as a static web application: + +```text +browser <-- HTTPS --> static web server / reverse proxy --> built app assets +``` + +There is no application server to operate. Administrators only need to host the built files from `dist/`. + +### Build and test from source + +```bash +npm ci +npm run check +``` + +`npm run check` runs the main project quality gate: + +```bash +npm run typecheck +npm run lint +npm run test +npm run build +``` + +The production build is written to `dist/`. + +Useful individual development commands: + +```bash +npm run dev # start the Vite development server +npm run preview # preview the production build locally +npm run test # run tests once +npm run test:watch # run tests in watch mode +npm run typecheck # run TypeScript without emitting files +npm run lint # run ESLint +npm run format # format the project with Prettier +npm run format:check # verify Prettier formatting +``` + +### Static hosting + +Any static hosting setup should work, for example: + +- nginx; +- Apache httpd; +- Caddy; +- Traefik in front of a static file container; +- GitLab Pages or another static publishing target; +- a minimal container serving `dist/`. + +A typical nginx location for a single-page app looks like this: + +```nginx +location / { + try_files $uri $uri/ /index.html; +} +``` + +### Reverse proxy considerations + +For production, serve the built app via HTTPS. The reverse proxy only sees requests for static app assets. It should not receive the user's PDF files, because the files are opened through browser APIs and processed locally. + +For the Vite development server, `vite.config.ts` can restrict allowed hosts. The current development configuration includes `pdftools.add-ideas.de` as an allowed host for the dev server. This is not required for a normal production static build. + +### Content Security Policy + +A strict CSP is possible, but it must account for browser-local rendering details. Thumbnails use data URLs, downloads use blob URLs, and pdf.js uses a worker. + +A starting point for testing could be: + +```http +Content-Security-Policy: default-src 'self'; script-src 'self'; worker-src 'self' blob:; img-src 'self' data: blob:; style-src 'self' 'unsafe-inline'; object-src 'none'; base-uri 'self'; form-action 'none' +``` + +Adjust this to your hosting environment and test PDF loading, thumbnail rendering, preview, and downloads before enforcing it broadly. + +### Storage and persistence + +Saved workspaces are stored in the user's browser using IndexedDB. A workspace may include: + +- the source PDF binary; +- workspace name and metadata; +- page order and duplicated page references; +- rotations; +- selected pages; +- undo and redo command history. + +This has several operational consequences: + +- Workspaces are local to the browser profile and device. +- Clearing browser data can delete saved workspaces. +- Server backups do not include user workspaces. +- Different users on different devices do not share workspaces through the server. +- Browser storage quotas apply. + +### Privacy and logging + +The server should only log asset requests for the app itself. It should not log PDF filenames or contents unless the hosting environment adds custom client-side telemetry or upload logic. Avoid adding analytics that could weaken the project's privacy model. + +### Browser support + +The app expects modern browser APIs, including: + +- File API; +- Blob and object URLs; +- IndexedDB; +- Web Workers; +- Canvas; +- modern JavaScript modules. + +Use current versions of Chromium, Firefox, Safari, or Edge. + +## Versioning and release baseline + +The application version shown in the header is defined in `src/version.ts`. The package version in `package.json` and the displayed app version should be kept in sync for releases. + +The current development baseline is: + +```text +v0.3.1 — Split ZIP export release +``` + +This release preserves the browser-only workspace baseline and adds split-result ZIP downloads on top of the selection-workspace feature. Workspace state, thumbnail handling, generated download URLs, page-grid components, tests, type-checking, linting, and formatting are separated enough to support additional feature work without turning `App.tsx` back into a monolith. + +## Project structure + +```text +src/ + App.tsx Main application orchestration and UI wiring + components/ + ActionDialog.tsx Reusable confirmation/action dialog + ActionsPanel.tsx Export, extract, split, and ZIP download actions + FileLoader.tsx PDF file loading + HelpDialog.tsx In-app tutorial and shortcut reference + Layout.tsx Application shell/header + PagePreviewModal.tsx Large page preview with navigation + ReorderPanel.tsx Page grid, selection, drag/drop, copy/delete/rotate + WorkspacePanel.tsx Workspace save/load/reset and undo/redo history + pdf/ + pdfService.ts pdf-lib operations: load, merge, split, export + pdfThumbnailService.ts pdf.js thumbnail rendering + pdfZipService.ts Browser-side ZIP packaging for split results + pdfTypes.ts PDF-related types + workspace/ + workspaceCommands.ts Command model for undo/redo + workspaceDb.ts IndexedDB persistence + workspaceTypes.ts Workspace data model + styles.css Global styles + version.ts App version displayed in the header +``` + +## Roadmap + +### Milestone 1: Fast preview and thumbnails + +- [x] Remove unused legacy page list view. +- [x] Bound thumbnail generation by width and height. +- [x] Display thumbnails progressively. +- [x] Add preview page flipping. +- [x] Attach preview controls to the modal container. +- [x] Add first keyboard shortcuts. +- [x] Cache thumbnails by page and rotation. +- [x] Regenerate only changed rotated thumbnails. +- [x] Show software version number. + +### Milestone 2: Real page workspace + +- [x] Introduce stable page references instead of only original page indices. +- [x] Support duplicate selected pages. +- [x] Save and reload the last state from browser storage. +- [x] Support named workspaces. +- [x] Store PDF binaries directly in IndexedDB. +- [x] Reset workspace. +- [x] Add command history as a foundation for undo/redo. +- [x] Add undo/redo. +- [x] Display undo/redo history with redo entries visually separated. +- [x] Extract selection as a new active workspace. +- [ ] Reduce undo/redo storage footprint if large documents make snapshots too heavy. +- [ ] Add grid/list view toggle. + +### Milestone 3: Better merge and mobile handling + +- [x] Add a full multi-file merge queue. +- [ ] Support drag-and-drop of PDFs into the page grid at the hovered position. +- [ ] Add custom long-press drag on mobile. +- [ ] Consolidate frequently used actions into a toolbar. + +### Milestone 4: Structural PDF editing + +- [ ] Metadata editing. +- [ ] Crop pages. +- [ ] Add tools directly in the preview overlay. +- [ ] Read/fill/flatten forms. +- [ ] Read bookmarks, then evaluate bookmark editing. +- [ ] Read annotations, then evaluate annotation writing. + +### Milestone 5: Export and power tools + +- [ ] Basic text extraction. +- [x] ZIP export for split results. +- [ ] Optimize/compress MVP. +- [ ] Carefully scoped encrypted PDF handling. + +## Non-goals for now + +- Server-side PDF processing. +- Collaborative editing. +- User accounts. +- OCR. +- Full content-stream editing. +- Digital signature creation/validation workflows. +- DMS replacement functionality. + +## License + +GPL-3.0. See `LICENSE`. diff --git a/package-lock.json b/package-lock.json index 1a40dce..e71fe7d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "pdf-tools", - "version": "0.3.1", + "version": "0.3.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "pdf-tools", - "version": "0.3.1", + "version": "0.3.2", "dependencies": { "fflate": "^0.8.3", "pdf-lib": "^1.17.1", @@ -117,7 +117,6 @@ "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "@babel/code-frame": "^7.29.0", "@babel/generator": "^7.29.0", @@ -448,7 +447,6 @@ } ], "license": "MIT", - "peer": true, "engines": { "node": ">=20.19.0" }, @@ -497,7 +495,6 @@ } ], "license": "MIT", - "peer": true, "engines": { "node": ">=20.19.0" } @@ -1470,7 +1467,8 @@ "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.4.tgz", "integrity": "sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==", "dev": true, - "license": "MIT" + "license": "MIT", + "peer": true }, "node_modules/@types/chai": { "version": "5.2.3", @@ -1517,7 +1515,6 @@ "integrity": "sha512-TCFSk8IZh+iLX1xtksoBVtdmgL+1IX0fC9BeU4QqFSuNdN/K+HUlhqOzEmSYYpZUVsLYcPqc9KX+60iDuninSQ==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "undici-types": ">=7.24.0 <7.24.7" } @@ -1528,7 +1525,6 @@ "integrity": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "csstype": "^3.2.2" } @@ -1539,7 +1535,6 @@ "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==", "dev": true, "license": "MIT", - "peer": true, "peerDependencies": { "@types/react": "^19.2.0" } @@ -1589,7 +1584,6 @@ "integrity": "sha512-HPwA+hVkfcriajbNvTmZv4VRauibay+cWArYUYq7u7W7PmGShMxbPxLvrwDme55a6d5alG3nrYfhyJ/G28XlLg==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "@typescript-eslint/scope-manager": "8.59.3", "@typescript-eslint/types": "8.59.3", @@ -1913,7 +1907,6 @@ "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==", "dev": true, "license": "MIT", - "peer": true, "bin": { "acorn": "bin/acorn" }, @@ -1954,6 +1947,7 @@ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true, "license": "MIT", + "peer": true, "engines": { "node": ">=8" } @@ -1964,6 +1958,7 @@ "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, "license": "MIT", + "peer": true, "engines": { "node": ">=10" }, @@ -1977,6 +1972,7 @@ "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", "dev": true, "license": "Apache-2.0", + "peer": true, "dependencies": { "dequal": "^2.0.3" } @@ -2057,7 +2053,6 @@ } ], "license": "MIT", - "peer": true, "dependencies": { "baseline-browser-mapping": "^2.10.12", "caniuse-lite": "^1.0.30001782", @@ -2198,6 +2193,7 @@ "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", "dev": true, "license": "MIT", + "peer": true, "engines": { "node": ">=6" } @@ -2217,7 +2213,8 @@ "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", "dev": true, - "license": "MIT" + "license": "MIT", + "peer": true }, "node_modules/electron-to-chromium": { "version": "1.5.357", @@ -2275,7 +2272,6 @@ "integrity": "sha512-loXy6bWOoP3EP6JA7jo6p5jMpBJmHmsNZM5SFRHLdh1MGOPurMnNBj4ZlAbaqUAaQWbCr7jHV4P7gzAyryZWkQ==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "@eslint-community/eslint-utils": "^4.8.0", "@eslint-community/regexpp": "^4.12.2", @@ -2529,7 +2525,7 @@ }, "node_modules/fflate": { "version": "0.8.3", - "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.8.3.tgz", + "resolved": "https://packages.applied-caas-gateway1.internal.api.openai.org/artifactory/api/npm/npm-public/fflate/-/fflate-0.8.3.tgz", "integrity": "sha512-tbZNuJrLwGUp3zshBtdy4W+ORxZuIh8a5ilyIEQDC5rY1f3U20JMry0Ll3WBzU58EZKsEuJFXhb5gwv8CsPvgA==", "license": "MIT" }, @@ -2735,7 +2731,6 @@ "integrity": "sha512-ECi4Fi2f7BdJtUKTflYRTiaMxIB0O6zfR1fX0GXpUrf6flp8QIYn1UT20YQqdSOfk2dfkCwS8LAFoJDEppNK5Q==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "@asamuzakjp/css-color": "^5.1.11", "@asamuzakjp/dom-selector": "^7.1.1", @@ -3135,6 +3130,7 @@ "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", "dev": true, "license": "MIT", + "peer": true, "bin": { "lz-string": "bin/bin.js" } @@ -3356,7 +3352,6 @@ "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", "dev": true, "license": "MIT", - "peer": true, "engines": { "node": ">=12" }, @@ -3425,6 +3420,7 @@ "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "ansi-regex": "^5.0.1", "ansi-styles": "^5.0.0", @@ -3449,7 +3445,6 @@ "resolved": "https://registry.npmjs.org/react/-/react-19.2.6.tgz", "integrity": "sha512-sfWGGfavi0xr8Pg0sVsyHMAOziVYKgPLNrS7ig+ivMNb3wbCBw3KxtflsGBAwD3gYQlE/AEZsTLgToRrSCjb0Q==", "license": "MIT", - "peer": true, "engines": { "node": ">=0.10.0" } @@ -3459,7 +3454,6 @@ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.6.tgz", "integrity": "sha512-0prMI+hvBbPjsWnxDLxlCGyM8PN6UuWjEUCYmZhO67xIV9Xasa/r/vDnq+Xyq4Lo27g8QSbO5YzARu0D1Sps3g==", "license": "MIT", - "peer": true, "dependencies": { "scheduler": "^0.27.0" }, @@ -3472,7 +3466,8 @@ "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", "dev": true, - "license": "MIT" + "license": "MIT", + "peer": true }, "node_modules/require-from-string": { "version": "2.0.2", @@ -3743,7 +3738,6 @@ "integrity": "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==", "dev": true, "license": "Apache-2.0", - "peer": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -3840,7 +3834,6 @@ "integrity": "sha512-MFtjBYgzmSxmgA4RAfjIyXWpGe1oALnjgUTzzV7QLx/TKxCzjtMH6Fd9/eVK+5Fg1qNoz5VAwsmMs/NofrmJvw==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "lightningcss": "^1.32.0", "picomatch": "^4.0.4", @@ -4164,7 +4157,6 @@ "integrity": "sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==", "dev": true, "license": "MIT", - "peer": true, "funding": { "url": "https://github.com/sponsors/colinhacks" } diff --git a/package.json b/package.json index dd35f06..a877917 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pdf-tools", - "version": "0.3.1", + "version": "0.3.2", "private": true, "type": "module", "scripts": { diff --git a/src/App.tsx b/src/App.tsx index 96b6dfb..ef2e8ff 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -9,6 +9,7 @@ import ActionDialog, { type ActionDialogAction, } from './components/ActionDialog'; import HelpDialog from './components/HelpDialog'; +import MergeQueuePanel from './components/MergeQueuePanel'; import { PDFDocument } from 'pdf-lib'; import type { StoredWorkspace, @@ -32,7 +33,7 @@ import { import type { PageRef, PdfFile } from './pdf/pdfTypes'; import { loadPdfFromFile, - mergePdfFiles, + mergePdfFilesAtPosition, splitIntoSinglePages, exportPages, } from './pdf/pdfService'; @@ -47,6 +48,13 @@ import { createSelectionWorkspaceName, getSelectedPagesInVisualOrder, } from './workspace/workspaceSelection'; +import { useMergeQueue } from './merge/useMergeQueue'; +import { + clampMergeInsertAt, + createMergedPdfName, + defaultMergeInsertPosition, +} from './merge/mergeQueueHelpers'; +import type { MergeMode } from './merge/mergeTypes'; function isEditableKeyboardTarget(target: EventTarget | null): boolean { if (!(target instanceof HTMLElement)) return false; @@ -80,13 +88,23 @@ const App: React.FC = () => { const [previewPageId, setPreviewPageId] = useState(null); - const [pendingFile, setPendingFile] = useState(null); - const [showMergeOptions, setShowMergeOptions] = useState(false); - const [mergeMode, setMergeMode] = useState< - 'overwrite' | 'append' | 'insertAt' - >('append'); + const [mergeQueueOpen, setMergeQueueOpen] = useState(false); + const [mergeMode, setMergeMode] = useState('append'); const [mergeInsertAt, setMergeInsertAt] = useState(''); + const { + items: mergeQueueItems, + addFiles: addFilesToMergeQueue, + removeItem: removeMergeQueueItem, + moveItemUp: moveMergeQueueItemUp, + moveItemDown: moveMergeQueueItemDown, + clearQueue: clearMergeQueue, + readyPdfs: readyMergePdfs, + canMerge: canMergeQueue, + hasErrors: mergeQueueHasErrors, + isLoading: mergeQueueIsLoading, + } = useMergeQueue(); + const { splitDownloads, splitZipDownload, @@ -422,89 +440,111 @@ const App: React.FC = () => { } }; - const handleFileLoaded = (file: File) => { - if (!pdf || pages.length === 0) { - void loadFileAsNew(file); - } else { - setPendingFile(file); - setShowMergeOptions(true); - setMergeMode('append'); - setMergeInsertAt(String(pages.length + 1)); + const queueFilesForMerge = (files: File[]) => { + if (files.length === 0) return; + + const queueWasEmpty = mergeQueueItems.length === 0; + + addFilesToMergeQueue(files); + setMergeQueueOpen(true); + + if (queueWasEmpty) { + if (!pdf || pages.length === 0) { + setMergeMode('overwrite'); + setMergeInsertAt('1'); + } else { + setMergeMode('append'); + setMergeInsertAt(defaultMergeInsertPosition(pages.length)); + } } }; + const handleFilesLoaded = (files: File[]) => { + const pdfFiles = files.filter( + (file) => + file.type === 'application/pdf' || + file.name.toLowerCase().endsWith('.pdf') + ); + + if (pdfFiles.length === 0) return; + + if (!pdf && pages.length === 0 && pdfFiles.length === 1) { + void loadFileAsNew(pdfFiles[0]); + return; + } + + queueFilesForMerge(pdfFiles); + }; + const handleMergeCancel = () => { - setPendingFile(null); - setShowMergeOptions(false); + clearMergeQueue(); + setMergeQueueOpen(false); }; const handleMergeConfirm = async () => { - if (!pendingFile) return; - - if (!pdf || mergeMode === 'overwrite') { - await loadFileAsNew(pendingFile); - setPendingFile(null); - setShowMergeOptions(false); - return; - } + if (!canMergeQueue || readyMergePdfs.length === 0) return; setError(null); setIsBusy(true); try { - // 1) Materialize the current in-memory workspace (page refs + rotations) - const currentBlob = await exportPages(pdf, pages); - const currentArrayBuffer = await currentBlob.arrayBuffer(); - const currentDoc = await PDFDocument.load(currentArrayBuffer); - const currentPdf: PdfFile = { - id: pdf.id, - name: pdf.name, - doc: currentDoc, - arrayBuffer: currentArrayBuffer, - pageCount: pages.length, - }; + let basePdf: PdfFile | null = null; + let insertAt = 0; - // 2) Load the new PDF - const newPdf = await loadPdfFromFile(pendingFile); + if (pdf && pages.length > 0 && mergeMode !== 'overwrite') { + const currentBlob = await exportPages(pdf, pages); + const currentArrayBuffer = await currentBlob.arrayBuffer(); + const currentDoc = await PDFDocument.load(currentArrayBuffer); - // 3) Determine insert position (0-based) - let insertAt = pages.length; // default: append at end - if (mergeMode === 'insertAt') { - const parsed = parseInt(mergeInsertAt, 10); - if (Number.isFinite(parsed)) { - insertAt = Math.min(Math.max(parsed - 1, 0), pages.length); - } - } else if (mergeMode === 'append') { - insertAt = pages.length; + basePdf = { + id: pdf.id, + name: pdf.name, + doc: currentDoc, + arrayBuffer: currentArrayBuffer, + pageCount: pages.length, + }; + + insertAt = + mergeMode === 'insertAt' + ? clampMergeInsertAt(mergeInsertAt, pages.length) + : pages.length; } - // 4) Merge - const mergedPdf = await mergePdfFiles(currentPdf, newPdf, insertAt); - const mergedPages = createInitialPageRefs(mergedPdf.pageCount); + const mergedPdf = await mergePdfFilesAtPosition({ + basePdf, + incomingPdfs: readyMergePdfs, + insertAt, + name: createMergedPdfName( + pdf?.name ?? null, + readyMergePdfs.map((item) => item.name), + mergeMode + ), + }); - // 5) Reset state to the merged document setPdf(mergedPdf); replaceWorkspaceState({ - pages: mergedPages, + pages: createInitialPageRefs(mergedPdf.pageCount), selectedPageIds: [], lastSelectedVisualIndex: null, history: [], redoHistory: [], dirty: true, - message: null, + message: `Merged ${readyMergePdfs.length} queued ${ + readyMergePdfs.length === 1 ? 'PDF' : 'PDFs' + } into a new unsaved workspace.`, }); clearGeneratedOutputs(); clearThumbnailCache(); setPreviewPageId(null); setWorkspaceName(defaultWorkspaceNameFromPdfName(mergedPdf.name)); setActiveWorkspaceId(null); + clearMergeQueue(); + setMergeQueueOpen(false); } catch (e) { console.error(e); - setError('Failed to merge PDF (see console).'); + setError('Failed to merge PDF queue (see console).'); } finally { setIsBusy(false); - setPendingFile(null); - setShowMergeOptions(false); } }; @@ -1100,7 +1140,29 @@ const App: React.FC = () => { return ( setHelpOpen(true)}> - + + + {mergeQueueOpen && mergeQueueItems.length > 0 && ( + 0} + currentPdfName={pdf?.name ?? null} + currentPageCount={pages.length} + mergeMode={mergeMode} + mergeInsertAt={mergeInsertAt} + isBusy={isBusy} + canMerge={canMergeQueue} + isLoading={mergeQueueIsLoading} + hasErrors={mergeQueueHasErrors} + onMergeModeChange={setMergeMode} + onMergeInsertAtChange={setMergeInsertAt} + onMoveUp={moveMergeQueueItemUp} + onMoveDown={moveMergeQueueItemDown} + onRemove={removeMergeQueueItem} + onCancel={handleMergeCancel} + onConfirm={handleMergeConfirm} + /> + )} { onRedo={handleRedo} /> - {showMergeOptions && pendingFile && pdf && pages.length > 0 && ( -
-

Open file: merge or replace?

-

- You already have {pdf.name} with {pages.length}{' '} - pages open. What should happen with{' '} - {pendingFile.name}? -

- -
- - - - - -
- -
- - -
-
- )} - void; + onFilesLoaded: (files: File[]) => void; } -const FileLoader: React.FC = ({ pdf, onFileLoaded }) => { +const FileLoader: React.FC = ({ pdf, onFilesLoaded }) => { const handleChange = (e: React.ChangeEvent) => { - const file = e.target.files?.[0]; - if (file) { - onFileLoaded(file); + const files = Array.from(e.target.files ?? []); + if (files.length > 0) { + onFilesLoaded(files); e.target.value = ''; } }; @@ -18,8 +18,16 @@ const FileLoader: React.FC = ({ pdf, onFileLoaded }) => { return (

1. Load PDF

-

Select a PDF file. Processing happens entirely in your browser.

- +

+ Select one PDF to open it directly, or select several PDFs to place them + in the merge queue. Processing happens entirely in your browser. +

+ {pdf && (
diff --git a/src/components/HelpDialog.tsx b/src/components/HelpDialog.tsx index 3e3f7fb..4be14b7 100644 --- a/src/components/HelpDialog.tsx +++ b/src/components/HelpDialog.tsx @@ -34,7 +34,7 @@ const shortcuts = [ const tutorialSteps = [ { title: '1. Open a PDF or load a workspace', - body: 'Start by selecting a local PDF file. If you saved workspaces before, you can restore one from browser storage instead.', + body: 'Start by selecting a local PDF file. Select several PDFs to open the merge queue, or restore a saved workspace from browser storage.', }, { title: '2. Arrange pages visually', @@ -50,7 +50,7 @@ const tutorialSteps = [ }, { title: '5. Split and download results', - body: 'Splitting creates individual one-page PDF downloads and a ZIP archive that contains all generated page files.', + body: 'Splitting creates individual one-page PDF downloads and a ZIP archive that contains all generated page files. For merging, review the incoming PDF queue, reorder it if needed, then replace, append, or insert the queued PDFs.', }, { title: '6. Save your workspace or export a PDF', @@ -102,7 +102,7 @@ const HelpDialog: React.FC = ({ open, onClose }) => {

Help & tutorial

PDF Workbench is a browser-only page workspace. Use it to quickly - rearrange, split, merge, rotate, duplicate, and export PDFs + rearrange, split, queue-merge, rotate, duplicate, and export PDFs without uploading documents to a server.

diff --git a/src/components/MergeQueuePanel.tsx b/src/components/MergeQueuePanel.tsx new file mode 100644 index 0000000..bc4b01b --- /dev/null +++ b/src/components/MergeQueuePanel.tsx @@ -0,0 +1,232 @@ +import React from 'react'; +import type { MergeQueueItem, MergeMode } from '../merge/mergeTypes'; + +interface MergeQueuePanelProps { + items: MergeQueueItem[]; + hasCurrentPdf: boolean; + currentPdfName: string | null; + currentPageCount: number; + mergeMode: MergeMode; + mergeInsertAt: string; + isBusy: boolean; + canMerge: boolean; + isLoading: boolean; + hasErrors: boolean; + onMergeModeChange: (mode: MergeMode) => void; + onMergeInsertAtChange: (value: string) => void; + onMoveUp: (itemId: string) => void; + onMoveDown: (itemId: string) => void; + onRemove: (itemId: string) => void; + onCancel: () => void; + onConfirm: () => void; +} + +function formatFileSize(size: number): string { + if (size < 1024) return `${size} B`; + if (size < 1024 * 1024) return `${(size / 1024).toFixed(1)} KB`; + return `${(size / (1024 * 1024)).toFixed(1)} MB`; +} + +const MergeQueuePanel: React.FC = ({ + items, + hasCurrentPdf, + currentPdfName, + currentPageCount, + mergeMode, + mergeInsertAt, + isBusy, + canMerge, + isLoading, + hasErrors, + onMergeModeChange, + onMergeInsertAtChange, + onMoveUp, + onMoveDown, + onRemove, + onCancel, + onConfirm, +}) => { + const queuedPageCount = items.reduce( + (sum, item) => sum + (item.pageCount ?? 0), + 0 + ); + + return ( +
+

Merge PDF queue

+

+ Add several PDFs, reorder the queue, then merge them into a new unsaved + workspace. Processing still happens entirely in your browser. +

+ + {hasCurrentPdf ? ( +

+ Current workspace:{' '} + {currentPdfName ?? 'Untitled document'} with{' '} + {currentPageCount} {currentPageCount === 1 ? 'page' : 'pages'}. +

+ ) : ( +

+ No current workspace is open. The queue will become a new workspace. +

+ )} + +
+ {items.map((item, index) => ( +
+
#{index + 1}
+
+ {item.name} + + {formatFileSize(item.size)} ·{' '} + {item.status === 'ready' && item.pageCount != null + ? `${item.pageCount} ${item.pageCount === 1 ? 'page' : 'pages'}` + : item.status === 'loading' + ? 'Loading…' + : (item.error ?? 'Error')} + +
+
+ + + +
+
+ ))} +
+ +

+ Queue total:{' '} + + {items.length} {items.length === 1 ? 'PDF' : 'PDFs'} + + {queuedPageCount > 0 && ( + <> + {' '} + · {queuedPageCount} {queuedPageCount === 1 ? 'page' : 'pages'} + + )} +

+ +
+ + + + + +
+ + {mergeMode === 'overwrite' && hasCurrentPdf && ( +

+ Replace mode discards the current in-memory workspace after the merge. + Save it first if you want to keep the current state separately. +

+ )} + + {hasErrors && ( +

+ One or more queued files could not be loaded. Remove failed items + before merging. +

+ )} + +
+ + +
+
+ ); +}; + +export default MergeQueuePanel; diff --git a/src/merge/mergeQueueHelpers.test.ts b/src/merge/mergeQueueHelpers.test.ts new file mode 100644 index 0000000..09abc64 --- /dev/null +++ b/src/merge/mergeQueueHelpers.test.ts @@ -0,0 +1,82 @@ +import { describe, expect, it } from 'vitest'; +import type { MergeQueueItem } from './mergeTypes'; +import { + canMergeQueue, + clampMergeInsertAt, + createMergedPdfName, + getReadyMergeQueuePdfs, + moveMergeQueueItem, +} from './mergeQueueHelpers'; + +function makeItem( + id: string, + status: MergeQueueItem['status'] +): MergeQueueItem { + return { + id, + file: new File(['x'], `${id}.pdf`, { type: 'application/pdf' }), + name: `${id}.pdf`, + size: 1, + pageCount: status === 'ready' ? 1 : null, + pdf: + status === 'ready' + ? { + id: `pdf-${id}`, + name: `${id}.pdf`, + // The helper tests never dereference the PDFDocument. + doc: {} as never, + pageCount: 1, + arrayBuffer: new ArrayBuffer(0), + } + : null, + status, + }; +} + +describe('merge queue helpers', () => { + it('moves queued items up and down without mutating the original array', () => { + const items = [ + makeItem('a', 'ready'), + makeItem('b', 'ready'), + makeItem('c', 'ready'), + ]; + + expect(moveMergeQueueItem(items, 'b', 'up').map((item) => item.id)).toEqual( + ['b', 'a', 'c'] + ); + expect( + moveMergeQueueItem(items, 'b', 'down').map((item) => item.id) + ).toEqual(['a', 'c', 'b']); + expect(items.map((item) => item.id)).toEqual(['a', 'b', 'c']); + }); + + it('only allows merging when every queued item is ready', () => { + const readyItems = [makeItem('a', 'ready'), makeItem('b', 'ready')]; + const mixedItems = [makeItem('a', 'ready'), makeItem('b', 'loading')]; + + expect(canMergeQueue(readyItems)).toBe(true); + expect(getReadyMergeQueuePdfs(readyItems)).toHaveLength(2); + expect(canMergeQueue(mixedItems)).toBe(false); + expect(canMergeQueue([])).toBe(false); + }); + + it('clamps one-based merge positions to zero-based insert slots', () => { + expect(clampMergeInsertAt('1', 10)).toBe(0); + expect(clampMergeInsertAt('5', 10)).toBe(4); + expect(clampMergeInsertAt('99', 10)).toBe(10); + expect(clampMergeInsertAt('-10', 10)).toBe(0); + expect(clampMergeInsertAt('not-a-number', 10)).toBe(10); + }); + + it('creates readable merged PDF filenames', () => { + expect(createMergedPdfName('base.pdf', ['a.pdf', 'b.pdf'], 'append')).toBe( + 'base_plus_2_pdfs.pdf' + ); + expect(createMergedPdfName('base.pdf', ['a.pdf'], 'overwrite')).toBe( + 'a_merged.pdf' + ); + expect(createMergedPdfName(null, ['a.pdf', 'b.pdf'], 'overwrite')).toBe( + 'merged_2_pdfs.pdf' + ); + }); +}); diff --git a/src/merge/mergeQueueHelpers.ts b/src/merge/mergeQueueHelpers.ts new file mode 100644 index 0000000..5ccde2b --- /dev/null +++ b/src/merge/mergeQueueHelpers.ts @@ -0,0 +1,86 @@ +import type { PdfFile } from '../pdf/pdfTypes'; +import type { MergeMode, MergeQueueItem } from './mergeTypes'; + +export function createMergeQueueItemId(): string { + return `merge_${Math.random().toString(36).slice(2)}`; +} + +export function moveMergeQueueItem( + items: MergeQueueItem[], + itemId: string, + direction: 'up' | 'down' +): MergeQueueItem[] { + const index = items.findIndex((item) => item.id === itemId); + if (index < 0) return items; + + const targetIndex = direction === 'up' ? index - 1 : index + 1; + if (targetIndex < 0 || targetIndex >= items.length) return items; + + const next = [...items]; + const [item] = next.splice(index, 1); + next.splice(targetIndex, 0, item); + return next; +} + +export function getReadyMergeQueuePdfs(items: MergeQueueItem[]): PdfFile[] { + return items + .filter((item) => item.status === 'ready' && item.pdf) + .map((item) => item.pdf as PdfFile); +} + +export function canMergeQueue(items: MergeQueueItem[]): boolean { + return ( + items.length > 0 && + items.every((item) => item.status === 'ready' && item.pdf !== null) + ); +} + +export function hasMergeQueueErrors(items: MergeQueueItem[]): boolean { + return items.some((item) => item.status === 'error'); +} + +export function isMergeQueueLoading(items: MergeQueueItem[]): boolean { + return items.some((item) => item.status === 'loading'); +} + +export function clampMergeInsertAt(value: string, pageCount: number): number { + const parsed = Number.parseInt(value, 10); + if (!Number.isFinite(parsed)) return pageCount; + + return Math.min(Math.max(parsed - 1, 0), pageCount); +} + +export function defaultMergeInsertPosition(pageCount: number): string { + return String(pageCount + 1); +} + +export function createMergedPdfName( + currentPdfName: string | null, + incomingPdfNames: string[], + mode: MergeMode +): string { + const incomingBaseNames = incomingPdfNames.map(stripPdfExtension); + + if (incomingBaseNames.length === 0) { + return currentPdfName ?? 'merged.pdf'; + } + + if ( + incomingBaseNames.length === 1 && + (!currentPdfName || mode === 'overwrite') + ) { + return `${incomingBaseNames[0]}_merged.pdf`; + } + + if (currentPdfName && mode !== 'overwrite') { + const currentBaseName = stripPdfExtension(currentPdfName); + return `${currentBaseName}_plus_${incomingBaseNames.length}_pdfs.pdf`; + } + + return `merged_${incomingBaseNames.length}_pdfs.pdf`; +} + +function stripPdfExtension(filename: string): string { + const base = filename.replace(/\.pdf$/i, '').trim(); + return base || 'document'; +} diff --git a/src/merge/mergeTypes.ts b/src/merge/mergeTypes.ts new file mode 100644 index 0000000..d049d03 --- /dev/null +++ b/src/merge/mergeTypes.ts @@ -0,0 +1,16 @@ +import type { PdfFile } from '../pdf/pdfTypes'; + +export type MergeMode = 'overwrite' | 'append' | 'insertAt'; + +export type MergeQueueItemStatus = 'loading' | 'ready' | 'error'; + +export interface MergeQueueItem { + id: string; + file: File; + name: string; + size: number; + pageCount: number | null; + pdf: PdfFile | null; + status: MergeQueueItemStatus; + error?: string; +} diff --git a/src/merge/useMergeQueue.ts b/src/merge/useMergeQueue.ts new file mode 100644 index 0000000..a24e4d4 --- /dev/null +++ b/src/merge/useMergeQueue.ts @@ -0,0 +1,102 @@ +import { useCallback, useState } from 'react'; +import { loadPdfFromFile } from '../pdf/pdfService'; +import { + canMergeQueue, + createMergeQueueItemId, + getReadyMergeQueuePdfs, + hasMergeQueueErrors, + isMergeQueueLoading, + moveMergeQueueItem, +} from './mergeQueueHelpers'; +import type { MergeQueueItem } from './mergeTypes'; + +export function useMergeQueue() { + const [items, setItems] = useState([]); + + const addFiles = useCallback((files: File[]) => { + const pdfFiles = files.filter( + (file) => + file.type === 'application/pdf' || + file.name.toLowerCase().endsWith('.pdf') + ); + + if (pdfFiles.length === 0) return; + + const queuedItems: MergeQueueItem[] = pdfFiles.map((file) => ({ + id: createMergeQueueItemId(), + file, + name: file.name, + size: file.size, + pageCount: null, + pdf: null, + status: 'loading', + })); + + setItems((current) => [...current, ...queuedItems]); + + queuedItems.forEach((item) => { + void (async () => { + try { + const loadedPdf = await loadPdfFromFile(item.file); + + setItems((current) => + current.map((currentItem) => + currentItem.id === item.id + ? { + ...currentItem, + pdf: loadedPdf, + pageCount: loadedPdf.pageCount, + status: 'ready', + error: undefined, + } + : currentItem + ) + ); + } catch (error) { + console.error(error); + + setItems((current) => + current.map((currentItem) => + currentItem.id === item.id + ? { + ...currentItem, + status: 'error', + error: 'Could not load this PDF.', + } + : currentItem + ) + ); + } + })(); + }); + }, []); + + const removeItem = useCallback((itemId: string) => { + setItems((current) => current.filter((item) => item.id !== itemId)); + }, []); + + const moveItemUp = useCallback((itemId: string) => { + setItems((current) => moveMergeQueueItem(current, itemId, 'up')); + }, []); + + const moveItemDown = useCallback((itemId: string) => { + setItems((current) => moveMergeQueueItem(current, itemId, 'down')); + }, []); + + const clearQueue = useCallback(() => { + setItems([]); + }, []); + + return { + items, + addFiles, + removeItem, + moveItemUp, + moveItemDown, + clearQueue, + readyPdfs: getReadyMergeQueuePdfs(items), + canMerge: canMergeQueue(items), + hasErrors: hasMergeQueueErrors(items), + isLoading: isMergeQueueLoading(items), + }; +} diff --git a/src/pdf/pdfMergeService.test.ts b/src/pdf/pdfMergeService.test.ts new file mode 100644 index 0000000..9b0dfee --- /dev/null +++ b/src/pdf/pdfMergeService.test.ts @@ -0,0 +1,57 @@ +import { PDFDocument } from 'pdf-lib'; +import { describe, expect, it } from 'vitest'; +import type { PdfFile } from './pdfTypes'; +import { mergePdfFilesAtPosition } from './pdfService'; + +async function makePdf(name: string, pageCount: number): Promise { + const doc = await PDFDocument.create(); + for (let i = 0; i < pageCount; i += 1) { + doc.addPage([100, 100]); + } + + const bytes = await doc.save(); + const arrayBuffer = new ArrayBuffer(bytes.byteLength); + new Uint8Array(arrayBuffer).set(bytes); + + return { + id: name, + name, + doc, + pageCount, + arrayBuffer, + }; +} + +describe('mergePdfFilesAtPosition', () => { + it('merges a queue without a current base PDF', async () => { + const first = await makePdf('first.pdf', 1); + const second = await makePdf('second.pdf', 2); + + const merged = await mergePdfFilesAtPosition({ + basePdf: null, + incomingPdfs: [first, second], + insertAt: 0, + name: 'merged.pdf', + }); + + expect(merged.name).toBe('merged.pdf'); + expect(merged.pageCount).toBe(3); + expect(merged.doc.getPageCount()).toBe(3); + }); + + it('inserts queued PDFs into a current base PDF at the requested slot', async () => { + const base = await makePdf('base.pdf', 3); + const incoming = await makePdf('incoming.pdf', 2); + + const merged = await mergePdfFilesAtPosition({ + basePdf: base, + incomingPdfs: [incoming], + insertAt: 1, + name: 'base_plus_incoming.pdf', + }); + + expect(merged.name).toBe('base_plus_incoming.pdf'); + expect(merged.pageCount).toBe(5); + expect(merged.doc.getPageCount()).toBe(5); + }); +}); diff --git a/src/pdf/pdfService.ts b/src/pdf/pdfService.ts index c9477d2..14e7093 100644 --- a/src/pdf/pdfService.ts +++ b/src/pdf/pdfService.ts @@ -77,6 +77,76 @@ export async function mergePdfFiles( }; } +interface MergePdfFilesAtPositionOptions { + basePdf: PdfFile | null; + incomingPdfs: PdfFile[]; + insertAt: number; + name: string; +} + +export async function mergePdfFilesAtPosition({ + basePdf, + incomingPdfs, + insertAt, + name, +}: MergePdfFilesAtPositionOptions): Promise { + if (!basePdf && incomingPdfs.length === 0) { + throw new Error('At least one PDF is required for merging'); + } + + const mergedDoc = await PDFDocument.create(); + + const addAllPages = async (sourcePdf: PdfFile) => { + const sourceDoc = + sourcePdf.doc ?? (await PDFDocument.load(sourcePdf.arrayBuffer)); + const pageCount = sourceDoc.getPageCount(); + const pages = await mergedDoc.copyPages( + sourceDoc, + Array.from({ length: pageCount }, (_, i) => i) + ); + pages.forEach((page) => mergedDoc.addPage(page)); + }; + + if (!basePdf) { + for (const incomingPdf of incomingPdfs) { + await addAllPages(incomingPdf); + } + } else { + const baseDoc = + basePdf.doc ?? (await PDFDocument.load(basePdf.arrayBuffer)); + const basePageCount = baseDoc.getPageCount(); + const clampedInsertAt = Math.min(Math.max(insertAt, 0), basePageCount); + + const basePages = await mergedDoc.copyPages( + baseDoc, + Array.from({ length: basePageCount }, (_, i) => i) + ); + + for (let i = 0; i < clampedInsertAt; i += 1) { + mergedDoc.addPage(basePages[i]); + } + + for (const incomingPdf of incomingPdfs) { + await addAllPages(incomingPdf); + } + + for (let i = clampedInsertAt; i < basePages.length; i += 1) { + mergedDoc.addPage(basePages[i]); + } + } + + const bytes = await mergedDoc.save(); + const buffer = pdfBytesToArrayBuffer(bytes); + + return { + id: createId(), + name, + arrayBuffer: buffer, + pageCount: mergedDoc.getPageCount(), + doc: mergedDoc, + }; +} + export async function splitIntoSinglePages( pdf: PdfFile ): Promise { diff --git a/src/styles.css b/src/styles.css index 50dd35e..a0e694e 100644 --- a/src/styles.css +++ b/src/styles.css @@ -398,3 +398,94 @@ button.secondary { align-items: flex-start; } } + +.merge-queue-list { + display: flex; + flex-direction: column; + gap: 0.5rem; + margin: 0.75rem 0; +} + +.merge-queue-item { + display: grid; + grid-template-columns: auto 1fr auto; + align-items: center; + gap: 0.75rem; + border: 1px solid #bfdbfe; + border-radius: 0.75rem; + background: rgba(255, 255, 255, 0.8); + padding: 0.6rem; +} + +.merge-queue-order { + border-radius: 999px; + background: #dbeafe; + color: #1e3a8a; + font-size: 0.8rem; + font-weight: 700; + padding: 0.2rem 0.5rem; +} + +.merge-queue-details { + display: flex; + flex-direction: column; + gap: 0.1rem; + min-width: 0; + font-size: 0.9rem; +} + +.merge-queue-details strong { + overflow-wrap: anywhere; +} + +.merge-queue-details span { + color: #4b5563; + font-size: 0.8rem; +} + +.merge-queue-actions { + display: flex; + flex-wrap: wrap; + justify-content: flex-end; + gap: 0.35rem; +} + +.merge-queue-actions button.secondary { + padding: 0.3rem 0.55rem; + font-size: 0.8rem; +} + +.merge-mode-group { + display: flex; + flex-direction: column; + gap: 0.5rem; + margin-top: 0.75rem; + font-size: 0.9rem; +} + +.merge-mode-group label { + display: flex; + align-items: center; + gap: 0.4rem; +} + +.merge-warning { + margin: 0.75rem 0 0; + border: 1px solid #fed7aa; + border-radius: 0.5rem; + background: #fff7ed; + color: #9a3412; + padding: 0.55rem 0.65rem; + font-size: 0.85rem; +} + +@media (max-width: 700px) { + .merge-queue-item { + grid-template-columns: 1fr; + align-items: stretch; + } + + .merge-queue-actions { + justify-content: flex-start; + } +} diff --git a/src/version.ts b/src/version.ts index 1006439..61b737a 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const APP_VERSION = '0.3.1'; +export const APP_VERSION = '0.3.2'; From 969ede47dd99b97915933a4adf2b879bb4748efc Mon Sep 17 00:00:00 2001 From: Albrecht Degering Date: Thu, 4 Jun 2026 20:28:21 +0200 Subject: [PATCH 4/5] changes to .gitignore --- .gitignore | 287 ++++++------ LICENSE | 1320 ++++++++++++++++++++++++++-------------------------- 2 files changed, 804 insertions(+), 803 deletions(-) diff --git a/.gitignore b/.gitignore index 5530633..f09bff4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,143 +1,144 @@ -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* -lerna-debug.log* - -# Diagnostic reports (https://nodejs.org/api/report.html) -report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json - -# Runtime data -pids -*.pid -*.seed -*.pid.lock - -# Directory for instrumented libs generated by jscoverage/JSCover -lib-cov - -# Coverage directory used by tools like istanbul -coverage -*.lcov - -# nyc test coverage -.nyc_output - -# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) -.grunt - -# Bower dependency directory (https://bower.io/) -bower_components - -# node-waf configuration -.lock-wscript - -# Compiled binary addons (https://nodejs.org/api/addons.html) -build/Release - -# Dependency directories -node_modules/ -jspm_packages/ - -# Snowpack dependency directory (https://snowpack.dev/) -web_modules/ - -# TypeScript cache -*.tsbuildinfo - -# Optional npm cache directory -.npm - -# Optional eslint cache -.eslintcache - -# Optional stylelint cache -.stylelintcache - -# Optional REPL history -.node_repl_history - -# Output of 'npm pack' -*.tgz - -# Yarn Integrity file -.yarn-integrity - -# dotenv environment variable files -.env -.env.* -!.env.example - -# parcel-bundler cache (https://parceljs.org/) -.cache -.parcel-cache - -# Next.js build output -.next -out - -# Nuxt.js build / generate output -.nuxt -dist -.output - -# Gatsby files -.cache/ -# Comment in the public line in if your project uses Gatsby and not Next.js -# https://nextjs.org/blog/next-9-1#public-directory-support -# public - -# vuepress build output -.vuepress/dist - -# vuepress v2.x temp and cache directory -.temp -.cache - -# Sveltekit cache directory -.svelte-kit/ - -# vitepress build output -**/.vitepress/dist - -# vitepress cache directory -**/.vitepress/cache - -# Docusaurus cache and generated files -.docusaurus - -# Serverless directories -.serverless/ - -# FuseBox cache -.fusebox/ - -# DynamoDB Local files -.dynamodb/ - -# Firebase cache directory -.firebase/ - -# TernJS port file -.tern-port - -# Stores VSCode versions used for testing VSCode extensions -.vscode-test - -# yarn v3 -.pnp.* -.yarn/* -!.yarn/patches -!.yarn/plugins -!.yarn/releases -!.yarn/sdks -!.yarn/versions - -# Vite files -vite.config.js.timestamp-* -vite.config.ts.timestamp-* -.vite/ - -todo.txt \ No newline at end of file +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* + +# Diagnostic reports (https://nodejs.org/api/report.html) +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage +*.lcov + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# Snowpack dependency directory (https://snowpack.dev/) +web_modules/ + +# TypeScript cache +*.tsbuildinfo + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional stylelint cache +.stylelintcache + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variable files +.env +.env.* +!.env.example + +# parcel-bundler cache (https://parceljs.org/) +.cache +.parcel-cache + +# Next.js build output +.next +out + +# Nuxt.js build / generate output +.nuxt +dist +.output + +# Gatsby files +.cache/ +# Comment in the public line in if your project uses Gatsby and not Next.js +# https://nextjs.org/blog/next-9-1#public-directory-support +# public + +# vuepress build output +.vuepress/dist + +# vuepress v2.x temp and cache directory +.temp +.cache + +# Sveltekit cache directory +.svelte-kit/ + +# vitepress build output +**/.vitepress/dist + +# vitepress cache directory +**/.vitepress/cache + +# Docusaurus cache and generated files +.docusaurus + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +# DynamoDB Local files +.dynamodb/ + +# Firebase cache directory +.firebase/ + +# TernJS port file +.tern-port + +# Stores VSCode versions used for testing VSCode extensions +.vscode-test + +# yarn v3 +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/sdks +!.yarn/versions + +# Vite files +vite.config.js.timestamp-* +vite.config.ts.timestamp-* +.vite/ + +todo.txt +chatgpt_continuation.md5 diff --git a/LICENSE b/LICENSE index 29ebfa5..1f84167 100644 --- a/LICENSE +++ b/LICENSE @@ -1,661 +1,661 @@ - GNU AFFERO GENERAL PUBLIC LICENSE - Version 3, 19 November 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU Affero General Public License is a free, copyleft license for -software and other kinds of works, specifically designed to ensure -cooperation with the community in the case of network server software. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -our General Public Licenses are intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - Developers that use our General Public Licenses protect your rights -with two steps: (1) assert copyright on the software, and (2) offer -you this License which gives you legal permission to copy, distribute -and/or modify the software. - - A secondary benefit of defending all users' freedom is that -improvements made in alternate versions of the program, if they -receive widespread use, become available for other developers to -incorporate. Many developers of free software are heartened and -encouraged by the resulting cooperation. However, in the case of -software used on network servers, this result may fail to come about. -The GNU General Public License permits making a modified version and -letting the public access it on a server without ever releasing its -source code to the public. - - The GNU Affero General Public License is designed specifically to -ensure that, in such cases, the modified source code becomes available -to the community. It requires the operator of a network server to -provide the source code of the modified version running there to the -users of that server. Therefore, public use of a modified version, on -a publicly accessible server, gives the public access to the source -code of the modified version. - - An older license, called the Affero General Public License and -published by Affero, was designed to accomplish similar goals. This is -a different license, not a version of the Affero GPL, but Affero has -released a new version of the Affero GPL which permits relicensing under -this license. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU Affero General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Remote Network Interaction; Use with the GNU General Public License. - - Notwithstanding any other provision of this License, if you modify the -Program, your modified version must prominently offer all users -interacting with it remotely through a computer network (if your version -supports such interaction) an opportunity to receive the Corresponding -Source of your version by providing access to the Corresponding Source -from a network server at no charge, through some standard or customary -means of facilitating copying of software. This Corresponding Source -shall include the Corresponding Source for any work covered by version 3 -of the GNU General Public License that is incorporated pursuant to the -following paragraph. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the work with which it is combined will remain governed by version -3 of the GNU General Public License. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU Affero General Public License from time to time. Such new versions -will be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU Affero General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU Affero General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU Affero General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as published - by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Affero General Public License for more details. - - You should have received a copy of the GNU Affero General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If your software can interact with users remotely through a computer -network, you should also make sure that it provides a way for users to -get its source. For example, if your program is a web application, its -interface could display a "Source" link that leads users to an archive -of the code. There are many ways you could offer source, and different -solutions will be better for different programs; see section 13 for the -specific requirements. - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU AGPL, see + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + + A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + + The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + + An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing under +this license. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU Affero General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the +Program, your modified version must prominently offer all users +interacting with it remotely through a computer network (if your version +supports such interaction) an opportunity to receive the Corresponding +Source of your version by providing access to the Corresponding Source +from a network server at no charge, through some standard or customary +means of facilitating copying of software. This Corresponding Source +shall include the Corresponding Source for any work covered by version 3 +of the GNU General Public License that is incorporated pursuant to the +following paragraph. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the work with which it is combined will remain governed by version +3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU Affero General Public License from time to time. Such new versions +will be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU Affero General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU Affero General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU Affero General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for the +specific requirements. + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU AGPL, see . \ No newline at end of file From c63986431958275b79c981dcac43630f8dfe577f Mon Sep 17 00:00:00 2001 From: Albrecht Degering Date: Fri, 5 Jun 2026 15:49:19 +0200 Subject: [PATCH 5/5] added favicon --- README | 327 ---------------------------- index.html | 6 + public/apple-touch-icon.png | Bin 0 -> 15603 bytes public/favicon-96x96.png | Bin 0 -> 8587 bytes public/favicon.ico | Bin 0 -> 15086 bytes public/favicon.svg | 17 ++ public/site.webmanifest | 21 ++ public/web-app-manifest-192x192.png | Bin 0 -> 17805 bytes public/web-app-manifest-512x512.png | Bin 0 -> 98310 bytes 9 files changed, 44 insertions(+), 327 deletions(-) delete mode 100644 README create mode 100644 public/apple-touch-icon.png create mode 100644 public/favicon-96x96.png create mode 100644 public/favicon.ico create mode 100644 public/favicon.svg create mode 100644 public/site.webmanifest create mode 100644 public/web-app-manifest-192x192.png create mode 100644 public/web-app-manifest-512x512.png diff --git a/README b/README deleted file mode 100644 index ef8b7c2..0000000 --- a/README +++ /dev/null @@ -1,327 +0,0 @@ -# pdf-tools / PDF Workbench - -`pdf-tools` is a self-hostable, browser-only PDF workbench for fast page-level PDF operations. It is built for situations where uploading PDFs to a third-party service is undesirable, but users still need simple, visual tools to split, merge, reorder, rotate, duplicate, delete, extract, and export pages. - -Current hosted version: - -Current release: **v0.3.2 — Multi-file merge queue release**. See [`CHANGELOG.md`](CHANGELOG.md) for release notes and milestone history. - -The app is a static React/Vite single-page application. There is no backend service, no server-side queue, and no server-side document storage. When hosted correctly, the server only delivers HTML, JavaScript, CSS, and static assets; PDF processing happens in the user's browser. - -## Purpose - -Many everyday PDF tasks are not full document-authoring tasks. They are page-workbench tasks: - -- remove pages before sending a document; -- rotate scanned pages; -- split a PDF into single-page files and download them individually or as one ZIP archive; -- merge one or more PDFs into the current workspace; -- extract a subset of pages; -- reorder pages visually; -- keep a local working state while experimenting; -- undo and redo page operations before exporting. - -`pdf-tools` focuses on this page-level workflow. It is intentionally not a full PDF editor, OCR solution, digital-signature workflow, DMS, or Adobe Acrobat replacement. - -## Where the project comes from - -The project started as a pragmatic, browser-only PDF helper for quick administrative and document-preparation tasks. The guiding idea is simple: many users need small PDF operations, but sensitive or internal documents should not have to leave the browser just to remove, rotate, split, or rearrange pages. - -This makes the project especially useful for self-hosted environments, public-sector settings, universities, small organizations, and internal tools where operational simplicity and document locality matter. - -## Distinguishing features - -- **Browser-only processing**: PDF files are processed locally in the browser. The hosting server does not receive the selected PDFs. -- **Static self-hosting**: The production build can be served by any static web server or reverse proxy. -- **Visual page workspace**: Users work with page thumbnails, drag-and-drop ordering, selection, page preview, and page-level actions. -- **Named local workspaces**: Workspaces can be saved in the browser with the PDF binary and editing state stored in IndexedDB. -- **Undo/redo command history**: Workspace operations are recorded as commands with label, timestamp, and payload. The history view shows undo and redo states. -- **Progressive thumbnails**: Thumbnails are generated progressively so the UI becomes useful before all pages have finished rendering. -- **Thumbnail cache by page and rotation**: Rotated thumbnails are cached and only changed thumbnails need to be regenerated. -- **Stable page references**: Duplicated pages and reordered pages are tracked as workspace page references rather than only by original page number. -- **Multi-file merge queue**: Loading several PDFs opens a queue where users can review, reorder, remove, append, insert, or replace before merging. -- **In-app help**: The app includes a Help/Tutorial dialog with keyboard shortcuts and workflow explanations. - -## Current features - -### File and workspace handling - -- Load a local PDF file. -- Save a named workspace in the browser. -- Restore saved workspaces from IndexedDB. -- Reset the active workspace, with a save prompt for unsaved changes. -- Delete saved workspaces after confirmation. -- Store workspace history and redo history. - -### Page operations - -- Generate page thumbnails in the browser. -- Reorder pages with drag and drop. -- Select individual pages. -- Select page ranges with Shift-click. -- Drag a selected page to move the whole selection. -- Duplicate/copy selected pages into a chosen position. -- Rotate pages clockwise and counter-clockwise. -- Delete one page or all selected pages after confirmation. -- Preview pages in a modal overlay. -- Flip through preview pages with buttons or arrow keys. - -### Export tools - -- Export the current reordered/rotated/duplicated/deleted workspace as a new PDF. -- Extract selected pages into a new PDF. -- Open selected pages as a new active workspace for continued editing. -- Split the source PDF into single-page PDFs. -- Download all split results as one ZIP archive. -- Merge several PDFs through a queue, then replace, append, or insert them into the current workspace. - -### Keyboard shortcuts - -| Shortcut | Action | -| -------------------------- | --------------------------------------------------- | -| `F1` / `?` | Open in-app help and tutorial | -| `Ctrl`/`⌘` + `A` | Select all pages | -| `Delete` / `Backspace` | Delete selected pages after confirmation | -| `Esc` | Clear the current selection or close an open dialog | -| `Ctrl`/`⌘` + `Z` | Undo | -| `Ctrl`/`⌘` + `Shift` + `Z` | Redo | -| `Ctrl`/`⌘` + `Y` | Redo | -| `←` / `→` in preview | Move to previous / next page | -| `Esc` in preview | Close preview | - -Keyboard shortcuts are ignored while typing in form fields. - -## In-app documentation concept - -The app includes a Help/Tutorial dialog reachable from the header via **Help ?**, `F1`, or `?`. - -Recommended structure for in-app documentation: - -1. **Quick tutorial**: short task-oriented steps from loading a PDF to exporting. -2. **Keyboard shortcuts**: a compact reference for power users. -3. **Concepts**: explain the difference between a PDF file, a workspace, command history, and exported output. -4. **Privacy model**: state clearly that processing is browser-local and workspaces are saved in local browser storage. -5. **Roadmap hints**: link users to the README or project repository for planned features, instead of overloading the app UI. - -This keeps the app useful for first-time users without turning the main interface into a manual. - -## Administrator notes - -### Deployment model - -`pdf-tools` is deployed as a static web application: - -```text -browser <-- HTTPS --> static web server / reverse proxy --> built app assets -``` - -There is no application server to operate. Administrators only need to host the built files from `dist/`. - -### Build and test from source - -```bash -npm ci -npm run check -``` - -`npm run check` runs the main project quality gate: - -```bash -npm run typecheck -npm run lint -npm run test -npm run build -``` - -The production build is written to `dist/`. - -Useful individual development commands: - -```bash -npm run dev # start the Vite development server -npm run preview # preview the production build locally -npm run test # run tests once -npm run test:watch # run tests in watch mode -npm run typecheck # run TypeScript without emitting files -npm run lint # run ESLint -npm run format # format the project with Prettier -npm run format:check # verify Prettier formatting -``` - -### Static hosting - -Any static hosting setup should work, for example: - -- nginx; -- Apache httpd; -- Caddy; -- Traefik in front of a static file container; -- GitLab Pages or another static publishing target; -- a minimal container serving `dist/`. - -A typical nginx location for a single-page app looks like this: - -```nginx -location / { - try_files $uri $uri/ /index.html; -} -``` - -### Reverse proxy considerations - -For production, serve the built app via HTTPS. The reverse proxy only sees requests for static app assets. It should not receive the user's PDF files, because the files are opened through browser APIs and processed locally. - -For the Vite development server, `vite.config.ts` can restrict allowed hosts. The current development configuration includes `pdftools.add-ideas.de` as an allowed host for the dev server. This is not required for a normal production static build. - -### Content Security Policy - -A strict CSP is possible, but it must account for browser-local rendering details. Thumbnails use data URLs, downloads use blob URLs, and pdf.js uses a worker. - -A starting point for testing could be: - -```http -Content-Security-Policy: default-src 'self'; script-src 'self'; worker-src 'self' blob:; img-src 'self' data: blob:; style-src 'self' 'unsafe-inline'; object-src 'none'; base-uri 'self'; form-action 'none' -``` - -Adjust this to your hosting environment and test PDF loading, thumbnail rendering, preview, and downloads before enforcing it broadly. - -### Storage and persistence - -Saved workspaces are stored in the user's browser using IndexedDB. A workspace may include: - -- the source PDF binary; -- workspace name and metadata; -- page order and duplicated page references; -- rotations; -- selected pages; -- undo and redo command history. - -This has several operational consequences: - -- Workspaces are local to the browser profile and device. -- Clearing browser data can delete saved workspaces. -- Server backups do not include user workspaces. -- Different users on different devices do not share workspaces through the server. -- Browser storage quotas apply. - -### Privacy and logging - -The server should only log asset requests for the app itself. It should not log PDF filenames or contents unless the hosting environment adds custom client-side telemetry or upload logic. Avoid adding analytics that could weaken the project's privacy model. - -### Browser support - -The app expects modern browser APIs, including: - -- File API; -- Blob and object URLs; -- IndexedDB; -- Web Workers; -- Canvas; -- modern JavaScript modules. - -Use current versions of Chromium, Firefox, Safari, or Edge. - -## Versioning and release baseline - -The application version shown in the header is defined in `src/version.ts`. The package version in `package.json` and the displayed app version should be kept in sync for releases. - -The current development baseline is: - -```text -v0.3.1 — Split ZIP export release -``` - -This release preserves the browser-only workspace baseline and adds split-result ZIP downloads on top of the selection-workspace feature. Workspace state, thumbnail handling, generated download URLs, page-grid components, tests, type-checking, linting, and formatting are separated enough to support additional feature work without turning `App.tsx` back into a monolith. - -## Project structure - -```text -src/ - App.tsx Main application orchestration and UI wiring - components/ - ActionDialog.tsx Reusable confirmation/action dialog - ActionsPanel.tsx Export, extract, split, and ZIP download actions - FileLoader.tsx PDF file loading - HelpDialog.tsx In-app tutorial and shortcut reference - Layout.tsx Application shell/header - PagePreviewModal.tsx Large page preview with navigation - ReorderPanel.tsx Page grid, selection, drag/drop, copy/delete/rotate - WorkspacePanel.tsx Workspace save/load/reset and undo/redo history - pdf/ - pdfService.ts pdf-lib operations: load, merge, split, export - pdfThumbnailService.ts pdf.js thumbnail rendering - pdfZipService.ts Browser-side ZIP packaging for split results - pdfTypes.ts PDF-related types - workspace/ - workspaceCommands.ts Command model for undo/redo - workspaceDb.ts IndexedDB persistence - workspaceTypes.ts Workspace data model - styles.css Global styles - version.ts App version displayed in the header -``` - -## Roadmap - -### Milestone 1: Fast preview and thumbnails - -- [x] Remove unused legacy page list view. -- [x] Bound thumbnail generation by width and height. -- [x] Display thumbnails progressively. -- [x] Add preview page flipping. -- [x] Attach preview controls to the modal container. -- [x] Add first keyboard shortcuts. -- [x] Cache thumbnails by page and rotation. -- [x] Regenerate only changed rotated thumbnails. -- [x] Show software version number. - -### Milestone 2: Real page workspace - -- [x] Introduce stable page references instead of only original page indices. -- [x] Support duplicate selected pages. -- [x] Save and reload the last state from browser storage. -- [x] Support named workspaces. -- [x] Store PDF binaries directly in IndexedDB. -- [x] Reset workspace. -- [x] Add command history as a foundation for undo/redo. -- [x] Add undo/redo. -- [x] Display undo/redo history with redo entries visually separated. -- [x] Extract selection as a new active workspace. -- [ ] Reduce undo/redo storage footprint if large documents make snapshots too heavy. -- [ ] Add grid/list view toggle. - -### Milestone 3: Better merge and mobile handling - -- [x] Add a full multi-file merge queue. -- [ ] Support drag-and-drop of PDFs into the page grid at the hovered position. -- [ ] Add custom long-press drag on mobile. -- [ ] Consolidate frequently used actions into a toolbar. - -### Milestone 4: Structural PDF editing - -- [ ] Metadata editing. -- [ ] Crop pages. -- [ ] Add tools directly in the preview overlay. -- [ ] Read/fill/flatten forms. -- [ ] Read bookmarks, then evaluate bookmark editing. -- [ ] Read annotations, then evaluate annotation writing. - -### Milestone 5: Export and power tools - -- [ ] Basic text extraction. -- [x] ZIP export for split results. -- [ ] Optimize/compress MVP. -- [ ] Carefully scoped encrypted PDF handling. - -## Non-goals for now - -- Server-side PDF processing. -- Collaborative editing. -- User accounts. -- OCR. -- Full content-stream editing. -- Digital signature creation/validation workflows. -- DMS replacement functionality. - -## License - -GPL-3.0. See `LICENSE`. diff --git a/index.html b/index.html index c4d8dc6..4d89304 100644 --- a/index.html +++ b/index.html @@ -4,6 +4,12 @@ Self-hosted PDF Workbench + + + + + +
diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..68f34ab2ae1c39e7a67935a05c73a237ff93aab7 GIT binary patch literal 15603 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 P_db45ktvfh`u_g_;2!4o literal 0 HcmV?d00001 diff --git a/public/favicon-96x96.png b/public/favicon-96x96.png new file mode 100644 index 0000000000000000000000000000000000000000..7270bb95f2bfa82b7313b0de93bda6fe97238ba0 GIT binary patch literal 8587 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 GyZ;M9??J%; literal 0 HcmV?d00001 diff --git a/public/favicon.svg b/public/favicon.svg new file mode 100644 index 0000000..eba78b7 --- /dev/null +++ b/public/favicon.svg @@ -0,0 +1,17 @@ +RealFaviconGeneratorhttps://realfavicongenerator.net + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/site.webmanifest b/public/site.webmanifest new file mode 100644 index 0000000..3d0c1e1 --- /dev/null +++ b/public/site.webmanifest @@ -0,0 +1,21 @@ +{ + "name": "PDFTools", + "short_name": "PDFTools", + "icons": [ + { + "src": "/web-app-manifest-192x192.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "maskable" + }, + { + "src": "/web-app-manifest-512x512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "maskable" + } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" +} \ No newline at end of file diff --git a/public/web-app-manifest-192x192.png b/public/web-app-manifest-192x192.png new file mode 100644 index 0000000000000000000000000000000000000000..060e2a6c244b4a0f5e52d1167cfa3768a3aa1a85 GIT binary patch literal 17805 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

    8tKWyq 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