Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add link to changelog page from Help menu #1758

Merged
merged 2 commits into from
Nov 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/fontra/client/lang/de.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ export const strings = {
"menubar.glyph.delete": "Source entfernen...",
"menubar.glyph.edit-axes": "Glyph-Achse bearbeiten...",
"menubar.help": "Hilfe",
"menubar.help.changelog": "Letzte Änderungen",
"menubar.help.documentation": "Dokumentation",
"menubar.help.homepage": "Homepage",
"menubar.view": "Ansicht",
Expand Down
1 change: 1 addition & 0 deletions src/fontra/client/lang/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ export const strings = {
"menubar.glyph.delete": "Delete source...",
"menubar.glyph.edit-axes": "Edit glyph axes...",
"menubar.help": "Help",
"menubar.help.changelog": "Latest changes",
"menubar.help.documentation": "Documentation",
"menubar.help.homepage": "Homepage",
"menubar.view": "View",
Expand Down
1 change: 1 addition & 0 deletions src/fontra/client/lang/fr.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ export const strings = {
"menubar.glyph.delete": "Supprimer la source…",
"menubar.glyph.edit-axes": "Éditer les axes du glyphe…",
"menubar.help": "Aide",
"menubar.help.changelog": "Latest changes",
"menubar.help.documentation": "Documentation",
"menubar.help.homepage": "Page d'accueil",
"menubar.view": "Affichage",
Expand Down
1 change: 1 addition & 0 deletions src/fontra/client/lang/nl.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ export const strings = {
"menubar.glyph.delete": "Verwijder source...",
"menubar.glyph.edit-axes": "Wijzig glyph assen...",
"menubar.help": "Help",
"menubar.help.changelog": "Latest changes",
"menubar.help.documentation": "Documentatie",
"menubar.help.homepage": "Thuispagina",
"menubar.view": "Weergave",
Expand Down
1 change: 1 addition & 0 deletions src/fontra/client/lang/zh-CN.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ export const strings = {
"menubar.glyph.delete": "删除图层……",
"menubar.glyph.edit-axes": "编辑字形参数轴……",
"menubar.help": "帮助",
"menubar.help.changelog": "Latest changes",
"menubar.help.documentation": "文档",
"menubar.help.homepage": "主页",
"menubar.view": "视图",
Expand Down
7 changes: 7 additions & 0 deletions src/fontra/views/editor/editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -854,6 +854,13 @@ export class EditorController {
window.open("https://docs.fontra.xyz");
},
},
{
title: translate("menubar.help.changelog"),
enabled: () => true,
callback: () => {
window.open("https://fontra.xyz/changelog.html");
},
},
{
title: "GitHub",
enabled: () => true,
Expand Down