Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
19af0b8d3e | |||
30c9e09039 | |||
4273017c62 | |||
10f0584e90 | |||
cafb81b9e2 |
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -938,7 +938,7 @@ checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "little-hesinde"
|
name = "little-hesinde"
|
||||||
version = "0.3.0"
|
version = "0.3.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"calibre-db",
|
"calibre-db",
|
||||||
"clap",
|
"clap",
|
||||||
|
@ -66,7 +66,7 @@ Not planned, put a reverse proxy in front of it that handles access.
|
|||||||
|
|
||||||
## How do I search?
|
## How do I search?
|
||||||
|
|
||||||
Putting in your search text and you are done. Searching is done on title, tags,
|
Enter your search text and you are done. Searching is done on title, tags,
|
||||||
author, series title, identifiers and comments.
|
author, series title, identifiers and comments.
|
||||||
|
|
||||||
For more sophisticated queries take a look at the
|
For more sophisticated queries take a look at the
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "little-hesinde"
|
name = "little-hesinde"
|
||||||
version = "0.3.0"
|
version = "0.3.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = { workspace = true }
|
license = { workspace = true }
|
||||||
authors = { workspace = true }
|
authors = { workspace = true }
|
||||||
|
@ -51,6 +51,7 @@ fn hash_to_path(hash: GenericArray<u8, U32>, cache_path: &Path) -> Result<PathBu
|
|||||||
.join(remaining_segment))
|
.join(remaining_segment))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Create a thumbnail for `cover_path` at `thumbnail_path`.
|
||||||
fn create_thumbnail(cover_path: &Path, thumbnail_path: &Path) -> Result<(), CacheError> {
|
fn create_thumbnail(cover_path: &Path, thumbnail_path: &Path) -> Result<(), CacheError> {
|
||||||
debug!("creating thumbnail for {}", cover_path.to_string_lossy());
|
debug!("creating thumbnail for {}", cover_path.to_string_lossy());
|
||||||
let folders = thumbnail_path
|
let folders = thumbnail_path
|
||||||
|
@ -77,7 +77,7 @@ pub mod opds {
|
|||||||
pub mod templates;
|
pub mod templates;
|
||||||
|
|
||||||
pub const APP_NAME: &str = "little-hesinde";
|
pub const APP_NAME: &str = "little-hesinde";
|
||||||
pub const VERSION: &str = "0.3.0";
|
pub const VERSION: &str = "0.3.1";
|
||||||
|
|
||||||
/// Internal marker data in lieu of a proper `Accept` header.
|
/// Internal marker data in lieu of a proper `Accept` header.
|
||||||
#[derive(Debug, Clone, Copy)]
|
#[derive(Debug, Clone, Copy)]
|
||||||
|
BIN
little-hesinde/static/favicon.ico
Normal file
BIN
little-hesinde/static/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 318 B |
@ -4,6 +4,7 @@
|
|||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta name="color-scheme" content="light dark" />
|
<meta name="color-scheme" content="light dark" />
|
||||||
|
<link rel="icon" href="/static/favicon.ico" />
|
||||||
<link rel="stylesheet" href="/static/pico.min.css" />
|
<link rel="stylesheet" href="/static/pico.min.css" />
|
||||||
<link rel="stylesheet" href="/static/style.css" />
|
<link rel="stylesheet" href="/static/style.css" />
|
||||||
<title>Little Hesinde</title>
|
<title>Little Hesinde</title>
|
||||||
|
Loading…
Reference in New Issue
Block a user