├── .gitignore ├── LICENSE ├── README.md ├── borg.AppDir ├── .DirIcon ├── AppRun ├── borg.desktop ├── borg512x512.png └── usr │ └── share │ └── metainfo │ └── com.voxdsp.borg.appdata.xml ├── compile.sh ├── deb ├── DEBIAN │ └── control └── usr │ └── share │ ├── applications │ └── borg.desktop │ ├── icons │ └── hicolor │ │ └── 512x512 │ │ └── borg512x512.png │ └── metainfo │ └── borg.appdata.xml ├── flat ├── README.md ├── borg.appdata.xml ├── borg.desktop ├── borg.png └── com.voxdsp.Borg.yaml ├── getdeps.sh ├── main.c ├── makefile ├── res.h ├── sdl_extra.h ├── snap ├── gui │ ├── borger3.desktop │ └── borger3.png ├── makefile └── snapcraft.yaml └── synth.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Borg-ER-3/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Borg-ER-3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Borg-ER-3/HEAD/README.md -------------------------------------------------------------------------------- /borg.AppDir/.DirIcon: -------------------------------------------------------------------------------- 1 | borg512x512.png -------------------------------------------------------------------------------- /borg.AppDir/AppRun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Borg-ER-3/HEAD/borg.AppDir/AppRun -------------------------------------------------------------------------------- /borg.AppDir/borg.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Borg-ER-3/HEAD/borg.AppDir/borg.desktop -------------------------------------------------------------------------------- /borg.AppDir/borg512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Borg-ER-3/HEAD/borg.AppDir/borg512x512.png -------------------------------------------------------------------------------- /borg.AppDir/usr/share/metainfo/com.voxdsp.borg.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Borg-ER-3/HEAD/borg.AppDir/usr/share/metainfo/com.voxdsp.borg.appdata.xml -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Borg-ER-3/HEAD/compile.sh -------------------------------------------------------------------------------- /deb/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Borg-ER-3/HEAD/deb/DEBIAN/control -------------------------------------------------------------------------------- /deb/usr/share/applications/borg.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Borg-ER-3/HEAD/deb/usr/share/applications/borg.desktop -------------------------------------------------------------------------------- /deb/usr/share/icons/hicolor/512x512/borg512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Borg-ER-3/HEAD/deb/usr/share/icons/hicolor/512x512/borg512x512.png -------------------------------------------------------------------------------- /deb/usr/share/metainfo/borg.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Borg-ER-3/HEAD/deb/usr/share/metainfo/borg.appdata.xml -------------------------------------------------------------------------------- /flat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Borg-ER-3/HEAD/flat/README.md -------------------------------------------------------------------------------- /flat/borg.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Borg-ER-3/HEAD/flat/borg.appdata.xml -------------------------------------------------------------------------------- /flat/borg.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Borg-ER-3/HEAD/flat/borg.desktop -------------------------------------------------------------------------------- /flat/borg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Borg-ER-3/HEAD/flat/borg.png -------------------------------------------------------------------------------- /flat/com.voxdsp.Borg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Borg-ER-3/HEAD/flat/com.voxdsp.Borg.yaml -------------------------------------------------------------------------------- /getdeps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Borg-ER-3/HEAD/getdeps.sh -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Borg-ER-3/HEAD/main.c -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Borg-ER-3/HEAD/makefile -------------------------------------------------------------------------------- /res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Borg-ER-3/HEAD/res.h -------------------------------------------------------------------------------- /sdl_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Borg-ER-3/HEAD/sdl_extra.h -------------------------------------------------------------------------------- /snap/gui/borger3.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Borg-ER-3/HEAD/snap/gui/borger3.desktop -------------------------------------------------------------------------------- /snap/gui/borger3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Borg-ER-3/HEAD/snap/gui/borger3.png -------------------------------------------------------------------------------- /snap/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Borg-ER-3/HEAD/snap/makefile -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Borg-ER-3/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrbid/Borg-ER-3/HEAD/synth.h --------------------------------------------------------------------------------