-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangelog.html
122 lines (109 loc) · 6.28 KB
/
changelog.html
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
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Twink Code Changelog</title>
<link rel="stylesheet" href="dist/output.css">
</head>
<body class="bg-stone-900 text-white overflow-x-hidden">
<main class="w-full min-h-screen p-16">
<section class="space-y-5">
<h1 class="text-4xl font-bold">Twink Code Changelog</h1>
<a href="index.html" class="text-blue-600 underline">Go Back</a>
<div class="mx-auto relative">
<div class="border-l-2 mt-10">
<div
class="box-border ml-10 relative border border-solid border-stone-700 flex items-center px-6 py-4 text-white rounded mb-10 flex-col md:flex-row space-y-4 md:space-y-0">
<div
class="w-5 h-5 bg-stone-600 absolute transform -left-12 -translate-x-1 rounded-full z-10 mt-2 md:mt-0">
</div>
<div class="flex-auto">
<h1 class="text-lg">1.1</h1>
<h1 class="text-lg font-bold">Refactoring the Initial Release</h1>
<section class="text-xs space-y-2.5">
<p>First update focuses on cleaning up and refactoring the MVP</p>
<p class="text-xs">Changes in functionality:</p>
<ul class="ml-4 list-disc">
<li>Added trait modifiers as per original document</li>
<li>Hair Waviness trait is now discontinued (due to collisions with slut factor)</li>
<li>Hair Waviness modifier added to the Hair Length trait</li>
<li>Added Twink Hawk trait</li>
<li>Twink Hawk trait can now be modified with list of twink types which the hawk is attracted to</li>
</ul>
<p class="text-xs">Cleaning up:</p>
<ul class="ml-4 list-disc">
<li>Added SEO meta tags</li>
<li>Added placeholder SEO image</li>
<li>Fixed links so that they point to the right resource</li>
<li>Added target to the links so that they open in new tab</li>
<li>Changed "Switch Views" to "Switch Layouts" for clarity</li>
</ul>
</section>
</div>
</div>
<div
class="box-border ml-10 relative border border-solid border-stone-700 flex items-center px-6 py-4 text-white rounded mb-10 flex-col md:flex-row space-y-4 md:space-y-0">
<div
class="w-5 h-5 bg-stone-600 absolute transform -left-12 -translate-x-1 rounded-full z-10 mt-2 md:mt-0">
</div>
<div class="flex-auto">
<h1 class="text-lg">1.0</h1>
<h1 class="text-lg font-bold">Initial Release</h1>
<section class="text-xs space-y-2.5">
<p>
Initial Release with basics of decoding the Twink Codes</p>
<p class="text-xs">Currently supported traits are:</p>
<ul class="ml-4 list-disc">
<li>Twink Type</li>
<li>Hair Colour</li>
<li>Hair Length</li>
<li>Hair Waviness</li>
<li>Dizziness</li>
<li>Attitude</li>
<li>The Whine Factor</li>
<li>Tan</li>
<li>Youthful Apperance</li>
<li>Endowment</li>
<li>Gonads</li>
<li>Flavour of cream</li>
<li>Kinky Factor</li>
<li>Slut Factor</li>
<li>Muscle Definition</li>
<li>Muscle Mass</li>
<li>The Q Factor</li>
</ul>
<p>None of these take additional punctuation into an account.</p>
<p class="text-xs">Added:</p>
<ul class="ml-4 list-disc">
<li>Screenshot button</li>
<li>Switch view button to switch between <code>Compact</code> and <code>Full</code> view</li>
<li>Hair Length</li>
</ul>
</section>
</div>
</div>
</div>
</section>
</div>
</main>
<footer class="p-4 w-full shadow md:flex md:items-center md:justify-between md:p-6">
<span class="text-sm text-stone-400">
Made by <a target="_blank" href="https://reddit.com/u/bahamut731lp" class="text-blue-600 hover:underline">u/Bahamut731lp</a>
</span>
<ul class="flex flex-wrap items-center mt-3 text-sm text-stone-400 sm:mt-0">
<li>
<a href="changelog.html" class="mr-4 hover:underline md:mr-6">Changelog</a>
</li>
<li>
<a href="https://user.xmission.com/~trevin/twink112.html" class="mr-4 hover:underline md:mr-6">Original
Twink Code Document</a>
</li>
<li>
<a href="index.html" class="hover:underline">The Twink Code, version 1.1</a>
</li>
</ul>
</footer>
</body>
</html>