├── .gitignore ├── LICENSE.md ├── Makefile ├── Readme.md ├── bin └── _empty ├── boost_1_77_0.tar.bz2.sha256 ├── libs └── _empty ├── makedeps.sh ├── screenshots ├── IMG_20210131_235644.jpg └── IMG_20210131_235711.jpg └── src ├── rebook-backend ├── Makefile └── standardebooks │ ├── Makefile │ ├── go.mod │ ├── go.sum │ ├── rebook-go-standardebooks.arm │ └── standardebooks.go └── rebook-ui ├── Makefile ├── assets.h ├── assets_dir └── rebook-logo.png ├── exec.cpy ├── exec.h ├── main.cpy ├── rebook-logo.png ├── rebook.draft ├── scenes.cpy ├── scenes.h ├── widgets.cpy └── widgets.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsniper/ReBook/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsniper/ReBook/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsniper/ReBook/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsniper/ReBook/HEAD/Readme.md -------------------------------------------------------------------------------- /bin/_empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boost_1_77_0.tar.bz2.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsniper/ReBook/HEAD/boost_1_77_0.tar.bz2.sha256 -------------------------------------------------------------------------------- /libs/_empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /makedeps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsniper/ReBook/HEAD/makedeps.sh -------------------------------------------------------------------------------- /screenshots/IMG_20210131_235644.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsniper/ReBook/HEAD/screenshots/IMG_20210131_235644.jpg -------------------------------------------------------------------------------- /screenshots/IMG_20210131_235711.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsniper/ReBook/HEAD/screenshots/IMG_20210131_235711.jpg -------------------------------------------------------------------------------- /src/rebook-backend/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsniper/ReBook/HEAD/src/rebook-backend/Makefile -------------------------------------------------------------------------------- /src/rebook-backend/standardebooks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsniper/ReBook/HEAD/src/rebook-backend/standardebooks/Makefile -------------------------------------------------------------------------------- /src/rebook-backend/standardebooks/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsniper/ReBook/HEAD/src/rebook-backend/standardebooks/go.mod -------------------------------------------------------------------------------- /src/rebook-backend/standardebooks/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsniper/ReBook/HEAD/src/rebook-backend/standardebooks/go.sum -------------------------------------------------------------------------------- /src/rebook-backend/standardebooks/rebook-go-standardebooks.arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsniper/ReBook/HEAD/src/rebook-backend/standardebooks/rebook-go-standardebooks.arm -------------------------------------------------------------------------------- /src/rebook-backend/standardebooks/standardebooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsniper/ReBook/HEAD/src/rebook-backend/standardebooks/standardebooks.go -------------------------------------------------------------------------------- /src/rebook-ui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsniper/ReBook/HEAD/src/rebook-ui/Makefile -------------------------------------------------------------------------------- /src/rebook-ui/assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsniper/ReBook/HEAD/src/rebook-ui/assets.h -------------------------------------------------------------------------------- /src/rebook-ui/assets_dir/rebook-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsniper/ReBook/HEAD/src/rebook-ui/assets_dir/rebook-logo.png -------------------------------------------------------------------------------- /src/rebook-ui/exec.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsniper/ReBook/HEAD/src/rebook-ui/exec.cpy -------------------------------------------------------------------------------- /src/rebook-ui/exec.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | std::string exec(const char* cmd) 4 | -------------------------------------------------------------------------------- /src/rebook-ui/main.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsniper/ReBook/HEAD/src/rebook-ui/main.cpy -------------------------------------------------------------------------------- /src/rebook-ui/rebook-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsniper/ReBook/HEAD/src/rebook-ui/rebook-logo.png -------------------------------------------------------------------------------- /src/rebook-ui/rebook.draft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsniper/ReBook/HEAD/src/rebook-ui/rebook.draft -------------------------------------------------------------------------------- /src/rebook-ui/scenes.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsniper/ReBook/HEAD/src/rebook-ui/scenes.cpy -------------------------------------------------------------------------------- /src/rebook-ui/scenes.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | ui::Scene prep_input_scene() 4 | -------------------------------------------------------------------------------- /src/rebook-ui/widgets.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsniper/ReBook/HEAD/src/rebook-ui/widgets.cpy -------------------------------------------------------------------------------- /src/rebook-ui/widgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsniper/ReBook/HEAD/src/rebook-ui/widgets.h --------------------------------------------------------------------------------