diff --git a/Makefile b/Makefile
index 443d294..205a917 100644
--- a/Makefile
+++ b/Makefile
@@ -8,9 +8,11 @@ clean:
dune clean
tgz:
- cp _build/default/cli/cli.exe logarion
- strip logarion
- tar czvf "logarion-$(shell date -r _build/default/src/logarion_cli.exe "+%y-%m-%d")-$(shell uname -s)-$(shell uname -m)-$(shell git rev-parse --short HEAD).tar.gz" share logarion
- rm logarion
+ dune subst
+ dune build
+ cp _build/default/cli/cli.exe txt
+ strip txt
+ tar czvf "logarion-$(shell date -r _build/default/cli/cli.exe "+%y-%m-%d")-$(shell uname -s)-$(shell uname -m)-$(shell git rev-parse --short HEAD).tar.gz" txt ReadMe
+ rm txt
.PHONY: cli
diff --git a/README b/ReadMe
similarity index 89%
rename from README
rename to ReadMe
index 3f167be..f6f19c0 100644
--- a/README
+++ b/ReadMe
@@ -3,11 +3,13 @@ Logarion is a free and open-source text archive system. A blog-wiki hybrid.
Download:
EUPL licence:
+
Start
Create a folder and run `logarion init` from within it to produce `.logarion/config` configuration file.
Run `logarion --help` for more options.
+
Community & support
* Website:
@@ -15,11 +17,6 @@ Community & support
* Discussion:
or join via
-Opam packages
-
- opam repo add orbifx https://opam.orbitalfox.eu
- opam install logarion
-
Install development version
diff --git a/cli/convert.ml b/cli/convert.ml
index d8d7ab2..61d7dec 100644
--- a/cli/convert.ml
+++ b/cli/convert.ml
@@ -1,5 +1,3 @@
-let version = "%%VERSION%%"
-
open Logarion
module A = Archive.Make (Logarion.File_store)
diff --git a/http/http.ml b/http/http.ml
index 83ca424..5da1b70 100644
--- a/http/http.ml
+++ b/http/http.ml
@@ -1,5 +1,3 @@
-let version = "%%VERSION%%"
-
let http_body fn uri =
let open Lwt in
let open Cohttp_lwt_unix in