Skip to content

Commit

Permalink
Update CHANGES.md
Browse files Browse the repository at this point in the history
  • Loading branch information
hluk committed Jan 19, 2023
1 parent 2456052 commit 61b6b53
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,49 @@
# 6.4.0

## Added

- Items in menu can be additionally filtered using the item notes (#2170).

- Items can be sorted with a custom order via scripting. For example:

var sel = ItemSelection().selectAll();
const texts = sel.itemsFormat(mimeText);
sel.sort(function(i,j){
return texts[i] < texts[j];
});

## Changed

- More shortcuts and even sequences of shortcuts can be now captured and
assigned. This uses new QKeySequenceEdit UI widget from Qt framework.

- UI uses the preferred sans-serif system font in the dark theme.

## Fixed

- Fixes copying items in order they were selected (#2124).

- Fixes re-selecting the edited item after external editor closes.

- Fixes menu theme (#2139).

- Avoids duplicating items from clipboard in synchronized tabs (#2236).

- macOS: Fixes compatibility with macOS 10.15 (#2103).

- Linux: Fixes synchronizing UTF-encoded text to/from primary selection (#2195)

- Wayland: Avoids showing window after a screen is turned on.

- Wayland: Avoids a rare crash while accessing clipboard data.

- Wayland: Fixes pasting to some XWayland apps (#2234)

- X11: Avoids app freeze when entering search mode (#2171).

- X11: Fixes capturing quickly changing clipboard text (ignores unchanged
TIMESTAMP).

# 6.3.2

## Fixed
Expand Down

0 comments on commit 61b6b53

Please sign in to comment.