done?
@ -5,11 +5,7 @@ Arremi
|
|||||||
|
|
||||||
Arremi is a simple driver/router from Arduino USB serial to MIDI
|
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
|
## Build
|
||||||
```
|
just run `build.sh` and find app(mac) or tgz(linux) in `build` folder.
|
||||||
go get -v github.com/tonychee7000/Arremi
|
|
||||||
|
|
||||||
```
|
|
||||||
|
|
BIN
assets/darwin/Arremi.iconset/icon_1024x1024.png
Normal file
After Width: | Height: | Size: 80 KiB |
BIN
assets/darwin/Arremi.iconset/icon_128x128.png
Normal file
After Width: | Height: | Size: 28 KiB |
BIN
assets/darwin/Arremi.iconset/icon_128x128@2x.png
Normal file
After Width: | Height: | Size: 63 KiB |
BIN
assets/darwin/Arremi.iconset/icon_16x16.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
assets/darwin/Arremi.iconset/icon_16x16@2x.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
assets/darwin/Arremi.iconset/icon_256x256.png
Normal file
After Width: | Height: | Size: 46 KiB |
BIN
assets/darwin/Arremi.iconset/icon_256x256@2x.png
Normal file
After Width: | Height: | Size: 130 KiB |
BIN
assets/darwin/Arremi.iconset/icon_32x32.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
assets/darwin/Arremi.iconset/icon_32x32@2x.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
assets/darwin/Arremi.iconset/icon_512x512.png
Normal file
After Width: | Height: | Size: 80 KiB |
BIN
assets/darwin/Arremi.iconset/icon_512x512@2x.png
Normal file
After Width: | Height: | Size: 279 KiB |
BIN
assets/darwin/Arremi.iconset/icon_64x64.png
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
assets/darwin/Arremi.iconset/icon_64x64@2x.png
Normal file
After Width: | Height: | Size: 33 KiB |
@ -7,9 +7,9 @@
|
|||||||
<key>CFBundleGetInfoString</key>
|
<key>CFBundleGetInfoString</key>
|
||||||
<string>MIDI Driver for Arduino from USB serial.</string>
|
<string>MIDI Driver for Arduino from USB serial.</string>
|
||||||
<key>CFBundleIconFile</key>
|
<key>CFBundleIconFile</key>
|
||||||
<string>AppIcon</string>
|
<string>Arremi</string>
|
||||||
<key>CFBundleIconName</key>
|
<key>CFBundleIconName</key>
|
||||||
<string>AppIcon</string>
|
<string>Arremi</string>
|
||||||
<key>CFBundleIdentifier</key>
|
<key>CFBundleIdentifier</key>
|
||||||
<string>top.wetofu.arremi</string>
|
<string>top.wetofu.arremi</string>
|
||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
|
10411
assets/icon/arremi.svg
Normal file
After Width: | Height: | Size: 496 KiB |
2581
assets/icon/arremi_out.svg
Normal file
After Width: | Height: | Size: 172 KiB |
4
build.sh
@ -15,6 +15,8 @@ function build_darwin() {
|
|||||||
mkdir -p $INSTALL_TARGET/MacOS
|
mkdir -p $INSTALL_TARGET/MacOS
|
||||||
go build -o $INSTALL_TARGET/MacOS/Arremi main.go
|
go build -o $INSTALL_TARGET/MacOS/Arremi main.go
|
||||||
cp assets/darwin/Info.plist $INSTALL_TARGET
|
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() {
|
function build_linux() {
|
||||||
@ -26,7 +28,7 @@ function main() {
|
|||||||
get_os
|
get_os
|
||||||
case OS
|
case OS
|
||||||
darwin)
|
darwin)
|
||||||
|
build_darwin
|
||||||
;;
|
;;
|
||||||
linux)
|
linux)
|
||||||
;;
|
;;
|
||||||
|