Skip to content

Releases: hluk/CopyQ

fix-mac-sleep: OSX: Omit preventing system entering sleep mode

28 Jan 09:00
Compare
Choose a tag to compare
Signed-off-by: Lukas Holecek <hluk@email.cz>

v3.9.3

16 Nov 09:09
v3.9.3
Compare
Choose a tag to compare
  • New loadTheme() script function loads theme from INI file.

  • Currently selected item stays on top on PageUp/Down (less jittery list view
    scrolling)

  • Performance improvements: Updates GUI only when necessary; dedicated
    processes to run menu filters and display commands; reloads configuration
    once when setting multiple options with config()

  • Skips using a command from a disabled plugin

  • Logs information on slow menu filters and display commands

  • Fix hiding item preview when disabled (caused an empty window to be shown)
    and when no items are selected

  • Fix taking screenshots on multiple monitors

  • Fix duplicate show/hide tray menu items

  • Fix moving synchronized items to top when activated

  • Fix calling onExit() second time when on shutdown

  • Fix removing empty actions from history in Action dialog

  • Fix updating version from Git when rebuilding

  • OSX: Fix refocusing correct main window widget

  • Windows: Use Qt 5.12.5 builds (MinGW 7.3.0 32-bit, msvc2017 64-bit)

v3.9.2

25 Aug 06:37
v3.9.2
Compare
Choose a tag to compare
  • Fix unnecessary tab reloading after expired.

  • Fix repeated menu updates.

  • Fix loading tabs with an empty item

  • Fix initializing expire timeout (it was always 0 or 1 minute)

v3.9.1

18 Aug 09:51
v3.9.1
Compare
Choose a tag to compare
  • Commands are moved to a separate configuration file "copyq-commands.ini".

  • Horizontal tabs in the configuration dialog were replaced with a list of
    sections so it's possible to view all of the sections even in a smaller
    window.

  • New option hide_main_window_in_task_bar to hide window in task bar can be
    set using copyq config hide_main_window_in_task_bar true.

  • New logs() script function prints application logs.

  • New clipboardFormatsToSave() script function allows to override clipboard
    formats to save.

  • Some hidden options can be modified using config() script function.

  • Font sizes in items and editor are limited to prevent application freeze.

  • Application icons are cached so as to avoid creating icons for the snip
    animation again.

  • Fix restoring tabs with some non-ASCII characters

  • Fix opening window on different screen with different DPI

  • Fix 100% CPU utilization on wide screens (5120x1440)

  • Fix icon size and GUI margins in Tabs configuration tab

  • X11: Fix stuck clipboard access

  • X11: Faster selection synchronization

  • OSX: Prevent showing font download dialog

  • OSX: Fix clipboard owner window title

v3.9.0

27 Jun 09:05
v3.9.0
Compare
Choose a tag to compare
  • Large images in clipboard are no longer automatically converted to other
    formats - it caused slowdowns and was mostly unnecessary since some usable
    image format was provided.

  • The server/GUI process now provides the clipboard and no other process is
    started (i.e. "copyq provideClipboard"). The other process helped to unblock
    GUI in rare cases when an application requested large amount of clipboard
    data, but it could cause some slowdowns to start the process.

  • Closing external editor focuses the edited item again (if the editor was open
    from main window).

  • Only Global Shortcut commands are shown in tray menu.

  • Separate Global and Application shortcuts into tabs in configuration dialog.

  • New per-tab configuration allows disabling storing items on disk and limiting
    number of items.

  • New script function unload() and forceUnload() allow unloading tabs from main
    memory.

  • Tabs synchronized with a directory on disk are updated only when needed. An
    update happens regularly when synced tab has focus or item data and are too
    old. Update interval is 10s and can be changed by setting env variable
    COPYQ_SYNC_UPDATE_INTERVAL_MS (in ms).

  • X11: New option allows to disable running automatic commands on X11 selection
    change.

  • Fix rare crash on exit.

  • Fix value returned by filter() after it's hidden

  • Fix memory leak (tool bar and menu items were not properly cleaned up)

  • Fix crash when opening content dialog with many formats

  • OSX: Fix pixelated UI rendering on retina displays.

  • Windows: Fix blocking Ctrl, Shift and other modifier keys after invoking
    paste action. The downside is that it's no longer possible to invoke command
    assigned to a global shortcut repeatedly without releasing these keys.

  • X11: Fix high CPU usage when mouse selection cannot be accessed.

  • X11: Fix assigning global shortcuts with keypad keys

v3.8.0-osx

10 Apr 15:54
Compare
Choose a tag to compare
v3.8.0-osx

v3.8.0

10 Apr 16:16
v3.8.0
Compare
Choose a tag to compare
  • Custom settings from scripts (using settings() function) are now saved in
    "copyq-scripts.ini" file in configuration directory. Existing configuration
    needs to be moved manually from "[script]" section in the main configuration
    file ("copyq info config" command prints the path) to "[General]" section to
    the new file (in the same directory).

  • Correct clipboard owner (window title) is now used when the window is hidden
    after copy operation (e.g. password manager copies password and hides its
    window immediately).

  • New script functions onStart and onExit allow to defined commands run when
    the application starts and exits.

  • New script functions pointerPosition and setPointerPosition to get/set mouse
    cursor position on screen.

  • New script callback onClipboardUnchanged called when clipboard changes but
    monitored content remains the same.

  • Block default shortcut overridden by a command while its filter command needs
    to run.

  • Item selection is not cleared when main window hides in response to
    activating an item or automatically when unfocused.

  • Clipboard dialog opens much faster and retrieves clipboard data only when
    needed.

  • Clipboard dialog contains special clipboard formats and the whole list is
    sorted - plain text first, HTML, other text, application, application
    specific (application/x-), special (uppercase).

  • Detect encoding for other text formats.

  • Method text for ByteArray returns correctly formatted text from unicode
    encoded data (e.g. UTF-8).

  • Show pin and tag menu items even if shortcut is not assigned (can be disabled
    completely in Command dialog).

  • Hide encrypt/decrypt commands when keys for Encrypt plugin don't exist.

  • Command list is focused when Command dialog opens; the less important "Find"
    field is smaller and moved below the list.

  • Process manager is completely redone and the dialog is no longer created at
    application start (faster application start, smaller memory footprint).

  • Process manager has filter field for searching for commands.

  • Process manager has new column showing error message.

  • Process manager has color status icons for running, starting and failed
    processes.

  • Next/Previous formats are no longer available (were rarely used and
    untested).

  • Updated donation link: https://liberapay.com/CopyQ/

  • FakeVim, if enabled, is used for other multi-line text fields in the
    application (e.g. item notes, command editor).

  • FakeVim, if in a dialog, binds save and quit command to the dialog buttons -
    :w for Apply, :wq for OK, :q for Cancel.

  • FakeVim status bar shows an icon for errors and warnings.

  • FakeVim now handles set commands correctly.

  • FakeVim text cursor is gray if the editor is not focused.

  • Fix opening image editor for encrypted items.

  • Fix opening SVG image editor if the bitmap one is unset.

  • Fix stopping client processes properly.

  • Fix showing main window under mouse pointer (with showAt function).

  • Fix client crash when calling a method without instance (e.g. command "copyq
    ByteArray().size").

  • OSX: Fix opening main window above full screen window.

  • OSX: Fix selecting item with Up/Down keys when searching.

  • X11: Fix setting wrong window title for own clipboard.

  • X11: Fix synchronizing selection if the change is quick.

  • X11: Fix tray icon on KDE.

v3.7.3-beta-osx-fix-open-in-fullscreen

03 Apr 05:17
Compare
Choose a tag to compare
v3.7.3-beta-osx-fix-open-in-fullscreen

v3.7.3

02 Feb 13:06
v3.7.3
Compare
Choose a tag to compare
  • Search and item selection reset when main window is closed
  • Updated icons (Font Awesome 5.6.3)
  • Tray icon animation is not triggered if no automatic commands are run.
  • Improved color themes on some systems
  • Omit auto-hiding main window when it has a dialog open
  • Fix transparency of some icons
  • Fix size of menu when open on different screen
  • Fix window geometry restore and rendering issues
  • Fix auto-hide main window (e.g. on Gnome when using Activities)
  • X11: Fix small tray icon on Gnome
  • X11: Fix icon mask file name according to standard ("copyq_mask")

v3.7.2

31 Dec 14:37
v3.7.2
Compare
Choose a tag to compare
  • Backspace deletes last character in tray menu search instead of clearing it
    completely
  • Window title shows "" label when non-text items are copied
  • Command dialog uses simpler layout for easier command editing
  • Command dialog shows simple command description
  • Remove empty lines at the end of copied and exported commands
  • New script functions to calculate hash: md5sum, sha1sum, sha256sum, sha512sum
  • Retrieving clipboard data is interrupted if it's slow
  • Editing commands no longer causes high CPU usage
  • Completion menu for command editor is resized once
  • Items are rendered faster and are shown with incorrect size initially while
    scrolling instead of showing empty items
  • When Action dialog opens, the command editor is focused instead of the combo
    box containing command history (this consistent with default focus behavior
    on OS X)
  • Clipboard monitor process loads configuration only at start
  • Autostart option now works in the Flatpak package
  • OSX: Application no longer crashes when using the main window close button
  • X11: TIMESTAMP clipboard format is used to avoid retrieving unchanged content
    unnecessarily
  • X11: Data installation path can be overridden with CMake options
    (CMAKE_INSTALL_DATAROOTDIR and DATA_INSTALL_PREFIX)
  • X11: Store current window title with new clipboard data right after
    clipboard-change signal is received