- Timestamp:
- Jul 14, 2016, 2:06:55 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 1 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/AcronymDecoder.lpi
r36 r43 26 26 <PathDelim Value="\"/> 27 27 <Target> 28 <Filename Value=" AcronymDecoder"/>28 <Filename Value="lib\$(TargetCPU)-$(TargetOS)\AcronymDecoder"/> 29 29 </Target> 30 30 <SearchPaths> … … 66 66 <PathDelim Value="\"/> 67 67 <Target> 68 <Filename Value=" AcronymDecoder"/>68 <Filename Value="lib\$(TargetCPU)-$(TargetOS)\AcronymDecoder"/> 69 69 </Target> 70 70 <SearchPaths> -
trunk/Forms/UFormAbout.lfm
r41 r43 67 67 VersionMajor = 1 68 68 VersionMinor = 0 69 VersionBugFix = 069 VersionBugFix = 1 70 70 CompanyName = 'Chronosoft' 71 71 HomePage = 'http://svn.zdechov.net/trac/AcronymDecoder' -
trunk/Install/AcronymDecoder.iss
r36 r43 4 4 #define MyAppName "Acronym Decoder" 5 5 #define MyAppNameShort "AcronymDecoder" 6 #define MyAppVersion "1.0. 0"6 #define MyAppVersion "1.0.1" 7 7 #define MyAppPublisher "Chronosoft" 8 8 #define MyAppPublisherShort "Chronosoft" … … 32 32 SolidCompression=yes 33 33 ChangesAssociations=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". 38 ArchitecturesInstallIn64BitMode=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). 34 42 35 43 [Languages] … … 51 59 52 60 [Files] 53 Source: "{#MyAppSubDir}\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion 54 ;Source: "{#MyAppSubDir}\{#MyAppDebugName}"; DestDir: "{app}"; Flags: ignoreversion 61 Source: "{#MyAppSubDir}\lib\x86_64-win64\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion; Check: Is64BitInstallMode 62 Source: "{#MyAppSubDir}\lib\i386-win32\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion; Check: not Is64BitInstallMode 63 Source: "{#MyAppSubDir}\libeay32.dll"; DestDir: "{app}"; Flags: ignoreversion 64 Source: "{#MyAppSubDir}\ssleay32.dll"; DestDir: "{app}"; Flags: ignoreversion 55 65 Source: "{#MyAppSubDir}\Example acronyms.adp"; DestDir: "{app}"; Flags: ignoreversion 56 66 Source: "{#MyAppSubDir}\Release notes.txt"; DestDir: "{app}"; Flags: ignoreversion 57 67 Source: "{#MyAppSubDir}\Languages\*.po"; DestDir: "{app}\Languages"; Flags: ignoreversion 68 58 69 59 70 [Icons] -
trunk/Packages/CoolTranslator/UCoolTranslator.pas
r42 r43 354 354 for I := 1 to Languages.Count - 1 do 355 355 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) + 357 358 '.' + Code + ExtensionSeparator + 'po') or (Code = 'en'); 358 359 end; -
trunk/Release notes.txt
r38 r43 1 Version 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 1 12 Version 1.0.0 (2016-07-13) 2 13 ==========================
Note:
See TracChangeset
for help on using the changeset viewer.