fix #1277: auto-type window matching on Linux

This commit is contained in:
antelle 2019-09-29 15:31:02 +02:00
parent db091b2b39
commit 511fccd084
2 changed files with 3 additions and 2 deletions

View File

@ -9,7 +9,7 @@ AutoTypeHelper.prototype.getActiveWindowInfo = function(callback) {
complete(err, out) {
let windowInfo;
if (out) {
const [id, title] = out.trim().split('\n');
const [title, id] = out.trim().split('\n');
windowInfo = {
id,
title

View File

@ -1,6 +1,7 @@
Release notes
-------------
##### v1.11.4 (TBD)
##### v1.11.4 (2019-09-29)
`-` fix #1277: auto-type window matching on Linux
`-` fixed displaying errors on the plugins page
##### v1.11.3 (2019-09-29)