Changeset 177 for tags/1.3.0
- Timestamp:
- Aug 21, 2024, 11:49:46 AM (3 months ago)
- Location:
- tags/1.3.0
- Files:
-
- 5 added
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
tags/1.3.0/Core.pas
r162 r177 271 271 if (DesignDPI.X <> DPI.X) or (DesignDPI.Y <> DPI.Y) then begin 272 272 //ApplyToAll(DesignDPI); 273 for I := 0 to Screen.FormCount - 1 do273 {for I := 0 to Screen.FormCount - 1 do 274 274 if (Screen.Forms[I].WindowState = wsNormal) or 275 275 (Screen.Forms[I].WindowState = wsMinimized) then begin … … 277 277 ScaleDimensions(Screen.Forms[I], StoredDimension); 278 278 end; 279 } 279 280 ScaleImageList(ImageListMain, DesignDPI); 280 281 end; -
tags/1.3.0/Forms/FormConsole.lfm
r153 r177 22 22 Anchors = [akTop, akLeft, akRight, akBottom] 23 23 BorderSpacing.Around = 3 24 Font.Name = 'Courier New' 24 Font.Height = 20 25 Font.Name = 'Liberation Mono' 26 Font.Pitch = fpFixed 25 27 ParentFont = False 26 28 ReadOnly = True -
tags/1.3.0/Forms/FormInput.lfm
r153 r177 16 16 Align = alClient 17 17 BorderSpacing.Around = 6 18 Font.Name = 'Courier New' 18 Font.Height = 20 19 Font.Name = 'Libertation Mono' 20 Font.Pitch = fpFixed 19 21 ParentFont = False 20 22 ScrollBars = ssAutoBoth -
tags/1.3.0/Forms/FormMain.pas
r173 r177 374 374 AProgramRunToCursor.Enabled := CanDebug and (tcRunToCursor in CurrentTarget.Capabilities); 375 375 AProgramStepOver.Enabled := CanDebug and (tcStepOver in CurrentTarget.Capabilities); 376 AProgramShowExecutionPoint.Enabled := CanDebug and (tcPause in CurrentTarget.Capabilities); 376 AProgramShowExecutionPoint.Enabled := CanDebug and (tcPause in CurrentTarget.Capabilities) and 377 (CurrentTarget.State = rsPaused); 377 378 AShowSourcePosition.Enabled := CurrentTarget.Compiled; 378 379 AShowTargetPosition.Enabled := CurrentTarget.Compiled; … … 689 690 DebugStep := Core.Core.CurrentTarget.DebugSteps.SearchByProgramPos( 690 691 Core.Core.CurrentTarget.ExecutionPosition); 691 FormSourceCode.SynEditSource.SelStart := DebugStep.SourcePosition + 1; 692 FormTargetCode.SynEditTarget.SelStart := DebugStep.TargetPosition + 1; 693 if PageControlMain.TabIndex = 0 then FormSourceCode.SynEditSource.SetFocus; 694 if PageControlMain.TabIndex = 1 then FormTargetCode.SynEditTarget.SetFocus; 692 if Assigned(DebugStep) then begin 693 FormSourceCode.SynEditSource.SelStart := DebugStep.SourcePosition + 1; 694 FormTargetCode.SynEditTarget.SelStart := DebugStep.TargetPosition + 1; 695 if PageControlMain.TabIndex = 0 then FormSourceCode.SynEditSource.SetFocus; 696 if PageControlMain.TabIndex = 1 then FormTargetCode.SynEditTarget.SetFocus; 697 end; 695 698 end; 696 699 -
tags/1.3.0/Forms/FormMemory.lfm
r153 r177 40 40 Width = 508 41 41 end> 42 Font.Name = 'Courier New' 42 Font.Height = 20 43 Font.Name = 'Liberation Mono' 44 Font.Pitch = fpFixed 43 45 OwnerData = True 44 46 ParentFont = False -
tags/1.3.0/Forms/FormOutput.lfm
r153 r177 26 26 Align = alClient 27 27 BorderSpacing.Around = 4 28 Font.Name = 'Courier New' 28 Font.Height = 20 29 Font.Name = 'Liberation Mono' 30 Font.Pitch = fpFixed 29 31 ParentFont = False 30 32 ScrollBars = ssAutoBoth -
tags/1.3.0/Forms/FormSourceCode.lfm
r154 r177 17 17 Width = 672 18 18 Align = alClient 19 Font.Height = 1320 Font.Name = ' Courier New'19 Font.Height = 20 20 Font.Name = 'Liberation Mono' 21 21 Font.Pitch = fpFixed 22 Font.Quality = fq NonAntialiased22 Font.Quality = fqAntialiased 23 23 ParentColor = False 24 24 ParentFont = False … … 27 27 OnKeyUp = MemoSourceKeyUp 28 28 OnMouseDown = MemoSourceMouseDown 29 Gutter.Width = 7629 Gutter.Width = 84 30 30 Gutter.MouseActions = <> 31 31 RightGutter.Width = 0 … … 481 481 end 482 482 object SynGutterLineNumber1: TSynGutterLineNumber 483 Width = 17483 Width = 25 484 484 MouseActions = <> 485 485 MarkupInfo.Background = clBtnFace -
tags/1.3.0/Forms/FormTargetCode.lfm
r157 r177 16 16 Width = 734 17 17 Align = alClient 18 Font.Height = 1319 Font.Name = ' Courier New'18 Font.Height = 20 19 Font.Name = 'Liberation Mono' 20 20 Font.Pitch = fpFixed 21 Font.Quality = fq NonAntialiased21 Font.Quality = fqAntialiased 22 22 ParentColor = False 23 23 ParentFont = False 24 24 PopupMenu = PopupMenuTarget 25 25 TabOrder = 0 26 Gutter.Width = 7726 Gutter.Width = 85 27 27 Gutter.MouseActions = <> 28 28 RightGutter.Width = 0 … … 477 477 end 478 478 object SynGutterLineNumber1: TSynGutterLineNumber 479 Width = 17479 Width = 25 480 480 MouseActions = <> 481 481 MarkupInfo.Background = clBtnFace -
tags/1.3.0/Packages/Common/Common.pas
r162 r177 597 597 598 598 if (ExitCode <> 0) or (Error <> '') then 599 raise Exception.Create(Format(SExecutionError, [ Error, ExitCode]));599 raise Exception.Create(Format(SExecutionError, [Output + Error, ExitCode])); 600 600 finally 601 601 Process.Free; -
tags/1.3.0/Release Notes.txt
r169 r177 12 12 * Modified: Used loop in number generation. 13 13 * Modified: Used scrollbox in target options form. 14 * Modified: Use monospace font. 15 * Modified: Do not extra scale controls dimensions. 14 16 * Fixed: Update cursor position in status bar. 15 17 * Fixed: Memory leak in target code form. … … 18 20 * Fixed: OpenDialog was not initialized in Target options form. 19 21 * Fixed: Put compiled files into application data directory if source is in read only directory. 22 * Fixed: Error on showing execution point in not paused state. 20 23 21 24 Version 1.2.0 (2022-03-05)
Note:
See TracChangeset
for help on using the changeset viewer.