-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpatch-notes.html
More file actions
485 lines (474 loc) · 19 KB
/
Copy pathpatch-notes.html
File metadata and controls
485 lines (474 loc) · 19 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
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
<!DOCTYPE html>
<html lang="en">
<!-- maintenance-tier: HOT -->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Paralives Patch Notes Archive | Paralives Guide</title>
<meta name="description" content="Track Paralives Early Access patch notes in a version-by-version index built only from official Steam announcements and paralives.com sources.">
<link rel="canonical" href="https://paralivesguide.help/patch-notes">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "Paralives Patch Notes Archive",
"description": "A version-by-version archive of Paralives Early Access patch notes built from official Steam announcements and paralives.com sources.",
"dateModified": "2026-06-03",
"inLanguage": "en",
"mainEntityOfPage": "https://paralivesguide.help/patch-notes"
}
</script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600;700&family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-BZ21KDKP4C"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-BZ21KDKP4C');
</script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4624485020338199" crossorigin="anonymous"></script>
<style>
:root {
--cream: #fdf6ec;
--pink: #f4c8c0;
--pink-deep: #e89a8e;
--sage: #b8c9a7;
--sage-deep: #7a9269;
--ink: #3d3530;
--ink-soft: #6b5d54;
--line: #ead9c8;
--shadow: 0 4px 16px rgba(61, 53, 48, 0.06);
--shadow-hover: 0 8px 28px rgba(61, 53, 48, 0.12);
--font-display: "Fraunces", Georgia, "Times New Roman", serif;
--font-body: "Inter", -apple-system, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
--font-mono: "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;
}
* { box-sizing: border-box; }
html { background: var(--cream); }
body {
margin: 0;
font-family: var(--font-body);
background: var(--cream);
color: var(--ink);
line-height: 1.7;
-webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
font-family: var(--font-display);
letter-spacing: -0.01em;
color: var(--ink);
}
a { color: inherit; text-decoration: none; }
.topbar {
position: sticky;
top: 0;
z-index: 10;
border-bottom: 1px solid var(--line);
background: rgba(253, 246, 236, 0.94);
backdrop-filter: blur(12px);
}
.icon{display:inline-block;width:1em;height:1em;vertical-align:-0.15em;stroke:currentColor;stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round;fill:none;flex:none}
.topbar-inner,
.wrap,
.site-footer-inner {
width: min(1120px, calc(100% - 32px));
margin: 0 auto;
}
.topbar-inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
padding: 18px 0;
}
.brand {
font-family: var(--font-display);
font-size: 1.2rem;
font-weight: 600;
letter-spacing: -0.02em;
white-space: nowrap;
}
.brand span { color: var(--pink-deep); }
.topnav {
display: flex;
flex-wrap: wrap;
gap: 18px;
align-items: center;
justify-content: flex-end;
}
.topnav a {
position: relative;
font-size: 0.96rem;
color: var(--ink-soft);
}
.topnav a[aria-current]::after {
content: "";
position: absolute;
left: 0;
right: 0;
bottom: -3px;
height: 2px;
background: var(--pink-deep);
border-radius: 999px;
}
.wrap { padding: 56px 0 112px; }
.crumb {
margin-bottom: 18px;
color: var(--ink-soft);
font-size: 0.94rem;
}
article {
max-width: 840px;
padding: 34px clamp(22px, 4vw, 40px);
border: 1px solid var(--line);
border-radius: 28px;
background: rgba(255, 251, 246, 0.88);
box-shadow: var(--shadow);
}
.kicker {
margin: 0 0 12px;
color: var(--pink-deep);
font-family: var(--font-mono);
font-size: 0.84rem;
font-weight: 600;
letter-spacing: 0.05em;
text-transform: uppercase;
}
h1 {
margin: 0 0 12px;
font-size: clamp(2.4rem, 6vw, 4rem);
line-height: 1.02;
}
.article-meta {
display: flex;
flex-wrap: wrap;
gap: 8px 16px;
margin: -6px 0 24px;
color: var(--ink-soft);
font-size: 0.92rem;
font-family: var(--font-mono);
}
.article-meta span {
display: inline-flex;
align-items: center;
gap: 6px;
}
.article-meta span + span::before {
content: "·";
margin-right: 8px;
color: var(--line);
}
.toc,
.factbox,
.note,
.version-card,
.related a {
border-radius: 20px;
}
.toc {
margin: 28px 0;
padding: 20px 22px;
border: 1px solid var(--line);
background: rgba(244, 200, 192, 0.16);
}
.toc h2,
.factbox h3 {
margin: 0 0 12px;
font-size: 1.2rem;
}
.toc ol {
margin: 0;
padding-left: 20px;
}
.toc a { color: var(--sage-deep); }
.sec {
margin-top: 34px;
margin-bottom: 14px;
font-size: 1.85rem;
}
.factbox {
margin: 26px 0;
padding: 20px 22px;
border: 1px solid var(--line);
background: rgba(255, 251, 246, 0.9);
box-shadow: var(--shadow);
}
.factbox table {
width: 100%;
border-collapse: collapse;
}
.factbox td {
padding: 10px 0;
border-top: 1px solid var(--line);
vertical-align: top;
}
.factbox tr:first-child td { border-top: 0; }
.factbox td:first-child {
width: 34%;
color: var(--ink-soft);
font-family: var(--font-mono);
font-size: 0.84rem;
letter-spacing: 0.04em;
}
.note {
margin: 22px 0;
padding: 16px 18px;
background: rgba(184, 201, 167, 0.22);
color: var(--ink);
}
.version-index {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin: 20px 0 0;
}
.version-index a {
padding: 10px 14px;
border: 1px solid var(--line);
background: rgba(255, 251, 246, 0.92);
font-family: var(--font-mono);
font-size: 0.88rem;
color: var(--sage-deep);
}
.version-stack {
display: grid;
gap: 18px;
margin-top: 22px;
}
.version-card {
padding: 22px;
border: 1px solid var(--line);
background: rgba(255, 251, 246, 0.92);
box-shadow: var(--shadow);
}
.version-card h3 {
margin: 0 0 8px;
font-size: 1.45rem;
}
.version-meta {
margin: 0 0 14px;
color: var(--ink-soft);
font-family: var(--font-mono);
font-size: 0.86rem;
letter-spacing: 0.04em;
}
.version-card p { margin: 0 0 12px; }
.version-card .label {
display: inline-flex;
margin-bottom: 10px;
padding: 6px 10px;
border-radius: 999px;
background: rgba(244, 200, 192, 0.22);
color: var(--pink-deep);
font-family: var(--font-mono);
font-size: 0.78rem;
letter-spacing: 0.05em;
text-transform: uppercase;
}
.source-link {
color: var(--sage-deep);
font-weight: 600;
}
.related {
display: grid;
gap: 12px;
margin-top: 18px;
}
.related a {
display: block;
padding: 16px 18px;
border: 1px solid var(--line);
background: rgba(255, 251, 246, 0.9);
box-shadow: var(--shadow);
}
.related .eyebrow {
display: block;
margin-bottom: 6px;
color: var(--ink-soft);
font-family: var(--font-mono);
font-size: 0.78rem;
letter-spacing: 0.05em;
text-transform: uppercase;
}
.site-footer {
border-top: 1px solid var(--line);
padding: 28px 0 44px;
}
.site-footer .brand {
margin-bottom: 10px;
font-size: 1rem;
}
.disclaimer {
margin: 0;
max-width: 54rem;
color: var(--ink-soft);
font-size: 0.92rem;
}
.lang-switcher {
min-height: 1.5rem;
margin-top: 18px;
}
@media (max-width: 640px) {
.topbar-inner {
align-items: flex-start;
flex-direction: column;
padding: 16px 0;
}
.topnav {
justify-content: flex-start;
gap: 14px 18px;
}
.wrap, .topbar-inner, .site-footer-inner {
width: min(1120px, calc(100% - 24px));
}
}
</style>
</head>
<body>
<svg xmlns="http://www.w3.org/2000/svg" style="display:none" aria-hidden="true">
<symbol id="i-guides" viewBox="0 0 24 24"><path d="M4 6.5A2.5 2.5 0 0 1 6.5 4H20v14.5A1.5 1.5 0 0 0 18.5 17H6.5A2.5 2.5 0 0 0 4 19.5z"/><path d="M12 4v13"/></symbol>
<symbol id="i-database" viewBox="0 0 24 24"><ellipse cx="12" cy="5" rx="7" ry="3"/><path d="M5 5v6c0 1.7 3.1 3 7 3s7-1.3 7-3V5"/><path d="M5 11v6c0 1.7 3.1 3 7 3s7-1.3 7-3v-6"/></symbol>
<symbol id="i-tools" viewBox="0 0 24 24"><circle cx="12" cy="12" r="7"/><path d="M12 2v4"/><path d="M12 18v4"/><path d="M2 12h4"/><path d="M18 12h4"/><path d="m12 12 4-4"/></symbol>
<symbol id="i-houses" viewBox="0 0 24 24"><path d="M4 10.5 12 4l8 6.5"/><path d="M6 9.5V20h12V9.5"/><path d="M10 20v-5h4v5"/></symbol>
<symbol id="i-updates" viewBox="0 0 24 24"><path d="M12 4a5 5 0 0 0-5 5v2.5c0 .8-.3 1.6-.9 2.1L4.5 15h15l-1.6-1.4a3 3 0 0 1-.9-2.1V9a5 5 0 0 0-5-5"/><path d="M9.5 18a2.5 2.5 0 0 0 5 0"/></symbol>
<symbol id="i-about" viewBox="0 0 24 24"><circle cx="12" cy="12" r="9"/><path d="M12 10v6"/><path d="M12 7h.01"/></symbol>
</svg>
<header class="topbar">
<div class="topbar-inner">
<div class="brand"><a href="/">Paralives<span> </span>Guide</a></div>
<nav class="topnav" aria-label="Primary">
<a href="guides"><svg class="icon" aria-hidden="true"><use href="#i-guides"/></svg> Guides</a>
<a href="database"><svg class="icon" aria-hidden="true"><use href="#i-database"/></svg> Database</a>
<a href="tools"><svg class="icon" aria-hidden="true"><use href="#i-tools"/></svg> Tools</a>
<a href="houses"><svg class="icon" aria-hidden="true"><use href="#i-houses"/></svg> Houses</a>
<a href="updates"><svg class="icon" aria-hidden="true"><use href="#i-updates"/></svg> Updates</a>
<a href="about"><svg class="icon" aria-hidden="true"><use href="#i-about"/></svg> About</a>
</nav>
</div>
</header>
<main class="wrap">
<div class="crumb"><a href="/">Home</a> / <a href="updates">Updates</a> / Patch notes archive</div>
<article>
<div class="kicker">UP-02 · PATCH ARCHIVE</div>
<h1>Paralives patch notes archive</h1>
<div class="article-meta">
<span>Updated: 2026-06-03</span>
<span>Game Version: EA 0.1</span>
<span>Page type: Patch archive</span>
</div>
<p>All <span translate="no">Paralives</span> Early Access patches, grouped by version, with official sources.</p>
<p>This page is the version-by-version companion to <a href="updates">updates.html</a>. The goal is simple: point to the original official announcement, keep the summary neutral, and avoid reposting the full patch notes body when the source already exists.</p>
<div class="note"><b>Methodology:</b> Every entry on this page comes from official <span translate="no">Steam</span> announcements and official <span translate="no">paralives.com</span> pages only. If an announcement does not expose an exact version number, this archive keeps the slot broad and marks the missing label instead of inventing one.</div>
<nav class="toc">
<h2>In this archive</h2>
<ol>
<li><a href="#sources">How this archive is sourced</a></li>
<li><a href="#version-index">Version index</a></li>
<li><a href="#patches">Version sections</a></li>
<li><a href="#footnote">Sourcing footnote</a></li>
<li><a href="#related">Related pages</a></li>
</ol>
</nav>
<h2 class="sec" id="sources">How this archive is sourced</h2>
<p>The source chain is intentionally narrow: official <span translate="no">Steam Community Announcements</span>, plus official pages on <span translate="no">paralives.com</span> when they carry the same release information. Community summaries, news roundups, and player-made change logs do not get promoted into archive entries here.</p>
<div class="factbox">
<h3>Archive rules</h3>
<table>
<tr><td>Allowed sources</td><td>Official <span translate="no">Steam</span> announcements and official <span translate="no">paralives.com</span> pages only.</td></tr>
<tr><td>Entry format</td><td>Version label, release date, neutral summary, and an official source link.</td></tr>
<tr><td>Missing version labels</td><td>If the source does not show one clearly, the archive keeps a broader version bucket and says so.</td></tr>
<tr><td>Editorial stance</td><td>Organization and summary only, not a repost of the complete patch notes text.</td></tr>
</table>
</div>
<h2 class="sec" id="version-index">Version index</h2>
<p>The index stays in reverse order, with the most recent official item first.</p>
<div class="version-index">
<a href="#v0-1-2b">0.1.2b</a>
<a href="#v0-1-2">0.1.2</a>
<a href="#vknown-issues">Known issues</a>
<a href="#v0-1-0">0.1.0</a>
</div>
<h2 class="sec" id="patches">Version sections</h2>
<!-- patch-notes:auto-start -->
<div class="version-stack">
<section class="version-card" id="v0-1-2b">
<div class="label">Hotfix</div>
<h3>Version 0.1.2b</h3>
<p class="version-meta">Posted 2026-06-01</p>
<p>The official Steam item for Hotfix 0.1.2b was posted on 2026-06-01. It is a narrow follow-up fix to the launch patch line, so this archive links to the official source instead of reposting the full note.</p>
<p>Fixed an issue introduced in version 0.1.2 where players who had the game installed on a different hard drive than the operating system couldn't change the display language of the game or install mods.</p>
<a class="source-link" href="https://steamstore-a.akamaihd.net/news/externalpost/steam_community_announcements/1833968530898626">Official source</a>
</section>
<section class="version-card" id="v0-1-2">
<div class="label">Patch</div>
<h3>Version 0.1.2</h3>
<p class="version-meta">Posted 2026-05-29</p>
<p>The official paralives.com patch notes for Patch Notes 0.1.2 were posted on 2026-05-29. The entry belongs to the Early Access 0.1 line and is summarized here only at routing level.</p>
<p>Bug Fixes Made improvements to memory management to eliminate a memory leak and reduce crashes. Fixed a bug where some interface windows could not be closed. Fire: Parafolks now have a chance to autonomously extinguis...</p>
<a class="source-link" href="https://paralives.com/news/patch-notes-012">Official source</a>
</section>
<section class="version-card" id="vknown-issues">
<div class="label">Known issues</div>
<h3>Known Issues</h3>
<p class="version-meta">Posted 2026-05-26</p>
<p>The official Steam item Known Issues was posted on 2026-05-26. No exact version label is exposed in the title, so the archive keeps the entry under its official title.</p>
<p>The source is a launch-period known-issues notice rather than a numbered patch, so it stays separate from versioned patch notes.</p>
<a class="source-link" href="https://steamstore-a.akamaihd.net/news/externalpost/steam_community_announcements/1833334318580318">Official source</a>
</section>
<section class="version-card" id="v0-1-0">
<div class="label">Launch</div>
<h3>Version 0.1.0</h3>
<p class="version-meta">Posted 2026-05-25</p>
<p>Paralives entered Steam Early Access on 2026-05-25. This launch entry is kept as the baseline for the 0.1 patch line.</p>
<p>The official launch notice confirms the public Early Access starting point; later patch and hotfix entries are organized above it in reverse date order.</p>
<a class="source-link" href="https://paralives.com/news/-paralives-is-out-now-">Official source</a>
</section>
</div>
<!-- patch-notes:auto-end -->
<h2 class="sec" id="footnote">How patch notes are sourced</h2>
<p>Checked against the official <span translate="no">Steam Community Announcements</span> listing and official <span translate="no">paralives.com</span> pages as of 2026-06-03. Version cards inside the marker block are generated by <code>scripts/update-patch-notes.py</code> from official-tier source-monitor digests: official <span translate="no">paralives.com</span> pages and official <span translate="no">Steam Community Announcements</span> only. To refresh after an official patch, run <code>python3 scripts/source-monitor.py scan --format json</code>, then <code>python3 scripts/update-patch-notes.py</code>.</p>
<h2 class="sec" id="related">Related</h2>
<div class="related">
<a href="database">
<span class="eyebrow">Database</span>
<strong>Database hub</strong>
<span>Open the structured lookup hub where this archive is registered as DB-01.</span>
</a>
<a href="updates">
<span class="eyebrow">Timeline</span>
<strong>Updates</strong>
<span>Use the broader updates route for official news links plus reviewed site changes.</span>
</a>
<a href="early-access-features">
<span class="eyebrow">Scope</span>
<strong>Early Access features</strong>
<span>See what was officially available at launch versus what the studio says is planned later.</span>
</a>
<a href="troubleshooting">
<span class="eyebrow">Issues</span>
<strong>Troubleshooting hub</strong>
<span>Go here for known issues, official reporting routes, and fix guides once they are verified.</span>
</a>
<a href="aging-too-fast">
<span class="eyebrow">Specific issue</span>
<strong>Paralives aging too fast</strong>
<span>One example of how this site separates community workarounds from official mechanics.</span>
</a>
</div>
</article>
</main>
<footer class="site-footer">
<div class="site-footer-inner">
<div class="brand">Paralives<span> </span>Guide</div>
<p class="disclaimer">
Paralives is a trademark of Paralives Studio. This is an unaffiliated fan resource;
nothing here is endorsed by or affiliated with Paralives Studio.
</p>
<div class="lang-switcher" aria-hidden="true"></div>
</div>
</footer>
</body>
</html>