Skip to content

Commit 0bf4536

Browse files
committed
web: update changelog
1 parent 73f93e4 commit 0bf4536

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

web/src/ChangeLogModal.tsx

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export default function ChangeLogModal(props: ChangeLogModalProps) {
2727
containerClassName={contentStyles.container}
2828
>
2929
<div className={contentStyles.header}>
30-
<span id={TITLE_ID}>Changelog</span>
30+
<span id={TITLE_ID}>Changelog for {config.appVersion}</span>
3131
<IconButton
3232
iconProps={{ iconName: 'Cancel' }}
3333
styles={iconButtonStyles}
@@ -51,11 +51,26 @@ export default function ChangeLogModal(props: ChangeLogModalProps) {
5151
<li>Fixed fallback font issue that might cause issues on Linux</li>
5252
</ul>
5353
</p>
54+
<p>
55+
<b>Interface - Editor</b>
56+
<ul>
57+
<li>
58+
Added code snippets to make code input faster:
59+
<ul>
60+
<li><code>iferr</code> - Error handling snippet</li>
61+
<li><code>switch</code> - Quick switch declaration</li>
62+
<li><code>typestruct</code> - Quickly declare struct</li>
63+
<li><code>fmtprintf</code> - fmt.Printf shorthand</li>
64+
<li>and other (see release notes)</li>
65+
</ul>
66+
</li>
67+
</ul>
68+
</p>
5469
<p>
5570
And more!
5671
</p>
5772
<p>
58-
Full release notes for {config.appVersion} are available <Link href={`${config.githubUrl}/releases/latest`} target='_blank'>here</Link>
73+
Full release notes for are available <Link href={`${config.githubUrl}/releases/latest`} target='_blank'>here</Link>
5974
</p>
6075
</div>
6176
</Modal>

0 commit comments

Comments
 (0)