-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
changelogs.tsx
406 lines (396 loc) · 9.7 KB
/
changelogs.tsx
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
interface IChangelogText {
type: "text";
content: string;
}
interface IChangelogImage {
type: "image";
content: {
pc: string;
mobile?: string;
key: string;
};
}
type IChangelogEntity = {
thread_id?: string;
submitter_id?: string;
submit_type?: "bug" | `suggestion`;
} & (IChangelogText | IChangelogImage);
export type ChangelogType = {
[key: string]: IChangelogEntity[];
};
const changelogs: { [version: string]: ChangelogType } = {
"2.0.2": {
Leaderboards: [
{
type: "text",
content: "Panels now feature a blurred background when in dark theme.",
},
{
type: "image",
content: {
pc: "https://cdn.namespace.media/s/YobpHtoDxTs2xy4/download/msedge_SyIjOYJM6O.png",
mobile:
"https://cdn.namespace.media/s/CciydiNHS78T73g/download/msedge_NuhJRDFfOo.png",
key: "",
},
},
{
type: "text",
content: "Mobile podium panels are now equally sized.",
},
{
type: "image",
content: {
pc: "https://cdn.namespace.media/s/T7GyFGrps8e8D66/download/msedge_n851ZhgOdT.png",
key: "",
},
},
],
},
"2.0.3": {
"Status Page": [
{
type: "text",
content: "A new Status Page has been added.",
},
{
type: "image",
content: {
pc: "https://cdn.namespace.media/s/GxZLijTBD6BxSES/download/OmjcRa4cPE.png",
key: "",
},
},
{
type: "text",
content: "Charts now only display for medium to large viewports.",
},
{
type: "text",
content:
"Incidents are now collapsible and optimized for mobile usage.",
},
{
type: "image",
content: {
pc: "https://cdn.namespace.media/s/eg68a53AB7XT22r/download/msedge_JZwa3b1FZl.gif",
mobile:
"https://cdn.namespace.media/s/TtkSaoY3xcMEHzg/download/msedge_Po4DU0Dzoq.gif",
key: "",
},
},
],
"Page Detail Titles": [
{
type: "text",
content:
"Page detail titles without an arrow no longer function as a link.",
},
],
},
"2.0.4": {
"Status Page": [
{
type: "text",
content: "Improved appearance of header.",
},
],
},
"2.0.5": {
"Header Behavior": [
{
type: "text",
content: "Some header gradients now adapt to the displayed image.",
},
{
type: "image",
content: {
pc: "https://cdn.namespace.media/s/2aPAzFy2BQaH68y/download/msedge_a5llRKBIqi.png",
mobile:
"https://cdn.namespace.media/s/L4YKRrHe5W3xp2X/download/msedge_fsxxRhP3Hb.png",
key: "",
},
},
{
type: "image",
content: {
pc: "https://cdn.namespace.media/s/FQr4z2Dq7aWJYfL/download/msedge_BHGTnKaC1T.png",
mobile:
"https://cdn.namespace.media/s/JFqXKcREADSXeRx/download/msedge_NHIlfAFCS4.png",
key: "",
},
},
],
},
"2.0.6": {
"Page Loading": [
{
type: "text",
content: "Added loading animation for initial page load.",
},
{
type: "text",
content: "Added loading animation to guild dashboard.",
},
],
"Server List": [
{
type: "text",
content:
"Fixed a sizing bug where some guild icons would randomly appear too large.",
},
],
},
"2.0.7": {
"Server Dashboard": [
{
type: "text",
content: "Improved clustering of icons and corrected tab groups.",
},
{
type: "image",
content: {
pc: "https://cdn.namespace.media/s/oqkA6FajA5MYDzM/download/msedge_zrVDYI64fw.png",
mobile:
"https://cdn.namespace.media/s/bdpkprBg57gbPdB/download/msedge_U5HKP6q1di.png",
key: "",
},
},
{
type: "text",
content: 'Removed incorrect "back"-arrow from the settings page.',
},
{
type: "text",
content: "Modules requiring server premium are now correctly disabled.",
},
{
type: "text",
content:
"All News and Text channels can now be selected for the Dynamic Leaderboard.",
},
],
"User Dashboard": [
{
type: "text",
content: "Improved clustering of icons and corrected tab groups.",
},
{
type: "image",
content: {
pc: "https://cdn.namespace.media/s/CRneznMDoBeJTMK/download/msedge_yWK07Lkm26.png",
mobile:
"https://cdn.namespace.media/s/4sYkrpX9iWjcoYY/download/msedge_gaOxgpCsiu.png",
key: "",
},
},
],
},
"2.0.8": {
Legal: [
{
type: "text",
content: "Added Privacy Policy.",
},
{
type: "text",
content: "Added Safety Guidelines.",
},
],
"User Dashboard": [
{
type: "text",
content:
'Added "Report a Bug" button to enable users to report issues more easily.',
},
],
},
"2.0.9": {
Accessibility: [
{
type: "text",
content:
"Added information tooltips to improve accessibility. (Desktop only)",
},
{
type: "image",
content: {
pc: "http://cdn.namespace.media/s/mELEAAfdeKqm6Ew/download/msedge_X2TBMw7Lco.png",
key: "",
},
},
],
},
"2.0.14": {
Leaderboards: [
{
type: "text",
content: "Fixed issue where up arrows were displaying incorrectly.",
},
{
type: "text",
content: 'Restricted "edit" window to premium users only.',
},
],
Homepage: [
{
type: "text",
content:
'The "Features" arrow is now displayed in the theme-specific color.',
},
{
type: "text",
content:
"The premium subtitle is now displayed in the theme-specific color.",
},
],
},
"2.0.15": {
Blog: [
{
type: "text",
thread_id: "1097100301800059090",
submitter_id: "242621043561201666",
submit_type: "suggestion",
content:
"Increased the maximum allowed size for blog comments to 1024 characters.",
},
],
"Server Dashboard": [
{
type: "text",
thread_id: "1095867202248384532",
submitter_id: "235920335021670400",
submit_type: "suggestion",
content:
"Users can now edit server roles, channels, percentages, and levels directly from the list view.",
},
{
type: "image",
content: {
pc: "https://qwq.sh/b71diq",
key: "",
},
},
],
},
"2.0.16": {
Changelogs: [
{
type: "text",
content:
'Implemented a new "Changelogs" page that provides a comprehensive overview of all changes made to the platform over the past several years. This can be found in your profile section.',
},
{
type: "image",
content: {
pc: "https://qwq.sh/h1ouc8",
key: "",
},
},
{
type: "image",
content: {
pc: "https://qwq.sh/wnsb49",
key: "",
},
},
],
},
"2.0.17": {
"Server Dashboard": [
{
type: "text",
content: "You can now set levelroles to get assigned at level 0.",
},
],
},
"2.0.18": {
"Status Page": [
{
type: "text",
content: "Implemented IlumV2.",
},
],
Blog: [
{
type: "text",
content:
"Implemented new streamlined blog overview layout and improved sorting.",
},
],
"Server Dashboard": [
{
type: "text",
content:
"Updated the description of Values 'Loot XP', 'Roll XP' and 'Fish XP'",
submit_type: "suggestion",
submitter_id: "729671721975545978",
},
],
// "Server Dashboard": [
// {
// type: "text",
// content: "You can now boost and ignore forum channels.",
// submit_type: "suggestion",
// submitter_id: "242621043561201666",
// },
// ],
},
"2.0.19": {
Blogs: [
{
type: "text",
content:
"You can now reply to comments! Engage in seamless conversations by replying directly to comments on our blog.",
},
{
type: "image",
content: {
pc: "http://cdn.namespace.media/s/n5oZesybgrRPDJr/download/comment-replies.png",
key: "",
},
},
],
},
"2.0.20": {
Notifications: [
{
type: "text",
content:
"You now have access to an all new Inbox! This is where you will receive notifications about new comments, replies, and more.",
},
{
type: "text",
content:
"You can now recieve notifications as popup toasts right in your browser!",
},
{
type: "image",
content: {
pc: "http://cdn.namespace.media/s/Tpm3wmcrYkFigSj/download/inbox-desktop.png",
mobile:
"http://cdn.namespace.media/s/aLkPXsc6aqR6NJq/download/inbox-mobile.png",
key: "",
},
},
],
Blogs: [
{
type: "text",
content:
"You can now click links in blog comments, that have been shared by developers.",
submit_type: "suggestion",
submitter_id: "768469568779059250",
thread_id: "1150923374026051594",
},
{
type: "image",
content: {
pc: "http://cdn.namespace.media/s/oq5BQXd3wx3Atc2/download/hyperlink.png",
key: "",
},
},
],
},
};
export default changelogs;