diff options
Diffstat (limited to 'internal/config/config.go')
| -rw-r--r-- | internal/config/config.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/internal/config/config.go b/internal/config/config.go index 74588aa..5102d38 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -24,7 +24,7 @@ var seedTOML []byte // Version is lectio's release version, shared by every binary's // -v/--version output (lectio, lectio-ui, lectio-web). -const Version = "0.2.0" +const Version = "0.3.0" // validVersions are the five scripture versions lectio understands. var validVersions = map[string]bool{ @@ -108,6 +108,7 @@ type Config struct { WebDisplay string `toml:"web_display"` WebMono bool `toml:"web_mono"` WebVersions []string `toml:"web_versions"` + Pager string `toml:"pager"` Parts map[string]map[string]bool `toml:"parts"` } @@ -139,6 +140,7 @@ func Default() Config { WebDisplay: "horizontal", WebMono: false, WebVersions: nil, + Pager: "", Parts: nil, } } |
