Maintenance commit
This commit is contained in:
parent
4bc5d3a0df
commit
d25e92f562
12
.gitignore
vendored
Normal file
12
.gitignore
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
test*
|
||||
*.xpm
|
||||
U3Helper.exe
|
||||
U3Helper.ini
|
||||
STORY
|
||||
*.u3p
|
||||
*.zip
|
||||
_WRAPPER/
|
||||
_history/
|
||||
proctest.ahk
|
||||
u3emu.cmd
|
||||
make.cmd
|
@ -63,7 +63,7 @@ Loop %procs0%
|
||||
CurFn := A_LoopFileLongPath
|
||||
CurFnOnly := A_LoopFileName
|
||||
}
|
||||
if ( (CurFn <> ASFP) && ( (SubStr(CurFn, 1, StrLen(U3HEP)) = U3HEP) || (SubStr(CurFn, 1, StrLen(U3DEP)) = U3DEP) || (SubStr(CurFn, 1, StrLen(U3ADP)) = U3ADP) ) )
|
||||
if ( (CurFn <> ASFP) && ( (SubStr(CurFn, 1, StrLen(U3HEP)) = U3HEP) || ( (StrLen(U3DEP) > 0) && (SubStr(CurFn, 1, StrLen(U3DEP)) = U3DEP) ) || ( (StrLen(U3ADP) > 0) && (SubStr(CurFn, 1, StrLen(U3ADP)) = U3ADP) ) ) )
|
||||
{
|
||||
KillProcs0++
|
||||
KillProcs%KillProcs0% := CurProc . "|" . CurFnOnly
|
||||
@ -106,6 +106,8 @@ If (U3_IS_DEVICE_AVAILABLE <> "true")
|
||||
StepsPos++
|
||||
If datexe0 > 0
|
||||
StepsPos++
|
||||
|
||||
; Try to save to temporary directory ... maybe change U3_APP_DATA_PATH to new dir ... should work
|
||||
}
|
||||
Else
|
||||
{
|
||||
|
@ -5,7 +5,7 @@
|
||||
#Include mb_ProcTools.ahk
|
||||
#Include mb_RegTools.ahk
|
||||
#Include mb_TextTools.ahk
|
||||
U3HVer = 2.4
|
||||
U3HVer = 2.41
|
||||
U3HUUID = 0f90f88c-5e05-4cab-8c3a-e1c0112b06fd
|
||||
|
||||
U3_APP_DATA_PATH := EnvValue("U3_APP_DATA_PATH")
|
||||
|
10
U3Helper.rc
10
U3Helper.rc
@ -1,7 +1,7 @@
|
||||
|
||||
1 VERSIONINFO
|
||||
FILEVERSION 2,4,0,0
|
||||
PRODUCTVERSION 2,4,0,0
|
||||
FILEVERSION 2,4,0,1
|
||||
PRODUCTVERSION 2,4,0,1
|
||||
FILEOS 0x4
|
||||
FILETYPE 0x1
|
||||
{
|
||||
@ -10,12 +10,12 @@ BLOCK "StringFileInfo"
|
||||
BLOCK "040904b0"
|
||||
{
|
||||
VALUE "FileDescription", "U3Helper manages registry settings and data files of ordinary applications to make them U3-compatible. (see http://www.u3.com/ for more info)"
|
||||
VALUE "FileVersion", "2, 4, 0, 0"
|
||||
VALUE "FileVersion", "2, 4, 0, 1"
|
||||
VALUE "InternalName", "U3H"
|
||||
VALUE "LegalCopyright", "(c)2007 Markus Birth <mbirth@webwriters.de>"
|
||||
VALUE "LegalCopyright", "(c)2007-2008 Markus Birth <markus@birth-online.de>"
|
||||
VALUE "OriginalFilename", "U3Helper.exe"
|
||||
VALUE "ProductName", "U3Helper"
|
||||
VALUE "ProductVersion", "2, 4, 0, 0"
|
||||
VALUE "ProductVersion", "2, 4, 0, 1"
|
||||
}
|
||||
}
|
||||
|
||||
|
18
manifestex_old.u3i
Normal file
18
manifestex_old.u3i
Normal file
@ -0,0 +1,18 @@
|
||||
<u3manifest version="1.0">
|
||||
<application uuid="6873fef3-2000-44ff-81fa-f1a1aa0797a7" version="1.31.0.0325">
|
||||
<icon>CCleaner.ico</icon>
|
||||
<name>CCleaner</name>
|
||||
<vendor url="http://www.ccleaner.com/">Piriform Ltd.</vendor>
|
||||
<description>CCleaner is a freeware system optimization and privacy tool. It removes unused files from your system - allowing Windows to run faster and freeing up valuable hard disk space. It also cleans traces of your online activities such as your Internet history.</description>
|
||||
<options>
|
||||
<upgrade appData="add" deviceExec="add" />
|
||||
<minFreeSpace>2</minFreeSpace>
|
||||
</options>
|
||||
</application>
|
||||
<actions>
|
||||
<hostConfigure cmd="%U3_HOST_EXEC_PATH%\U3Helper.exe">config</hostConfigure>
|
||||
<appStart workingdir="%U3_APP_DATA_PATH%" cmd="%U3_HOST_EXEC_PATH%\ccleaner.exe"></appStart>
|
||||
<appStop cmd="%U3_HOST_EXEC_PATH%\U3Helper.exe">appstop</appStop>
|
||||
<hostCleanUp cmd="%U3_HOST_EXEC_PATH%\U3Helper.exe">unconfig</hostCleanUp>
|
||||
</actions>
|
||||
</u3manifest>
|
Reference in New Issue
Block a user