├── .gitignore ├── CHANGELOG.md ├── GochiHand.ttf ├── Icon.png ├── LICENSE ├── adaptivesplit.go ├── bundled.go ├── go.mod ├── go.sum ├── img └── screenshot.png ├── main.go ├── main_test.go ├── note.go ├── note_test.go ├── readme.md └── theme.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fynelabs/notes/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fynelabs/notes/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /GochiHand.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fynelabs/notes/HEAD/GochiHand.ttf -------------------------------------------------------------------------------- /Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fynelabs/notes/HEAD/Icon.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fynelabs/notes/HEAD/LICENSE -------------------------------------------------------------------------------- /adaptivesplit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fynelabs/notes/HEAD/adaptivesplit.go -------------------------------------------------------------------------------- /bundled.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fynelabs/notes/HEAD/bundled.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fynelabs/notes/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fynelabs/notes/HEAD/go.sum -------------------------------------------------------------------------------- /img/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fynelabs/notes/HEAD/img/screenshot.png -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fynelabs/notes/HEAD/main.go -------------------------------------------------------------------------------- /main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fynelabs/notes/HEAD/main_test.go -------------------------------------------------------------------------------- /note.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fynelabs/notes/HEAD/note.go -------------------------------------------------------------------------------- /note_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fynelabs/notes/HEAD/note_test.go -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fynelabs/notes/HEAD/readme.md -------------------------------------------------------------------------------- /theme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fynelabs/notes/HEAD/theme.go --------------------------------------------------------------------------------