diff --git a/CHANGELOG.md b/CHANGELOG.md index fb4d655..5b99c79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,12 +10,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Side menu for stitch, layers, and scale menus -- Scale menu for changing the pattern scale +- Scale menu for changing the pattern scale (modified to use percentage instead of decimal) - "Open With Pattern Projector" for PDF files on desktop, when installed with Chrome/Edge - Show a pop up when there's an error - Change page range in stitch menu with +/- (use + to throw beginning pages at the end e.g. for instruction pages) - Option to arrange stitched pages by column order - Support for SVG (with layer visibility toggling), PNG, and JPEG +- Modified open pdf message slightly to add styling ### Changed diff --git a/app/[locale]/calibrate/page.tsx b/app/[locale]/calibrate/page.tsx index bbd0931..d2afbcc 100644 --- a/app/[locale]/calibrate/page.tsx +++ b/app/[locale]/calibrate/page.tsx @@ -75,6 +75,7 @@ import { Button } from "@/_components/buttons/button"; import { erosionFilter } from "@/_lib/erode"; import SvgViewer from "@/_components/svg-viewer"; import { toggleFullScreen } from "@/_lib/full-screen"; +import ModifiersBanner from "@/_components/modifiers-banner"; const defaultStitchSettings = { lineCount: 1, @@ -296,7 +297,7 @@ export default function Page() { setMeasuring(false); setPageCount(0); setLayers({}); - dispatchPatternScaleAction({ type: "set", scale: "1.00" }); + dispatchPatternScaleAction({ type: "set", scale: "1.000" }); const lineThicknessString = localStorage.getItem( `lineThickness:${files[0].name}`, ); @@ -698,15 +699,16 @@ export default function Page() { zoomedOut={zoomedOut} magnifying={magnifying} restoreTransforms={restoreTransforms} - patternScale={String(patternScaleFactor)} + // patternScale={String(patternScaleFactor)} /> {!isCalibrating && file !== null && (