1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2024-11-22 10:25:48 +01:00

Added changelog

This commit is contained in:
Romein van Buren 2023-06-02 18:43:52 +02:00
parent 79d42fd44e
commit c05ac2074b
Signed by: romein
GPG Key ID: 0EFF8478ADDF6C49
4 changed files with 22 additions and 0 deletions

7
CHANGELOG.md Normal file
View File

@ -0,0 +1,7 @@
## Unreleased
* `79d42fd` Added some external links related to Rolens to the application menu.
## [v0.1.0](https://github.com/garraflavatra/rolens/releases/tag/v0.1.0)
Initial release.

6
docs/development.md Normal file
View File

@ -0,0 +1,6 @@
---
title: Development
order: 50
---
{{ collections.all | eleventyNavigation: "Development" | eleventyNavigationToMarkdown }}

View File

@ -0,0 +1,7 @@
---
title: Changelog
parent: Development
order: 90
---
{% filecontent "../CHANGELOG.md" %}

View File

@ -54,11 +54,13 @@ func (a *App) Menu() *menu.Menu {
helpMenu := appMenu.AddSubmenu("Help")
helpMenu.AddText("User guide", nil, menuCallbackURL(a, "https://garraflavatra.github.io/rolens/user-guide/"))
helpMenu.AddText("Website", nil, menuCallbackURL(a, "https://garraflavatra.github.io/rolens/"))
helpMenu.AddText("Discussion board", nil, menuCallbackURL(a, "https://github.com/garraflavatra/rolens/discussions"))
helpMenu.AddSeparator()
helpMenu.AddText("Report a problem", nil, menuCallbackURL(a, "https://github.com/garraflavatra/rolens/issues/new"))
helpMenu.AddText("Ask a question", nil, menuCallbackURL(a, "https://github.com/garraflavatra/rolens/discussions/new?category=questions"))
helpMenu.AddSeparator()
helpMenu.AddText("Star Rolens on GitHub", nil, menuCallbackURL(a, "https://github.com/garraflavatra/rolens"))
helpMenu.AddText("Changelog", nil, menuCallbackURL(a, "https://garraflavatra.github.io/rolens/development/changelog/"))
helpMenu.AddText("License", nil, menuCallbackURL(a, "https://github.com/garraflavatra/rolens/blob/main/LICENSE"))
return appMenu