Changeset 43


Ignore:
Timestamp:
Jul 14, 2016, 2:06:55 PM (8 years ago)
Author:
chronos
Message:
  • Modified: Installer now contains 32-bit and 64-bit version.
  • Added: Install also openssl libraries to support https protocol.
Location:
trunk
Files:
2 added
1 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/AcronymDecoder.lpi

    r36 r43  
    2626          <PathDelim Value="\"/>
    2727          <Target>
    28             <Filename Value="AcronymDecoder"/>
     28            <Filename Value="lib\$(TargetCPU)-$(TargetOS)\AcronymDecoder"/>
    2929          </Target>
    3030          <SearchPaths>
     
    6666          <PathDelim Value="\"/>
    6767          <Target>
    68             <Filename Value="AcronymDecoder"/>
     68            <Filename Value="lib\$(TargetCPU)-$(TargetOS)\AcronymDecoder"/>
    6969          </Target>
    7070          <SearchPaths>
  • trunk/Forms/UFormAbout.lfm

    r41 r43  
    6767    VersionMajor = 1
    6868    VersionMinor = 0
    69     VersionBugFix = 0
     69    VersionBugFix = 1
    7070    CompanyName = 'Chronosoft'
    7171    HomePage = 'http://svn.zdechov.net/trac/AcronymDecoder'
  • trunk/Install/AcronymDecoder.iss

    r36 r43  
    44#define MyAppName "Acronym Decoder"
    55#define MyAppNameShort "AcronymDecoder"
    6 #define MyAppVersion "1.0.0"
     6#define MyAppVersion "1.0.1"
    77#define MyAppPublisher "Chronosoft"
    88#define MyAppPublisherShort "Chronosoft"
     
    3232SolidCompression=yes
    3333ChangesAssociations=yes
     34; "ArchitecturesInstallIn64BitMode=x64" requests that the install be
     35; done in "64-bit mode" on x64, meaning it should use the native
     36; 64-bit Program Files directory and the 64-bit view of the registry.
     37; On all other architectures it will install in "32-bit mode".
     38ArchitecturesInstallIn64BitMode=x64
     39; Note: We don't set ProcessorsAllowed because we want this
     40; installation to run on all architectures (including Itanium,
     41; since it's capable of running 32-bit code too).
    3442
    3543[Languages]
     
    5159
    5260[Files]
    53 Source: "{#MyAppSubDir}\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion
    54 ;Source: "{#MyAppSubDir}\{#MyAppDebugName}"; DestDir: "{app}"; Flags: ignoreversion
     61Source: "{#MyAppSubDir}\lib\x86_64-win64\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion; Check: Is64BitInstallMode
     62Source: "{#MyAppSubDir}\lib\i386-win32\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion; Check: not Is64BitInstallMode
     63Source: "{#MyAppSubDir}\libeay32.dll"; DestDir: "{app}"; Flags: ignoreversion
     64Source: "{#MyAppSubDir}\ssleay32.dll"; DestDir: "{app}"; Flags: ignoreversion
    5565Source: "{#MyAppSubDir}\Example acronyms.adp"; DestDir: "{app}"; Flags: ignoreversion
    5666Source: "{#MyAppSubDir}\Release notes.txt"; DestDir: "{app}"; Flags: ignoreversion
    5767Source: "{#MyAppSubDir}\Languages\*.po"; DestDir: "{app}\Languages"; Flags: ignoreversion
     68
    5869
    5970[Icons]
  • trunk/Packages/CoolTranslator/UCoolTranslator.pas

    r42 r43  
    354354  for I := 1 to Languages.Count - 1 do
    355355  with TLanguage(Languages[I]) do begin
    356     Available := FileExists(POFilesFolder + DirectorySeparator + ExtractFileNameOnly(Application.ExeName) +
     356    Available := FileExists(ExtractFileDir(UTF8Encode(Application.ExeName)) +
     357      DirectorySeparator + POFilesFolder + DirectorySeparator + ExtractFileNameOnly(Application.ExeName) +
    357358      '.' + Code + ExtensionSeparator + 'po') or (Code = 'en');
    358359  end;
  • trunk/Release notes.txt

    r38 r43  
     1Version 1.0.1 (2016-07-14)
     2==========================
     3
     4* Added: Job progress view for longer processing of all import sources.
     5* Modified: Use application icon also for system tray icon.
     6* Fixed: Build with cthreads under Linux.
     7* Added: Another wikipedia example acronyms import source.
     8* Fixed: Do not allow operations with acronym database if file is in closed state.
     9* Fixed: Do not show dash symobol if no project is openned.
     10* Fixed: Wrong interface translation in case of automatic english language.
     11
    112Version 1.0.0 (2016-07-13)
    213==========================
Note: See TracChangeset for help on using the changeset viewer.