-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.html
249 lines (215 loc) · 8.03 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="View the complete changelog of Code to Adventure to stay updated on all the latest features and improvements.">
<meta name="author" content="Zak Winnick">
<title>Changelog - Code to Adventure</title>
<!-- Preload key resources -->
<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=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
--dark-green: #132A13;
--hunter-green: #31572C;
--fern-green: #4F772D;
--moss-green: #90A955;
--mindaro: #ECF39E;
--text-white: #FFFFFF;
--button-radius: 40px;
--max-width: 1200px;
--border-radius: 8px;
--transition-speed: 0.3s;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', system-ui, -apple-system, sans-serif;
background-color: var(--dark-green);
color: var(--text-white);
line-height: 1.6;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
}
.title-bar {
background-color: var(--hunter-green);
width: 100%;
padding: 1rem 1.5rem;
text-align: center;
color: var(--mindaro);
}
.title-bar h1 {
font-size: 2rem;
font-weight: bold;
}
.menu-bar {
background-color: var(--fern-green);
width: 100%;
padding: 0.75rem 1.5rem;
}
.menu {
display: flex;
justify-content: center;
gap: 1.5rem;
max-width: var(--max-width);
margin: 0 auto;
}
.menu a {
color: var(--mindaro);
text-decoration: none;
font-weight: 600;
padding: 0.5rem 1rem;
transition: background-color var(--transition-speed) ease;
border-radius: var(--border-radius);
}
.menu a:hover {
background-color: var(--moss-green);
color: var(--dark-green);
}
.content {
flex: 1;
max-width: var(--max-width);
margin: 2rem auto;
padding: 0 1.5rem;
}
.changelog {
max-width: 800px;
margin: 0 auto;
}
h1 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 2rem;
color: var(--mindaro);
}
.entry {
padding: 1.5rem;
border-radius: var(--border-radius);
margin-bottom: 1.5rem;
}
.entry:nth-child(odd) {
background-color: var(--hunter-green);
}
.entry:nth-child(even) {
background-color: var(--fern-green);
}
h3 {
color: var(--mindaro);
font-size: 1.5rem;
margin-bottom: 0.5rem;
}
p {
font-size: 1.125rem;
line-height: 1.8;
}
footer {
background-color: var(--hunter-green);
color: var(--text-white);
padding: 1rem;
width: 100%;
text-align: center;
}
footer a {
color: var(--moss-green);
text-decoration: none;
transition: color var(--transition-speed) ease;
}
footer a:hover {
color: var(--mindaro);
}
@media (max-width: 768px) {
.menu {
flex-wrap: wrap;
gap: 0.75rem;
}
h1 {
font-size: 2rem;
}
.entry {
padding: 1rem;
}
}
</style>
</head>
<body>
<div class="title-bar">
<h1>Code to Adventure - Changelog</h1>
</div>
<div class="menu-bar">
<nav class="menu">
<a href="index.php">Home</a>
<a href="submit.php">Submit Code</a>
<a href="api-docs.html">API Docs</a>
<a href="changelog.html">Changelog</a>
</nav>
</div>
<div class="content">
<div class="changelog">
<h1>Changelog</h1>
<div class="entry">
<h3>Version 2024.12.28 - December 28, 2024</h3>
<p>- Updated color scheme</p>
<p>- Added a working modal dialog for code submission</p>
<p>- Improved the navigation menu styling</p>
<p>- Made button interactions more intuitive</p>
<p>- Created consistent styling across all components</p>
<p>- Added proper mobile responsiveness</p>
<p>- Improved user experience with cancel/submit options</p>
<p>- Updated referral points to reflect program changes by Rivian</p>
</div>
<div class="entry">
<h3>Version 2024.12.24 - December 24, 2024</h3>
<P>- Updated Admin Portal with sortable tables and pagination</P>
</div>
<div class="entry">
<h3>Version 2024.12.18 - December 18, 2024</h3>
<p>- Redesigned mobile navigation with improved layout and touch interaction, featuring a streamlined menu that keeps primary navigation items together while positioning the Admin link for easy access</p>
<p>- Enhanced site performance through optimized resource loading and improved error handling for database operations</p>
<p>- Implemented comprehensive responsive design improvements across the site, ensuring better usability on all devices while maintaining the core referral code functionality</p>
<p>- Updated API documentation to reflect all API calls (this was previously missing from older versions)</p>
</div>
<div class="entry">
<h3>Version 2024.12.11 - December 11, 2024</h3>
<p>- Complete refresh of the design language for the site.</p>
<p>- Simplified backend code for efficiency.</p>
<p>- Revamped admin console design, and added persistent login via browser cookies.</p>
<p>- Removed X Username field from Submit Code page (you're welcome...).</p>
</div>
<div class="entry">
<h3>Version 2024.12.10 - December 10, 2024</h3>
<p>- Added admin referral code banner.</p>
</div>
<div class="entry">
<h3>Version 2024.11.13 - November 13, 2024</h3>
<p>- Created new admin dashboard for editing and deleting entries.</p>
<p>- Added email notifications for new submissions.</p>
</div>
<div class="entry">
<h3>Version 2024.11.7 - November 7, 2024</h3>
<p>- Moved development to GitHub for version tracking.</p>
<p>- Made Twitter handle submission optional.</p>
</div>
<div class="entry">
<h3>Version 2.0 - September 29, 2024</h3>
<p>- Updated page titles for SEO.</p>
<p>- Improved layout and responsiveness.</p>
<p>- Added random header images.</p>
<p>- Enhanced footer links and meta tags.</p>
</div>
</div>
</div>
<footer>
© <script>document.write(new Date().getFullYear());</script>
<a href="https://zakwinnick.com" target="_blank">Zak Winnick</a> |
<a href="https://zak.codetoadventure.com" target="_blank">Zak's Referral Code</a> |
<a href="mailto:[email protected]">Contact Admin</a>
</footer>
</body>
</html>