- Timestamp:
- Aug 18, 2021, 6:17:38 PM (3 years ago)
- Location:
- tags
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
tags/1.0.0/Install/win/LazFuck.iss
r100 r119 5 5 #define MyAppNameShort "LazFuck" 6 6 #define MyAppVersion "1.0.0" 7 #define MyAppVersionSuffix "alfa"7 ;#define MyAppVersionSuffix "alfa" 8 8 #define MyAppPublisher "Chronosoft" 9 9 #define MyAppPublisherShort "Chronosoft" -
tags/1.1.0/Install/win/LazFuck.iss
r100 r119 5 5 #define MyAppNameShort "LazFuck" 6 6 #define MyAppVersion "1.1.0" 7 #define MyAppVersionSuffix "alfa"7 ;#define MyAppVersionSuffix "alfa" 8 8 #define MyAppPublisher "Chronosoft" 9 9 #define MyAppPublisherShort "Chronosoft" … … 36 36 AppSupportURL={#MyAppURL} 37 37 AppUpdatesURL={#MyAppURL} 38 DefaultDirName={ pf}\{#MyAppPublisherShort}\{#MyAppName}38 DefaultDirName={commonpf}\{#MyAppPublisherShort}\{#MyAppName} 39 39 DefaultGroupName={#MyAppPublisherShort}\{#MyAppName} 40 40 AllowNoIcons=yes … … 51 51 ; installation to run on all architectures (including Itanium, 52 52 ; since it's capable of running 32-bit code too). 53 WizardStyle=modern 53 54 54 55 [Languages] … … 61 62 62 63 [Registry] 63 Root: HK CU; Subkey: "Software\Chronosoft\LazFuck"; Flags: uninsdeletekey64 Root: HKLM; Subkey: "Software\Chronosoft\LazFuck"; Flags: uninsdeletekey 64 65 65 #define FileTypeName " Acronym Decoder project"66 #define FileTypeName "BrainFuck source file" 66 67 Root: HKCR; Subkey: ".b"; ValueType: string; ValueName: ""; ValueData: "{#FileTypeName}"; Flags: uninsdeletevalue 67 68 Root: HKCR; Subkey: "{#FileTypeName}"; ValueType: string; ValueName: ""; ValueData: "{#FileTypeName}"; Flags: uninsdeletekey -
tags/1.1.0/Install/win/build.bat
r94 r119 18 18 copy %MAIN_EXE% %WIN64_EXE% 19 19 20 "c:\Program Files (x86)\Inno Setup 5\ISCC.exe" "%PROJECTNAME%.iss"20 "c:\Program Files (x86)\Inno Setup 6\ISCC.exe" "%PROJECTNAME%.iss" -
tags/1.1.0/Read Me.txt
r115 r119 1 LazFuck is GUI application for writing, executing, compiling and debugging programs written in famous BrainFuck esoteric programming language.1 LazFuck is a GUI application for writing, executing, compiling and debugging programs written in famous BrainFuck esoteric programming language. 2 2 3 3 ==Features== … … 11 11 * Home page: https://app.zdechov.net/LazFuck/ 12 12 * Source code: https://svn.zdechov.net/LazFuck/ 13 * Developed in [http://www.lazarus-ide.org/ Lazarus/FPC] 2.0.1 013 * Developed in [http://www.lazarus-ide.org/ Lazarus/FPC] 2.0.12 14 14 * To build new Windows installer run Install/build.bat. InnoSetup (http://www.jrsoftware.org/isdl.php) needs to be installed). -
tags/1.1.0/Release Notes.txt
r100 r119 1 Version 1.1.0 (2021-08-18) 2 ========================== 3 4 * Added: Javascript target. 5 * Added: TargetCode form use SynEdit for syntax highlighting. 6 * Modified: Detect different data dir on Linux. 7 * Modified: CoolTranslator package replaced by Translator in Common package. 8 * Modified: About dialog moved to Common package. 9 * Modified: Improved stepping through source and target code. Each step has source, program and target index. 10 * Modified: Redraw output form content only if output instruction was used in interpretter mode. 11 * Modified: Redraw memory form content only if memory was written in interpretter mode. 12 * Modified: TemplateGenerics replaced by fgl generics. 13 * Modified: Do not use old UTF8 functions variants. 14 * Modified: .lrt files replaced by newer .lrj files. 15 * Fixed: Build with Lazarus 2.0.12. 16 * Fixed: SynEdit SelIndex is counter from 1 and not from 0. 17 * Fixed: Replace windows newlines by unix newlines in interpretter output under Linux. 18 * Fixed: Scaling imagelist images doesn't work under Linux. 19 * Fixed: Leaked memory in BFHighlighter. 20 * Fixed: Do not show error if specific target doesn't have assigned compiler. Not all targets use compiler. Some of them are just interpreted. 21 * Fixed: Resolved compiler warnings and notes. 22 1 23 Version 1.0.0 (2018-12-22) 2 24 ========================== -
tags/1.1.0/UCore.lfm
r116 r119 13 13 VersionMinor = 1 14 14 VersionBugFix = 0 15 VersionSuffix = ' alfa'15 VersionSuffix = '' 16 16 CompanyName = 'Chronosoft' 17 17 CompanyHomePage = 'https://app.zdechov.net/LazFuck'
Note:
See TracChangeset
for help on using the changeset viewer.