- Timestamp:
- Feb 4, 2011, 1:16:43 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UInstanceOptions.pas
r6 r7 108 108 109 109 Edit1.Text := Instance.Name; 110 if Assigned(Instance.FPCSource) then 111 Edit2.Text := Instance.FPCSource.GetName 110 FPCSource := Instance.FPCSource; 111 IDESource := Instance.IDESource; 112 if Assigned(FPCSource) then 113 Edit2.Text := FPCSource.GetName 112 114 else Edit2.Text := ''; 113 if Assigned(I nstance.IDESource) then114 Edit3.Text := I nstance.IDESource.GetName115 if Assigned(IDESource) then 116 Edit3.Text := IDESource.GetName 115 117 else Edit3.Text := ''; 116 118 end; -
trunk/Forms/UMainForm.lfm
r6 r7 1 1 object MainForm: TMainForm 2 Left = 2 343 Height = 3804 Top = 1232 Left = 203 3 Height = 418 4 Top = 88 5 5 Width = 677 6 6 Caption = 'Free Pascal Manager' 7 ClientHeight = 3807 ClientHeight = 418 8 8 ClientWidth = 677 9 9 OnCreate = FormCreate … … 13 13 object ListView1: TListView 14 14 Left = 8 15 Height = 31 815 Height = 311 16 16 Top = 24 17 Width = 6 5817 Width = 666 18 18 Anchors = [akTop, akLeft, akRight, akBottom] 19 19 Columns = < … … 56 56 Left = 8 57 57 Height = 25 58 Top = 3 5058 Top = 343 59 59 Width = 64 60 60 Action = AAdd … … 65 65 Left = 80 66 66 Height = 25 67 Top = 3 5067 Top = 343 68 68 Width = 67 69 69 Action = ARemove … … 74 74 Left = 152 75 75 Height = 25 76 Top = 3 5076 Top = 343 77 77 Width = 56 78 78 Action = AStart … … 84 84 Left = 296 85 85 Height = 25 86 Top = 3 5086 Top = 343 87 87 Width = 64 88 88 Action = AUpdate … … 93 93 Left = 440 94 94 Height = 25 95 Top = 3 5095 Top = 343 96 96 Width = 59 97 97 Action = AEdit … … 102 102 Left = 368 103 103 Height = 25 104 Top = 3 50104 Top = 343 105 105 Width = 64 106 106 Action = ACompile … … 111 111 Left = 216 112 112 Height = 25 113 Top = 3 50113 Top = 343 114 114 Width = 72 115 115 Action = ADownload … … 118 118 end 119 119 object Options: TButton 120 Left = 591121 Height = 25 122 Top = 3 50120 Left = 8 121 Height = 25 122 Top = 387 123 123 Width = 75 124 124 Action = AOptions 125 Anchors = [akLeft, akBottom] 126 TabOrder = 8 127 end 128 object Bevel1: TBevel 129 Left = 8 130 Height = 3 131 Top = 375 132 Width = 664 133 Anchors = [akLeft, akRight, akBottom] 134 end 135 object Button7: TButton 136 Left = 93 137 Height = 25 138 Top = 387 139 Width = 75 140 Action = ASourceList 125 141 Anchors = [akRight, akBottom] 126 TabOrder = 8142 TabOrder = 9 127 143 end 128 144 object ActionList1: TActionList … … 161 177 OnExecute = AOptionsExecute 162 178 end 179 object ASourceList: TAction 180 Caption = 'Source list' 181 OnExecute = ASourceListExecute 182 end 163 183 end 164 184 object PopupMenu1: TPopupMenu -
trunk/Forms/UMainForm.pas
r6 r7 7 7 uses 8 8 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ComCtrls, 9 StdCtrls, ActnList, Menus, Contnrs, USource, UInstance, UInstanceOptions, 10 DOM, XMLWrite, XMLRead, HTTPSend, UMainOptions; 9 StdCtrls, ActnList, Menus, ExtCtrls, Contnrs, USource, UInstance, 10 UInstanceOptions, DOM, XMLWrite, XMLRead, HTTPSend, UMainOptions, 11 USourceSelection; 11 12 12 13 const … … 23 24 AAdd: TAction; 24 25 ACompile: TAction; 26 ASourceList: TAction; 25 27 AOptions: TAction; 26 28 AUpdate: TAction; … … 30 32 ADownload: TAction; 31 33 ActionList1: TActionList; 34 Bevel1: TBevel; 32 35 Button1: TButton; 33 36 Button2: TButton; … … 35 38 Button4: TButton; 36 39 Button5: TButton; 40 Button7: TButton; 37 41 Options: TButton; 38 42 ButtonEdit: TButton; … … 52 56 procedure AOptionsExecute(Sender: TObject); 53 57 procedure ARemoveExecute(Sender: TObject); 58 procedure ASourceListExecute(Sender: TObject); 54 59 procedure AStartExecute(Sender: TObject); 55 60 procedure ADownloadExecute(Sender: TObject); … … 150 155 end; 151 156 157 procedure TMainForm.ASourceListExecute(Sender: TObject); 158 begin 159 SourceSelectionForm.ProjectType := ''; 160 SourceSelectionForm.ShowModal; 161 end; 162 152 163 procedure TMainForm.AStartExecute(Sender: TObject); 153 164 begin … … 270 281 Instances.Clear; 271 282 Sources.Clear; 283 NewNode := Doc.DocumentElement.FindNode('Platform'); 284 if Assigned(NewNode) then 285 Platform := UTF8Encode(string(NewNode.TextContent)); 286 NewNode := Doc.DocumentElement.FindNode('TemplateDir'); 287 if Assigned(NewNode) then 288 TemplateDir := UTF8Encode(string(NewNode.TextContent)); 289 NewNode := Doc.DocumentElement.FindNode('SubversionDir'); 290 if Assigned(NewNode) then 291 SubversionDir := UTF8Encode(string(NewNode.TextContent)); 292 NewNode := Doc.DocumentElement.FindNode('SubversionDir'); 293 if Assigned(NewNode) then 294 SubversionDir := UTF8Encode(string(NewNode.TextContent)); 295 NewNode := Doc.DocumentElement.FindNode('InstanceDir'); 296 if Assigned(NewNode) then 297 InstanceDir := UTF8Encode(string(NewNode.TextContent)); 298 NewNode := Doc.DocumentElement.FindNode('SourceURL'); 299 if Assigned(NewNode) then 300 SourceURL := UTF8Encode(string(NewNode.TextContent)); 272 301 273 302 NewNode := Doc.DocumentElement.FindNode('Sources'); … … 361 390 AppendChild(RootNode); 362 391 with RootNode do begin 392 NewNode := OwnerDocument.CreateElement('Platform'); 393 NewNode.TextContent := UTF8Decode(Platform); 394 AppendChild(NewNode); 395 NewNode := OwnerDocument.CreateElement('TemplateDir'); 396 NewNode.TextContent := UTF8Decode(TemplateDir); 397 AppendChild(NewNode); 398 NewNode := OwnerDocument.CreateElement('SubversionDir'); 399 NewNode.TextContent := UTF8Decode(SubversionDir); 400 AppendChild(NewNode); 401 NewNode := OwnerDocument.CreateElement('SourceDir'); 402 NewNode.TextContent := UTF8Decode(SourceDir); 403 AppendChild(NewNode); 404 NewNode := OwnerDocument.CreateElement('InstanceDir'); 405 NewNode.TextContent := UTF8Decode(InstanceDir); 406 AppendChild(NewNode); 407 NewNode := OwnerDocument.CreateElement('SourceURL'); 408 NewNode.TextContent := UTF8Decode(SourceURL); 409 AppendChild(NewNode); 410 363 411 NewNode := OwnerDocument.CreateElement('Sources'); 364 412 with NewNode do -
trunk/Forms/UMainOptions.lfm
r6 r7 1 1 object MainOptionsForm: TMainOptionsForm 2 Left = 2332 Left = 320 3 3 Height = 350 4 Top = 735 Width = 6354 Top = 81 5 Width = 489 6 6 Caption = 'Options' 7 7 ClientHeight = 350 8 ClientWidth = 6358 ClientWidth = 489 9 9 OnShow = FormShow 10 10 LCLVersion = '0.9.31' 11 11 object Button1: TButton 12 Left = 46412 Left = 318 13 13 Height = 25 14 14 Top = 316 15 15 Width = 75 16 Anchors = [ak Left, akBottom]16 Anchors = [akRight, akBottom] 17 17 Caption = 'Cancel' 18 ModalResult = 2 19 OnClick = Button1Click 18 20 TabOrder = 0 19 21 end 20 22 object Button2: TButton 21 Left = 55223 Left = 406 22 24 Height = 22 23 25 Top = 319 24 26 Width = 75 25 Anchors = [ak Left, akBottom]27 Anchors = [akRight, akBottom] 26 28 Caption = 'Save' 29 ModalResult = 1 27 30 OnClick = Button2Click 28 31 TabOrder = 1 … … 40 43 Height = 21 41 44 Top = 24 42 Width = 61945 Width = 473 43 46 Anchors = [akTop, akLeft, akRight] 44 47 TabOrder = 2 … … 56 59 Height = 21 57 60 Top = 64 58 Width = 61961 Width = 473 59 62 Anchors = [akTop, akLeft, akRight] 60 63 TabOrder = 3 … … 72 75 Height = 21 73 76 Top = 104 74 Width = 62177 Width = 475 75 78 Anchors = [akTop, akLeft, akRight] 76 79 TabOrder = 4 … … 88 91 Height = 21 89 92 Top = 144 90 Width = 62193 Width = 475 91 94 Anchors = [akTop, akLeft, akRight] 92 95 TabOrder = 5 -
trunk/Forms/UMainOptions.pas
r6 r7 23 23 Label3: TLabel; 24 24 Label4: TLabel; 25 procedure Button1Click(Sender: TObject); 25 26 procedure Button2Click(Sender: TObject); 26 27 procedure FormShow(Sender: TObject); … … 59 60 end; 60 61 62 procedure TMainOptionsForm.Button1Click(Sender: TObject); 63 begin 64 65 end; 66 61 67 end. 62 68 -
trunk/Forms/UOperationProgress.lfm
r6 r7 1 1 object OperationProgressForm: TOperationProgressForm 2 Left = 2852 Left = 369 3 3 Height = 440 4 Top = 1 124 Top = 134 5 5 Width = 562 6 6 Caption = 'Operation progress' -
trunk/Forms/USourceSelection.lfm
r6 r7 20 20 item 21 21 Caption = 'Name' 22 Width = 7022 Width = 110 23 23 end 24 24 item -
trunk/Forms/USourceSelection.pas
r6 r7 49 49 Sources.Clear; 50 50 for I := 0 to MainForm.Sources.Count - 1 do 51 if TSource(MainForm.Sources[I]).ProjectType = ProjectType then 51 if (TSource(MainForm.Sources[I]).ProjectType = ProjectType) or 52 (ProjectType = '') then 52 53 Sources.Add(MainForm.Sources[I]); 53 54 if ListView1.Items.Count <> Sources.Count then -
trunk/FreePascalManager.lpi
r6 r7 46 46 <TopLine Value="1"/> 47 47 <CursorPos X="1" Y="15"/> 48 <UsageCount Value="11 4"/>48 <UsageCount Value="116"/> 49 49 </Unit0> 50 50 <Unit1> … … 56 56 <EditorIndex Value="0"/> 57 57 <WindowIndex Value="0"/> 58 <TopLine Value=" 1"/>59 <CursorPos X="3 " Y="16"/>60 <UsageCount Value="11 4"/>58 <TopLine Value="279"/> 59 <CursorPos X="35" Y="294"/> 60 <UsageCount Value="116"/> 61 61 <Loaded Value="True"/> 62 62 <LoadedDesigner Value="True"/> … … 70 70 <EditorIndex Value="2"/> 71 71 <WindowIndex Value="0"/> 72 <TopLine Value=" 48"/>73 <CursorPos X=" 27" Y="55"/>74 <UsageCount Value="11 4"/>72 <TopLine Value="96"/> 73 <CursorPos X="36" Y="108"/> 74 <UsageCount Value="116"/> 75 75 <Loaded Value="True"/> 76 76 <LoadedDesigner Value="True"/> … … 80 80 <IsPartOfProject Value="True"/> 81 81 <UnitName Value="UInstance"/> 82 <IsVisibleTab Value="True"/> 82 83 <EditorIndex Value="5"/> 83 84 <WindowIndex Value="0"/> 84 <TopLine Value=" 8"/>85 <CursorPos X=" 20" Y="21"/>86 <UsageCount Value="11 4"/>85 <TopLine Value="75"/> 86 <CursorPos X="1" Y="80"/> 87 <UsageCount Value="116"/> 87 88 <Loaded Value="True"/> 88 89 </Unit3> … … 91 92 <IsPartOfProject Value="True"/> 92 93 <UnitName Value="USource"/> 93 <IsVisibleTab Value="True"/>94 94 <EditorIndex Value="11"/> 95 95 <WindowIndex Value="0"/> 96 96 <TopLine Value="6"/> 97 97 <CursorPos X="8" Y="19"/> 98 <UsageCount Value="11 4"/>98 <UsageCount Value="116"/> 99 99 <Loaded Value="True"/> 100 100 </Unit4> … … 105 105 <TopLine Value="616"/> 106 106 <CursorPos X="40" Y="638"/> 107 <UsageCount Value="1 1"/>107 <UsageCount Value="12"/> 108 108 <Loaded Value="True"/> 109 109 </Unit5> … … 114 114 <TopLine Value="34"/> 115 115 <CursorPos X="20" Y="47"/> 116 <UsageCount Value=" 7"/>116 <UsageCount Value="6"/> 117 117 </Unit6> 118 118 <Unit7> … … 122 122 <TopLine Value="253"/> 123 123 <CursorPos X="14" Y="266"/> 124 <UsageCount Value="2 4"/>124 <UsageCount Value="23"/> 125 125 </Unit7> 126 126 <Unit8> … … 130 130 <TopLine Value="749"/> 131 131 <CursorPos X="3" Y="753"/> 132 <UsageCount Value="2 2"/>132 <UsageCount Value="21"/> 133 133 </Unit8> 134 134 <Unit9> … … 137 137 <TopLine Value="58"/> 138 138 <CursorPos X="72" Y="81"/> 139 <UsageCount Value="1 3"/>139 <UsageCount Value="12"/> 140 140 <DefaultSyntaxHighlighter Value="XML"/> 141 141 </Unit9> … … 145 145 <TopLine Value="1"/> 146 146 <CursorPos X="46" Y="49"/> 147 <UsageCount Value="1 1"/>147 <UsageCount Value="10"/> 148 148 <DefaultSyntaxHighlighter Value="XML"/> 149 149 </Unit10> … … 154 154 <TopLine Value="67"/> 155 155 <CursorPos X="17" Y="80"/> 156 <UsageCount Value="2 2"/>156 <UsageCount Value="21"/> 157 157 </Unit11> 158 158 <Unit12> … … 161 161 <TopLine Value="2639"/> 162 162 <CursorPos X="1" Y="2660"/> 163 <UsageCount Value=" 10"/>163 <UsageCount Value="9"/> 164 164 </Unit12> 165 165 <Unit13> … … 169 169 <TopLine Value="594"/> 170 170 <CursorPos X="14" Y="607"/> 171 <UsageCount Value=" 5"/>171 <UsageCount Value="4"/> 172 172 </Unit13> 173 173 <Unit14> … … 181 181 <TopLine Value="43"/> 182 182 <CursorPos X="3" Y="58"/> 183 <UsageCount Value="7 0"/>183 <UsageCount Value="72"/> 184 184 <Loaded Value="True"/> 185 185 <LoadedDesigner Value="True"/> … … 191 191 <TopLine Value="110"/> 192 192 <CursorPos X="33" Y="123"/> 193 <UsageCount Value="3 1"/>193 <UsageCount Value="30"/> 194 194 </Unit15> 195 195 <Unit16> … … 199 199 <TopLine Value="18"/> 200 200 <CursorPos X="16" Y="39"/> 201 <UsageCount Value=" 6"/>201 <UsageCount Value="5"/> 202 202 </Unit16> 203 203 <Unit17> … … 206 206 <TopLine Value="248"/> 207 207 <CursorPos X="3" Y="269"/> 208 <UsageCount Value=" 6"/>208 <UsageCount Value="5"/> 209 209 </Unit17> 210 210 <Unit18> … … 214 214 <TopLine Value="443"/> 215 215 <CursorPos X="3" Y="441"/> 216 <UsageCount Value="1 1"/>216 <UsageCount Value="12"/> 217 217 <Loaded Value="True"/> 218 218 </Unit18> … … 223 223 <TopLine Value="906"/> 224 224 <CursorPos X="16" Y="919"/> 225 <UsageCount Value=" 6"/>225 <UsageCount Value="5"/> 226 226 </Unit19> 227 227 <Unit20> … … 231 231 <TopLine Value="38"/> 232 232 <CursorPos X="3" Y="51"/> 233 <UsageCount Value=" 5"/>233 <UsageCount Value="4"/> 234 234 </Unit20> 235 235 <Unit21> … … 239 239 <WindowIndex Value="0"/> 240 240 <TopLine Value="1"/> 241 <CursorPos X=" 15" Y="12"/>242 <UsageCount Value=" 68"/>241 <CursorPos X="6" Y="22"/> 242 <UsageCount Value="70"/> 243 243 <Loaded Value="True"/> 244 244 <DefaultSyntaxHighlighter Value="None"/> … … 251 251 <TopLine Value="254"/> 252 252 <CursorPos X="10" Y="265"/> 253 <UsageCount Value="1 1"/>253 <UsageCount Value="12"/> 254 254 <Loaded Value="True"/> 255 255 </Unit22> … … 260 260 <TopLine Value="785"/> 261 261 <CursorPos X="22" Y="993"/> 262 <UsageCount Value=" 30"/>262 <UsageCount Value="29"/> 263 263 </Unit23> 264 264 <Unit24> … … 270 270 <EditorIndex Value="1"/> 271 271 <WindowIndex Value="0"/> 272 <TopLine Value=" 22"/>273 <CursorPos X=" 17" Y="57"/>274 <UsageCount Value="6 1"/>272 <TopLine Value="43"/> 273 <CursorPos X="22" Y="57"/> 274 <UsageCount Value="63"/> 275 275 <Loaded Value="True"/> 276 276 <LoadedDesigner Value="True"/> … … 282 282 <TopLine Value="144"/> 283 283 <CursorPos X="1" Y="157"/> 284 <UsageCount Value=" 10"/>284 <UsageCount Value="9"/> 285 285 </Unit25> 286 286 <Unit26> … … 289 289 <TopLine Value="2676"/> 290 290 <CursorPos X="1" Y="2689"/> 291 <UsageCount Value="1 1"/>291 <UsageCount Value="10"/> 292 292 </Unit26> 293 293 <Unit27> … … 296 296 <TopLine Value="376"/> 297 297 <CursorPos X="1" Y="389"/> 298 <UsageCount Value=" 10"/>298 <UsageCount Value="9"/> 299 299 </Unit27> 300 300 <Unit28> … … 320 320 <EditorIndex Value="4"/> 321 321 <WindowIndex Value="0"/> 322 <TopLine Value=" 18"/>323 <CursorPos X="3 4" Y="69"/>324 <UsageCount Value="2 1"/>322 <TopLine Value="38"/> 323 <CursorPos X="33" Y="54"/> 324 <UsageCount Value="24"/> 325 325 <Loaded Value="True"/> 326 326 <LoadedDesigner Value="True"/> … … 332 332 <TopLine Value="760"/> 333 333 <CursorPos X="1" Y="773"/> 334 <UsageCount Value="1 0"/>334 <UsageCount Value="11"/> 335 335 <Loaded Value="True"/> 336 336 </Unit31> … … 338 338 <JumpHistory Count="30" HistoryIndex="29"> 339 339 <Position1> 340 <Filename Value="Forms\U SourceSelection.pas"/>341 <Caret Line=" 62" Column="18" TopLine="49"/>340 <Filename Value="Forms\UInstanceOptions.pas"/> 341 <Caret Line="112" Column="41" TopLine="92"/> 342 342 </Position1> 343 343 <Position2> 344 344 <Filename Value="Forms\UInstanceOptions.pas"/> 345 <Caret Line=" 9" Column="47" TopLine="4"/>345 <Caret Line="86" Column="21" TopLine="65"/> 346 346 </Position2> 347 347 <Position3> 348 348 <Filename Value="Forms\UInstanceOptions.pas"/> 349 <Caret Line=" 74" Column="72" TopLine="61"/>349 <Caret Line="62" Column="17" TopLine="51"/> 350 350 </Position3> 351 351 <Position4> 352 <Filename Value="Forms\U InstanceOptions.pas"/>353 <Caret Line=" 73" Column="16" TopLine="60"/>352 <Filename Value="Forms\USourceSelection.pas"/> 353 <Caret Line="86" Column="5" TopLine="79"/> 354 354 </Position4> 355 355 <Position5> 356 356 <Filename Value="Forms\USourceSelection.pas"/> 357 <Caret Line="2 1" Column="29" TopLine="1"/>357 <Caret Line="29" Column="19" TopLine="16"/> 358 358 </Position5> 359 359 <Position6> 360 <Filename Value=" Forms\USourceSelection.pas"/>361 <Caret Line="2 0" Column="15" TopLine="7"/>360 <Filename Value="USource.pas"/> 361 <Caret Line="29" Column="53" TopLine="21"/> 362 362 </Position6> 363 363 <Position7> 364 <Filename Value=" Forms\UInstanceOptions.pas"/>365 <Caret Line=" 81" Column="1" TopLine="68"/>364 <Filename Value="USource.pas"/> 365 <Caret Line="55" Column="40" TopLine="157"/> 366 366 </Position7> 367 367 <Position8> 368 <Filename Value=" Forms\UInstanceOptions.pas"/>369 <Caret Line=" 85" Column="1" TopLine="72"/>368 <Filename Value="USource.pas"/> 369 <Caret Line="19" Column="10" TopLine="7"/> 370 370 </Position8> 371 371 <Position9> 372 <Filename Value="Forms\U InstanceOptions.pas"/>373 <Caret Line=" 59" Column="54" TopLine="52"/>372 <Filename Value="Forms\UMainForm.pas"/> 373 <Caret Line="366" Column="47" TopLine="356"/> 374 374 </Position9> 375 375 <Position10> 376 <Filename Value="Forms\U InstanceOptions.pas"/>377 <Caret Line=" 73" Column="1" TopLine="65"/>376 <Filename Value="Forms\UMainForm.pas"/> 377 <Caret Line="364" Column="44" TopLine="353"/> 378 378 </Position10> 379 379 <Position11> 380 <Filename Value="Forms\U InstanceOptions.pas"/>381 <Caret Line=" 110" Column="1" TopLine="85"/>380 <Filename Value="Forms\UMainForm.pas"/> 381 <Caret Line="367" Column="42" TopLine="353"/> 382 382 </Position11> 383 383 <Position12> 384 <Filename Value="Forms\U InstanceOptions.pas"/>385 <Caret Line=" 90" Column="1" TopLine="65"/>384 <Filename Value="Forms\UMainForm.pas"/> 385 <Caret Line="370" Column="52" TopLine="354"/> 386 386 </Position12> 387 387 <Position13> 388 <Filename Value="Forms\U InstanceOptions.pas"/>389 <Caret Line=" 74" Column="49" TopLine="62"/>388 <Filename Value="Forms\UMainForm.pas"/> 389 <Caret Line="276" Column="32" TopLine="265"/> 390 390 </Position13> 391 391 <Position14> 392 <Filename Value="Forms\U InstanceOptions.pas"/>393 <Caret Line=" 88" Column="26" TopLine="75"/>392 <Filename Value="Forms\UMainOptions.pas"/> 393 <Caret Line="44" Column="44" TopLine="37"/> 394 394 </Position14> 395 395 <Position15> 396 <Filename Value="Forms\U InstanceOptions.pas"/>397 <Caret Line=" 115" Column="33" TopLine="95"/>396 <Filename Value="Forms\UMainForm.pas"/> 397 <Caret Line="389" Column="58" TopLine="378"/> 398 398 </Position15> 399 399 <Position16> 400 <Filename Value=" UInstance.pas"/>401 <Caret Line="2 1" Column="20" TopLine="8"/>400 <Filename Value="Forms\UMainForm.pas"/> 401 <Caret Line="293" Column="45" TopLine="279"/> 402 402 </Position16> 403 403 <Position17> 404 <Filename Value=" USource.pas"/>405 <Caret Line=" 32" Column="27" TopLine="8"/>404 <Filename Value="Forms\UMainOptions.pas"/> 405 <Caret Line="45" Column="44" TopLine="38"/> 406 406 </Position17> 407 407 <Position18> 408 <Filename Value="Forms\U InstanceOptions.pas"/>409 <Caret Line=" 86" Column="42" TopLine="73"/>408 <Filename Value="Forms\UMainOptions.pas"/> 409 <Caret Line="64" Column="3" TopLine="43"/> 410 410 </Position18> 411 411 <Position19> 412 <Filename Value="Forms\U InstanceOptions.pas"/>413 <Caret Line=" 73" Column="43" TopLine="60"/>412 <Filename Value="Forms\UMainForm.pas"/> 413 <Caret Line="268" Column="16" TopLine="258"/> 414 414 </Position19> 415 415 <Position20> 416 <Filename Value="Forms\U InstanceOptions.pas"/>417 <Caret Line=" 86" Column="43" TopLine="73"/>416 <Filename Value="Forms\UMainForm.pas"/> 417 <Caret Line="269" Column="16" TopLine="259"/> 418 418 </Position20> 419 419 <Position21> 420 <Filename Value=" USource.pas"/>421 <Caret Line=" 32" Column="17" TopLine="19"/>420 <Filename Value="Forms\UMainForm.pas"/> 421 <Caret Line="270" Column="16" TopLine="260"/> 422 422 </Position21> 423 423 <Position22> 424 424 <Filename Value="Forms\UMainForm.pas"/> 425 <Caret Line="2 19" Column="37" TopLine="201"/>425 <Caret Line="277" Column="16" TopLine="267"/> 426 426 </Position22> 427 427 <Position23> 428 <Filename Value="Forms\U InstanceOptions.pas"/>429 <Caret Line="1 12" Column="41" TopLine="92"/>428 <Filename Value="Forms\UMainForm.pas"/> 429 <Caret Line="158" Column="19" TopLine="156"/> 430 430 </Position23> 431 431 <Position24> 432 <Filename Value="Forms\U InstanceOptions.pas"/>433 <Caret Line=" 86" Column="21" TopLine="65"/>432 <Filename Value="Forms\UMainForm.pas"/> 433 <Caret Line="11" Column="19" TopLine="1"/> 434 434 </Position24> 435 435 <Position25> 436 <Filename Value="Forms\U InstanceOptions.pas"/>437 <Caret Line=" 62" Column="17" TopLine="51"/>436 <Filename Value="Forms\UMainForm.pas"/> 437 <Caret Line="159" Column="24" TopLine="146"/> 438 438 </Position25> 439 439 <Position26> 440 440 <Filename Value="Forms\USourceSelection.pas"/> 441 <Caret Line=" 86" Column="5" TopLine="79"/>441 <Caret Line="54" Column="33" TopLine="38"/> 442 442 </Position26> 443 443 <Position27> 444 <Filename Value="Forms\U SourceSelection.pas"/>445 <Caret Line="29 " Column="19" TopLine="16"/>444 <Filename Value="Forms\UMainForm.pas"/> 445 <Caret Line="294" Column="35" TopLine="279"/> 446 446 </Position27> 447 447 <Position28> 448 <Filename Value="U Source.pas"/>449 <Caret Line=" 29" Column="53" TopLine="21"/>448 <Filename Value="UInstance.pas"/> 449 <Caret Line="90" Column="25" TopLine="75"/> 450 450 </Position28> 451 451 <Position29> 452 <Filename Value="U Source.pas"/>453 <Caret Line=" 55" Column="40" TopLine="157"/>452 <Filename Value="UInstance.pas"/> 453 <Caret Line="80" Column="1" TopLine="75"/> 454 454 </Position29> 455 455 <Position30> 456 <Filename Value="U Source.pas"/>457 <Caret Line=" 19" Column="10" TopLine="7"/>456 <Filename Value="UInstance.pas"/> 457 <Caret Line="91" Column="51" TopLine="75"/> 458 458 </Position30> 459 459 </JumpHistory> … … 496 496 </CompilerOptions> 497 497 <Debugging> 498 <BreakPoints Count="1">499 <Item1>500 <Source Value="UInstance.pas"/>501 <Line Value="94"/>502 </Item1>503 </BreakPoints>504 498 <Exceptions Count="3"> 505 499 <Item1> -
trunk/ReadMe.txt
r6 r7 1 1 =FreePascalManager= 2 3 Date: 2011-02-04 2 4 3 5 ==Features== … … 8 10 * Can be placed to removable drive (configuration stored in XML file) 9 11 12 =Dependecies= 13 14 '''Packages:''' 15 16 * Synapse 17 18 '''External programs:''' 19 20 * Subversion 21 * InnoSetup 22 10 23 =Download= 11 24 … … 13 26 http://svn.zdechov.net/svn/FreePascalManager/trunk 14 27 15 = Author=28 =Contributors= 16 29 17 Email: robie@centrum.cz (Chronos)30 * Chronos (robie@centrum.cz) 18 31 19 32 -
trunk/UInstance.pas
r6 r7 78 78 procedure TInstance.Build; 79 79 begin 80 (*OperationProgressForm.Environment := 'path=' + MainForm.GetBinUtilsDir;80 OperationProgressForm.Environment := 'path=' + MainForm.GetBinUtilsDir; 81 81 OperationProgressForm.Path := GetPath + DirectorySeparator + FPCSource.ProjectShortName; 82 OperationProgressForm.CommandLine := 'make all PP="' +82 OperationProgressForm.CommandLine := 'make clean all PP="' + 83 83 MainForm.GetBinUtilsDir + DirectorySeparator + 'fpc"'; 84 84 OperationProgressForm.ShowModal; … … 90 90 ' PP="' + MainForm.GetBinUtilsDir + DirectorySeparator + 'fpc"'; 91 91 OperationProgressForm.ShowModal; 92 *)93 92 94 93 if Assigned(IDESource) then begin
Note:
See TracChangeset
for help on using the changeset viewer.