Changeset 22
- Timestamp:
- Apr 3, 2025, 10:58:56 PM (6 days ago)
- Location:
- trunk
- Files:
-
- 3 added
- 22 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 2 2 VCSCommander 3 3 VCSCommander.lps 4 VCSCommander.dbg 4 5 Config.xml 5 6 heaptrclog.trc
-
- Property svn:ignore
-
trunk/Backends/Bazaar/UBazaar.pas
r13 r22 1 1 unit UBazaar; 2 3 {$mode delphi}4 2 5 3 interface … … 20 18 21 19 TBazaar = class(TWorkingCopy) 22 private23 20 protected 24 21 procedure Execute(Parameters: array of string); -
trunk/Backends/CVS/UCVS.pas
r15 r22 1 1 unit UCVS; 2 3 {$mode delphi}4 2 5 3 interface -
trunk/Backends/Git/UGit.pas
r13 r22 1 1 unit UGit; 2 3 {$mode delphi}4 2 5 3 interface -
trunk/Backends/Subversion/USubversion.pas
r21 r22 1 1 unit USubversion; 2 3 {$mode delphi}4 2 5 3 interface … … 44 42 procedure Init; override; 45 43 end; 44 46 45 47 46 implementation -
trunk/Forms/UFormBrowse.pas
r21 r22 1 1 unit UFormBrowse; 2 3 {$mode delphi}4 2 5 3 interface … … 57 55 FormBrowse: TFormBrowse; 58 56 57 59 58 implementation 60 59 -
trunk/Forms/UFormCheckout.pas
r9 r22 1 1 unit UFormCheckout; 2 3 {$mode delphi}4 2 5 3 interface … … 28 26 procedure Button1Click(Sender: TObject); 29 27 procedure FormShow(Sender: TObject); 30 private31 { private declarations }32 public33 { public declarations }34 28 end; 35 29 36 30 var 37 31 FormCheckout: TFormCheckout; 32 38 33 39 34 implementation -
trunk/Forms/UFormCommit.pas
r7 r22 1 1 unit UFormCommit; 2 3 {$mode delphi}4 2 5 3 interface … … 25 23 procedure FormCreate(Sender: TObject); 26 24 procedure GroupBox1Click(Sender: TObject); 27 private28 { private declarations }29 public30 { public declarations }31 25 end; 32 26 33 27 var 34 28 FormCommit: TFormCommit; 29 35 30 36 31 implementation -
trunk/Forms/UFormConsole.pas
r16 r22 1 1 unit UFormConsole; 2 3 {$mode delphi}4 2 5 3 interface … … 26 24 private 27 25 Process: TProcess; 28 { private declarations }29 26 public 30 27 Executable: string; … … 39 36 var 40 37 FormConsole: TFormConsole; 38 41 39 42 40 implementation -
trunk/Forms/UFormFavorites.pas
r3 r22 1 1 unit UFormFavorites; 2 3 {$mode delphi}4 2 5 3 interface … … 10 8 type 11 9 TFormFavorites = class(TForm) 12 private13 { private declarations }14 public15 { public declarations }16 10 end; 17 11 18 12 var 19 13 FormFavorites: TFormFavorites; 14 20 15 21 16 implementation -
trunk/Forms/UFormLog.pas
r12 r22 1 1 unit UFormLog; 2 3 {$mode delphi}4 2 5 3 interface … … 27 25 procedure ListViewItemsSelectItem(Sender: TObject; Item: TListItem; 28 26 Selected: Boolean); 29 private30 { private declarations }31 27 public 32 28 FileName: string; … … 38 34 var 39 35 FormLog: TFormLog; 36 40 37 41 38 implementation -
trunk/Forms/UFormMain.lfm
r20 r22 1 1 object FormMain: TFormMain 2 2 Left = 687 3 Height = 5683 Height = 801 4 4 Top = 411 5 Width = 9395 Width = 1408 6 6 Caption = 'VCSCommander' 7 ClientHeight = 539 8 ClientWidth = 939 7 ClientHeight = 801 8 ClientWidth = 1408 9 DesignTimePPI = 144 9 10 Menu = MainMenu1 10 11 OnActivate = FormActivate … … 12 13 OnShow = FormShow 13 14 Position = poScreenCenter 14 LCLVersion = ' 1.5'15 LCLVersion = '3.6.0.0' 15 16 object ToolBarMain: TToolBar 16 17 Left = 0 17 Height = 2618 Height = 39 18 19 Top = 0 19 Width = 93920 Width = 1408 20 21 Caption = 'ToolBarMain' 21 22 Images = Core.ImageList1 … … 29 30 end 30 31 object ToolButton2: TToolButton 31 Left = 2432 Left = 36 32 33 Top = 2 33 34 Action = Core.AProjectOpen 34 35 end 35 36 object ToolButton3: TToolButton 36 Left = 4737 Left = 71 37 38 Top = 2 38 39 Action = Core.AProjectClose … … 41 42 object StatusBar1: TStatusBar 42 43 Left = 0 43 Height = 2 944 Top = 51045 Width = 93944 Height = 28 45 Top = 773 46 Width = 1408 46 47 Panels = <> 47 48 end 48 49 object MainMenu1: TMainMenu 49 50 Images = Core.ImageList1 50 left = 23251 top = 8851 Left = 348 52 Top = 132 52 53 object MenuItemFile: TMenuItem 53 54 Caption = 'Working copy' -
trunk/Forms/UFormMain.pas
r20 r22 1 1 unit UFormMain; 2 3 {$mode delphi}{$H+}4 2 5 3 interface … … 65 63 var 66 64 FormMain: TFormMain; 65 67 66 68 67 implementation -
trunk/Forms/UFormProjectGroup.pas
r19 r22 1 1 unit UFormProjectGroup; 2 3 {$mode delphi}4 2 5 3 interface … … 24 22 TreeView1: TTreeView; 25 23 procedure FormShow(Sender: TObject); 26 private27 { private declarations }28 24 public 29 25 procedure ReloadTree; … … 33 29 var 34 30 FormProjectGroup: TFormProjectGroup; 31 35 32 36 33 implementation -
trunk/Forms/UFormSettings.pas
r13 r22 1 1 unit UFormSettings; 2 3 {$mode delphi}4 2 5 3 interface … … 21 19 Label2: TLabel; 22 20 procedure FormCreate(Sender: TObject); 23 private24 { private declarations }25 21 public 26 22 procedure Load(XMLConfig: TXMLConfig); … … 30 26 var 31 27 FormSettings: TFormSettings; 28 32 29 33 30 implementation -
trunk/Forms/UFormTest.pas
r19 r22 1 1 unit UFormTest; 2 3 {$mode delphi}4 2 5 3 interface … … 24 22 procedure OperationStart(Name: string); 25 23 procedure OperationStop; 26 public27 { public declarations }28 24 end; 29 25 30 26 var 31 27 FormTest: TFormTest; 28 32 29 33 30 implementation … … 49 46 if ComboBox1.Items.Count > 0 then 50 47 ComboBox1.ItemIndex := 0; 51 52 48 end; 53 49 -
trunk/UCore.pas
r21 r22 1 1 unit UCore; 2 3 {$mode delphi}{$H+}4 2 5 3 interface … … 83 81 Core: TCore; 84 82 83 85 84 implementation 86 85 -
trunk/Units/UBackend.pas
r13 r22 1 1 unit UBackend; 2 3 {$mode delphi}4 2 5 3 interface … … 23 21 end; 24 22 23 25 24 implementation 26 25 -
trunk/Units/UProject.pas
r21 r22 1 1 unit UProject; 2 3 {$mode delphi}4 2 5 3 interface -
trunk/Units/UVCS.pas
r19 r22 1 1 unit UVCS; 2 3 {$mode delphi}4 2 5 3 interface … … 94 92 end; 95 93 96 97 94 function URLFromDirectory(DirName: string; Relative: Boolean): string; 98 95 … … 100 97 FileStatusStateText: array[TFileStatusState] of string = ('Not versioned', 101 98 'Added', 'Removed', 'Modified', 'Normal'); 99 102 100 103 101 implementation -
trunk/VCSCommander.lpi
r21 r22 11 11 <ResourceType Value="res"/> 12 12 <UseXPManifest Value="True"/> 13 <XPManifest> 14 <DpiAware Value="True"/> 15 </XPManifest> 13 16 <Icon Value="0"/> 14 17 </General> 15 18 <i18n> 16 <EnableI18N LFM="False"/> 19 <EnableI18N Value="True" LFM="False"/> 20 <OutDir Value="Languages"/> 17 21 </i18n> 18 22 <BuildModes Count="2"> … … 27 31 <IncludeFiles Value="$(ProjOutDir)"/> 28 32 <OtherUnitFiles Value="Forms;Units;Backends/Bazaar;Backends/Subversion;Backends/CVS;Backends/Git"/> 29 <UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS) "/>33 <UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS))-$(BuildMode)"/> 30 34 </SearchPaths> 31 35 <Parsing> … … 62 66 </CompilerOptions> 63 67 </Item2> 68 <SharedMatrixOptions Count="2"> 69 <Item1 ID="483634553940" Targets="Common" Modes="Debug" Value="-g -gl -gh -CirotR -O1 -dDPI"/> 70 <Item2 ID="924015825510" Targets="Common" Modes="Release" Value="-CX -XX -O3 -dDPI"/> 71 </SharedMatrixOptions> 64 72 </BuildModes> 65 73 <PublishOptions> … … 204 212 <IncludeFiles Value="$(ProjOutDir)"/> 205 213 <OtherUnitFiles Value="Forms;Units;Backends/Bazaar;Backends/Subversion;Backends/CVS;Backends/Git"/> 206 <UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS) "/>214 <UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)-$(BuildMode)"/> 207 215 </SearchPaths> 208 216 <Parsing> … … 222 230 <StackChecks Value="True"/> 223 231 </Checks> 232 <VerifyObjMethodCallValidity Value="True"/> 224 233 </CodeGeneration> 225 234 <Linking> 226 235 <Debugging> 227 236 <UseHeaptrc Value="True"/> 237 <UseExternalDbgSyms Value="True"/> 228 238 </Debugging> 229 239 <Options>
Note:
See TracChangeset
for help on using the changeset viewer.