From 9de80c4f925a5ad9606654f53aee35443b112f3c Mon Sep 17 00:00:00 2001 From: Diego Pahua Silvan <88301232+DiegPS@users.noreply.github.com> Date: Mon, 22 Apr 2024 20:10:59 +0000 Subject: [PATCH 1/3] docs: add guides ide change goland option and reference cli add options vscode or goland --- website/docs/guides/ides.mdx | 2 +- website/docs/reference/cli.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/guides/ides.mdx b/website/docs/guides/ides.mdx index f22aefe9ea6..5fe5a7bb966 100644 --- a/website/docs/guides/ides.mdx +++ b/website/docs/guides/ides.mdx @@ -3,7 +3,7 @@ Wails aims to provide a great development experience. To that aim, we now support generating IDE specific configuration to provide smoother project setup. -Currently, we support [Visual Studio Code](https://code.visualstudio.com/) but aim to support other IDEs such as Goland. +Currently, we support [Visual Studio Code](https://code.visualstudio.com/) and [Goland](https://www.jetbrains.com/go/). ## Visual Studio Code diff --git a/website/docs/reference/cli.mdx b/website/docs/reference/cli.mdx index dc8b3293f81..9bb41d10c67 100644 --- a/website/docs/reference/cli.mdx +++ b/website/docs/reference/cli.mdx @@ -20,7 +20,7 @@ The Wails CLI has a number of commands that are used for managing your projects. | -l | List available project templates | | | -q | Suppress output to console | | | -t "template name" | The project template to use. This can be the name of a default template or a URL to a remote template hosted on github. | vanilla | -| -ide | Generate IDE project files | | +| -ide | Generate IDE project files `vscode` or `goland` | | | -f | Force build application | false | Example: From 2dba39dd0cdb1b61771fd979eb9ccbbd8ff77c41 Mon Sep 17 00:00:00 2001 From: Diego Pahua Silvan <88301232+DiegPS@users.noreply.github.com> Date: Mon, 22 Apr 2024 21:48:49 +0000 Subject: [PATCH 2/3] docs: update changelog for ide options --- website/src/pages/changelog.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/website/src/pages/changelog.mdx b/website/src/pages/changelog.mdx index 6a787891329..47e918f10d8 100644 --- a/website/src/pages/changelog.mdx +++ b/website/src/pages/changelog.mdx @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +- Added docs help to indicate that in IDE options you can choose between vscode and golang. Added by @DiegPS in [PR](https://github.com/wailsapp/wails/pull/3419) - Added docs to help fix NixOs/Wayland font-size css issue. Added by @atterpac in [PR](https://github.com/wailsapp/wails/pull/3268) - Added -m (skip `go mod tidy`) flag to dev command by @te5se in [PR](https://github.com/wailsapp/wails/pull/3275) - Added mac option `DisableZoom` to remove zoom button. Added by @wizzymore in [PR](https://github.com/wailsapp/wails/pull/3289) From 1f86cdbb4c07bfe40b4046670dec2c20fbafcf0e Mon Sep 17 00:00:00 2001 From: Diego Pahua Silvan <88301232+DiegPS@users.noreply.github.com> Date: Mon, 22 Apr 2024 22:05:16 +0000 Subject: [PATCH 3/3] docs: fix typo golang to goland --- website/src/pages/changelog.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/pages/changelog.mdx b/website/src/pages/changelog.mdx index 47e918f10d8..57604ef834c 100644 --- a/website/src/pages/changelog.mdx +++ b/website/src/pages/changelog.mdx @@ -18,7 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added -- Added docs help to indicate that in IDE options you can choose between vscode and golang. Added by @DiegPS in [PR](https://github.com/wailsapp/wails/pull/3419) +- Added docs help to indicate that in IDE options you can choose between vscode and goland. Added by @DiegPS in [PR](https://github.com/wailsapp/wails/pull/3419) - Added docs to help fix NixOs/Wayland font-size css issue. Added by @atterpac in [PR](https://github.com/wailsapp/wails/pull/3268) - Added -m (skip `go mod tidy`) flag to dev command by @te5se in [PR](https://github.com/wailsapp/wails/pull/3275) - Added mac option `DisableZoom` to remove zoom button. Added by @wizzymore in [PR](https://github.com/wailsapp/wails/pull/3289)