Skip to content

Commit

Permalink
1.4.1 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
funmaker committed May 14, 2021
1 parent 3436fad commit f382046
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
- Research if VACUUMing has any value


# Unreleased
# v1.4.1

- Updated to Node v16.1.0
- Added support for scroll wheel in gallery
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,12 @@ cacheRecords | number | `1024` | Max number of cache entries.
filesPathOverride | string or null | `null` | Overrides location of post's files. If `null`, `client_files` inside hydrus's db folder is used.
thumbnailsPathOverride | string or null | `null` | Overrides location of post's thumbnails. If `null`, `filesPathOverride` is used.
db | PoolConfig | _local database_ | node-postgres config object. See https://node-postgres.com/api/client for more details. By defaults it attempts to connect to `hybooru` database at `localhost` using `hybooru` as password.
tags | object | _see below_ | Options related to tags.
tags.motd | string or object or null | `null` | Tag pattern used to search for random image displayed on main page. You can also specify object to specify different tags for different themes(use `light`, `dark` and `auto` as keys)
tags.untagged | string | `"-*"` | Overrides tag pattern used to determine which posts require tagging. Default `"-*"` matches all posts with no tags.
tags.ignore | string[] | `[]` | List of tags patterns that will not be imported from Hydrus (posts tagged by these tags will still be imported).
tags.blacklist | string[] | `[]` | All posts and tags matching any of specified tag patterns will not be imported from Hydrus.
tags.whitelist | string[] or null | `null` | Only posts and tags matching any of specified tag patterns will be imported from Hydrus. Use `null` or empty array to ignore whitelist.
tags | object | _see below_ | Options related to tags. All tags below support wildcards.
tags.motd | string or object or null | `null` | Tag used to for random image displayed on main page. You can also specify object to specify different tags for different themes(use `light`, `dark` and `auto` as keys)
tags.untagged | string | `"-*"` | Overrides query used to determine which posts require tagging. Default `"-*"` matches all posts with no tags.
tags.ignore | string[] | `[]` | List of tags that will not be imported from Hydrus (posts tagged by these tags will still be imported).
tags.blacklist | string[] | `[]` | All posts and tags matching any of specified tags will not be imported from Hydrus.
tags.whitelist | string[] or null | `null` | Only posts matching specified tags will be imported from Hydrus. Use `null` or empty array to ignore whitelist.
tags.resolveRelations | boolean | `true` | Resolve tag siblings and parents. Can be slow in large databases.
rating | object or null | _see below_ | Options related to numerical rating. Set null to remove ratings.
rating.enabled | boolean | `true` | Enables or disables rating import.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "hybooru",
"description": "Hydrus-based booru-styled imageboard in React",
"version": "1.4.1-dev",
"version": "1.4.1",
"main": "server.ts",
"author": "Fun Maker",
"repository": "https://github.com/funmaker/webapp-boilerplate",
Expand Down

0 comments on commit f382046

Please sign in to comment.