Skip to content

Commit 2ecec83

Browse files
committed
Update README, CHANGELOG and package.json for v1.2.2 release
1 parent 48bde6e commit 2ecec83

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [1.2.2] - 2022-06-30
8+
### Added
9+
- Issue #35: Add optional WWWURL config param
10+
- Issue #37: Add ALTBGPROVIDER config option
11+
- Issue #38: Add optional description to sites
12+
13+
### Fixed
14+
- Issue #36: Improve use of cache to avoid waiting for lock timeout
15+
716
## [1.2.1] - 2022-06-07
817
### Fixed
918
- Fix incorrect keyup check for ctrl-shift-/

README.md

+11-2
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,13 @@ You can use the following optional environment variables to configure/customise
5858
- `BGBRIGHT: 90` - Background image brightness percentage.
5959
- `UNSPLASHAPIKEY` - An API key for Unsplash, enables fetching random background images from Unsplash.
6060
- `UNSPLASHCOLLECTIONS` - List of Unsplash collection ID's (separated by commas) to select random images from.
61+
- `ALTBGPROVIDER` - An alternative background provider url.
6162
- `OWMAPIKEY` - An API key for Open Weather Map, LATLONG (below) must also be defined.
6263
- `LATLONG` - A latitude and longitude for the default location (e.g. "51.509865,-0.118092").
6364
- `METRICTEMP: 'true'` - Metric (C) or imperial (F) temperature units.
6465
- `NOINDEX: 'true'` - Include a robots noindex meta tag in site header
6566
- `CACHEBYPASS: 'true'` - Bypass all caches, useful for testing changes.
67+
- `WWWURL` - Useful if Jump is hosted in a sub-directory.
6668

6769
**NOTE:** The `OWMAPIKEY` and `LATLONG` config options must be defined together.
6870

@@ -120,12 +122,18 @@ Edit the `/sites/sites.json` file to include your own sites on the startpage...
120122
{
121123
"name": "Github",
122124
"url" : "https://github.com/daledavies/jump",
125+
"description": "This is an example description",
123126
"nofollow": false,
124127
"newtab": true
125128
},
129+
{
130+
"name": "Docker Hub",
131+
"url" : "https://hub.docker.com/r/daledavies/jump"
132+
},
126133
{
127134
"name": "Bitwarden",
128135
"url" : "https://bitwarden.example.com",
136+
"description": "This is another example of a site with a description",
129137
"icon": "bitwarden.png",
130138
"tags": ["stuff"]
131139
},
@@ -149,15 +157,16 @@ Edit the `/sites/sites.json` file to include your own sites on the startpage...
149157
},
150158
{
151159
"name": "Google",
152-
"url" : "https://www.google.com"
160+
"url" : "https://www.google.com",
161+
"nofollow": false
153162
}
154163
]
155164
}
156165

157166
```
158167

159168
* `name` and `url` are mandatory.
160-
* `tags`, `nofollow`, `newtab` and `icon` are optional.
169+
* `description`, `tags`, `nofollow`, `newtab` and `icon` are optional.
161170

162171
#### Tags
163172

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jump",
3-
"version": "1.2.1",
3+
"version": "1.2.2",
44
"description": "Jump is yet another self-hosted startpage for your server designed to be simple, stylish, fast and secure.",
55
"scripts": {
66
"dev": "webpack --mode=development --devtool=inline-source-map --watch",

0 commit comments

Comments
 (0)