Skip to content

Releases: oliverschwendener/ueli

7.0.1

03 Dec 17:15
Compare
Choose a tag to compare

Bugfixes

  • Kill powershell process after icon generation (fixes #71)
  • Fixed bug which prevented the main window to resize properly when 'useNativeIcons' is set to false (#72)

7.0.0

29 Nov 23:00
Compare
Choose a tag to compare

Please update to 7.0.1 - This version has a possible memory leak

New Features

  • Finally! Native icons for apps and files. (Fixes #47)

example

Bug fixes

  • Fixed bug which allowed long filenames to break GUI layout

Compatibility with older versions

  • All config files are now stored in a separate folder in your home directory by default: ~/.ueli. But you can still customize the path to these files like before.

Migrate from older version

  1. Start the new version of the app
  2. Copy your existing ueli.count.json file (by default in your home directory)
  3. Go to ~/.ueli
  4. Replace the ~/.ueli/ueli.count.json with the one you copied in step 2
  5. Now your previous config should be applied again

6.1.4

12 Nov 08:30
Compare
Choose a tag to compare

Bugfixes

  • Fixed bug which prevented subfolders to show up in recursive file search results

6.1.3

08 Nov 21:03
Compare
Choose a tag to compare

Improvements

  • Enabled file browser feature by default
  • Enabled operating system commands feature by default
  • Show index size in settings view
  • Include subfolders in file/folder search feature

6.1.2

14 Oct 11:08
Compare
Choose a tag to compare

New Features

  • Added possibility to launch custom command without typing in the full prefix (#58)
  • Added possibility to launch items with ctrl+number

Improvements

  • Revised updating process

Bug fixes

  • Only change active item when mouse interaction is enabled and mouse is moving (#63)

6.1.1

08 Oct 13:20
Compare
Choose a tag to compare

Improved

  • Added more weight to frequently executed search results
  • Fixed typo in settings

6.1.0

04 Oct 20:22
Compare
Choose a tag to compare

New Features

  • GUI for user settings (open with Ctrl+i or search for Ueli settings:
  • Added possibility to change user config path (#48)
  • Added customizable icon sets
  • Added customizable max window height
  • Added customizable search engine limit to improve general performance
  • Added colorful icons (can be fully user customized)
  • Added possibility to reset user and app settings to default
  • Added possibility to enable/disable all features
  • Added possibility to add <img> tags as icons
  • Added possibility to define a blacklist for file and folder search
  • Added possibility to activate 'smooth scrolling'

Improvement

  • Improved updating process (check/download updates in settings GUI)
  • Improved scrolling behaviour

Bug fixes

  • Fixed bug with rescan interval
  • Fixed buggy tray icon
  • Trim user input when using web search engine
  • Fixed bug which prevented using Cmd+a to select all text on macOS

6.0.0

16 Sep 14:28
Compare
Choose a tag to compare

New Features

  • When using calculator you can copy the result to the system clipboard by pressing Enter (#57)
  • Added new system settings for macOS

Compatibility with older versions

If you are using an older version please be aware that your old config file will not be compatible with this release

  • customCommands has been replaced with shortcuts. You can migrate your previous config like this:

v5.1.0 and older:

"customCommands": [
    {
        "name": "Whatsapp",
        "executionArgument": "https://web.whatsapp.com",
        "icon": "<svg>...</svg"
    }
]

v6.0.0 and newer:

"shortcuts": [
    {
        "name": "Whatsapp",
        "executionArgument": "https://web.whatsapp.com",
        "icon": "<svg>...</svg"
    }
]
  • There is a new way to specify custom commands which accept parameters

v6.0.0 and newer:

"customCommands": [
    {
        "name": "Open with Visual Studio Code:",
        "executionArgument": "!code",
        "prefix": "openwithcode"
    }
]

5.1.0

22 Aug 13:02
Compare
Choose a tag to compare

New Features

  • Added option to disable mouse interaction
  • Moved to plain CSS and added support for custom themes (#44)
  • Show search result description instead of execution argument

5.0.0

20 Jul 08:08
Compare
Choose a tag to compare

New Features

  • Added option to hide tray icon (#36)
  • Added new updater
  • Added option to search folders recursively
  • Added Windows 10 Photos app
  • Indicate that command line tool has started (#41)
  • Changed the way ueli opens up webpages/files/folders on Windows (#42)

Bugfixes

  • Reset user input properly
  • Close main window properly
  • Destory tray icon when it already exists

Compatibility with older versions

If you are using an older version of ueli please be aware that your old config file is no completly compatible with this release.

The main conflict is due to the new folder search options. You can migrate your previous config like this:

v4.7.0 and older:

"fileSearchFolders": [
    "C:\\Users\\Oliver"
]

v5.0.0 and newer:

"fileSearchOptions": [
    {
        "folderPath": "C:\\Users\\Oliver",
        "recursive": false
    }
]