-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpatchnotes.html
More file actions
458 lines (426 loc) · 19.8 KB
/
patchnotes.html
File metadata and controls
458 lines (426 loc) · 19.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-KV231G62ZM"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-KV231G62ZM');
</script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6945982381535038"
crossorigin="anonymous"></script>
<meta name="google-adsense-account" content="ca-pub-6945982381535038">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Patch Notes - PixelPaletteSwap | Update History</title>
<meta name="description"
content="View the complete update history and patch notes for PixelPaletteSwap. See all the new features, improvements, and bug fixes.">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://pixelpaletteswap.com/patchnotes">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="styles.css">
<style>
.patch-card {
background: var(--color-card-bg);
border-radius: 15px;
padding: 25px 30px;
border: 1px solid var(--color-border);
margin-bottom: 25px;
}
.patch-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 15px;
flex-wrap: wrap;
gap: 10px;
}
.patch-version {
font-size: 1.5rem;
font-weight: 700;
color: var(--color-accent);
}
.patch-date {
font-size: 0.9rem;
color: var(--color-text-dim);
background: rgba(255, 255, 255, 0.05);
padding: 5px 12px;
border-radius: 20px;
}
.patch-subtitle {
font-size: 1.1rem;
color: var(--color-text);
margin-bottom: 20px;
font-weight: 500;
}
.patch-section {
margin-bottom: 15px;
}
.patch-section:last-child {
margin-bottom: 0;
}
.patch-section-title {
font-size: 0.85rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 8px;
display: flex;
align-items: center;
gap: 6px;
}
.patch-section-title.features {
color: #4caf50;
}
.patch-section-title.improvements {
color: #2196f3;
}
.patch-section-title.fixes {
color: #ff9800;
}
.patch-list {
list-style: none;
padding: 0;
margin: 0;
}
.patch-list li {
color: var(--color-text-muted);
padding: 6px 0;
padding-left: 20px;
position: relative;
line-height: 1.5;
}
.patch-list li::before {
content: "•";
position: absolute;
left: 0;
color: var(--color-accent);
}
.latest-badge {
background: var(--color-accent);
color: white;
font-size: 0.7rem;
padding: 3px 8px;
border-radius: 10px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="nav">
<div class="nav-container">
<a href="index.html" class="nav-logo">
<img src="logo.png" alt="PixelPaletteSwap">
<span>PixelPaletteSwap</span>
</a>
<button class="nav-toggle" aria-label="Toggle navigation"
onclick="document.querySelector('.nav-links').classList.toggle('open')">
<span></span>
<span></span>
<span></span>
</button>
<div class="nav-links">
<a href="index.html" class="nav-link">Tool</a>
<a href="guides.html" class="nav-link">Guides</a>
<a href="about.html" class="nav-link">About</a>
<a href="patchnotes.html" class="nav-link active">Patch Notes</a>
<a href="contact.html" class="nav-link">Contact</a>
<a href="privacy.html" class="nav-link">Privacy</a>
<a href="https://github.com/swompythesecond/pixelpaletteswap" class="nav-link" target="_blank"
rel="noopener">GitHub</a>
</div>
</div>
</nav>
<!-- Main Content -->
<main class="page-content">
<div class="container">
<div class="text-center mb-40">
<h1 class="page-title">📋 Patch Notes</h1>
<p class="page-subtitle">Track all updates, new features, and improvements to PixelPaletteSwap</p>
</div>
<!-- Patch v1.9.0 -->
<div class="patch-card">
<div class="patch-header">
<div style="display: flex; align-items: center; gap: 12px;">
<span class="patch-version">v1.9.0</span>
<span class="latest-badge">Latest</span>
</div>
<span class="patch-date">February 12, 2026</span>
</div>
<div class="patch-subtitle">Palette Quantization & Unified Edit History</div>
<div class="patch-section">
<div class="patch-section-title features">✨ New Features</div>
<ul class="patch-list">
<li>Added Reduce Colors panel with 8, 16, 32, and custom target counts</li>
<li>Color reduction now merges similar colors using LAB-space quantization</li>
<li>Reduction supports active rectangle/polygon selections for regional quantization</li>
<li>Added reduction entries to edit history with one-click undo</li>
</ul>
</div>
<div class="patch-section">
<div class="patch-section-title improvements">🔧 Improvements</div>
<ul class="patch-list">
<li>Undo now replays all edit operations from original frames for stronger consistency</li>
<li>Swap history UI now shows both color swaps and palette reductions</li>
</ul>
</div>
</div>
<!-- Patch v1.8.0 -->
<div class="patch-card">
<div class="patch-header">
<span class="patch-version">v1.8.0</span>
<span class="patch-date">January 8, 2026</span>
</div>
<div class="patch-subtitle">Enhanced Zoom & Navigation Controls</div>
<div class="patch-section">
<div class="patch-section-title features">✨ New Features</div>
<ul class="patch-list">
<li>Added Ctrl+Scroll to zoom in and out of the preview canvas</li>
<li>Added Ctrl+Drag to pan around when zoomed in</li>
<li>Fixed-size preview container with scrolling for better zoom experience</li>
<li>Increased maximum zoom level from 30x to 50x</li>
</ul>
</div>
<div class="patch-section">
<div class="patch-section-title improvements">🔧 Improvements</div>
<ul class="patch-list">
<li>Zoom now maintains scroll position proportionally when changing levels</li>
<li>Better handling of wide and tall images at high zoom levels</li>
</ul>
</div>
</div>
<!-- Patch v1.7.0 -->
<div class="patch-card">
<div class="patch-header">
<span class="patch-version">v1.7.0</span>
<span class="patch-date">December 15, 2025</span>
</div>
<div class="patch-subtitle">Selection Tools & Regional Color Swaps</div>
<div class="patch-section">
<div class="patch-section-title features">✨ New Features</div>
<ul class="patch-list">
<li>Rectangle selection tool for applying color swaps to specific areas</li>
<li>Polygon selection tool with click-to-add-points workflow</li>
<li>Invert selection button to swap regions</li>
<li>Marching ants animation to visualize active selection</li>
</ul>
</div>
<div class="patch-section">
<div class="patch-section-title improvements">🔧 Improvements</div>
<ul class="patch-list">
<li>Selection is now saved with color swap presets</li>
<li>Added keyboard shortcuts: Enter to close polygon, Escape to cancel</li>
</ul>
</div>
</div>
<!-- Patch v1.6.0 -->
<div class="patch-card">
<div class="patch-header">
<span class="patch-version">v1.6.0</span>
<span class="patch-date">November 28, 2025</span>
</div>
<div class="patch-subtitle">Palette Import from Image</div>
<div class="patch-section">
<div class="patch-section-title features">✨ New Features</div>
<ul class="patch-list">
<li>Upload a second image to use its colors as swap targets</li>
<li>Automatic palette extraction from reference images</li>
<li>Click-to-select colors from imported palette</li>
</ul>
</div>
<div class="patch-section">
<div class="patch-section-title fixes">🐛 Bug Fixes</div>
<ul class="patch-list">
<li>Fixed issue where transparent pixels were being counted in palette</li>
<li>Improved color sorting in palette grid for better organization</li>
</ul>
</div>
</div>
<!-- Patch v1.5.0 -->
<div class="patch-card">
<div class="patch-header">
<span class="patch-version">v1.5.0</span>
<span class="patch-date">October 10, 2025</span>
</div>
<div class="patch-subtitle">Preset System & Hex Color Input</div>
<div class="patch-section">
<div class="patch-section-title features">✨ New Features</div>
<ul class="patch-list">
<li>Export color swap mappings as JSON presets</li>
<li>Import presets to apply same swaps to different sprites</li>
<li>Visual swap history with undo button for each swap</li>
<li>Direct hex color input field with validation</li>
</ul>
</div>
<div class="patch-section">
<div class="patch-section-title improvements">🔧 Improvements</div>
<ul class="patch-list">
<li>Hex input now auto-adds # prefix when typing</li>
<li>Color picker and hex input now stay in sync</li>
</ul>
</div>
</div>
<!-- Patch v1.4.0 -->
<div class="patch-card">
<div class="patch-header">
<span class="patch-version">v1.4.0</span>
<span class="patch-date">September 5, 2025</span>
</div>
<div class="patch-subtitle">ZIP Export & Image Sequences</div>
<div class="patch-section">
<div class="patch-section-title features">✨ New Features</div>
<ul class="patch-list">
<li>Export all frames as a ZIP archive of PNG files</li>
<li>Upload multiple PNG/JPG files as animation frames</li>
<li>Customizable FPS slider for image sequences</li>
</ul>
</div>
<div class="patch-section">
<div class="patch-section-title improvements">🔧 Improvements</div>
<ul class="patch-list">
<li>Files are now sorted naturally when uploading (1, 2, 10 instead of 1, 10, 2)</li>
<li>Better memory handling for large frame counts</li>
</ul>
</div>
</div>
<!-- Patch v1.3.0 -->
<div class="patch-card">
<div class="patch-header">
<span class="patch-version">v1.3.0</span>
<span class="patch-date">August 1, 2025</span>
</div>
<div class="patch-subtitle">Eyedropper Tool & UI Improvements</div>
<div class="patch-section">
<div class="patch-section-title features">✨ New Features</div>
<ul class="patch-list">
<li>Click directly on the preview image to select colors</li>
<li>Selected color automatically scrolls into view in palette grid</li>
<li>Crosshair cursor when hovering over preview canvas</li>
</ul>
</div>
<div class="patch-section">
<div class="patch-section-title fixes">🐛 Bug Fixes</div>
<ul class="patch-list">
<li>Fixed color picking accuracy at different zoom levels</li>
<li>Fixed issue where clicking outside image bounds caused errors</li>
</ul>
</div>
</div>
<!-- Patch v1.2.0 -->
<div class="patch-card">
<div class="patch-header">
<span class="patch-version">v1.2.0</span>
<span class="patch-date">July 12, 2025</span>
</div>
<div class="patch-subtitle">GIF Frame Compositing Fix</div>
<div class="patch-section">
<div class="patch-section-title improvements">🔧 Improvements</div>
<ul class="patch-list">
<li>Proper handling of GIF disposal methods (restore to background, restore to previous)</li>
<li>Frame patches now composite correctly over full canvas</li>
<li>Support for GIFs with differently-sized frame patches</li>
</ul>
</div>
<div class="patch-section">
<div class="patch-section-title fixes">🐛 Bug Fixes</div>
<ul class="patch-list">
<li>Fixed corrupted frames in some optimized GIFs</li>
<li>Fixed animation glitches caused by incorrect frame timing</li>
</ul>
</div>
</div>
<!-- Patch v1.1.0 -->
<div class="patch-card">
<div class="patch-header">
<span class="patch-version">v1.1.0</span>
<span class="patch-date">June 20, 2025</span>
</div>
<div class="patch-subtitle">Zoom Controls & Animation Playback</div>
<div class="patch-section">
<div class="patch-section-title features">✨ New Features</div>
<ul class="patch-list">
<li>Adjustable zoom slider for pixel-perfect viewing</li>
<li>Play/Pause button for animation control</li>
<li>Previous/Next frame navigation buttons</li>
<li>Frame counter display</li>
</ul>
</div>
<div class="patch-section">
<div class="patch-section-title improvements">🔧 Improvements</div>
<ul class="patch-list">
<li>Crisp pixel rendering at all zoom levels (no blur)</li>
<li>Smooth animation playback using requestAnimationFrame</li>
</ul>
</div>
</div>
<!-- Patch v1.0.0 -->
<div class="patch-card">
<div class="patch-header">
<span class="patch-version">v1.0.0</span>
<span class="patch-date">June 1, 2025</span>
</div>
<div class="patch-subtitle">Initial Release 🎉</div>
<div class="patch-section">
<div class="patch-section-title features">✨ Features</div>
<ul class="patch-list">
<li>Upload and edit GIF animations</li>
<li>Automatic color palette extraction</li>
<li>Click-to-select colors from palette grid</li>
<li>Color picker for choosing replacement colors</li>
<li>Apply color swap across all frames</li>
<li>Export edited GIF</li>
<li>Export current frame as PNG</li>
<li>Reset all changes button</li>
<li>Drag and drop file upload</li>
<li>100% browser-based, no server upload</li>
</ul>
</div>
</div>
<!-- CTA -->
<div class="cta-box">
<h3>Try the Latest Version</h3>
<p style="color: var(--color-text-muted);">Experience all the new features and improvements.</p>
<a href="index.html" class="btn">Open the Tool 🎨</a>
</div>
</div>
</main>
<!-- Footer -->
<footer class="footer">
<div class="footer-container">
<div class="footer-section">
<h4>PixelPaletteSwap</h4>
<ul class="footer-links">
<li><a href="index.html">Palette Swap Tool</a></li>
<li><a href="guides.html">Guides & Tutorials</a></li>
<li><a href="about.html">About Us</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Resources</h4>
<ul class="footer-links">
<li><a href="guides/how-to-swap-color-palettes.html">Getting Started</a></li>
<li><a href="guides/best-color-palettes-for-pixel-art.html">Best Palettes</a></li>
<li><a href="guides/color-theory-for-pixel-art.html">Color Theory</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Legal</h4>
<ul class="footer-links">
<li><a href="privacy.html">Privacy Policy</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="https://github.com/swompythesecond/pixelpaletteswap" target="_blank"
rel="noopener">GitHub</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 PixelPaletteSwap.com. Made with ❤️ for the pixel art community.</p>
</div>
</footer>
</body>
</html>