This commit is contained in:
TonyChyi 2018-03-20 11:41:03 +08:00
parent 1e8c99cda5
commit cddb434a3c
18 changed files with 12999 additions and 9 deletions

View File

@ -5,11 +5,7 @@ Arremi
Arremi is a simple driver/router from Arduino USB serial to MIDI
**Linux support not completed yet!**
**Linux support not completed yet! debug needed.**
## Build
```
go get -v github.com/tonychee7000/Arremi
```
just run `build.sh` and find app(mac) or tgz(linux) in `build` folder.

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 130 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 279 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

View File

@ -7,9 +7,9 @@
<key>CFBundleGetInfoString</key>
<string>MIDI Driver for Arduino from USB serial.</string>
<key>CFBundleIconFile</key>
<string>AppIcon</string>
<string>Arremi</string>
<key>CFBundleIconName</key>
<string>AppIcon</string>
<string>Arremi</string>
<key>CFBundleIdentifier</key>
<string>top.wetofu.arremi</string>
<key>CFBundlePackageType</key>

10411
assets/icon/arremi.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 496 KiB

2581
assets/icon/arremi_out.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 172 KiB

View File

@ -15,6 +15,8 @@ function build_darwin() {
mkdir -p $INSTALL_TARGET/MacOS
go build -o $INSTALL_TARGET/MacOS/Arremi main.go
cp assets/darwin/Info.plist $INSTALL_TARGET
mkdir -p $INSTALL_TARGET/Resources
(cd assets/darwin/ && iconutil --convert icns Arremi.iconset --file ../../$INSTALL_TARGET/Resources/Arremi.icns)
}
function build_linux() {
@ -26,7 +28,7 @@ function main() {
get_os
case OS
darwin)
build_darwin
;;
linux)
;;