Releases: mhtvsSFrpHdE/prefetch
4.5
Warning
This version require new config StartupItemCooldown=0
under prefetch.ini\Thread
to run.
Changelog
- Fix startup item not work in
prefetch_performance.exe
#73 - Fix boolean command line argument randomly flipped if only ini name specified #73
- New command startup to run startup item again 7502280
- Custom tray menu support multiple command at once bbd1e60
See CustomTrayMenu for more details - 4.5.1: Add Linux support, please get source code from master branch
First Linux Release
64 bit only
Unlike Windows, Linux distribution like Debian / Ubundu 18.04 LTS don't preinstall 32 bit runtime.
I can only provide one Linux binary before it gets too annoying.
I believe there is no a 32 bit only Linux distribution is widely used like Windows XP,
so people are simply use x64. If I choose 32 bit,
then most users will have to install a bunch of things.
To run on 32 bit Linux, you can compile your own
https://github.com/mhtvsSFrpHdE/prefetch/wiki/Compile#linux
Or use Wine to run win32 build
https://www.winehq.org
4.4
According to this research, a new mode called rocket launch were introduced.
More at best practice.
4.3
- Fix missing escape character in config 09aff9f
- Extend custom tray menu 09aff9f
You can now use any internal command in custom tray menu likeexpiresc
if you wish.
Exist call to run command require explicit typerun
beforeexplorer...
.
See CustomTrayMenu for more details.
4.2.3
If you don't use Firefox, this version is ignored.
Only bundled prefetch.ini
is changed and can download separably.
- Fine optimize for Firefox 0840f34
Cheers! Regex used on4.2.2
take 120 second to execute and load 7600 files,
Now it take 8.14 second to execute and load only 326 files.
Firefox start speed remains same.
To exclude files in version 2.0 way, look at IsFirefoxFile
,
each group of ^(?!.*<string>)
is stand for exclude file.
For example, exclude another user profile directory abcdefgh.default
,
insert ^(?!.*abcdefgh.default)
between exist exclude groups.
4.2.2
4.2.1
4.2
4.1
This is a dumb update, if you try not to dumb, stay 4.0.7
.
However, you can make a backup and update to this version
to see if you can find any bug before 4.2
release.
- Fix scan folder sec lack translate 1c2d492
- Rename
pause
andresume
command tostop
andstart
d4a0812
Whenpause
requested, this program does not reserve intermediate run state.
And when requestresume
, prefetch will run from beginning,
and run immediately (discard unfinished prefetch interval).
You can also typeresume
without have to typepause
first.
Therefore, this should be calledstop
andstart
.
Due to no longer providedpause
andresume
command,
This change breaks forward compatible, but is not a giant feature pack.
So version number will increase to4.1
instead of5.0
. - Update command interface wiki page about stop and start
Move pause and resume to deprecated command - Use mutex to process pause #64 4ff199c
Maintenance update - Fix source code with same name in different folder "multiple definition" 6fdad94
Maintenance update - Move thread access from main thread to other thread #65
Maintenance update and really dumb