Releases: oliverschwendener/ueli
Releases · oliverschwendener/ueli
7.0.1
7.0.0
Please update to 7.0.1 - This version has a possible memory leak
New Features
- Finally! Native icons for apps and files. (Fixes #47)
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
- Start the new version of the app
- Copy your existing
ueli.count.json
file (by default in your home directory) - Go to
~/.ueli
- Replace the
~/.ueli/ueli.count.json
with the one you copied in step 2 - Now your previous config should be applied again
6.1.4
Bugfixes
- Fixed bug which prevented subfolders to show up in recursive file search results
6.1.3
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
6.1.1
Improved
- Added more weight to frequently executed search results
- Fixed typo in settings
6.1.0
New Features
- GUI for user settings (open with
Ctrl+i
or search forUeli 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
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 withshortcuts
. 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
5.0.0
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
}
]