From 625f95f864155264b7a5f9d089435f7da9de3ffe Mon Sep 17 00:00:00 2001 From: Rob B Date: Tue, 30 Sep 2025 12:28:31 -0400 Subject: [PATCH 1/2] Fix broken golangci-lint docs link --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5e54cc2..3abcbaa 100644 --- a/README.md +++ b/README.md @@ -84,8 +84,8 @@ wails build ### Linting -Install `golangci-lint` via the directions [here](https://golangci-lint.run/usage/install/#local-installation), -but make sure to install the version specified in `.github/workflows/push.yaml` instead of whatever it suggests. +Install `golangci-lint` via the directions [in the Golangci-lint documentation](https://golangci-lint.run/docs/welcome/install/#local-installation), +but make sure to install the version specified in [`.github/workflows/push.yaml`](./.github/workflows/push.yml) instead of whatever it suggests. Then, to run it, use: @@ -107,7 +107,7 @@ SMM handles localization through the Tolgee Svelte integration. This allows for [in-context translation](https://tolgee.io/js-sdk/) - simply alt-click on a translatable element to open the Tolgee interface. In order to edit translations in-context, you will need to provide a tolgee API key with edit permissions. -You can create an API key for yourself [here](https://translate.ficsit.app/projects/4/integrate) once you're added to the project. +You can create an API key for yourself [in our Tolgee instance](https://translate.ficsit.app/projects/4/integrate) once you're added to the project. To supply this API key at development time, create or edit `/frontend/.env.local` and supply the key in a similar format as `.env`. The in-context translation screenshot feature requires installing the _Tolgee Tools_ browser extension. From 06082910cac9e0a4cb8e35c1b4a96e3c4b8c7fce Mon Sep 17 00:00:00 2001 From: Rob B Date: Wed, 15 Oct 2025 12:19:23 -0400 Subject: [PATCH 2/2] Directions for building a version with devtools included --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 3abcbaa..4442170 100644 --- a/README.md +++ b/README.md @@ -82,6 +82,12 @@ while maintaining correct ESLint functionality. wails build ``` +To build a version that includes browser devtools (extending production debugging capabilities),: + +```bash +wails build -devtools +``` + ### Linting Install `golangci-lint` via the directions [in the Golangci-lint documentation](https://golangci-lint.run/docs/welcome/install/#local-installation),