Skip to content

Commit 708619c

Browse files
committedJun 21, 2019
Release 1.1
1 parent 6b31fd9 commit 708619c

File tree

6 files changed

+16
-4
lines changed

6 files changed

+16
-4
lines changed
 

‎LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2018 Michael Kropat and contributors
3+
Copyright (c) 2019 Michael Kropat and contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

‎Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ PREFIX = /usr/local
33
BIN = $(DESTDIR)/$(PREFIX)/bin
44
MAN = $(DESTDIR)/$(PREFIX)/share/man
55

6-
VERSION = 1.0
6+
VERSION = 1.1
77
PACKAGE_DIR = jumpapp-$(VERSION)
88
PACKAGE_FILE = jumpapp_$(VERSION).tar.bz2
99
PACKAGE_ORIG_FILE = jumpapp_$(VERSION).orig.tar.bz2
1010

1111
AUTHOR = Michael Kropat <mail@michael.kropat.name>
12-
DATE = Jul 2, 2018
12+
DATE = Jun 20, 2019
1313
FILES = t README.md LICENSE.txt Makefile jumpapp jumpappify-desktop-entry
1414

1515
.PHONY: all

‎README.md

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ In short, **jumpapp** is probably the fastest way for a keyboard-junkie to switc
2525
Options:
2626
-r -- cycle through windows in reverse order
2727
-f -- force COMMAND to launch if process found but no windows found
28+
-m -- if a single window is already open and in focus - minimize it
2829
-n -- do not fork into background when launching COMMAND
2930
-p -- always launch COMMAND when ARGs passed
3031
(see Argument Passthrough in man page)

‎Vagrantfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ EOF
1919

2020
Vagrant.configure(2) do |config|
2121
config.vm.define 'ubuntu' do |ubuntu|
22-
ubuntu.vm.box = 'ubuntu/bionic64'
22+
ubuntu.vm.box = 'ubuntu/xenial64'
2323
ubuntu.vm.provision 'shell', inline: provision_ubuntu
2424
end
2525

‎debian/changelog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
jumpapp (1.1-1) bionic; urgency=medium
2+
3+
* Add -m option to toggle window visibility
4+
* Change window-type filter logic to work better with Slack
5+
6+
-- Michael Kropat <mail@michael.kropat.name> Thu, 20 Jun 2019 22:22:57 -0400
7+
18
jumpapp (1.0-1) xenial; urgency=low
29

310
* Add -C option to center mouse

‎jumpapp.spec

+4
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ mkdir -p %{buildroot}%{_unitdir}
3535
%{_mandir}/man1/*
3636

3737
%changelog
38+
* Wed Jun 20 2019 Michael Kropat <mail@michael.kropat.name> - 1.1-1
39+
- Add -m option to toggle window visibility
40+
- Change window-type filter logic to work better with Slack
41+
3842
* Mon Jul 2 2018 Michael Kropat <mail@michael.kropat.name> - 1.0-1
3943
- Add -C option to center mouse
4044
- Fix stacking order bug with >10 windows

0 commit comments

Comments
 (0)
Please sign in to comment.