Skip to content

Commit

Permalink
wip: Make KAbout component more configurable
Browse files Browse the repository at this point in the history
  • Loading branch information
tristan-greffe committed Mar 21, 2024
1 parent 78ed008 commit f15b6f6
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions config/default.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,36 @@ module.exports = {
storage: {
useProxy: true
},
about: {
actions: [
{
id: 'platform-info',
icon: 'las la-desktop',
label: 'KAbout.PLATFORM_INFO',
stack: true,
dialog: {
title: 'KAbout.PLATFORM_INFO',
component: 'app/KPlatform',
okAction: 'CLOSE',
widthPolicy: 'narrow'
}
},
{
id: 'report-bug',
icon: 'las la-bug',
label: 'KAbout.BUG_REPORT',
stack: true,
component: 'action/KBugReportAction'
},
{
id: 'view-changelog',
icon: 'las la-history',
label: 'KAbout.VIEW_CHANGELOG',
stack: true,
url: 'https://kalisio.github.io/kApp/about/changelog.html'
}
]
},
screens: {
// header: 'screen/KScreenHeader',
// footer: 'screen/KScreenFooter',
Expand Down

0 comments on commit f15b6f6

Please sign in to comment.