Update package.json version, generated bundles and changelog for 1.2.1 patch release

This commit is contained in:
Dale Davies
2022-06-07 11:57:39 +01:00
parent 210212bbd0
commit c01294248a
5 changed files with 9 additions and 4 deletions

View File

@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.2.1] - 2022-06-07
### Fixed
- Fix incorrect keyup check for ctrl-shift-/
- Fix wrong cache expiry for unsplash data
## [1.2.0] - 2022-06-06
### Added
- Search: Search for sites added to Jump and also open a query in configurable list of search engines.

View File

@@ -158,7 +158,7 @@ export default class Main {
// Listen for CTRL+/ key combo and open search bar.
document.addEventListener('keyup', e => {
if (e.ctrlKey && (e.code == 'Slash')) {
if (e.ctrlKey && e.shiftKey && e.code == 'Slash') {
if (!this.showsearchbuttonelm.classList.contains('open')) {
this.showsearchbuttonelm.classList.add('open');
searchinput.focus();

View File

@@ -33,6 +33,6 @@
{{/ hastags}}
<span class="unsplash"></span>
<div class="background fixed"></div>
<script defer src="/assets/js/index.30b1fd8630047c05ccca.min.js"></script>
<script defer src="/assets/js/index.c63595ee13b76dab6fb3.min.js"></script>
</body>
</html>

View File

@@ -1,6 +1,6 @@
{
"name": "jump",
"version": "1.2.0",
"version": "1.2.1",
"description": "Jump is yet another self-hosted startpage for your server designed to be simple, stylish, fast and secure.",
"scripts": {
"dev": "webpack --mode=development --devtool=inline-source-map --watch",