topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday April 18, 2024, 2:54 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: Everything is back -- with 1.3 beta  (Read 4202 times)

Nod5

  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 1,169
    • View Profile
    • Donate to Member
Everything is back -- with 1.3 beta
« on: January 05, 2013, 09:06 AM »
The free and amazingly quick search tool Everything has a new beta out - the first new release in around 4 years I think.  :Thmbsup:
http://forum.voidtoo...c.php?f=9&t=1552

dr_andus

  • Supporting Member
  • Joined in 2012
  • **
  • Posts: 851
    • View Profile
    • Dr Andus's toolbox
    • Donate to Member
Re: Everything is back -- with 1.3 beta
« Reply #1 on: January 05, 2013, 09:32 AM »
Thanks for the heads-up. I love Everything. But it seems that there are some issues with the beta? I'm not sure I understand what is meant by "drop down filter" having been removed here (http://forum.voidtoo...f=2&t=1553#p4710), but if it's the actual search box that's gone and its filtering action, then I may stick with the current version, as I love that feature.

Nod5

  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 1,169
    • View Profile
    • Donate to Member
Re: Everything is back -- with 1.3 beta
« Reply #2 on: January 05, 2013, 10:08 AM »
This is what the GUI looks like now.
1.png

The developer also writes that he/she wants to make Everything open source.


dr_andus

  • Supporting Member
  • Joined in 2012
  • **
  • Posts: 851
    • View Profile
    • Dr Andus's toolbox
    • Donate to Member
Re: Everything is back -- with 1.3 beta
« Reply #3 on: January 05, 2013, 10:17 AM »
Thanks for that. In the meantime I figured out that the "filter" refers to the "Tools > Options > Exclude > Add filters" functionality, which isn't something I use anyway.

Nod5

  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 1,169
    • View Profile
    • Donate to Member
Re: Everything is back -- with 1.3 beta
« Reply #4 on: January 05, 2013, 11:05 AM »
Ok. It is still possible to filter out folders from the matches using the ! command when match path is active. For example, the search "football !E:" excludes "E:\football.txt" and "E:\folder\football.txt" but includes "C:\football.txt" in the match list.

I use autohotkey to quickly toggle such "filters" on/off. Here it is if anyone has use for it. update: I improved the script.

#IfWinActive, ahk_class EVERYTHING
F12::
string = !"E:\test folder\"
toggle()
return

F11::
string = "ext:mp3"
toggle()
return

toggle() {
global
ControlGetText, x, Edit1, A
if x contains %string%%A_space%
 StringReplace, x, x, %string%%A_space%,,
else if x contains %string%
 StringReplace, x, x, %string%,,
else
  x = %string% %x%
 ControlSetText, Edit1, %x%, A
ControlFocus, Edit1, A
send {end}
}
#IfWinActive
« Last Edit: January 07, 2013, 10:13 AM by Nod5 »

yksyks

  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 476
    • View Profile
    • Donate to Member
Re: Everything is back -- with 1.3 beta
« Reply #5 on: January 06, 2013, 05:28 AM »
Thanks for the heads-up, too! Today there's a new version.

I appreciate especially the new "match diacritics" feature, and indication of active search options on the status bar. Great tool as always!

Babis

  • Charter Member
  • Joined in 2006
  • ***
  • default avatar
  • Posts: 84
    • View Profile
    • Donate to Member
Re: Everything is back -- with 1.3 beta
« Reply #6 on: January 07, 2013, 07:20 AM »
Great News. I noticed two useful new options:

Sort date descending first
Sort size descending first

I hope the developer adds an option to mix files and folders together.