Go to file
jess a4732aa4bc Update README.md 2026-03-04 13:06:09 +00:00
frontend/dist This might be the final version, it works perfectly as far as I can tell at this point. 2026-03-04 04:45:29 -08:00
static This might be the final version, it works perfectly as far as I can tell at this point. 2026-03-04 04:45:29 -08:00
.DS_Store Go git number 1. Muuuch more better. 2026-03-01 00:14:00 -08:00
.gitignore Go git number 1. Muuuch more better. 2026-03-01 00:14:00 -08:00
.gitmodules Go git number 1. Muuuch more better. 2026-03-01 00:14:00 -08:00
README.md Update README.md 2026-03-04 13:06:09 +00:00
app.go This might be the final version, it works perfectly as far as I can tell at this point. 2026-03-04 04:45:29 -08:00
build.sh Go git number 1. Muuuch more better. 2026-03-01 00:14:00 -08:00
chords.go Go git number 1. Muuuch more better. 2026-03-01 00:14:00 -08:00
config.go This might be the final version, it works perfectly as far as I can tell at this point. 2026-03-04 04:45:29 -08:00
config.json Go git number 1. Muuuch more better. 2026-03-01 00:14:00 -08:00
debug.go This might be the final version, it works perfectly as far as I can tell at this point. 2026-03-04 04:45:29 -08:00
debug.sh This might be the final version, it works perfectly as far as I can tell at this point. 2026-03-04 04:45:29 -08:00
density.go This might be the final version, it works perfectly as far as I can tell at this point. 2026-03-04 04:45:29 -08:00
fingerings.go This might be the final version, it works perfectly as far as I can tell at this point. 2026-03-04 04:45:29 -08:00
go.mod Go git number 1. Muuuch more better. 2026-03-01 00:14:00 -08:00
go.sum Go git number 1. Muuuch more better. 2026-03-01 00:14:00 -08:00
intervals.go Go git number 1. Muuuch more better. 2026-03-01 00:14:00 -08:00
main.go Go git number 1. Muuuch more better. 2026-03-01 00:14:00 -08:00
notes.go Go git number 1. Muuuch more better. 2026-03-01 00:14:00 -08:00
release.go This might be the final version, it works perfectly as far as I can tell at this point. 2026-03-04 04:45:29 -08:00
scoresets.go This might be the final version, it works perfectly as far as I can tell at this point. 2026-03-04 04:45:29 -08:00
shapes.go This might be the final version, it works perfectly as far as I can tell at this point. 2026-03-04 04:45:29 -08:00
shift_test.go This might be the final version, it works perfectly as far as I can tell at this point. 2026-03-04 04:45:29 -08:00
wails.json Go git number 1. Muuuch more better. 2026-03-01 00:14:00 -08:00

README.md

web-tuner

A neat little tool for custom tuning string instruments.

Pre-requisites

  • wails
    • needs c and c++, aka GCC or clang/xcode-commandline-tools
  • go
  • inkscape (or build manually instead if you don't care about the icon)

Setup

Mac ./build.sh

On Windows or anywhere build.sh does not work

wails build -clean

If you are having trouble still, I'd review build.sh and figure out what you might be missing from your path.

/** I'm talking about these ones, if you don't have valid env vars for these, that is why it isn't compiling.  */
export CC=/usr/bin/clang
export CXX=/usr/bin/clang++
export SDKROOT=$(xcrun --show-sdk-path)
export PATH="$HOME/go/bin:$PATH"