Add the Help > About Graphite dialog with build info

Closes #404
This commit is contained in:
Keavon Chambers
2021-12-16 02:49:36 -08:00
parent 7681efa056
commit c2195c2819
12 changed files with 82 additions and 11 deletions
@@ -9,7 +9,7 @@
<LayoutCol :class="'main-column'">
<TextLabel :bold="true" :class="'heading'">{{ dialog.heading }}</TextLabel>
<TextLabel :class="'details'">{{ dialog.details }}</TextLabel>
<LayoutRow :class="'buttons-row'">
<LayoutRow :class="'buttons-row'" v-if="dialog.buttons.length > 0">
<TextButton v-for="(button, index) in dialog.buttons" :key="index" :title="button.tooltip" :action="button.callback" v-bind="button.props" />
</LayoutRow>
</LayoutCol>
@@ -57,12 +57,14 @@
.main-column {
.heading {
user-select: text;
white-space: pre-wrap;
max-width: 400px;
margin-bottom: 4px;
}
.details {
user-select: text;
white-space: pre-wrap;
max-width: 400px;
}