Unicode plug-in: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
Line 31: Line 31:


== Related ==
== Related ==
* [http://sourceforge.net/projects/nsisu/ NSIS Unicode build] - a branch of NSIS for building unicode installers
* [http://www.scratchpaper.com NSIS Unicode build] - a branch of NSIS for building unicode installers
[[Category:Plugins]]
[[Category:Plugins]]

Revision as of 20:14, 8 January 2009

Author: Instructor (talk, contrib)


Links

Download v1.0:
Unicode.zip (7 KB)

Discussion:
Forum thread

Description

This is NSIS plug-in for Unicode files conversion.


Features:

  • Convert file from Unicode to ANSI
  • Convert file from ANSI to Unicode
    • Conversions supported:

         "UTF-8"       <-> ANSI
         "UTF-16LE" <-> ANSI
         "UTF-16BE" <-> ANSI

  • Get file unicode type:

         "NONE"                      - None Unicode
         "UTF-8"                      - 8-bit Variable Width (Web)
         "UTF-16LE|UCS-2LE" - 16-bit Little Endian (Default for Windows)
         "UTF-16BE|UCS-2BE" - 16-bit Big Endian (Default for Linux)
         "UTF-32LE|UCS-4LE" - 32-bit Little Endian
         "UTF-32BE|UCS-4BE" - 32-bit Big Endian


Related