Jump to content

Sky Slate Blueberry Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate
Photo

NODE : Launcher.. and more.


  • Please log in to reply
374 replies to this topic
Rajat
  • Members
  • 1904 posts
  • Last active: Jul 17 2015 07:45 AM
  • Joined: 28 Mar 2004

That's probably the easier implementation, thank you for that. This is my kind of solution and though I really like it, I'm sure if Drugwash sees this (the way he can be a PITA at times for little nothings  :p ), the first thing he'll say is "what if somebody changes the .ini manually?".. or something like that. and because the current state of the Files plugin is more of his hard work than mine, I tried to put in a little extra bit.

 

Anyway, I still saw an issue with the earlier code (mine) and modified it a little. Haven't bumped the main version, only internally this is 0.41.2


MIA

CleanNews.in : Bite sized latest news headlines from India with zero bloat


Rajat
  • Members
  • 1904 posts
  • Last active: Jul 17 2015 07:45 AM
  • Joined: 28 Mar 2004

Drugwash alternative search finds all files on the desktop.

Could it have anything to do with that I'm running a swedish version of windows?

I hope not. Do the internal AHK variables like A_Desktop etc resolve correctly on your system? 

 

You can also look into the files saved under 'NODE\db' folder, the Files#.ndb files each belong to a separate folder being scanned by NODE - but hopefully that won't be needed if you wouldn't like to get your hands dirty.


MIA

CleanNews.in : Bite sized latest news headlines from India with zero bloat


Drugwash
  • Members
  • 1078 posts
  • Last active: May 24 2016 04:20 PM
  • Joined: 07 Sep 2008

@pomj:

The Alternative File Search application is merely a proof that the DLL library can return the correct results given the same specs. Therefore the problem has to be somewhere in NODE's config, most likely the issues that have been fixed above in 0.41.1 and 0.41.2. Have you tried these versions? Have you looked into the configuration ini to see the folder order?

 

@Rajat:

As a workaround for the Desktop folder issue, there could be a comment inside the ini saying "DO NOT CHANGE DESKTOP FOLDER ORDER". At least until a better solution is found.


(AHK 1.0.48.05 and Win98SE) forever | My scripts are here


pomj
  • Members
  • 30 posts
  • Last active: Jan 29 2017 09:15 PM
  • Joined: 22 Feb 2007

I just tried the latest 0.41.2 version and now it works!

 

Great. Thank's alot



pomj
  • Members
  • 30 posts
  • Last active: Jan 29 2017 09:15 PM
  • Joined: 22 Feb 2007

I just tried the latest 0.41.2 version and now it works!

And it works great. This version feels way faster than 0.37 that I used before



Rajat
  • Members
  • 1904 posts
  • Last active: Jul 17 2015 07:45 AM
  • Joined: 28 Mar 2004

That's perfect! Glad to know its working well for you now. And yes you're right, 0.38 and 0.39 had a lot of major performance improvements.


MIA

CleanNews.in : Bite sized latest news headlines from India with zero bloat


hoppfrosch
  • Members
  • 399 posts
  • Last active: Feb 26 2016 05:31 AM
  • Joined: 25 Jan 2006

A few things:

 

Using your latest version(0.41.02) from github indicates a missing file:

---------------------------
NODE Error
---------------------------
Resource file not found.
(D:\NODE-dev\res\bin\FileFilter.exe)
---------------------------

Where to get this file from? You have included a zip-file named "FileFindFilter project 1.2.0.0 last.7z" within this repository, but compiling the provided sources with VC does not produce a exe "FileFilter.exe" but a "fffA.dll".

 

Either include "FileFilter.exe" to your git Repository - or if "FileFilter.exe" is not mandatory: remove the error message ...

 

 
---------------------------
 



Drugwash
  • Members
  • 1078 posts
  • Last active: May 24 2016 04:20 PM
  • Joined: 07 Sep 2008

Can't tell you about the exe, you'll have to wait for Rajat for that. But I can tell you about the FFF project. It was developed for VC6 under Win98SE and was not tested to build under other VC versions. There are four configurations that can be built:

- ANSI (fffA.dll)

- ANSI debug (fffDA.dll)

- Unicode (fffW.dll)

- Unicode debug (fffDW.dll)

Anyone using NODE under Win9x should build and use the ANSI version of FFF, otherwise build the Unicode version.


(AHK 1.0.48.05 and Win98SE) forever | My scripts are here


hoppfrosch
  • Members
  • 399 posts
  • Last active: Feb 26 2016 05:31 AM
  • Joined: 25 Jan 2006

Can't tell you about the exe, you'll have to wait for Rajat for that. But I can tell you about the FFF project. It was developed for VC6 under Win98SE and was not tested to build under other VC versions.

 

JFI:

Tried to compile it with VC2010 and it worked with one small sourcecode-change (call to pow(2,k) occurs two times in sources: I had to typecast the first argument to float or double to get the correct overloaded pow-function ...)  I cannot judge about the resulting dlls yet - as I do not know how to use them ....



Drugwash
  • Members
  • 1078 posts
  • Last active: May 24 2016 04:20 PM
  • Joined: 07 Sep 2008
My bad, I should've written some documentation inside. I have done that for the AlternativeFileSearch utility. Please note this is old documentation, I'm not sure whether I've made any changes in the mean time.
Anyway, here it is:
Spoiler

(AHK 1.0.48.05 and Win98SE) forever | My scripts are here


robertcollier4
  • Members
  • 141 posts
  • Last active: Jun 28 2019 01:05 AM
  • Joined: 11 Nov 2012

A few things:
 
Using your latest version(0.41.02) from github indicates a missing file:

---------------------------
NODE Error
---------------------------
Resource file not found.
(D:\NODE-dev\res\bin\FileFilter.exe)
---------------------------
Where to get this file from? You have included a zip-file named "FileFindFilter project 1.2.0.0 last.7z" within this repository, but compiling the provided sources with VC does not produce a exe "FileFilter.exe" but a "fffA.dll".
 
Either include "FileFilter.exe" to your git Repository - or if "FileFilter.exe" is not mandatory: remove the error message ...
 
 
---------------------------

The download from the github DOES work - but you have to also unpack NODE.zip to the local directory (which contains the missing EXE).
Ideally - NODE.zip should be pre-unzipped in the Github to avoid confusion. I initially ran across the same problem but then finally found the missing files in NODE.zip

Rajat
  • Members
  • 1904 posts
  • Last active: Jul 17 2015 07:45 AM
  • Joined: 28 Mar 2004

Sorry about the issues, consider me a noob as far as Git is concerned confused.png Please bear with me.

 

As for the FileFilter.exe, it should be found both in Node.zip and Nodesource.zip.  Ideally the second file should have its source, but that's with Drugwash, I'm sure he'll be very happy to help if he can find it (unless its readily available with him, which I doubt as he'd have posted it already).


MIA

CleanNews.in : Bite sized latest news headlines from India with zero bloat


Drugwash
  • Members
  • 1078 posts
  • Last active: May 24 2016 04:20 PM
  • Joined: 07 Sep 2008

I'm at a loss here: what exactly should 'FileFilter.exe' be...? shocked.png I don't recall having such file here. Isn't there your attempt at launching the search as a separate process to avoid script freezing or something like that? confused.png


(AHK 1.0.48.05 and Win98SE) forever | My scripts are here


Rajat
  • Members
  • 1904 posts
  • Last active: Jul 17 2015 07:45 AM
  • Joined: 28 Mar 2004

Yes and no. The reason for using the .exe is correct (the reason we switched back from dll to exe), but I remember you coded it bro!  :D


MIA

CleanNews.in : Bite sized latest news headlines from India with zero bloat


Drugwash
  • Members
  • 1078 posts
  • Last active: May 24 2016 04:20 PM
  • Joined: 07 Sep 2008

Now I really need a drink, as cold as it may be outside (and inside). Are you sure the sources aren't somewhere with you? Coz I definitely haven't seen anything named like that around. But for you I'll double-check. Heck, I'll triple-check, if needed!

Someone give me my memory back, please...!


(AHK 1.0.48.05 and Win98SE) forever | My scripts are here