mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-07-01 05:46:06 -04:00
--User changes
-Allow dragging in folders which will be recursively traversed for flame files. -Allow for adjusting scale via keyboard with the < and > keys. -Show the count of opened flames on the header of the library tree. --Bug fixes -Attempt to preserve xaos when pasting xforms. --Code changes -Default flam3 compatibility mode to true.
This commit is contained in:
@ -1,6 +1,5 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Windows.Forms;
|
||||
|
||||
@ -544,12 +543,13 @@ namespace apoconv
|
||||
var lines = File.ReadAllLines(file);
|
||||
tb1lines.AddRange(lines.ToList());
|
||||
final += Apo2Fractorium(lines, true);
|
||||
/*
|
||||
var guid = Guid.NewGuid();
|
||||
var fileonly = System.IO.Path.GetFileName(file);
|
||||
final += "<Component Id=\"" + fileonly + "\" Guid=\"" + guid + "\">\n";
|
||||
final += "\t<File Id=\"" + fileonly + "\" Source = \"$(var.SolutionDir)..\\..\\..\\Data\\" + fileonly + "\" KeyPath=\"yes\" Checksum=\"yes\" ReadOnly=\"yes\"/>\n";
|
||||
final += "</Component>\n\n";
|
||||
/*
|
||||
|
||||
var guid = Guid.NewGuid();
|
||||
var fileonly = System.IO.Path.GetFileName(file);
|
||||
final += "<Component Id=\"" + fileonly + "\" Guid=\"" + guid + "\">\n";
|
||||
final += "\t<File Id=\"" + fileonly + "\" Source = \"$(var.SolutionDir)..\\..\\..\\Data\\" + fileonly + "\" KeyPath=\"yes\" Checksum=\"yes\" ReadOnly=\"yes\"/>\n";
|
||||
final += "</Component>\n\n";
|
||||
*/
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user