Skip to content

Commit 060577c

Browse files
authored
Merge pull request #288 from readium/master
Version 1.6.0 (#272) [master] to [cd]
2 parents 2690dc5 + bff371c commit 060577c

File tree

16 files changed

+827
-918
lines changed

16 files changed

+827
-918
lines changed

README.md

Lines changed: 131 additions & 117 deletions
Large diffs are not rendered by default.

config/config.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ type Certificate struct {
9292

9393
type FileSystem struct {
9494
Directory string `yaml:"directory"`
95+
URL string `yaml:"url,omitempty"`
9596
}
9697

9798
type Storage struct {

dbmodel/sqlite_db_setup_lcpserver.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ CREATE TABLE content (
22
id varchar(255) PRIMARY KEY NOT NULL,
33
encryption_key varchar(64) NOT NULL,
44
location text NOT NULL,
5-
  length bigint,
6-
  sha256 varchar(64),
5+
length bigint,
6+
sha256 varchar(64),
77
"type" varchar(255) NOT NULL DEFAULT 'application/epub+zip'
88
);
99

0 commit comments

Comments
 (0)