Talk:NSISpcre plug-in: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
(Recompile / Update)
 
 
(4 intermediate revisions by 3 users not shown)
Line 2: Line 2:


Can someone please update and recompile this?  At 164k it feels rather bloated.  I'd do it myself but I find Visual C a complete nightmare to work with.
Can someone please update and recompile this?  At 164k it feels rather bloated.  I'd do it myself but I find Visual C a complete nightmare to work with.
[[User:Zinthose|Zinthose]] 16:51, 23 October 2009 (UTC)
== Unicode Compatibility ==
Plugin breaks when used with the Unicode version of NSIS.
== Library NSISpcre.dll left inside temp directory ==
After compiling and running the test sample code (NSISpcreTest.nsi), the library NSISpcre.dll is left inside temp directory ($PLUGINSDIR).<BR>
Cannot delete library before the end of code.<BR>
Dont want to wait next reboot to force deletion (Delete /REBOOTOK ...).<BR>
Is there any way to avoid this ? (method to unload NSISpcre plugin ?)<BR>
[[User:DeCiZoR|DeCiZoR]] 17:23, 23 March 2017 (UTC)
I want to thank @xqltt (https://github.com/xqltt) for his solution:<BR>
  Function .onGUIEnd
      NSISPcre::REClearAllOptions
  FunctionEnd<BR>
Now it doesn't leave files in the temp directory.<BR>
(https://github.com/mazinsw/NSISpcre/issues/1#issuecomment-1067572319)

Latest revision as of 17:20, 2 February 2024

Recompile / Update

Can someone please update and recompile this? At 164k it feels rather bloated. I'd do it myself but I find Visual C a complete nightmare to work with.

Zinthose 16:51, 23 October 2009 (UTC)

Unicode Compatibility

Plugin breaks when used with the Unicode version of NSIS.

Library NSISpcre.dll left inside temp directory

After compiling and running the test sample code (NSISpcreTest.nsi), the library NSISpcre.dll is left inside temp directory ($PLUGINSDIR).
Cannot delete library before the end of code.
Dont want to wait next reboot to force deletion (Delete /REBOOTOK ...).
Is there any way to avoid this ? (method to unload NSISpcre plugin ?)

DeCiZoR 17:23, 23 March 2017 (UTC)


I want to thank @xqltt (https://github.com/xqltt) for his solution:

  Function .onGUIEnd
     NSISPcre::REClearAllOptions
  FunctionEnd

Now it doesn't leave files in the temp directory.
(https://github.com/mazinsw/NSISpcre/issues/1#issuecomment-1067572319)