Commit graph

620 commits

Author SHA1 Message Date
Jeremy Wu
b50f738f42
Feature: Add auto-complete query text suggestion (#153)
* Add query suggestion logic

* Add UI element

* update

* Make caret more appealing by following the color of the query font

* Add suggestions when using actionkeyword

* Add feature to readme

* Per suggestion add explaination

* Per review comment

* Per review comment

* change to use converter

* Correct typo

Co-authored-by: clueless <14300910+theClueless@users.noreply.github.com>
2020-03-15 11:05:34 +02:00
clueless
98ed4e7b59 app config remove 2020-03-12 01:54:30 +02:00
clueless
f68365b0ee fix issue #115 2020-03-12 01:49:24 +02:00
Jeremy Wu
0f2ebfbe00
Remove UwpDesktop library dependency and upgrade to framework 4.6.2 (#159)
* Remove UwpDesktop dependency of lower sdk and add Win SDK Contracts

* Upgrade from .Net Framework 4.5.2 to 4.6.2

This upgrade is needed to use Microsoft Windows SDK Contracts library from previous commit

* Remove Windows SDK references as no longer required
2020-03-10 09:35:31 +02:00
Kevin Eck
366a351100
Merge branch 'dev' into improve-calculator 2020-02-27 11:36:41 +01:00
SysC0mp
9d447ca63f Replace static text with localized label 2020-02-26 20:49:39 +01:00
SysC0mp
cc743aeeea Round result using new introduced setting 2020-02-26 20:47:14 +01:00
SysC0mp
0933eab4b0 Update Mages version 2020-02-26 20:46:47 +01:00
SysC0mp
f18256ab39 Add "Max. decimal places" setting 2020-02-26 20:46:27 +01:00
SysC0mp
54191d6d88 Replace static text with localized label 2020-02-26 20:00:07 +01:00
SysC0mp
ec2aaa8457 Merge "dev" into "improve-calculator" 2020-02-26 19:45:37 +01:00
SysC0mp
3d917e0258 Extract validation to method 2020-02-26 19:40:20 +01:00
Jeremy Wu
e5cc2ccaab
Merge pull request #145 from jjw24/pluginInitFail
plugin init fail continue - create query builder and re-enable tests.
2020-02-26 07:25:20 +11:00
SysC0mp
4f4e423a4b Add missing using directives 2020-02-25 17:55:04 +01:00
SysC0mp
5ae3262279 Adjust decimal separator based on setting
The output decimal separator selected will be used for the output. The
input can also handle comma and dot as separator now.
2020-02-25 17:53:18 +01:00
SysC0mp
570c1d9a5f Integrate calculator settings
Save & load settings when plugin is in use & specify user control.
2020-02-25 17:50:50 +01:00
SysC0mp
3d3d9435dc Set minimum expression lenght to 2
Calculations like 8! haven't been possible before due to a validation on
the minimum query lenght.
2020-02-25 17:48:18 +01:00
SysC0mp
b37669b77e Create user control for Calculator settings 2020-02-25 17:45:43 +01:00
SysC0mp
73a264b00d Create DecimalSeperator enum
Localization is handled using the LocalizedDescription attribute and the
LocalizationConverter.
2020-02-25 17:43:12 +01:00
Jeremy Wu
cecb65cd40
Installed & portable mode: Enhance auto updates (#142)
* Add handling of portable mode when updating

Additionally: 
1. Changed getting version from internally rather than from RELEASES file
2. Added PortableDataPath as a constant so can be used  to determine if portable mode is used

* Fix incorrectly wired auto update event handler

* Fix Sys plugin missing Shutdown command icon

* Add check update command to Sys plugin

* Add message if current Wox version is latest

* Add default silent when auto checking updates in background

Silent when current is still the latest version

* Move UserData folder to new version location

* Changes per review

1. Move IsPortableMode to Constant
2. Merge if statement

* Per comment- change variables to be more descriptive

UpdateInfo and UpdateManager renamed

* Per comment- Add exception handling and message if failed.
2020-02-25 12:08:51 +02:00
clueless
e1e7387c73 create query builder and re-enable tests.
make the plugin manager plugin data the source for disabled plugins
2020-02-22 11:02:07 +02:00
Jeremy Wu
d5f223fc88
Add file path to files search result in Folder Plugin (#139)
* Add file path to files in Folder Plugin

* Add folder subtitle display path when wildcard '>' is used
2020-02-15 08:23:17 +02:00
clueless
fec7912870 remove 2020-01-26 11:14:38 +02:00
clueless
9488864f47 everything updates -
- support ~cancellation in api.
- API refactoring.
- API - locked to enable collisions.
- other small changes
2020-01-26 01:34:11 +02:00
AT
725df15012 update to package reference 2020-01-14 21:10:54 +02:00
Jeremy Wu
ac6ee28c5f Add sorting
order by result title asc, then type being folder first.
2020-01-08 21:50:29 +11:00
Jeremy Wu
c509c02546 Update search wild card
when retrieving folders and files based search term, use wildcard to match everything before and after search term
2020-01-08 20:39:34 +11:00
Jeremy Wu
cb78e10a76 Add threading task run for StartProcess
Context menu hides immediately after user selection
2019-12-16 21:03:44 +11:00
Jeremy Wu
9d031c1600 Remove obsolete bool return
because hiding is now delegated to MainWindow.xaml's OnDeactivated()
2019-12-16 21:01:45 +11:00
Jeremy Wu
2330454838 Fix wording and images for context menu 2019-12-16 06:58:39 +11:00
Jeremy Wu
c279f405cf Add run as different user option when file is of certain type 2019-12-15 18:08:36 +11:00
AT
2c87c00906 added context menu support (same as everything plugin) 2019-12-13 03:20:16 +02:00
AT
92e4b5cc16 merged from upstream 2019-12-13 02:07:48 +02:00
Jeremy Wu
5139bc326a Fix bug from merge in Folder plugin 2019-12-13 07:36:12 +11:00
Jeremy Wu
da798e7a5a add run as different user option to context menu 2019-12-12 20:55:41 +11:00
Jeremy Wu
2e9acc1fa8
Merge pull request #85 from SysC0mp/highlight-how-results-matched
Highlight how results matched
2019-12-12 07:24:22 +11:00
SysC0mp
d204df2b18 Improve format 2019-12-11 19:42:27 +01:00
SysC0mp
24fa234c9b Allow comma in input expression
Calculator now supports a comma as decimal seperator.
2019-12-11 19:42:10 +01:00
SysC0mp
0f9da7f519 Always return filled result again 2019-12-11 19:10:11 +01:00
SysC0mp
971e1cdbec Fix highlighting for UWP results 2019-12-11 19:08:52 +01:00
SysC0mp
8ded683796 Merge branch 'dev' into highlight-how-results-matched 2019-12-11 16:50:17 +01:00
AT
bec52b81fd adding conetxt menu start 2019-12-11 02:21:50 +02:00
Jeremy Wu
695be89656 Add ability to run as a different user for win32 programs 2019-12-10 22:01:12 +11:00
AT
3f3deb8e2a added share folder 2019-12-10 12:38:03 +02:00
Jeremy Wu
e60e574902 update 2019-12-10 20:24:18 +11:00
Jeremy Wu
c22ab4afdf Revert changes to other plugin. Will refactor as a separate PR 2019-12-10 20:11:12 +11:00
Jeremy Wu
b123d95b71 Add run as admin toggle option to plugin settings 2019-12-10 20:03:43 +11:00
Jeremy Wu
201c26f7c8 Add run as administrator to Shell plugin settings 2019-12-10 08:23:34 +11:00
Jeremy Wu
1fd31d83bf Merge branch 'dev' into add_shell_plugin_runasadmin 2019-12-10 07:19:11 +11:00
Jeremy Wu
5aa15ef731 Add tips string to folder subtitle 2019-12-09 21:27:33 +11:00