-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchangelog.html
More file actions
311 lines (302 loc) · 18.8 KB
/
changelog.html
File metadata and controls
311 lines (302 loc) · 18.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
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#111827">
<meta name="description" content="PowerEssentials Changelog - Track updates and improvements for the ultimate Minecraft Bedrock server plugin">
<meta property="og:type" content="website">
<meta property="og:title" content="Changelog - PowerEssentials">
<meta property="og:description" content="Track updates and improvements for PowerEssentials plugin">
<meta property="og:image" content="https://poweressentials.example.com/og-image.jpg">
<title>Changelog - PowerEssentials</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
animation: {
'fade-in': 'fadeIn 0.5s ease-in-out',
'float': 'float 3s ease-in-out infinite',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-10px)' },
}
}
}
}
}
</script>
<script defer src="https://unpkg.com/alpinejs@3.x.x/dist/cdn.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" rel="stylesheet">
<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@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
html {
font-family: 'Inter', sans-serif;
}
[x-cloak] { display: none !important; }
.gradient-text {
background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.release-card:hover .release-highlight {
transform: translateX(5px);
}
</style>
</head>
<body class="bg-gray-900 text-gray-100 antialiased min-h-screen flex flex-col">
<nav class="bg-gray-800/95 backdrop-blur-md border-b border-gray-700 fixed w-full top-0 z-50 shadow-lg" x-data="{ isOpen: false, scrolled: false }"
@scroll.window="scrolled = (window.pageYOffset > 10)">
<div class="container mx-auto px-4 sm:px-6 lg:px-8 transition-all duration-300" :class="{ 'py-2': scrolled, 'py-3': !scrolled }">
<div class="flex items-center justify-between h-14">
<a href="/" class="text-2xl font-bold gradient-text flex items-center">
<i class="fas fa-bolt mr-2"></i>
PowerEssentials
</a>
<div class="hidden md:flex space-x-6">
<a href="index.html" class="hover:text-blue-400 transition-colors duration-200 font-medium flex items-center">
<i class="fas fa-home mr-2 text-sm"></i> Home
</a>
<a href="download.html" class="hover:text-blue-400 transition-colors duration-200 font-medium flex items-center">
<i class="fas fa-download mr-2 text-sm"></i> Download
</a>
<a href="about.html" class="hover:text-blue-400 transition-colors duration-200 font-medium flex items-center">
<i class="fas fa-info-circle mr-2 text-sm"></i> About
</a>
<a href="#" class="text-blue-400 transition-colors duration-200 font-medium flex items-center">
<i class="fas fa-list-alt mr-2 text-sm"></i> Changelog
</a>
</div>
<button @click="isOpen = !isOpen" class="md:hidden p-2 rounded-md text-gray-400 hover:text-white focus:outline-none focus:ring-2 focus:ring-blue-500">
<svg x-show="!isOpen" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"/>
</svg>
<svg x-show="isOpen" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor" style="display: none;">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"/>
</svg>
</button>
</div>
</div>
<div class="md:hidden" x-show="isOpen" @click.away="isOpen = false" x-transition x-cloak>
<div class="px-4 pt-2 pb-4 space-y-2 bg-gray-800/95 backdrop-blur-md">
<a href="index.html" class="block px-3 py-2 rounded-md hover:bg-gray-700 transition-colors flex items-center">
<i class="fas fa-home mr-3 text-sm w-4"></i> Home
</a>
<a href="download.html" class="block px-3 py-2 rounded-md hover:bg-gray-700 transition-colors flex items-center">
<i class="fas fa-download mr-3 text-sm w-4"></i> Download
</a>
<a href="about.html" class="block px-3 py-2 rounded-md hover:bg-gray-700 transition-colors flex items-center">
<i class="fas fa-info-circle mr-3 text-sm w-4"></i> About
</a>
<a href="#" class="block px-3 py-2 rounded-md bg-gray-700 text-blue-400 transition-colors flex items-center">
<i class="fas fa-list-alt mr-3 text-sm w-4"></i> Changelog
</a>
</div>
</div>
</nav>
<main class="flex-grow pt-24 pb-12">
<div class="container mx-auto px-4 sm:px-6 lg:px-8">
<div class="max-w-4xl mx-auto">
<div class="text-center mb-12 animate-fade-in">
<h1 class="text-4xl md:text-5xl font-extrabold mb-4">
<span class="gradient-text">Version Updates</span>
</h1>
<p class="text-gray-400 max-w-lg mx-auto">Track all the latest features, improvements, and bug fixes for PowerEssentials</p>
</div>
<div class="space-y-8">
<!-- Latest Release -->
<div class="bg-gray-800 rounded-xl p-6 border-l-4 border-blue-500 shadow-lg transition-all hover:shadow-xl release-card">
<div class="flex flex-col md:flex-row justify-between items-start md:items-center mb-6 gap-4">
<div>
<div class="flex items-center mb-2">
<span class="bg-blue-500/20 text-blue-400 text-xs font-semibold px-2.5 py-0.5 rounded-full mr-3">Latest</span>
<h2 class="text-2xl font-bold flex items-center">
<i class="fas fa-rocket text-blue-400 mr-3 animate-float"></i>
v1.1.0
</h2>
</div>
<div class="flex flex-wrap items-center text-sm text-gray-400 gap-4">
<span class="flex items-center">
<i class="fas fa-user-shield mr-2"></i>
<a href="https://github.com/rEADRynz/" class="hover:text-blue-400 transition-colors">rEADRynz</a>
</span>
<span class="flex items-center">
<i class="fas fa-calendar-alt mr-2"></i>
April 1, 2025
</span>
<span class="flex items-center">
<i class="fas fa-cube mr-2"></i>
PMMP 5.0.0+
</span>
</div>
</div>
<a href="/download.html"
class="bg-gradient-to-r from-blue-600 to-blue-500 hover:from-blue-500 hover:to-blue-400 text-white px-6 py-2.5 rounded-lg flex items-center transition-all duration-300 shadow-lg hover:shadow-blue-500/20 whitespace-nowrap">
<i class="fas fa-download mr-2"></i> Download .phar
</a>
</div>
<div class="mt-6">
<h3 class="text-lg font-semibold mb-4 flex items-center">
<i class="fas fa-star text-yellow-400 mr-2"></i>
Release Highlights
</h3>
<ul class="space-y-3 text-gray-300 pl-1">
<li class="flex items-start release-highlight transition-transform duration-200">
<i class="fas fa-plus-circle text-green-400 mt-1 mr-3"></i>
<span>What's New?:</span>
</li>
<li class="ml-9 mb-2 flex items-start">
<i class="fas fa-chevron-right text-blue-400 text-xs mt-1.5 mr-2"></i>
<span>TempBan Command (Experimental)</span>
</li>
<li class="ml-9 mb-2 flex items-start">
<i class="fas fa-chevron-right text-blue-400 text-xs mt-1.5 mr-2"></i>
<span>Fix Mute and Unmute Command</span>
</li>
</ul>
</div>
<div class="mt-8 pt-4 border-t border-gray-700 flex flex-wrap justify-between gap-4">
<div>
<h4 class="text-sm font-semibold text-gray-400 mb-2">COMPATIBILITY</h4>
<div class="flex items-center text-sm">
<span class="bg-gray-700 text-blue-400 px-2.5 py-1 rounded-full text-xs font-medium">PMMP 5.0.0+</span>
</div>
</div>
<div>
<h4 class="text-sm font-semibold text-gray-400 mb-2">LINKS</h4>
<div class="flex space-x-3">
<a href="https://github.com/PowerEssentials/PowerEssentials/releases/tag/v1.0.0"
class="text-gray-400 hover:text-blue-400 transition-colors text-sm flex items-center">
<i class="fab fa-github mr-1"></i> Release Notes
</a>
<a href="#"
class="text-gray-400 hover:text-blue-400 transition-colors text-sm flex items-center">
<i class="fas fa-book mr-1"></i> Documentation
</a>
</div>
</div>
</div>
</div>
<div class="bg-gray-800 rounded-xl p-6 border-l-4 border-blue-500 shadow-lg transition-all hover:shadow-xl release-card">
<h1 class="md:items-conter">Old version</h1>
<div class="flex flex-col md:flex-row justify-between items-start md:items-center mb-6 gap-4">
<div>
<div class="flex items-center mb-2">
<span class="bg-blue-500/20 text-blue-400 text-xs font-semibold px-2.5 py-0.5 rounded-full mr-3">Latest</span>
<h2 class="text-2xl font-bold flex items-center">
<i class="fas fa-rocket text-blue-400 mr-3 animate-float"></i>
v1.0.0
</h2>
</div>
<div class="flex flex-wrap items-center text-sm text-gray-400 gap-4">
<span class="flex items-center">
<i class="fas fa-user-shield mr-2"></i>
<a href="https://github.com/AzliRynz/" class="hover:text-blue-400 transition-colors">AzliRynz</a>
</span>
<span class="flex items-center">
<i class="fas fa-calendar-alt mr-2"></i>
March 1, 2025
</span>
<span class="flex items-center">
<i class="fas fa-cube mr-2"></i>
PMMP 5.0.0+
</span>
</div>
</div>
<a href="/download.html"
class="bg-gradient-to-r from-blue-600 to-blue-500 hover:from-blue-500 hover:to-blue-400 text-white px-6 py-2.5 rounded-lg flex items-center transition-all duration-300 shadow-lg hover:shadow-blue-500/20 whitespace-nowrap">
<i class="fas fa-download mr-2"></i> Download .phar
</a>
</div>
<div class="mt-6">
<h3 class="text-lg font-semibold mb-4 flex items-center">
<i class="fas fa-star text-yellow-400 mr-2"></i>
Release Highlights
</h3>
<ul class="space-y-3 text-gray-300 pl-1">
<li class="flex items-start release-highlight transition-transform duration-200">
<i class="fas fa-plus-circle text-green-400 mt-1 mr-3"></i>
<span>Initial release with core features including:</span>
</li>
<li class="ml-9 mb-2 flex items-start">
<i class="fas fa-chevron-right text-blue-400 text-xs mt-1.5 mr-2"></i>
<span>Heal Command - Restore player health instantly</span>
</li>
<li class="ml-9 mb-2 flex items-start">
<i class="fas fa-chevron-right text-blue-400 text-xs mt-1.5 mr-2"></i>
<span>Mute Command - Silence disruptive players</span>
</li>
<li class="ml-9 mb-2 flex items-start">
<i class="fas fa-chevron-right text-blue-400 text-xs mt-1.5 mr-2"></i>
<span>Sudo Command - Execute commands as other players</span>
</li>
<li class="ml-9 mb-2 flex items-start">
<i class="fas fa-chevron-right text-blue-400 text-xs mt-1.5 mr-2"></i>
<span>Vanish Command - Become invisible to other players</span>
</li>
<li class="ml-9 flex items-start">
<i class="fas fa-chevron-right text-blue-400 text-xs mt-1.5 mr-2"></i>
<span>Plus many more essential commands for server management</span>
</li>
</ul>
</div>
</div>
<!-- Older Releases Placeholder -->
<div class="text-center py-8">
<div class="inline-flex items-center px-4 py-2 border border-gray-700 rounded-full bg-gray-800/50">
<i class="fas fa-history text-gray-500 mr-2"></i>
<span class="text-gray-400">More releases coming soon!</span>
</div>
</div>
</div>
<div class="mt-12 text-center">
<a href="https://github.com/PowerEssentials/PowerEssentials/releases"
target="_blank"
class="inline-flex items-center px-6 py-3 border border-gray-700 rounded-lg bg-gray-800 hover:bg-gray-700/50 transition-colors group">
<i class="fab fa-github mr-3 text-blue-400 group-hover:animate-bounce"></i>
<span>View All Releases on GitHub</span>
<i class="fas fa-arrow-right ml-3 text-sm opacity-0 group-hover:opacity-100 group-hover:ml-4 transition-all"></i>
</a>
</div>
</div>
</div>
</main>
<footer class="bg-gray-800/80 border-t border-gray-700">
<div class="container mx-auto px-4 sm:px-6 lg:px-8 py-8">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0">
<a href="/" class="text-xl font-bold gradient-text flex items-center">
<i class="fas fa-bolt mr-2"></i>
PowerEssentials
</a>
<p class="mt-2 text-gray-400 text-sm">Essential tools for Minecraft Bedrock servers</p>
</div>
<div class="flex flex-col items-center md:items-end">
<div class="flex space-x-6 mb-4">
<a href="https://github.com/PowerEssentials" target="_blank"
class="text-gray-400 hover:text-white transition-colors duration-200 text-xl">
<i class="fab fa-github"></i>
</a>
<a href="https://discord.gg/your-invite-link" target="_blank"
class="text-gray-400 hover:text-white transition-colors duration-200 text-xl">
<i class="fab fa-discord"></i>
</a>
</div>
<p class="text-gray-500 text-sm">© 2025 PowerEssentials. All rights reserved.</p>
</div>
</div>
</div>
</footer>
</body>
</html>