Skip to content

Commit 80bd450

Browse files
committed
displaying support data :(
1 parent e6f9e15 commit 80bd450

2 files changed

Lines changed: 47 additions & 20 deletions

File tree

docs/website/src/pages/versions-data/1.58.tsx

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,21 @@ export const Sidebar= [
417417
'NotificationHandler Class':HANDLER_METHODS,
418418
'NotificationStyles Class':STYLE_ATTRIBUTES
419419
}
420-
}
420+
},
421+
{
422+
title: 'Extras',
423+
route: '/extras',
424+
sections: {
425+
'How to update': 'how-to-update',
426+
'Debugging Tips': 'debugging-tips',
427+
'Contributing-Issues': 'contributing-issues',
428+
'Support Project': 'support-project',
429+
'Credits': 'credits',
430+
431+
}
432+
},
433+
434+
421435
]
422436

423437
export { component_page, advanced_methods_page, reference_page }

docs/website/src/pages/versions-data/1.59.tsx

Lines changed: 32 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ const NOTIFICATION_METHODS = [
324324
{ name: 'cooldown', desc: "Defaults to 0.5secs,buffer time for when changes happen too fast, shouldn't be changed unless tested on specific device" }
325325
]
326326
},
327-
327+
328328
{
329329
id: 'createChannel(cls, ):',
330330
signature: 'createChannel(id, name:str, description?,importance:Importance?)',
@@ -336,7 +336,7 @@ const NOTIFICATION_METHODS = [
336336
{ name: 'importance', desc: "['urgent', 'high', 'medium', 'low', 'none'] defaults to 'urgent' i.e. makes a sound and shows briefly" },
337337
]
338338
},
339-
339+
340340
{
341341
id: 'deleteChannel',
342342
signature: 'deleteChannel(channel_id)',
@@ -468,46 +468,59 @@ const reference_page = {
468468
}
469469

470470

471-
export const Sidebar= [
471+
export const Sidebar = [
472472
{
473473
title: 'Getting Started',
474474
route: '/getting-started',
475475
sections: {
476-
'Introduction':'introduction',
477-
'Features':'features',
478-
'Installation':'installation',
479-
'Basic Usage':'basic-usage'
476+
'Introduction': 'introduction',
477+
'Features': 'features',
478+
'Installation': 'installation',
479+
'Basic Usage': 'basic-usage'
480480
}
481481
},
482482
{
483483
title: 'Components',
484484
route: '/components',
485485
sections: {
486-
'Images':'images',
487-
'Buttons':'buttons',
488-
'Progress Bars':'progress-bars',
489-
'Texts':'texts'
486+
'Images': 'images',
487+
'Buttons': 'buttons',
488+
'Progress Bars': 'progress-bars',
489+
'Texts': 'texts'
490490
}
491491
},
492492
{
493493
title: 'Advanced Methods',
494494
route: '/advanced-methods',
495495
sections: {
496-
'Updating Notification':'updating-notification',
497-
'Adding Image':'adding-image',
498-
'Channel Management':'channel-management',
499-
'Getting Identifer':'getting-identifer'
496+
'Updating Notification': 'updating-notification',
497+
'Adding Image': 'adding-image',
498+
'Channel Management': 'channel-management',
499+
'Getting Identifer': 'getting-identifer'
500500
}
501501
},
502502
{
503503
title: 'Reference',
504504
route: '/reference',
505505
sections: {
506-
'Notification Class':'notification-class',
507-
'NotificationHandler Class':'notificationhandler-class',
508-
'NotificationStyles Class':'notificationstyles-class'
506+
'Notification Class': 'notification-class',
507+
'NotificationHandler Class': 'notificationhandler-class',
508+
'NotificationStyles Class': 'notificationstyles-class'
509509
}
510-
}
510+
},
511+
{
512+
title: 'Extras',
513+
route: '/extras',
514+
sections: {
515+
'How to update': 'how-to-update',
516+
'Debugging Tips': 'debugging-tips',
517+
'Contributing-Issues': 'contributing-issues',
518+
'Support Project': 'support-project',
519+
'Credits': 'credits',
520+
521+
}
522+
},
523+
511524
]
512525

513526
export { component_page, advanced_methods_page, reference_page }

0 commit comments

Comments
 (0)