Skip to content

Commit

Permalink
add amazon link and update core
Browse files Browse the repository at this point in the history
  • Loading branch information
kkoreilly committed Sep 2, 2024
1 parent b4073e1 commit 2a58307
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion content/0-book/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Please use the following links to download the formatted version of the book:

* [ePub](https://github.com/CompCogNeuro/book/releases/latest/download/ccnbook_ed5.epub) --- You can download this file and email it to yourself at your [Amazon Kindle account](https://www.amazon.com/gp/sendtokindle/email) to get it on your Kindle. You can also open it in the macOS Books app.

<!-- * [Amazon](https://www.amazon.com/dp/B007H9YWAG) --- you can pay \$2.99 (lowest price possible) to have Amazon upload the book to your kindle, or roughly \$35 for them to send you an on-demand paperback print version (in color) -->
* [Amazon](https://www.amazon.com/dp/B0DFWMZYWJ) --- You can pay to get the book on your Kindle or as a paperback version in color. These options are priced as low as possible.

* [HTML](https://github.com/CompCogNeuro/book/releases/latest/download/ccnbook_ed5.html) --- This does not display all of the math correctly, so you should use one of the other formats above for Chapters 2 and 4.

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/CompCogNeuro/CompCogNeuro.github.io

go 1.22

require cogentcore.org/core v0.3.3-0.20240819012653-ef520c78b96f
require cogentcore.org/core v0.3.3-0.20240902172924-b432919e181b

require (
github.com/Bios-Marcel/wastebasket v0.0.4-0.20240213135800-f26f1ae0a7c4 // indirect
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cogentcore.org/core v0.3.3-0.20240819012653-ef520c78b96f h1:KpKEiK98QuCFBo1R5ipJ53SkOVyRpPPBlxKKJZj1tcU=
cogentcore.org/core v0.3.3-0.20240819012653-ef520c78b96f/go.mod h1:dg3uRsPcd8S1ZYvRD2TztCtjopRkrB5V/lbl54xsQd4=
cogentcore.org/core v0.3.3-0.20240902172924-b432919e181b h1:G7CC9jK/8FWCOYrc83VR5raE82xCkTlG3/h63txQ5Pw=
cogentcore.org/core v0.3.3-0.20240902172924-b432919e181b/go.mod h1:dg3uRsPcd8S1ZYvRD2TztCtjopRkrB5V/lbl54xsQd4=
github.com/Bios-Marcel/wastebasket v0.0.4-0.20240213135800-f26f1ae0a7c4 h1:6lx9xzJAhdjq0LvVfbITeC3IH9Fzvo1aBahyPu2FuG8=
github.com/Bios-Marcel/wastebasket v0.0.4-0.20240213135800-f26f1ae0a7c4/go.mod h1:FChzXi1izqzdPb6BiNZmcZLGyTYiT61iGx9Rxx9GNeI=
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
Expand Down
5 changes: 4 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ var content embed.FS

func main() {
b := core.NewBody("CompCogNeuro")
pages.NewPage(b).SetContent(content)
pg := pages.NewPage(b).SetContent(content)
b.AddTopBar(func(bar *core.Frame) {
core.NewToolbar(bar).Maker(pg.MakeToolbar)
})
b.RunMainWindow()
}

0 comments on commit 2a58307

Please sign in to comment.