mirror of
https://github.com/daledavies/jump.git
synced 2026-07-06 01:48:49 +02:00
Update package.json version, generated bundles and changelog for 1.2.1 patch release
This commit is contained in:
@@ -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.
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -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();
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user