Changeset 100
- Timestamp:
- Dec 22, 2018, 11:31:25 AM (6 years ago)
- Files:
-
- 2 added
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
tags/1.0.0/Install/deb/debian/control
r78 r100 10 10 Depends: ${shlibs:Depends}, ${misc:Depends}, 11 11 Description: Simple BrainFuck IDE written in Lazarus/FPC. 12 HomePage: http ://svn.zdechov.net/trac/LazFuck12 HomePage: https://app.zdechov.net/LazFuck -
tags/1.0.0/Install/win/LazFuck.iss
r98 r100 4 4 #define MyAppName "LazFuck" 5 5 #define MyAppNameShort "LazFuck" 6 #define MyAppVersion "1.0 "6 #define MyAppVersion "1.0.0" 7 7 #define MyAppVersionSuffix "alfa" 8 8 #define MyAppPublisher "Chronosoft" 9 9 #define MyAppPublisherShort "Chronosoft" 10 #define MyAppURL "http ://svn.zdechov.net/trac/LazFuck/"10 #define MyAppURL "https://app.zdechov.net/LazFuck/" 11 11 #define MyAppExeName "LazFuck.exe" 12 12 #define MyAppDebugName "LazFuck.dbg" -
tags/1.0.0/LazFuck.lpi
r97 r100 244 244 <Filename Value="UBFHighlighter.pas"/> 245 245 <IsPartOfProject Value="True"/> 246 <UnitName Value="UBFHighlighter"/>247 246 </Unit26> 248 247 </Units> -
tags/1.0.0/UCore.lfm
r96 r100 3 3 OnDestroy = DataModuleDestroy 4 4 OldCreateOrder = False 5 Height = 3616 HorizontalOffset = 6617 VerticalOffset = 3708 Width = 4249 PPI = 1 205 Height = 433 6 HorizontalOffset = 793 7 VerticalOffset = 444 8 Width = 509 9 PPI = 144 10 10 object ApplicationInfo: TApplicationInfo 11 11 Identification = 1 … … 13 13 VersionMinor = 0 14 14 VersionBugFix = 0 15 VersionSuffix = 'alfa'16 15 CompanyName = 'Chronosoft' 17 CompanyHomePage = 'http ://svn.zdechov.net/trac/LazFuck'18 HomePage = 'http ://svn.zdechov.net/trac/LazFuck'16 CompanyHomePage = 'https://app.zdechov.net/LazFuck' 17 HomePage = 'https://app.zdechov.net/LazFuck' 19 18 AuthorsName = 'Chronos' 20 19 EmailContact = 'robie@centrum.cz' 21 20 AppName = 'LazFuck' 22 21 Description = 'Simple BrainFuck IDE written in Lazarus/FPC.' 23 ReleaseDate = 43 30122 ReleaseDate = 43456 24 23 RegistryKey = '\Software\Chronosoft\LazFuck' 25 24 RegistryRoot = rrKeyCurrentUser 26 25 License = 'CC0' 27 left = 9028 top = 2 026 left = 108 27 top = 24 29 28 end 30 29 object CoolTranslator1: TCoolTranslator 31 30 POFilesFolder = 'Languages' 32 left = 9033 top = 9031 left = 108 32 top = 108 34 33 end 35 34 object LastOpenedList: TLastOpenedList 36 35 MaxCount = 10 37 left = 9038 top = 1 6036 left = 108 37 top = 192 39 38 end 40 39 object PersistentForm1: TPersistentForm 41 40 MinVisiblePart = 50 42 41 EntireVisible = False 43 left = 9044 top = 2 3042 left = 108 43 top = 276 45 44 end 46 45 object ImageListMain: TImageList 47 left = 3 1048 top = 2 046 left = 372 47 top = 24 49 48 Bitmap = { 50 49 4C691C0000001000000010000000000000000000000000000000000000000000 … … 949 948 object ScaleDPI1: TScaleDPI 950 949 AutoDetect = False 951 left = 3 10952 top = 1 00950 left = 372 951 top = 120 953 952 end 954 953 object ThemeManager: TThemeManager 955 left = 3 02956 top = 174954 left = 362 955 top = 209 957 956 end 958 957 end -
trunk/Forms/UFormOutput.lfm
r59 r100 7 7 ClientHeight = 440 8 8 ClientWidth = 320 9 LCLVersion = '1.3' 9 DesignTimePPI = 144 10 LCLVersion = '1.8.4.0' 10 11 object Label2: TLabel 11 12 Left = 4 12 Height = 2 513 Height = 26 13 14 Top = 4 14 15 Width = 312 … … 20 21 object MemoOutput: TMemo 21 22 Left = 4 22 Height = 40 323 Top = 3 323 Height = 402 24 Top = 34 24 25 Width = 312 25 26 Align = alClient -
trunk/Forms/UFormOutput.pas
r67 r100 36 36 begin 37 37 if Core.CurrentTarget is TTargetInterpretter then 38 with TTargetInterpretter(Core.CurrentTarget) do 38 with TTargetInterpretter(Core.CurrentTarget) do begin 39 39 MemoOutput.Lines.Text := Output; 40 end; 40 41 end; 41 42 -
trunk/Install/deb/debian/control
r78 r100 3 3 Section: devel 4 4 Priority: optional 5 Standards-Version: 1. 0.05 Standards-Version: 1.1.0 6 6 Build-Depends: fpc, lazarus, lcl, lcl-utils, debhelper (>= 8) 7 7 … … 10 10 Depends: ${shlibs:Depends}, ${misc:Depends}, 11 11 Description: Simple BrainFuck IDE written in Lazarus/FPC. 12 HomePage: http ://svn.zdechov.net/trac/LazFuck12 HomePage: https://app.zdechov.net/LazFuck -
trunk/Install/win/LazFuck.iss
r98 r100 4 4 #define MyAppName "LazFuck" 5 5 #define MyAppNameShort "LazFuck" 6 #define MyAppVersion "1. 0"6 #define MyAppVersion "1.1.0" 7 7 #define MyAppVersionSuffix "alfa" 8 8 #define MyAppPublisher "Chronosoft" 9 9 #define MyAppPublisherShort "Chronosoft" 10 #define MyAppURL "http ://svn.zdechov.net/trac/LazFuck/"10 #define MyAppURL "https://app.zdechov.net/LazFuck/" 11 11 #define MyAppExeName "LazFuck.exe" 12 12 #define MyAppDebugName "LazFuck.dbg" -
trunk/LazFuck.lpi
r97 r100 244 244 <Filename Value="UBFHighlighter.pas"/> 245 245 <IsPartOfProject Value="True"/> 246 <UnitName Value="UBFHighlighter"/>247 246 </Unit26> 248 247 </Units> -
trunk/UCore.lfm
r96 r100 3 3 OnDestroy = DataModuleDestroy 4 4 OldCreateOrder = False 5 Height = 3616 HorizontalOffset = 6617 VerticalOffset = 3708 Width = 4249 PPI = 1 205 Height = 433 6 HorizontalOffset = 793 7 VerticalOffset = 444 8 Width = 509 9 PPI = 144 10 10 object ApplicationInfo: TApplicationInfo 11 11 Identification = 1 12 12 VersionMajor = 1 13 VersionMinor = 013 VersionMinor = 1 14 14 VersionBugFix = 0 15 15 VersionSuffix = 'alfa' 16 16 CompanyName = 'Chronosoft' 17 CompanyHomePage = 'http ://svn.zdechov.net/trac/LazFuck'18 HomePage = 'http ://svn.zdechov.net/trac/LazFuck'17 CompanyHomePage = 'https://app.zdechov.net/LazFuck' 18 HomePage = 'https://app.zdechov.net/LazFuck' 19 19 AuthorsName = 'Chronos' 20 20 EmailContact = 'robie@centrum.cz' … … 25 25 RegistryRoot = rrKeyCurrentUser 26 26 License = 'CC0' 27 left = 9028 top = 2 027 left = 108 28 top = 24 29 29 end 30 30 object CoolTranslator1: TCoolTranslator 31 31 POFilesFolder = 'Languages' 32 left = 9033 top = 9032 left = 108 33 top = 108 34 34 end 35 35 object LastOpenedList: TLastOpenedList 36 36 MaxCount = 10 37 left = 9038 top = 1 6037 left = 108 38 top = 192 39 39 end 40 40 object PersistentForm1: TPersistentForm 41 41 MinVisiblePart = 50 42 42 EntireVisible = False 43 left = 9044 top = 2 3043 left = 108 44 top = 276 45 45 end 46 46 object ImageListMain: TImageList 47 left = 3 1048 top = 2 047 left = 372 48 top = 24 49 49 Bitmap = { 50 50 4C691C0000001000000010000000000000000000000000000000000000000000 … … 949 949 object ScaleDPI1: TScaleDPI 950 950 AutoDetect = False 951 left = 3 10952 top = 1 00951 left = 372 952 top = 120 953 953 end 954 954 object ThemeManager: TThemeManager 955 left = 3 02956 top = 174955 left = 362 956 top = 209 957 957 end 958 958 end
Note:
See TracChangeset
for help on using the changeset viewer.