regenesis icon indicating copy to clipboard operation
regenesis copied to clipboard

Installation instructions

Open aeholt97 opened this issue 3 years ago • 3 comments

Hi, This looks like a very cool project, and a great idea for the reMarkable to reach it's full potential. Is this tool currently working? If so, is there a way for me to install it? I already have some experience with Toltec and have been using DDVKs hacks for a long time. I would very much appreciate any instructions or advice.

aeholt97 avatar Feb 20 '22 22:02 aeholt97

I was considering making a toltec package for this, but after running docker run --rm -it -v `pwd`:/work ghcr.io/toltec-dev/golang:v3.2 bash and go build . and seeing a bunch of issues, I'm not sure this is doable right now.

palfrey avatar Sep 06 '25 22:09 palfrey

Completely understandable, thank you for looking into it and for sharing this cool project

aeholt97 avatar Sep 08 '25 18:09 aeholt97

It looks like to get it to build you can use the following patch:

diff --git a/go.mod b/go.mod
index b44a443..912bcb7 100644
--- a/go.mod
+++ b/go.mod
@@ -2,4 +2,4 @@ module github.com/irth/regenesis

 go 1.15

-require github.com/irth/golibgen v0.0.0-20210306231011-362700803838
+require github.com/irth/golibgen v0.0.0-20211217183550-69d6d26d9b37
diff --git a/go.sum b/go.sum
index 01b967f..f25cc62 100644
--- a/go.sum
+++ b/go.sum
@@ -1,5 +1,7 @@
 github.com/irth/golibgen v0.0.0-20210306231011-362700803838 h1:J/bTBxcXsiKR/g3gYe4rAL7OgTYwvVkVce+7iR1hPGc=
 github.com/irth/golibgen v0.0.0-20210306231011-362700803838/go.mod h1:L0TOrTcejBEM/Bn/8/MXe+rYRPba6dNRTaEXetj9A5g=
+github.com/irth/golibgen v0.0.0-20211217183550-69d6d26d9b37 h1:yQMhG6UAfIPv/GVAQuAygv3kHH4jKnX/4+2o/XPclZU=
+github.com/irth/golibgen v0.0.0-20211217183550-69d6d26d9b37/go.mod h1:L0TOrTcejBEM/Bn/8/MXe+rYRPba6dNRTaEXetj9A5g=
 golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 h1:qWPm9rbaAMKs8Bq/9LRpbMqxWRVUAQwMI9fVrssnTfw=
 golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
 golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
diff --git a/regenesis.go b/regenesis.go
index 74db155..f097c9b 100644
--- a/regenesis.go
+++ b/regenesis.go
@@ -8,6 +8,7 @@ import (
 type Regenesis struct {
        app *simple.App
        simple.SceneStack
+        BookLocation string
 }

 func NewRegenesis() *Regenesis {

As for if it works, or if it has much functionality, no idea.

Eeems avatar Nov 03 '25 00:11 Eeems