Skip to content

Commit

Permalink
Update package.json version, generated bundles and changelog for 1.2.…
Browse files Browse the repository at this point in the history
…1 patch release
  • Loading branch information
daledavies committed Jun 7, 2022
1 parent 210212b commit c012942
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion jumpapp/assets/js/src/classes/Main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion jumpapp/templates/footer.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -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>
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit c012942

Please sign in to comment.