diff --git a/plugins/MacAU/Ditherbox/Ditherbox.cpp b/plugins/MacAU/Ditherbox/Ditherbox.cpp
index 6fae7f1df..990714913 100755
--- a/plugins/MacAU/Ditherbox/Ditherbox.cpp
+++ b/plugins/MacAU/Ditherbox/Ditherbox.cpp
@@ -340,6 +340,7 @@ void Ditherbox::DitherboxKernel::Process( const Float32 *inSourceP,
case 3:
inputSample += (double(fpd)/UINT32_MAX);
+ fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
inputSample += (double(fpd)/UINT32_MAX);
inputSample -= 1.0;
inputSample = floor(inputSample);
@@ -415,36 +416,52 @@ void Ditherbox::DitherboxKernel::Process( const Float32 *inSourceP,
case 8:
absSample = ((double(fpd)/UINT32_MAX) - 0.5);
+ fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
ns[0] += absSample; ns[0] /= 2; absSample -= ns[0];
absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
ns[1] += absSample; ns[1] /= 2; absSample -= ns[1];
absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
ns[2] += absSample; ns[2] /= 2; absSample -= ns[2];
absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
ns[3] += absSample; ns[3] /= 2; absSample -= ns[3];
absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
ns[4] += absSample; ns[4] /= 2; absSample -= ns[4];
absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
ns[5] += absSample; ns[5] /= 2; absSample -= ns[5];
absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
ns[6] += absSample; ns[6] /= 2; absSample -= ns[6];
absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
ns[7] += absSample; ns[7] /= 2; absSample -= ns[7];
absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
ns[8] += absSample; ns[8] /= 2; absSample -= ns[8];
absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
ns[9] += absSample; ns[9] /= 2; absSample -= ns[9];
absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
ns[10] += absSample; ns[10] /= 2; absSample -= ns[10];
absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
ns[11] += absSample; ns[11] /= 2; absSample -= ns[11];
absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
ns[12] += absSample; ns[12] /= 2; absSample -= ns[12];
absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
ns[13] += absSample; ns[13] /= 2; absSample -= ns[13];
absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
ns[14] += absSample; ns[14] /= 2; absSample -= ns[14];
absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
ns[15] += absSample; ns[15] /= 2; absSample -= ns[15];
//install noise and then shape it
absSample += inputSample;
@@ -467,7 +484,10 @@ void Ditherbox::DitherboxKernel::Process( const Float32 *inSourceP,
if (inputSample > 0) inputSample += 0.383;
if (inputSample < 0) inputSample -= 0.383;
//adjusting to permit more information drug outta the noisefloor
- contingentRnd = (((double(fpd)/UINT32_MAX)+(double(fpd)/UINT32_MAX))-1.0) * randyConstant; //produce TPDF dist, scale
+ contingentRnd = (double(fpd)/UINT32_MAX);
+ fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
+ contingentRnd += ((double(fpd)/UINT32_MAX)-1.0);
+ contingentRnd *= randyConstant; //produce TPDF dist, scale
contingentRnd -= contingentErr*omegaConstant; //include err
absSample = fabs(inputSample);
contingentErr = absSample - floor(absSample); //get next err
@@ -773,12 +793,13 @@ void Ditherbox::DitherboxKernel::Process( const Float32 *inSourceP,
if (inputSample > 0.0) inputSample = bridgerectifier;
else inputSample = -bridgerectifier;
- silhouette = rand()/(double)RAND_MAX;
+ silhouette = (double(fpd)/UINT32_MAX);
+ fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
silhouette -= 0.5;
silhouette *= 2.0;
silhouette *= fabs(inputSample);
- smoother = rand()/(double)RAND_MAX;
+ smoother = (double(fpd)/UINT32_MAX);
smoother -= 0.5;
smoother *= 2.0;
smoother *= fabs(lastSample);
diff --git a/plugins/MacAU/Ditherbox/Ditherbox.xcodeproj/christopherjohnson.pbxuser b/plugins/MacAU/Ditherbox/Ditherbox.xcodeproj/christopherjohnson.pbxuser
index 92bc90752..1fee3acd7 100755
--- a/plugins/MacAU/Ditherbox/Ditherbox.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacAU/Ditherbox/Ditherbox.xcodeproj/christopherjohnson.pbxuser
@@ -51,54 +51,24 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 667765256;
- PBXWorkspaceStateSaveDate = 667765256;
+ PBXPerProjectTemplateStateSaveDate = 667862456;
+ PBXWorkspaceStateSaveDate = 667862456;
};
perUserProjectItems = {
- 8B1A9D7E27CD4A0F00649D11 /* PBXTextBookmark */ = 8B1A9D7E27CD4A0F00649D11 /* PBXTextBookmark */;
- 8B1A9D9727CD4B5500649D11 /* PBXTextBookmark */ = 8B1A9D9727CD4B5500649D11 /* PBXTextBookmark */;
- 8B913FA3213DBD2F00BA6EEC /* PBXTextBookmark */ = 8B913FA3213DBD2F00BA6EEC /* PBXTextBookmark */;
+ 8BC92D7427CE94890091806E /* PBXTextBookmark */ = 8BC92D7427CE94890091806E /* PBXTextBookmark */;
+ 8BDCA65027CEC64B00A07B67 /* PBXTextBookmark */ = 8BDCA65027CEC64B00A07B67 /* PBXTextBookmark */;
+ 8BDCA65127CEC64B00A07B67 /* PBXTextBookmark */ = 8BDCA65127CEC64B00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8BD3CCB8148830B20062E48C /* Source Control */;
userBuildSettings = {
};
};
- 8B1A9D7E27CD4A0F00649D11 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 8BC6025B073B072D006C4272 /* Ditherbox.h */;
- name = "Ditherbox.h: 224";
- rLen = 0;
- rLoc = 8437;
- rType = 0;
- vrLen = 0;
- vrLoc = 0;
- };
- 8B1A9D9727CD4B5500649D11 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 8BC6025B073B072D006C4272 /* Ditherbox.h */;
- name = "Ditherbox.h: 224";
- rLen = 0;
- rLoc = 8437;
- rType = 0;
- vrLen = 0;
- vrLoc = 0;
- };
- 8B913FA3213DBD2F00BA6EEC /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 8BA05A660720730100365D66 /* Ditherbox.cpp */;
- name = "Ditherbox.cpp: 302";
- rLen = 79;
- rLoc = 10893;
- rType = 0;
- vrLen = 342;
- vrLoc = 10516;
- };
8BA05A660720730100365D66 /* Ditherbox.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1236, 15444}}";
- sepNavSelRange = "{9249, 0}";
- sepNavVisRange = "{8869, 1040}";
- sepNavWindowFrame = "{{314, 4}, {816, 694}}";
+ sepNavIntBoundsRect = "{{0, 0}, {948, 15084}}";
+ sepNavSelRange = "{17328, 0}";
+ sepNavVisRange = "{3, 65}";
+ sepNavWindowFrame = "{{118, 19}, {1111, 679}}";
};
};
8BA05A670720730100365D66 /* Ditherbox.exp */ = {
@@ -133,6 +103,16 @@
sepNavWindowFrame = "{{259, 4}, {1021, 694}}";
};
};
+ 8BC92D7427CE94890091806E /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 8BC6025B073B072D006C4272 /* Ditherbox.h */;
+ name = "Ditherbox.h: 224";
+ rLen = 0;
+ rLoc = 8437;
+ rType = 0;
+ vrLen = 0;
+ vrLoc = 0;
+ };
8BD3CCB8148830B20062E48C /* Source Control */ = {
isa = PBXSourceControlManager;
fallbackIsa = XCSourceControlManager;
@@ -147,6 +127,26 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
+ 8BDCA65027CEC64B00A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 8BA05A660720730100365D66 /* Ditherbox.cpp */;
+ name = "Ditherbox.cpp: 489";
+ rLen = 0;
+ rLoc = 17328;
+ rType = 0;
+ vrLen = 65;
+ vrLoc = 3;
+ };
+ 8BDCA65127CEC64B00A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 8BA05A660720730100365D66 /* Ditherbox.cpp */;
+ name = "Ditherbox.cpp: 489";
+ rLen = 0;
+ rLoc = 17328;
+ rType = 0;
+ vrLen = 65;
+ vrLoc = 3;
+ };
8D01CCC60486CAD60068D4B7 /* Ditherbox */ = {
activeExec = 0;
};
diff --git a/plugins/MacAU/Ditherbox/Ditherbox.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacAU/Ditherbox/Ditherbox.xcodeproj/christopherjohnson.perspectivev3
index 53fb57e5a..130998723 100755
--- a/plugins/MacAU/Ditherbox/Ditherbox.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacAU/Ditherbox/Ditherbox.xcodeproj/christopherjohnson.perspectivev3
@@ -324,7 +324,7 @@
185
RubberWindowFrame
- 349 138 810 487 0 0 1280 698
+ 125 171 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -340,7 +340,7 @@
PBXProjectModuleGUID
8B9E7EE61DDE28AC006035FA
PBXProjectModuleLabel
- Ditherbox.h
+ Ditherbox.cpp
PBXSplitModuleInNavigatorKey
Split0
@@ -348,15 +348,15 @@
PBXProjectModuleGUID
8B9E7EE71DDE28AC006035FA
PBXProjectModuleLabel
- Ditherbox.h
+ Ditherbox.cpp
_historyCapacity
0
bookmark
- 8B1A9D9727CD4B5500649D11
+ 8BDCA65127CEC64B00A07B67
history
- 8B913FA3213DBD2F00BA6EEC
- 8B1A9D7E27CD4A0F00649D11
+ 8BC92D7427CE94890091806E
+ 8BDCA65027CEC64B00A07B67
SplitCount
@@ -370,18 +370,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 32}}
+ {{0, 0}, {603, 132}}
RubberWindowFrame
- 349 138 810 487 0 0 1280 698
+ 125 171 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 32pt
+ 132pt
Proportion
- 409pt
+ 309pt
Tabs
@@ -395,7 +395,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 382}}
+ {{10, 27}, {603, 282}}
+ RubberWindowFrame
+ 125 171 810 487 0 0 1280 698
Module
XCDetailModule
@@ -449,9 +451,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 382}}
- RubberWindowFrame
- 349 138 810 487 0 0 1280 698
+ {{10, 27}, {603, 401}}
Module
PBXBuildResultsModule
@@ -479,11 +479,11 @@
TableOfContents
- 8B1A9D8227CD4B2A00649D11
+ 8BDCA65227CEC64B00A07B67
1CA23ED40692098700951B8B
- 8B1A9D8327CD4B2A00649D11
+ 8BDCA65327CEC64B00A07B67
8B9E7EE61DDE28AC006035FA
- 8B1A9D8427CD4B2A00649D11
+ 8BDCA65427CEC64B00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -636,7 +636,7 @@
StatusbarIsVisible
TimeStamp
- 667765589.86960495
+ 667862603.25225306
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -656,7 +656,7 @@
/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/Ditherbox/Ditherbox.xcodeproj
WindowString
- 349 138 810 487 0 0 1280 698
+ 125 171 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacAU/EdIsDim/EdIsDim.xcodeproj/christopherjohnson.pbxuser b/plugins/MacAU/EdIsDim/EdIsDim.xcodeproj/christopherjohnson.pbxuser
index c60b06f59..45a13a4fe 100755
--- a/plugins/MacAU/EdIsDim/EdIsDim.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacAU/EdIsDim/EdIsDim.xcodeproj/christopherjohnson.pbxuser
@@ -49,43 +49,23 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 667766269;
- PBXWorkspaceStateSaveDate = 667766269;
+ PBXPerProjectTemplateStateSaveDate = 667856926;
+ PBXWorkspaceStateSaveDate = 667856926;
};
perUserProjectItems = {
- 8B1A9E5027CD4E0000649D11 /* PBXTextBookmark */ = 8B1A9E5027CD4E0000649D11 /* PBXTextBookmark */;
- 8B1A9E6727CD4F2900649D11 /* PBXTextBookmark */ = 8B1A9E6727CD4F2900649D11 /* PBXTextBookmark */;
+ 8BDC96EE27CEB07C00A07B67 /* PBXTextBookmark */ = 8BDC96EE27CEB07C00A07B67 /* PBXTextBookmark */;
+ 8BDC96EF27CEB07C00A07B67 /* PBXTextBookmark */ = 8BDC96EF27CEB07C00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8BD3CCB8148830B20062E48C /* Source Control */;
userBuildSettings = {
};
};
- 8B1A9E5027CD4E0000649D11 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 8BA05A660720730100365D66 /* EdIsDim.cpp */;
- name = "EdIsDim.cpp: 236";
- rLen = 0;
- rLoc = 9736;
- rType = 0;
- vrLen = 126;
- vrLoc = 9194;
- };
- 8B1A9E6727CD4F2900649D11 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 8BA05A660720730100365D66 /* EdIsDim.cpp */;
- name = "EdIsDim.cpp: 240";
- rLen = 0;
- rLoc = 9736;
- rType = 0;
- vrLen = 80;
- vrLoc = 9107;
- };
8BA05A660720730100365D66 /* EdIsDim.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {750, 4338}}";
+ sepNavIntBoundsRect = "{{0, 0}, {554, 4374}}";
sepNavSelRange = "{9736, 0}";
- sepNavVisRange = "{9107, 80}";
- sepNavWindowFrame = "{{197, 4}, {1070, 694}}";
+ sepNavVisRange = "{0, 0}";
+ sepNavWindowFrame = "{{-5, 4}, {1070, 694}}";
};
};
8BA05A670720730100365D66 /* EdIsDim.exp */ = {
@@ -126,6 +106,26 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
+ 8BDC96EE27CEB07C00A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 8BA05A660720730100365D66 /* EdIsDim.cpp */;
+ name = "EdIsDim.cpp: 240";
+ rLen = 0;
+ rLoc = 9736;
+ rType = 0;
+ vrLen = 0;
+ vrLoc = 0;
+ };
+ 8BDC96EF27CEB07C00A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 8BA05A660720730100365D66 /* EdIsDim.cpp */;
+ name = "EdIsDim.cpp: 240";
+ rLen = 0;
+ rLoc = 9736;
+ rType = 0;
+ vrLen = 0;
+ vrLoc = 0;
+ };
8D01CCC60486CAD60068D4B7 /* EdIsDim */ = {
activeExec = 0;
};
diff --git a/plugins/MacAU/EdIsDim/EdIsDim.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacAU/EdIsDim/EdIsDim.xcodeproj/christopherjohnson.perspectivev3
index abafd32f2..6dba8621e 100755
--- a/plugins/MacAU/EdIsDim/EdIsDim.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacAU/EdIsDim/EdIsDim.xcodeproj/christopherjohnson.perspectivev3
@@ -256,6 +256,8 @@
Layout
+ BecomeActive
+
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -350,10 +352,10 @@
_historyCapacity
0
bookmark
- 8B1A9E6727CD4F2900649D11
+ 8BDC96EF27CEB07C00A07B67
history
- 8B1A9E5027CD4E0000649D11
+ 8BDC96EE27CEB07C00A07B67
SplitCount
@@ -367,18 +369,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 51}}
+ {{0, 0}, {603, 32}}
RubberWindowFrame
349 147 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 51pt
+ 32pt
Proportion
- 390pt
+ 409pt
Tabs
@@ -392,7 +394,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 363}}
+ {{10, 27}, {603, 382}}
+ RubberWindowFrame
+ 349 147 810 487 0 0 1280 698
Module
XCDetailModule
@@ -447,8 +451,6 @@
Frame
{{10, 27}, {603, 363}}
- RubberWindowFrame
- 349 147 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -476,11 +478,11 @@
TableOfContents
- 8B1A9E6827CD4F2900649D11
+ 8BDC96F027CEB07C00A07B67
1CA23ED40692098700951B8B
- 8B1A9E6927CD4F2900649D11
+ 8BDC96F127CEB07C00A07B67
8B753E4E1E40210F00347157
- 8B1A9E6A27CD4F2900649D11
+ 8BDC96F227CEB07C00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -633,7 +635,7 @@
StatusbarIsVisible
TimeStamp
- 667766569.09315097
+ 667857020.15887105
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -650,7 +652,7 @@
5
WindowOrderList
- 8B1A9E6B27CD4F2900649D11
+ 8BDC96F327CEB07C00A07B67
/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/EdIsDim/EdIsDim.xcodeproj
WindowString
diff --git a/plugins/MacAU/MidSide/MidSide.xcodeproj/christopherjohnson.pbxuser b/plugins/MacAU/MidSide/MidSide.xcodeproj/christopherjohnson.pbxuser
index f0f7ff9a3..5961bd6c6 100755
--- a/plugins/MacAU/MidSide/MidSide.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacAU/MidSide/MidSide.xcodeproj/christopherjohnson.pbxuser
@@ -49,40 +49,20 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 667769585;
- PBXWorkspaceStateSaveDate = 667769585;
+ PBXPerProjectTemplateStateSaveDate = 667859213;
+ PBXWorkspaceStateSaveDate = 667859213;
};
perUserProjectItems = {
- 8B4E06D527CD5AF500FBF12D /* PBXTextBookmark */ = 8B4E06D527CD5AF500FBF12D /* PBXTextBookmark */;
- 8B4E06EF27CD5BBD00FBF12D /* PBXTextBookmark */ = 8B4E06EF27CD5BBD00FBF12D /* PBXTextBookmark */;
+ 8BDC9DA127CEB91900A07B67 /* PBXTextBookmark */ = 8BDC9DA127CEB91900A07B67 /* PBXTextBookmark */;
+ 8BDC9DA227CEB91900A07B67 /* PBXTextBookmark */ = 8BDC9DA227CEB91900A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8BD3CCB8148830B20062E48C /* Source Control */;
userBuildSettings = {
};
};
- 8B4E06D527CD5AF500FBF12D /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 8BA05A660720730100365D66 /* MidSide.cpp */;
- name = "MidSide.cpp: 174";
- rLen = 0;
- rLoc = 7642;
- rType = 0;
- vrLen = 0;
- vrLoc = 0;
- };
- 8B4E06EF27CD5BBD00FBF12D /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 8BA05A660720730100365D66 /* MidSide.cpp */;
- name = "MidSide.cpp: 174";
- rLen = 0;
- rLoc = 7642;
- rType = 0;
- vrLen = 0;
- vrLoc = 0;
- };
8BA05A660720730100365D66 /* MidSide.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {554, 4302}}";
+ sepNavIntBoundsRect = "{{0, 0}, {570, 4284}}";
sepNavSelRange = "{7642, 0}";
sepNavVisRange = "{0, 0}";
sepNavWindowFrame = "{{326, 7}, {900, 691}}";
@@ -126,6 +106,26 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
+ 8BDC9DA127CEB91900A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 8BA05A660720730100365D66 /* MidSide.cpp */;
+ name = "MidSide.cpp: 174";
+ rLen = 0;
+ rLoc = 7642;
+ rType = 0;
+ vrLen = 0;
+ vrLoc = 0;
+ };
+ 8BDC9DA227CEB91900A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 8BA05A660720730100365D66 /* MidSide.cpp */;
+ name = "MidSide.cpp: 174";
+ rLen = 0;
+ rLoc = 7642;
+ rType = 0;
+ vrLen = 0;
+ vrLoc = 0;
+ };
8D01CCC60486CAD60068D4B7 /* MidSide */ = {
activeExec = 0;
};
diff --git a/plugins/MacAU/MidSide/MidSide.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacAU/MidSide/MidSide.xcodeproj/christopherjohnson.perspectivev3
index 4f7798d8a..03bb8987f 100755
--- a/plugins/MacAU/MidSide/MidSide.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacAU/MidSide/MidSide.xcodeproj/christopherjohnson.perspectivev3
@@ -256,6 +256,8 @@
Layout
+ BecomeActive
+
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -350,10 +352,10 @@
_historyCapacity
0
bookmark
- 8B4E06EF27CD5BBD00FBF12D
+ 8BDC9DA227CEB91900A07B67
history
- 8B4E06D527CD5AF500FBF12D
+ 8BDC9DA127CEB91900A07B67
SplitCount
@@ -367,18 +369,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 32}}
+ {{0, 0}, {603, 13}}
RubberWindowFrame
331 163 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 32pt
+ 13pt
Proportion
- 409pt
+ 428pt
Tabs
@@ -392,7 +394,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 382}}
+ {{10, 27}, {603, 401}}
+ RubberWindowFrame
+ 331 163 810 487 0 0 1280 698
Module
XCDetailModule
@@ -447,8 +451,6 @@
Frame
{{10, 27}, {603, 382}}
- RubberWindowFrame
- 331 163 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -476,11 +478,11 @@
TableOfContents
- 8B4E06F027CD5BBD00FBF12D
+ 8BDC9DA327CEB91900A07B67
1CA23ED40692098700951B8B
- 8B4E06F127CD5BBD00FBF12D
+ 8BDC9DA427CEB91900A07B67
8B753E6F1E40231800347157
- 8B4E06F227CD5BBD00FBF12D
+ 8BDC9DA527CEB91900A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -633,7 +635,7 @@
StatusbarIsVisible
TimeStamp
- 667769789.84319699
+ 667859225.99653006
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -650,7 +652,7 @@
5
WindowOrderList
- 8B4E06F327CD5BBD00FBF12D
+ 8BDC9DA627CEB91900A07B67
/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/MidSide/MidSide.xcodeproj
WindowString
diff --git a/plugins/MacAU/SpatializeDither/SpatializeDither.cpp b/plugins/MacAU/SpatializeDither/SpatializeDither.cpp
index e29c6cc1c..35c2d80f9 100755
--- a/plugins/MacAU/SpatializeDither/SpatializeDither.cpp
+++ b/plugins/MacAU/SpatializeDither/SpatializeDither.cpp
@@ -222,7 +222,6 @@ void SpatializeDither::SpatializeDitherKernel::Process( const Float32 *inSourc
while (nSampleFrames-- > 0) {
inputSample = *sourceP;
if (fabs(inputSample)<1.18e-23) inputSample = fpd * 1.18e-17;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
inputSample *= scaleFactor;
//0-1 is now one bit, now we dither
@@ -230,7 +229,10 @@ void SpatializeDither::SpatializeDitherKernel::Process( const Float32 *inSourc
if (inputSample > 0) inputSample += 0.383;
if (inputSample < 0) inputSample -= 0.383;
//adjusting to permit more information drug outta the noisefloor
- contingentRnd = (((double(fpd)/UINT32_MAX)+(double(fpd)/UINT32_MAX))-1.0) * randyConstant; //produce TPDF dist, scale
+ contingentRnd = (double(fpd)/UINT32_MAX);
+ fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
+ contingentRnd += ((double(fpd)/UINT32_MAX)-1.0);
+ contingentRnd *= randyConstant; //produce TPDF dist, scale
contingentRnd -= contingentErr*omegaConstant; //include err
absSample = fabs(inputSample);
contingentErr = absSample - floor(absSample); //get next err
diff --git a/plugins/MacAU/SpatializeDither/SpatializeDither.xcodeproj/christopherjohnson.pbxuser b/plugins/MacAU/SpatializeDither/SpatializeDither.xcodeproj/christopherjohnson.pbxuser
index 3795fbdb8..7f4c791d1 100755
--- a/plugins/MacAU/SpatializeDither/SpatializeDither.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacAU/SpatializeDither/SpatializeDither.xcodeproj/christopherjohnson.pbxuser
@@ -49,14 +49,14 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 667775118;
- PBXWorkspaceStateSaveDate = 667775118;
+ PBXPerProjectTemplateStateSaveDate = 667862278;
+ PBXWorkspaceStateSaveDate = 667862278;
};
perUserProjectItems = {
8B4E0BF127CD70A600FBF12D /* PBXTextBookmark */ = 8B4E0BF127CD70A600FBF12D /* PBXTextBookmark */;
8B6606261DE7C29A0049B2B8 /* PlistBookmark */ = 8B6606261DE7C29A0049B2B8 /* PlistBookmark */;
8BB070E924A947BD000F894A /* PBXTextBookmark */ = 8BB070E924A947BD000F894A /* PBXTextBookmark */;
- 8BB9A57124B297C300CD76A8 /* PBXTextBookmark */ = 8BB9A57124B297C300CD76A8 /* PBXTextBookmark */;
+ 8BDCA61227CEC57000A07B67 /* PBXTextBookmark */ = 8BDCA61227CEC57000A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8BD3CCB8148830B20062E48C /* Source Control */;
userBuildSettings = {
@@ -67,7 +67,7 @@
fRef = 8BA05A660720730100365D66 /* SpatializeDither.cpp */;
name = "SpatializeDither.cpp: 249";
rLen = 0;
- rLoc = 11213;
+ rLoc = 11250;
rType = 0;
vrLen = 1135;
vrLoc = 9665;
@@ -86,10 +86,10 @@
};
8BA05A660720730100365D66 /* SpatializeDither.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1137, 4788}}";
- sepNavSelRange = "{11213, 0}";
- sepNavVisRange = "{9665, 1135}";
- sepNavWindowFrame = "{{742, 43}, {679, 835}}";
+ sepNavIntBoundsRect = "{{0, 0}, {840, 4734}}";
+ sepNavSelRange = "{10767, 81}";
+ sepNavVisRange = "{9698, 1056}";
+ sepNavWindowFrame = "{{209, 14}, {882, 684}}";
};
};
8BA05A690720730100365D66 /* SpatializeDitherVersion.h */ = {
@@ -110,16 +110,6 @@
vrLen = 1150;
vrLoc = 4387;
};
- 8BB9A57124B297C300CD76A8 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 8BA05A660720730100365D66 /* SpatializeDither.cpp */;
- name = "SpatializeDither.cpp: 251";
- rLen = 0;
- rLoc = 11213;
- rType = 0;
- vrLen = 1727;
- vrLoc = 9034;
- };
8BC6025B073B072D006C4272 /* SpatializeDither.h */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {894, 2028}}";
@@ -142,6 +132,16 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
+ 8BDCA61227CEC57000A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 8BA05A660720730100365D66 /* SpatializeDither.cpp */;
+ name = "SpatializeDither.cpp: 243";
+ rLen = 81;
+ rLoc = 10767;
+ rType = 0;
+ vrLen = 1056;
+ vrLoc = 9698;
+ };
8D01CCC60486CAD60068D4B7 /* SpatializeDither */ = {
activeExec = 0;
};
diff --git a/plugins/MacAU/SpatializeDither/SpatializeDither.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacAU/SpatializeDither/SpatializeDither.xcodeproj/christopherjohnson.perspectivev3
index ef25b198d..699c8f48b 100755
--- a/plugins/MacAU/SpatializeDither/SpatializeDither.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacAU/SpatializeDither/SpatializeDither.xcodeproj/christopherjohnson.perspectivev3
@@ -256,6 +256,8 @@
Layout
+ BecomeActive
+
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -323,7 +325,7 @@
288
RubberWindowFrame
- 265 54 1005 644 0 0 1280 698
+ 64 54 1005 644 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -334,8 +336,6 @@
Dock
- BecomeActive
-
ContentConfiguration
PBXProjectModuleGUID
@@ -353,12 +353,12 @@
_historyCapacity
0
bookmark
- 8B4E0BF127CD70A600FBF12D
+ 8BDCA61227CEC57000A07B67
history
8B6606261DE7C29A0049B2B8
8BB070E924A947BD000F894A
- 8BB9A57124B297C300CD76A8
+ 8B4E0BF127CD70A600FBF12D
SplitCount
@@ -372,18 +372,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {695, 454}}
+ {{0, 0}, {695, 449}}
RubberWindowFrame
- 265 54 1005 644 0 0 1280 698
+ 64 54 1005 644 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 454pt
+ 449pt
Proportion
- 144pt
+ 149pt
Tabs
@@ -397,9 +397,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {695, 117}}
+ {{10, 27}, {695, 122}}
RubberWindowFrame
- 265 54 1005 644 0 0 1280 698
+ 64 54 1005 644 0 0 1280 698
Module
XCDetailModule
@@ -481,11 +481,11 @@
TableOfContents
- 8B4E0BF227CD70A600FBF12D
+ 8BDCA61327CEC57000A07B67
1CA23ED40692098700951B8B
- 8B4E0BF327CD70A600FBF12D
+ 8BDCA61427CEC57000A07B67
8BD7274A1D46E5A5000176F0
- 8B4E0BF427CD70A600FBF12D
+ 8BDCA61527CEC57000A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -658,7 +658,7 @@
StatusbarIsVisible
TimeStamp
- 667775142.36147797
+ 667862384.188555
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -675,10 +675,11 @@
5
WindowOrderList
+ 8BDCA61627CEC57000A07B67
/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/SpatializeDither/SpatializeDither.xcodeproj
WindowString
- 265 54 1005 644 0 0 1280 698
+ 64 54 1005 644 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacAU/VinylDither/VinylDither.xcodeproj/christopherjohnson.pbxuser b/plugins/MacAU/VinylDither/VinylDither.xcodeproj/christopherjohnson.pbxuser
index fb86f734c..b956c730e 100755
--- a/plugins/MacAU/VinylDither/VinylDither.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacAU/VinylDither/VinylDither.xcodeproj/christopherjohnson.pbxuser
@@ -49,34 +49,24 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 667778608;
- PBXWorkspaceStateSaveDate = 667778608;
+ PBXPerProjectTemplateStateSaveDate = 667864757;
+ PBXWorkspaceStateSaveDate = 667864757;
};
perUserProjectItems = {
- 8B82C5DC27CD7EC1009065A7 /* PBXTextBookmark */ = 8B82C5DC27CD7EC1009065A7 /* PBXTextBookmark */;
8BB06EE124A93AEA000F894A /* PlistBookmark */ = 8BB06EE124A93AEA000F894A /* PlistBookmark */;
8BB070DC24A947AE000F894A /* PBXTextBookmark */ = 8BB070DC24A947AE000F894A /* PBXTextBookmark */;
- 8BB9A56224B297A900CD76A8 /* PBXTextBookmark */ = 8BB9A56224B297A900CD76A8 /* PBXTextBookmark */;
+ 8BDCAC4827CECECA00A07B67 /* PBXTextBookmark */ = 8BDCAC4827CECECA00A07B67 /* PBXTextBookmark */;
+ 8BDCAC4927CECECA00A07B67 /* PBXTextBookmark */ = 8BDCAC4927CECECA00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8BD3CCB8148830B20062E48C /* Source Control */;
userBuildSettings = {
};
};
- 8B82C5DC27CD7EC1009065A7 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 8BA05A660720730100365D66 /* VinylDither.cpp */;
- name = "VinylDither.cpp: 227";
- rLen = 119;
- rLoc = 9348;
- rType = 0;
- vrLen = 1270;
- vrLoc = 10445;
- };
8BA05A660720730100365D66 /* VinylDither.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {842, 5724}}";
+ sepNavIntBoundsRect = "{{0, 0}, {842, 6012}}";
sepNavSelRange = "{9348, 119}";
- sepNavVisRange = "{10445, 1270}";
+ sepNavVisRange = "{9203, 877}";
sepNavWindowFrame = "{{416, 4}, {679, 694}}";
};
};
@@ -110,16 +100,6 @@
vrLen = 1147;
vrLoc = 4339;
};
- 8BB9A56224B297A900CD76A8 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 8BA05A660720730100365D66 /* VinylDither.cpp */;
- name = "VinylDither.cpp: 228";
- rLen = 119;
- rLoc = 9348;
- rType = 0;
- vrLen = 1217;
- vrLoc = 10659;
- };
8BC6025B073B072D006C4272 /* VinylDither.h */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1146, 3132}}";
@@ -142,6 +122,26 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
+ 8BDCAC4827CECECA00A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 8BA05A660720730100365D66 /* VinylDither.cpp */;
+ name = "VinylDither.cpp: 227";
+ rLen = 119;
+ rLoc = 9348;
+ rType = 0;
+ vrLen = 1270;
+ vrLoc = 10445;
+ };
+ 8BDCAC4927CECECA00A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 8BA05A660720730100365D66 /* VinylDither.cpp */;
+ name = "VinylDither.cpp: 227";
+ rLen = 119;
+ rLoc = 9348;
+ rType = 0;
+ vrLen = 877;
+ vrLoc = 9203;
+ };
8D01CCC60486CAD60068D4B7 /* VinylDither */ = {
activeExec = 0;
};
diff --git a/plugins/MacAU/VinylDither/VinylDither.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacAU/VinylDither/VinylDither.xcodeproj/christopherjohnson.perspectivev3
index 7c91cab44..a5a51436e 100755
--- a/plugins/MacAU/VinylDither/VinylDither.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacAU/VinylDither/VinylDither.xcodeproj/christopherjohnson.perspectivev3
@@ -353,12 +353,12 @@
_historyCapacity
0
bookmark
- 8B82C5DC27CD7EC1009065A7
+ 8BDCAC4927CECECA00A07B67
history
8BB06EE124A93AEA000F894A
8BB070DC24A947AE000F894A
- 8BB9A56224B297A900CD76A8
+ 8BDCAC4827CECECA00A07B67
SplitCount
@@ -372,18 +372,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {891, 459}}
+ {{0, 0}, {891, 454}}
RubberWindowFrame
154 54 1112 644 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 459pt
+ 454pt
Proportion
- 139pt
+ 144pt
Tabs
@@ -397,7 +397,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {891, 112}}
+ {{10, 27}, {891, 117}}
RubberWindowFrame
154 54 1112 644 0 0 1280 698
@@ -481,11 +481,11 @@
TableOfContents
- 8B82C5DD27CD7EC1009065A7
+ 8BDCAC4A27CECECA00A07B67
1CA23ED40692098700951B8B
- 8B82C5DE27CD7EC1009065A7
+ 8BDCAC4B27CECECA00A07B67
8BD7274A1D46E5A5000176F0
- 8B82C5DF27CD7EC1009065A7
+ 8BDCAC4C27CECECA00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -658,7 +658,7 @@
StatusbarIsVisible
TimeStamp
- 667778753.32850897
+ 667864778.18272102
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -675,7 +675,6 @@
5
WindowOrderList
- 8B82C5E027CD7EC1009065A7
/Users/christopherjohnson/Desktop/airwindows/plugins/MacAU/VinylDither/VinylDither.xcodeproj
WindowString
diff --git a/plugins/MacVST/Apicolypse/Apicolypse.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Apicolypse/Apicolypse.xcodeproj/christopherjohnson.pbxuser
index 3768974b2..373405def 100755
--- a/plugins/MacVST/Apicolypse/Apicolypse.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Apicolypse/Apicolypse.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 667725375;
- PBXWorkspaceStateSaveDate = 667725375;
+ PBXPerProjectTemplateStateSaveDate = 667845420;
+ PBXWorkspaceStateSaveDate = 667845420;
};
perUserProjectItems = {
- 8B1A8EBD27CC9E3900649D11 /* PBXTextBookmark */ = 8B1A8EBD27CC9E3900649D11 /* PBXTextBookmark */;
- 8B1A903927CCAE4600649D11 /* PBXTextBookmark */ = 8B1A903927CCAE4600649D11 /* PBXTextBookmark */;
+ 8BC92AC127CE834B0091806E /* PBXTextBookmark */ = 8BC92AC127CE834B0091806E /* PBXTextBookmark */;
+ 8BC92AC227CE834B0091806E /* PBXTextBookmark */ = 8BC92AC227CE834B0091806E /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -86,10 +86,10 @@
};
24D8286F09A914000093AEF8 /* ApicolypseProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {912, 6696}}";
+ sepNavIntBoundsRect = "{{0, 0}, {912, 6732}}";
sepNavSelRange = "{21215, 0}";
- sepNavVisRange = "{19524, 107}";
- sepNavWindowFrame = "{{318, 57}, {895, 821}}";
+ sepNavVisRange = "{19527, 104}";
+ sepNavWindowFrame = "{{318, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -106,25 +106,25 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B1A8EBD27CC9E3900649D11 /* PBXTextBookmark */ = {
+ 8BC92AC127CE834B0091806E /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* ApicolypseProc.cpp */;
name = "ApicolypseProc.cpp: 343";
rLen = 0;
rLoc = 21215;
rType = 0;
- vrLen = 203;
- vrLoc = 19428;
+ vrLen = 104;
+ vrLoc = 19527;
};
- 8B1A903927CCAE4600649D11 /* PBXTextBookmark */ = {
+ 8BC92AC227CE834B0091806E /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* ApicolypseProc.cpp */;
name = "ApicolypseProc.cpp: 343";
rLen = 0;
rLoc = 21215;
rType = 0;
- vrLen = 107;
- vrLoc = 19524;
+ vrLen = 104;
+ vrLoc = 19527;
};
8D01CCC60486CAD60068D4B7 /* Apicolypse */ = {
activeExec = 0;
diff --git a/plugins/MacVST/Apicolypse/Apicolypse.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Apicolypse/Apicolypse.xcodeproj/christopherjohnson.perspectivev3
index 99a064696..a73670bf2 100755
--- a/plugins/MacVST/Apicolypse/Apicolypse.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Apicolypse/Apicolypse.xcodeproj/christopherjohnson.perspectivev3
@@ -300,7 +300,7 @@
PBXSmartGroupTreeModuleOutlineStateSelectionKey
- 7
+ 6
4
0
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 42 355 810 487 0 0 1440 878
+ 277 206 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B1A903927CCAE4600649D11
+ 8BC92AC227CE834B0091806E
history
- 8B1A8EBD27CC9E3900649D11
+ 8BC92AC127CE834B0091806E
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 102}}
+ {{0, 0}, {603, 86}}
RubberWindowFrame
- 42 355 810 487 0 0 1440 878
+ 277 206 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 102pt
+ 86pt
Proportion
- 339pt
+ 355pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 312}}
+ {{10, 27}, {603, 328}}
RubberWindowFrame
- 42 355 810 487 0 0 1440 878
+ 277 206 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B1A903A27CCAE4600649D11
+ 8BC92AC327CE834B0091806E
1CA23ED40692098700951B8B
- 8B1A903B27CCAE4600649D11
+ 8BC92AC427CE834B0091806E
8B0237581D42B1C400E1E8C8
- 8B1A903C27CCAE4600649D11
+ 8BC92AC527CE834B0091806E
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 667725382.39066195
+ 667845451.555215
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +651,11 @@
5
WindowOrderList
+ 8BC92AC627CE834B0091806E
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Apicolypse/Apicolypse.xcodeproj
WindowString
- 42 355 810 487 0 0 1440 878
+ 277 206 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Coils/Coils.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Coils/Coils.xcodeproj/christopherjohnson.pbxuser
index bf5c9c643..0dc4882dc 100755
--- a/plugins/MacVST/Coils/Coils.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Coils/Coils.xcodeproj/christopherjohnson.pbxuser
@@ -49,13 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 667734241;
- PBXWorkspaceStateSaveDate = 667734241;
+ PBXPerProjectTemplateStateSaveDate = 667846141;
+ PBXWorkspaceStateSaveDate = 667846141;
};
perUserProjectItems = {
8B1A9A1827CCD0EA00649D11 /* PBXTextBookmark */ = 8B1A9A1827CCD0EA00649D11 /* PBXTextBookmark */;
+ 8BC92B0227CE861F0091806E /* PBXTextBookmark */ = 8BC92B0227CE861F0091806E /* PBXTextBookmark */;
8BE4470623A6B85C00A26556 /* PBXTextBookmark */ = 8BE4470623A6B85C00A26556 /* PBXTextBookmark */;
- 8BE4470823A6B85C00A26556 /* PBXTextBookmark */ = 8BE4470823A6B85C00A26556 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -89,8 +89,8 @@
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {912, 3078}}";
sepNavSelRange = "{6662, 0}";
- sepNavVisRange = "{6347, 188}";
- sepNavWindowFrame = "{{49, 57}, {895, 821}}";
+ sepNavVisRange = "{6350, 185}";
+ sepNavWindowFrame = "{{49, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -117,6 +117,16 @@
vrLen = 188;
vrLoc = 6347;
};
+ 8BC92B0227CE861F0091806E /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* CoilsProc.cpp */;
+ name = "CoilsProc.cpp: 150";
+ rLen = 0;
+ rLoc = 6662;
+ rType = 0;
+ vrLen = 185;
+ vrLoc = 6350;
+ };
8BE4470623A6B85C00A26556 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2407DEB6089929BA00EB68BF /* Coils.cpp */;
@@ -127,16 +137,6 @@
vrLen = 272;
vrLoc = 1746;
};
- 8BE4470823A6B85C00A26556 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* CoilsProc.cpp */;
- name = "CoilsProc.cpp: 149";
- rLen = 0;
- rLoc = 6662;
- rType = 0;
- vrLen = 445;
- vrLoc = 6060;
- };
8D01CCC60486CAD60068D4B7 /* Coils */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/Coils/Coils.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Coils/Coils.xcodeproj/christopherjohnson.perspectivev3
index fc74c6bd5..0e8225aeb 100755
--- a/plugins/MacVST/Coils/Coils.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Coils/Coils.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,11 +351,11 @@
_historyCapacity
0
bookmark
- 8B1A9A1827CCD0EA00649D11
+ 8BC92B0227CE861F0091806E
history
8BE4470623A6B85C00A26556
- 8BE4470823A6B85C00A26556
+ 8B1A9A1827CCD0EA00649D11
SplitCount
@@ -369,18 +369,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 102}}
+ {{0, 0}, {603, 86}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 102pt
+ 86pt
Proportion
- 339pt
+ 355pt
Tabs
@@ -394,9 +394,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 312}}
+ {{10, 27}, {603, 328}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
XCDetailModule
@@ -478,11 +478,11 @@
TableOfContents
- 8B1A9A1927CCD0EA00649D11
+ 8BC92AF227CE86080091806E
1CA23ED40692098700951B8B
- 8B1A9A1A27CCD0EA00649D11
+ 8BC92AF327CE86080091806E
8B0237581D42B1C400E1E8C8
- 8B1A9A1B27CCD0EA00649D11
+ 8BC92AF427CE86080091806E
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -635,7 +635,7 @@
StatusbarIsVisible
TimeStamp
- 667734250.51407802
+ 667846175.84589803
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -652,10 +652,11 @@
5
WindowOrderList
+ 8BC92AF527CE86080091806E
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Coils/Coils.xcodeproj
WindowString
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/DCVoltage/DCVoltage.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/DCVoltage/DCVoltage.xcodeproj/christopherjohnson.pbxuser
index d95b26c9b..30ae03311 100755
--- a/plugins/MacVST/DCVoltage/DCVoltage.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/DCVoltage/DCVoltage.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* DCVoltage */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569734209;
- PBXWorkspaceStateSaveDate = 569734209;
+ PBXPerProjectTemplateStateSaveDate = 667847124;
+ PBXWorkspaceStateSaveDate = 667847124;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -82,10 +82,10 @@
};
24D8286F09A914000093AEF8 /* DCVoltageProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {848, 703}}";
+ sepNavIntBoundsRect = "{{0, 0}, {885, 900}}";
sepNavSelRange = "{972, 0}";
- sepNavVisRange = "{0, 1022}";
- sepNavWindowFrame = "{{71, 47}, {895, 831}}";
+ sepNavVisRange = "{72, 709}";
+ sepNavWindowFrame = "{{310, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
+ 8D01CCC60486CAD60068D4B7 /* DCVoltage */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/DCVoltage/DCVoltage.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/DCVoltage/DCVoltage.xcodeproj/christopherjohnson.perspectivev3
index a9ec7ebf3..3a90d5b9d 100755
--- a/plugins/MacVST/DCVoltage/DCVoltage.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/DCVoltage/DCVoltage.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 116 319 810 487 0 0 1440 878
+ 269 180 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 116 319 810 487 0 0 1440 878
+ 269 180 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 116 319 810 487 0 0 1440 878
+ 269 180 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B79375621F5744A006E9731
+ 8BC92B6627CE8A6F0091806E
1CA23ED40692098700951B8B
- 8B79375721F5744A006E9731
+ 8BC92B6727CE8A6F0091806E
8B0237581D42B1C400E1E8C8
- 8B79375821F5744A006E9731
+ 8BC92B6827CE8A6F0091806E
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 569734218.48310196
+ 667847279.29419398
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +643,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/DCVoltage/DCVoltage.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/DCVoltage/DCVoltage.xcodeproj
WindowString
- 116 319 810 487 0 0 1440 878
+ 269 180 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/DCVoltage/DCVoltage.xcodeproj/project.pbxproj b/plugins/MacVST/DCVoltage/DCVoltage.xcodeproj/project.pbxproj
index ab1df433f..b878c4e28 100755
--- a/plugins/MacVST/DCVoltage/DCVoltage.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/DCVoltage/DCVoltage.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
+ 8D01CCC60486CAD60068D4B7 /* DCVoltage */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "DCVoltage" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
+ 8D01CCC60486CAD60068D4B7 /* DCVoltage */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/Dark/Dark.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Dark/Dark.xcodeproj/christopherjohnson.pbxuser
index 751fc2db6..1327afb61 100755
--- a/plugins/MacVST/Dark/Dark.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Dark/Dark.xcodeproj/christopherjohnson.pbxuser
@@ -49,14 +49,14 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 653275792;
- PBXWorkspaceStateSaveDate = 653275792;
+ PBXPerProjectTemplateStateSaveDate = 667846397;
+ PBXWorkspaceStateSaveDate = 667846397;
};
perUserProjectItems = {
8BB07C8D24B14CB2000F894A /* PBXTextBookmark */ = 8BB07C8D24B14CB2000F894A /* PBXTextBookmark */;
+ 8BC92B0327CE86F70091806E /* PBXTextBookmark */ = 8BC92B0327CE86F70091806E /* PBXTextBookmark */;
+ 8BC92B2527CE87260091806E /* PBXTextBookmark */ = 8BC92B2527CE87260091806E /* PBXTextBookmark */;
8BCBADE326F02B9900E491F2 /* PBXTextBookmark */ = 8BCBADE326F02B9900E491F2 /* PBXTextBookmark */;
- 8BCBAE5326F031EC00E491F2 /* PBXTextBookmark */ = 8BCBAE5326F031EC00E491F2 /* PBXTextBookmark */;
- 8BCBAE8226F0336500E491F2 /* PBXTextBookmark */ = 8BCBAE8226F0336500E491F2 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -64,18 +64,18 @@
};
2407DEB6089929BA00EB68BF /* Dark.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {948, 2430}}";
- sepNavSelRange = "{447, 98}";
- sepNavVisRange = "{2763, 1718}";
- sepNavWindowFrame = "{{545, 57}, {895, 821}}";
+ sepNavIntBoundsRect = "{{0, 0}, {948, 2448}}";
+ sepNavSelRange = "{435, 0}";
+ sepNavVisRange = "{3834, 1169}";
+ sepNavWindowFrame = "{{385, 4}, {895, 694}}";
};
};
245463B80991757100464AD3 /* Dark.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1110, 1188}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1110, 1206}}";
sepNavSelRange = "{2392, 0}";
- sepNavVisRange = "{579, 1909}";
- sepNavWindowFrame = "{{545, 42}, {895, 821}}";
+ sepNavVisRange = "{494, 1940}";
+ sepNavWindowFrame = "{{385, 4}, {895, 694}}";
};
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
@@ -88,10 +88,10 @@
};
24D8286F09A914000093AEF8 /* DarkProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {840, 4284}}";
- sepNavSelRange = "{4597, 0}";
- sepNavVisRange = "{5523, 1245}";
- sepNavWindowFrame = "{{7, 57}, {895, 821}}";
+ sepNavIntBoundsRect = "{{0, 0}, {822, 4320}}";
+ sepNavSelRange = "{8059, 0}";
+ sepNavVisRange = "{5763, 275}";
+ sepNavWindowFrame = "{{7, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -118,6 +118,26 @@
vrLen = 978;
vrLoc = 3916;
};
+ 8BC92B0327CE86F70091806E /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* DarkProc.cpp */;
+ name = "DarkProc.cpp: 238";
+ rLen = 0;
+ rLoc = 8059;
+ rType = 0;
+ vrLen = 343;
+ vrLoc = 5695;
+ };
+ 8BC92B2527CE87260091806E /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* DarkProc.cpp */;
+ name = "DarkProc.cpp: 238";
+ rLen = 0;
+ rLoc = 8059;
+ rType = 0;
+ vrLen = 275;
+ vrLoc = 5763;
+ };
8BCBADE326F02B9900E491F2 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 245463B80991757100464AD3 /* Dark.h */;
@@ -128,26 +148,6 @@
vrLen = 1803;
vrLoc = 685;
};
- 8BCBAE5326F031EC00E491F2 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* DarkProc.cpp */;
- name = "DarkProc.cpp: 139";
- rLen = 0;
- rLoc = 4597;
- rType = 0;
- vrLen = 1085;
- vrLoc = 4435;
- };
- 8BCBAE8226F0336500E491F2 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* DarkProc.cpp */;
- name = "DarkProc.cpp: 139";
- rLen = 0;
- rLoc = 4597;
- rType = 0;
- vrLen = 1245;
- vrLoc = 5523;
- };
8D01CCC60486CAD60068D4B7 /* Dark */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/Dark/Dark.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Dark/Dark.xcodeproj/christopherjohnson.perspectivev3
index 43124f6d3..6a0cd6a28 100755
--- a/plugins/MacVST/Dark/Dark.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Dark/Dark.xcodeproj/christopherjohnson.perspectivev3
@@ -225,8 +225,8 @@
PerspectiveWidths
- 810
- 810
+ 879
+ 879
Perspectives
@@ -306,7 +306,7 @@
PBXSmartGroupTreeModuleOutlineStateVisibleRectKey
- {{0, 0}, {185, 695}}
+ {{0, 0}, {185, 585}}
PBXTopSmartGroupGIDs
@@ -316,14 +316,14 @@
GeometryConfiguration
Frame
- {{0, 0}, {202, 713}}
+ {{0, 0}, {202, 603}}
GroupTreeTableConfiguration
MainColumn
185
RubberWindowFrame
- 36 124 879 754 0 0 1440 878
+ 247 54 879 644 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,12 +351,12 @@
_historyCapacity
0
bookmark
- 8BCBAE8226F0336500E491F2
+ 8BC92B2527CE87260091806E
history
8BB07C8D24B14CB2000F894A
8BCBADE326F02B9900E491F2
- 8BCBAE5326F031EC00E491F2
+ 8BC92B0327CE86F70091806E
SplitCount
@@ -370,18 +370,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {672, 579}}
+ {{0, 0}, {672, 145}}
RubberWindowFrame
- 36 124 879 754 0 0 1440 878
+ 247 54 879 644 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 579pt
+ 145pt
Proportion
- 129pt
+ 453pt
Tabs
@@ -395,9 +395,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {672, 102}}
+ {{10, 27}, {672, 426}}
RubberWindowFrame
- 36 124 879 754 0 0 1440 878
+ 247 54 879 644 0 0 1280 698
Module
XCDetailModule
@@ -451,7 +451,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {672, 411}}
Module
PBXBuildResultsModule
@@ -479,11 +479,11 @@
TableOfContents
- 8BCBAE8326F0336500E491F2
+ 8BC92B2627CE87260091806E
1CA23ED40692098700951B8B
- 8BCBAE8426F0336500E491F2
+ 8BC92B2727CE87260091806E
8B0237581D42B1C400E1E8C8
- 8BCBAE8526F0336500E491F2
+ 8BC92B2827CE87260091806E
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -636,7 +636,7 @@
StatusbarIsVisible
TimeStamp
- 653276005.84459603
+ 667846438.05891097
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -653,11 +653,10 @@
5
WindowOrderList
- 8BCBAE8626F0336500E491F2
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Dark/Dark.xcodeproj
WindowString
- 36 124 879 754 0 0 1440 878
+ 247 54 879 644 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Dark/source/DarkProc.cpp b/plugins/MacVST/Dark/source/DarkProc.cpp
index 811fdf384..f026c1cd0 100755
--- a/plugins/MacVST/Dark/source/DarkProc.cpp
+++ b/plugins/MacVST/Dark/source/DarkProc.cpp
@@ -36,10 +36,10 @@ void Dark::processReplacing(float **inputs, float **outputs, VstInt32 sampleFram
{
double inputSampleL = *in1;
double inputSampleR = *in2;
- if (fabs(inputSampleL)<1.18e-37) inputSampleL = fpd * 1.18e-37;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
- if (fabs(inputSampleR)<1.18e-37) inputSampleR = fpd * 1.18e-37;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
+ if (fabs(inputSampleL)<1.18e-23) inputSampleL = fpdL * 1.18e-17;
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ if (fabs(inputSampleR)<1.18e-23) inputSampleR = fpdR * 1.18e-17;
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
inputSampleL *= scaleFactor;
inputSampleR *= scaleFactor;
@@ -151,10 +151,10 @@ void Dark::processDoubleReplacing(double **inputs, double **outputs, VstInt32 sa
{
double inputSampleL = *in1;
double inputSampleR = *in2;
- if (fabs(inputSampleL)<1.18e-43) inputSampleL = fpd * 1.18e-43;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
- if (fabs(inputSampleR)<1.18e-43) inputSampleR = fpd * 1.18e-43;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
+ if (fabs(inputSampleL)<1.18e-23) inputSampleL = fpdL * 1.18e-17;
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ if (fabs(inputSampleR)<1.18e-23) inputSampleR = fpdR * 1.18e-17;
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
inputSampleL *= scaleFactor;
inputSampleR *= scaleFactor;
diff --git a/plugins/MacVST/DarkNoise/DarkNoise.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/DarkNoise/DarkNoise.xcodeproj/christopherjohnson.pbxuser
index 84867d63a..98cc24a0a 100755
--- a/plugins/MacVST/DarkNoise/DarkNoise.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/DarkNoise/DarkNoise.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 628556134;
- PBXWorkspaceStateSaveDate = 628556134;
+ PBXPerProjectTemplateStateSaveDate = 667846491;
+ PBXWorkspaceStateSaveDate = 667846491;
};
perUserProjectItems = {
- 8B8BB7452576FFF2008EB4DF /* PBXTextBookmark */ = 8B8BB7452576FFF2008EB4DF /* PBXTextBookmark */;
8B8BB78125770472008EB4DF /* PBXTextBookmark */ = 8B8BB78125770472008EB4DF /* PBXTextBookmark */;
+ 8BC92B4727CE89CF0091806E /* PBXTextBookmark */ = 8BC92B4727CE89CF0091806E /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -62,7 +62,7 @@
};
2407DEB6089929BA00EB68BF /* DarkNoise.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {939, 2844}}";
+ sepNavIntBoundsRect = "{{0, 0}, {741, 2988}}";
sepNavSelRange = "{766, 0}";
sepNavVisRange = "{451, 124}";
sepNavWindowFrame = "{{12, 47}, {895, 831}}";
@@ -86,10 +86,10 @@
};
24D8286F09A914000093AEF8 /* DarkNoiseProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {848, 5292}}";
- sepNavSelRange = "{1106, 0}";
- sepNavVisRange = "{716, 1225}";
- sepNavWindowFrame = "{{398, 47}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1047, 4860}}";
+ sepNavSelRange = "{5731, 6}";
+ sepNavVisRange = "{7768, 943}";
+ sepNavWindowFrame = "{{385, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -106,17 +106,17 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B8BB7452576FFF2008EB4DF /* PBXTextBookmark */ = {
+ 8B8BB78125770472008EB4DF /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2407DEB6089929BA00EB68BF /* DarkNoise.cpp */;
- name = "DarkNoise.cpp: 27";
+ name = "DarkNoise.cpp: 31";
rLen = 0;
rLoc = 766;
rType = 0;
- vrLen = 152;
+ vrLen = 124;
vrLoc = 451;
};
- 8B8BB78125770472008EB4DF /* PBXTextBookmark */ = {
+ 8BC92B4727CE89CF0091806E /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2407DEB6089929BA00EB68BF /* DarkNoise.cpp */;
name = "DarkNoise.cpp: 31";
diff --git a/plugins/MacVST/DarkNoise/DarkNoise.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/DarkNoise/DarkNoise.xcodeproj/christopherjohnson.perspectivev3
index 2532bea55..f28c1e88c 100755
--- a/plugins/MacVST/DarkNoise/DarkNoise.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/DarkNoise/DarkNoise.xcodeproj/christopherjohnson.perspectivev3
@@ -256,6 +256,8 @@
Layout
+ BecomeActive
+
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -298,7 +300,7 @@
PBXSmartGroupTreeModuleOutlineStateSelectionKey
- 7
+ 6
4
0
@@ -321,7 +323,7 @@
185
RubberWindowFrame
- 31 267 810 487 0 0 1440 878
+ 278 209 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -349,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B8BB78125770472008EB4DF
+ 8BC92B4727CE89CF0091806E
history
- 8B8BB7452576FFF2008EB4DF
+ 8B8BB78125770472008EB4DF
SplitCount
@@ -366,23 +368,21 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 86}}
+ {{0, 0}, {603, 69}}
RubberWindowFrame
- 31 267 810 487 0 0 1440 878
+ 278 209 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 86pt
+ 69pt
Proportion
- 355pt
+ 372pt
Tabs
- BecomeActive
-
ContentConfiguration
PBXProjectModuleGUID
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 328}}
+ {{10, 27}, {603, 345}}
RubberWindowFrame
- 31 267 810 487 0 0 1440 878
+ 278 209 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B8BB78225770472008EB4DF
+ 8BC92B4827CE89CF0091806E
1CA23ED40692098700951B8B
- 8B8BB78325770472008EB4DF
+ 8BC92B4927CE89CF0091806E
8B0237581D42B1C400E1E8C8
- 8B8BB78425770472008EB4DF
+ 8BC92B4A27CE89CF0091806E
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 628556914.32352495
+ 667847119.72832
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,12 +651,10 @@
5
WindowOrderList
- 8B8BB78525770472008EB4DF
- 8B8BB78625770472008EB4DF
- /Users/christopherjohnson/Desktop/DarkNoise/DarkNoise.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/DarkNoise/DarkNoise.xcodeproj
WindowString
- 31 267 810 487 0 0 1440 878
+ 278 209 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/DeBess/DeBess.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/DeBess/DeBess.xcodeproj/christopherjohnson.pbxuser
index 434eb1a74..58976189e 100755
--- a/plugins/MacVST/DeBess/DeBess.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/DeBess/DeBess.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* DeBess */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 592653005;
- PBXWorkspaceStateSaveDate = 592653005;
+ PBXPerProjectTemplateStateSaveDate = 667847283;
+ PBXWorkspaceStateSaveDate = 667847283;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -82,10 +82,10 @@
};
24D8286F09A914000093AEF8 /* DeBessProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {848, 2678}}";
+ sepNavIntBoundsRect = "{{0, 0}, {867, 3726}}";
sepNavSelRange = "{4524, 0}";
- sepNavVisRange = "{4003, 1990}";
- sepNavWindowFrame = "{{514, 57}, {895, 821}}";
+ sepNavVisRange = "{2473, 1460}";
+ sepNavWindowFrame = "{{385, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* DeBess */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/DeBess/DeBess.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/DeBess/DeBess.xcodeproj/christopherjohnson.perspectivev3
index 45c920bb3..1d8cc9861 100755
--- a/plugins/MacVST/DeBess/DeBess.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/DeBess/DeBess.xcodeproj/christopherjohnson.perspectivev3
@@ -256,6 +256,8 @@
Layout
+ BecomeActive
+
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -298,7 +300,7 @@
PBXSmartGroupTreeModuleOutlineStateSelectionKey
- 7
+ 6
4
0
@@ -321,7 +323,7 @@
185
RubberWindowFrame
- 569 319 810 487 0 0 1440 878
+ 424 177 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -360,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 569 319 810 487 0 0 1440 878
+ 424 177 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -384,6 +386,8 @@
Frame
{{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 424 177 810 487 0 0 1280 698
Module
XCDetailModule
@@ -438,8 +442,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 569 319 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -467,11 +469,11 @@
TableOfContents
- 8BAC0D992353337500FD0BEA
+ 8BC92B7A27CE8A8F0091806E
1CA23ED40692098700951B8B
- 8BAC0D9A2353337500FD0BEA
+ 8BC92B7B27CE8A8F0091806E
8B0237581D42B1C400E1E8C8
- 8BAC0D9B2353337500FD0BEA
+ 8BC92B7C27CE8A8F0091806E
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -624,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 592655221.13508701
+ 667847311.92782104
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -641,11 +643,11 @@
5
WindowOrderList
- 8BAC0D9C2353337500FD0BEA
- /Users/christopherjohnson/Desktop/DeBess/DeBess.xcodeproj
+ 8BC92B7D27CE8A8F0091806E
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/DeBess/DeBess.xcodeproj
WindowString
- 569 319 810 487 0 0 1440 878
+ 424 177 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/DeBess/DeBess.xcodeproj/project.pbxproj b/plugins/MacVST/DeBess/DeBess.xcodeproj/project.pbxproj
index d909334cd..3be780bdd 100755
--- a/plugins/MacVST/DeBess/DeBess.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/DeBess/DeBess.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* DeBess */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "DeBess" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* DeBess */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/DeEss/DeEss.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/DeEss/DeEss.xcodeproj/christopherjohnson.pbxuser
index fd07bbd4f..eb02d271d 100755
--- a/plugins/MacVST/DeEss/DeEss.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/DeEss/DeEss.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569734238;
- PBXWorkspaceStateSaveDate = 569734238;
+ PBXPerProjectTemplateStateSaveDate = 667847642;
+ PBXWorkspaceStateSaveDate = 667847642;
};
perUserProjectItems = {
- 8B79377321F5746E006E9731 /* PBXTextBookmark */ = 8B79377321F5746E006E9731 /* PBXTextBookmark */;
8B79377421F5746E006E9731 /* PBXTextBookmark */ = 8B79377421F5746E006E9731 /* PBXTextBookmark */;
+ 8BC92BBD27CE8BDE0091806E /* PBXTextBookmark */ = 8BC92BBD27CE8BDE0091806E /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -86,9 +86,9 @@
};
24D8286F09A914000093AEF8 /* DeEssProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {796, 4355}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1020, 5976}}";
sepNavSelRange = "{0, 0}";
- sepNavVisRange = "{4813, 714}";
+ sepNavVisRange = "{4803, 670}";
sepNavWindowFrame = "{{47, 47}, {895, 831}}";
};
};
@@ -106,16 +106,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B79377321F5746E006E9731 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* DeEssProc.cpp */;
- name = "DeEssProc.cpp: 1";
- rLen = 0;
- rLoc = 0;
- rType = 0;
- vrLen = 211;
- vrLoc = 0;
- };
8B79377421F5746E006E9731 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* DeEssProc.cpp */;
@@ -126,6 +116,16 @@
vrLen = 714;
vrLoc = 4813;
};
+ 8BC92BBD27CE8BDE0091806E /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* DeEssProc.cpp */;
+ name = "DeEssProc.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 670;
+ vrLoc = 4803;
+ };
8D01CCC60486CAD60068D4B7 /* DeEss */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/DeEss/DeEss.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/DeEss/DeEss.xcodeproj/christopherjohnson.perspectivev3
index b85a83aa2..2dffb6f22 100755
--- a/plugins/MacVST/DeEss/DeEss.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/DeEss/DeEss.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 304 315 810 487 0 0 1440 878
+ 227 175 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B79377421F5746E006E9731
+ 8BC92BBD27CE8BDE0091806E
history
- 8B79377321F5746E006E9731
+ 8B79377421F5746E006E9731
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 319}}
+ {{0, 0}, {603, 313}}
RubberWindowFrame
- 304 315 810 487 0 0 1440 878
+ 227 175 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 319pt
+ 313pt
Proportion
- 122pt
+ 128pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 95}}
+ {{10, 27}, {603, 101}}
RubberWindowFrame
- 304 315 810 487 0 0 1440 878
+ 227 175 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B79377521F5746E006E9731
+ 8BC92BBE27CE8BDE0091806E
1CA23ED40692098700951B8B
- 8B79377621F5746E006E9731
+ 8BC92BBF27CE8BDE0091806E
8B0237581D42B1C400E1E8C8
- 8B79377721F5746E006E9731
+ 8BC92BC027CE8BDE0091806E
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 569734254.77218902
+ 667847646.93108702
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +651,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/DeEss/DeEss.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/DeEss/DeEss.xcodeproj
WindowString
- 304 315 810 487 0 0 1440 878
+ 227 175 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/DeHiss/DeHiss.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/DeHiss/DeHiss.xcodeproj/christopherjohnson.pbxuser
index 039eb9c41..6fe4fc06f 100755
--- a/plugins/MacVST/DeHiss/DeHiss.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/DeHiss/DeHiss.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* DeHiss */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 580581926;
- PBXWorkspaceStateSaveDate = 580581926;
+ PBXPerProjectTemplateStateSaveDate = 667847651;
+ PBXWorkspaceStateSaveDate = 667847651;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* DeHiss */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/DeHiss/DeHiss.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/DeHiss/DeHiss.xcodeproj/christopherjohnson.perspectivev3
index cb13ce0be..29d83a0a1 100755
--- a/plugins/MacVST/DeHiss/DeHiss.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/DeHiss/DeHiss.xcodeproj/christopherjohnson.perspectivev3
@@ -256,6 +256,8 @@
Layout
+ BecomeActive
+
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -321,7 +323,7 @@
185
RubberWindowFrame
- 79 307 810 487 0 0 1440 878
+ 305 188 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -360,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 79 307 810 487 0 0 1440 878
+ 305 188 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -384,6 +386,8 @@
Frame
{{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 305 188 810 487 0 0 1280 698
Module
XCDetailModule
@@ -438,8 +442,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 79 307 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -467,11 +469,11 @@
TableOfContents
- 8B2C1105229AFA940051C68A
+ 8BC92BDD27CE8BEA0091806E
1CA23ED40692098700951B8B
- 8B2C1106229AFA940051C68A
+ 8BC92BDE27CE8BEA0091806E
8B0237581D42B1C400E1E8C8
- 8B2C1107229AFA940051C68A
+ 8BC92BDF27CE8BEA0091806E
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -624,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 580584569.83668399
+ 667847658.68382001
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -641,11 +643,10 @@
5
WindowOrderList
- 8B2C1139229B04790051C68A
- /Users/christopherjohnson/Desktop/DeHiss/DeHiss.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/DeHiss/DeHiss.xcodeproj
WindowString
- 79 307 810 487 0 0 1440 878
+ 305 188 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/DeHiss/DeHiss.xcodeproj/project.pbxproj b/plugins/MacVST/DeHiss/DeHiss.xcodeproj/project.pbxproj
index 22ae34761..bcf0cdb58 100755
--- a/plugins/MacVST/DeHiss/DeHiss.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/DeHiss/DeHiss.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* DeHiss */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "DeHiss" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* DeHiss */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/DeRez/DeRez.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/DeRez/DeRez.xcodeproj/christopherjohnson.pbxuser
index 570f388fa..70760867c 100755
--- a/plugins/MacVST/DeRez/DeRez.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/DeRez/DeRez.xcodeproj/christopherjohnson.pbxuser
@@ -49,14 +49,14 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569734376;
- PBXWorkspaceStateSaveDate = 569734376;
+ PBXPerProjectTemplateStateSaveDate = 667847718;
+ PBXWorkspaceStateSaveDate = 667847718;
};
perUserProjectItems = {
8B7932CA21F4FB37006E9731 /* PBXTextBookmark */ = 8B7932CA21F4FB37006E9731 /* PBXTextBookmark */;
- 8B7932CC21F4FB37006E9731 /* PBXTextBookmark */ = 8B7932CC21F4FB37006E9731 /* PBXTextBookmark */;
8B7937B821F574F6006E9731 /* PBXTextBookmark */ = 8B7937B821F574F6006E9731 /* PBXTextBookmark */;
8BB8B70521039BF400751000 /* PBXTextBookmark */ = 8BB8B70521039BF400751000 /* PBXTextBookmark */;
+ 8BC92C4127CE8C2D0091806E /* PBXTextBookmark */ = 8BC92C4127CE8C2D0091806E /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -64,9 +64,9 @@
};
2407DEB6089929BA00EB68BF /* DeRez.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {554, 1833}}";
+ sepNavIntBoundsRect = "{{0, 0}, {554, 2484}}";
sepNavSelRange = "{0, 0}";
- sepNavVisRange = "{0, 119}";
+ sepNavVisRange = "{0, 64}";
sepNavWindowFrame = "{{48, 47}, {895, 831}}";
};
};
@@ -118,16 +118,6 @@
vrLen = 157;
vrLoc = 10579;
};
- 8B7932CC21F4FB37006E9731 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 2407DEB6089929BA00EB68BF /* DeRez.cpp */;
- name = "DeRez.cpp: 1";
- rLen = 0;
- rLoc = 0;
- rType = 0;
- vrLen = 167;
- vrLoc = 0;
- };
8B7937B821F574F6006E9731 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2407DEB6089929BA00EB68BF /* DeRez.cpp */;
@@ -148,6 +138,16 @@
vrLen = 286;
vrLoc = 2669;
};
+ 8BC92C4127CE8C2D0091806E /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 2407DEB6089929BA00EB68BF /* DeRez.cpp */;
+ name = "DeRez.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 64;
+ vrLoc = 0;
+ };
8D01CCC60486CAD60068D4B7 /* DeRez */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/DeRez/DeRez.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/DeRez/DeRez.xcodeproj/christopherjohnson.perspectivev3
index 50aea9fd9..ead36cdbc 100755
--- a/plugins/MacVST/DeRez/DeRez.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/DeRez/DeRez.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 396 274 810 487 0 0 1440 878
+ 295 156 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,12 +351,12 @@
_historyCapacity
0
bookmark
- 8B7937B821F574F6006E9731
+ 8BC92C4127CE8C2D0091806E
history
8BB8B70521039BF400751000
8B7932CA21F4FB37006E9731
- 8B7932CC21F4FB37006E9731
+ 8B7937B821F574F6006E9731
SplitCount
@@ -370,18 +370,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 69}}
+ {{0, 0}, {603, 51}}
RubberWindowFrame
- 396 274 810 487 0 0 1440 878
+ 295 156 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 69pt
+ 51pt
Proportion
- 372pt
+ 390pt
Tabs
@@ -395,9 +395,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 345}}
+ {{10, 27}, {603, 363}}
RubberWindowFrame
- 396 274 810 487 0 0 1440 878
+ 295 156 810 487 0 0 1280 698
Module
XCDetailModule
@@ -479,11 +479,11 @@
TableOfContents
- 8B7937B921F574F6006E9731
+ 8BC92C4227CE8C2D0091806E
1CA23ED40692098700951B8B
- 8B7937BA21F574F6006E9731
+ 8BC92C4327CE8C2D0091806E
8B0237581D42B1C400E1E8C8
- 8B7937BB21F574F6006E9731
+ 8BC92C4427CE8C2D0091806E
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -636,7 +636,7 @@
StatusbarIsVisible
TimeStamp
- 569734390.87989402
+ 667847725.75564694
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -653,10 +653,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/DeRez/DeRez.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/DeRez/DeRez.xcodeproj
WindowString
- 396 274 810 487 0 0 1440 878
+ 295 156 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/DeRez2/DeRez2.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/DeRez2/DeRez2.xcodeproj/christopherjohnson.pbxuser
index e6adfe24c..7e452d04e 100755
--- a/plugins/MacVST/DeRez2/DeRez2.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/DeRez2/DeRez2.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* DeRez2 */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 582579267;
- PBXWorkspaceStateSaveDate = 582579267;
+ PBXPerProjectTemplateStateSaveDate = 667847730;
+ PBXWorkspaceStateSaveDate = 667847730;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* DeRez2 */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/DeRez2/DeRez2.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/DeRez2/DeRez2.xcodeproj/christopherjohnson.perspectivev3
index 98cf11298..c4fafa698 100755
--- a/plugins/MacVST/DeRez2/DeRez2.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/DeRez2/DeRez2.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 19 376 810 487 0 0 1440 878
+ 14 204 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 19 376 810 487 0 0 1440 878
+ 14 204 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 19 376 810 487 0 0 1440 878
+ 14 204 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8BB81CD222B9744800117629
+ 8BC92C6127CE8C370091806E
1CA23ED40692098700951B8B
- 8BB81CD322B9744800117629
+ 8BC92C6227CE8C370091806E
8B0237581D42B1C400E1E8C8
- 8BB81CD422B9744800117629
+ 8BC92C6327CE8C370091806E
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 582581223.28722596
+ 667847735.20961106
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,11 +643,10 @@
5
WindowOrderList
- 8BB81D8822B97BE700117629
- /Users/christopherjohnson/Desktop/DeRez2/DeRez2.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/DeRez2/DeRez2.xcodeproj
WindowString
- 19 376 810 487 0 0 1440 878
+ 14 204 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/DeRez2/DeRez2.xcodeproj/project.pbxproj b/plugins/MacVST/DeRez2/DeRez2.xcodeproj/project.pbxproj
index 56cb4f8b3..fcb2b5261 100755
--- a/plugins/MacVST/DeRez2/DeRez2.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/DeRez2/DeRez2.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* DeRez2 */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "DeRez2" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* DeRez2 */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/Deckwrecka/Deckwrecka.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Deckwrecka/Deckwrecka.xcodeproj/christopherjohnson.pbxuser
index b8a97e07d..8ba5ee6c4 100755
--- a/plugins/MacVST/Deckwrecka/Deckwrecka.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Deckwrecka/Deckwrecka.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 577663520;
- PBXWorkspaceStateSaveDate = 577663520;
+ PBXPerProjectTemplateStateSaveDate = 667847316;
+ PBXWorkspaceStateSaveDate = 667847316;
};
perUserProjectItems = {
- 8BE26033226E7A01007959A0 /* PBXTextBookmark */ = 8BE26033226E7A01007959A0 /* PBXTextBookmark */;
- 8BE2603D226E7A5A007959A0 /* PBXTextBookmark */ = 8BE2603D226E7A5A007959A0 /* PBXTextBookmark */;
+ 8BC92B9827CE8A960091806E /* PBXTextBookmark */ = 8BC92B9827CE8A960091806E /* PBXTextBookmark */;
+ 8BC92BA627CE8BD40091806E /* PBXTextBookmark */ = 8BC92BA627CE8BD40091806E /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -62,9 +62,9 @@
};
2407DEB6089929BA00EB68BF /* Deckwrecka.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {740, 1963}}";
+ sepNavIntBoundsRect = "{{0, 0}, {948, 3312}}";
sepNavSelRange = "{468, 0}";
- sepNavVisRange = "{338, 155}";
+ sepNavVisRange = "{396, 132}";
sepNavWindowFrame = "{{12, 47}, {895, 831}}";
};
};
@@ -86,10 +86,10 @@
};
24D8286F09A914000093AEF8 /* DeckwreckaProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1222, 5096}}";
- sepNavSelRange = "{11888, 0}";
- sepNavVisRange = "{11433, 1475}";
- sepNavWindowFrame = "{{39, 59}, {1269, 819}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1209, 7614}}";
+ sepNavSelRange = "{14126, 0}";
+ sepNavVisRange = "{14714, 3014}";
+ sepNavWindowFrame = "{{233, 4}, {1009, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -106,25 +106,25 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8BE26033226E7A01007959A0 /* PBXTextBookmark */ = {
+ 8BC92B9827CE8A960091806E /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2407DEB6089929BA00EB68BF /* Deckwrecka.cpp */;
name = "Deckwrecka.cpp: 16";
rLen = 0;
rLoc = 468;
rType = 0;
- vrLen = 155;
- vrLoc = 338;
+ vrLen = 132;
+ vrLoc = 396;
};
- 8BE2603D226E7A5A007959A0 /* PBXTextBookmark */ = {
+ 8BC92BA627CE8BD40091806E /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2407DEB6089929BA00EB68BF /* Deckwrecka.cpp */;
name = "Deckwrecka.cpp: 16";
rLen = 0;
rLoc = 468;
rType = 0;
- vrLen = 155;
- vrLoc = 338;
+ vrLen = 132;
+ vrLoc = 396;
};
8D01CCC60486CAD60068D4B7 /* Deckwrecka */ = {
activeExec = 0;
diff --git a/plugins/MacVST/Deckwrecka/Deckwrecka.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Deckwrecka/Deckwrecka.xcodeproj/christopherjohnson.perspectivev3
index 4fa18d590..63e527a1b 100755
--- a/plugins/MacVST/Deckwrecka/Deckwrecka.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Deckwrecka/Deckwrecka.xcodeproj/christopherjohnson.perspectivev3
@@ -321,7 +321,7 @@
185
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 259 202 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -349,10 +349,10 @@
_historyCapacity
0
bookmark
- 8BE2603D226E7A5A007959A0
+ 8BC92BA627CE8BD40091806E
history
- 8BE26033226E7A01007959A0
+ 8BC92B9827CE8A960091806E
SplitCount
@@ -366,18 +366,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 117}}
+ {{0, 0}, {603, 102}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 259 202 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 117pt
+ 102pt
Proportion
- 324pt
+ 339pt
Tabs
@@ -391,7 +391,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
+ {{10, 27}, {603, 312}}
Module
XCDetailModule
@@ -445,9 +445,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
+ {{10, 27}, {603, 312}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 259 202 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -475,11 +475,11 @@
TableOfContents
- 8BE2603E226E7A5A007959A0
+ 8BC92BA727CE8BD40091806E
1CA23ED40692098700951B8B
- 8BE2603F226E7A5A007959A0
+ 8BC92BA827CE8BD40091806E
8B0237581D42B1C400E1E8C8
- 8BE26040226E7A5A007959A0
+ 8BC92BA927CE8BD40091806E
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -632,7 +632,7 @@
StatusbarIsVisible
TimeStamp
- 577665626.97399604
+ 667847636.94504094
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -649,11 +649,11 @@
5
WindowOrderList
- 8BE26041226E7A5A007959A0
- /Users/christopherjohnson/Desktop/Deckwrecka/Deckwrecka.xcodeproj
+ 8BC92BAA27CE8BD40091806E
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Deckwrecka/Deckwrecka.xcodeproj
WindowString
- 34 365 810 487 0 0 1440 878
+ 259 202 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Deckwrecka/source/DeckwreckaProc.cpp b/plugins/MacVST/Deckwrecka/source/DeckwreckaProc.cpp
index fcecee4ce..a63176921 100755
--- a/plugins/MacVST/Deckwrecka/source/DeckwreckaProc.cpp
+++ b/plugins/MacVST/Deckwrecka/source/DeckwreckaProc.cpp
@@ -41,22 +41,32 @@ void Deckwrecka::processReplacing(float **inputs, float **outputs, VstInt32 samp
bflip++;
if (bflip < 1 || bflip > 3) bflip = 1;
- randyL = (double(fpd)/UINT32_MAX);
- randyL += (double(fpd)/UINT32_MAX);
- randyL += (double(fpd)/UINT32_MAX);
- randyL += (double(fpd)/UINT32_MAX);
- randyL += (double(fpd)/UINT32_MAX);
- randyL += (double(fpd)/UINT32_MAX);
+ randyL = (double(fpdL)/UINT32_MAX);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ randyL += (double(fpdL)/UINT32_MAX);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ randyL += (double(fpdL)/UINT32_MAX);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ randyL += (double(fpdL)/UINT32_MAX);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ randyL += (double(fpdL)/UINT32_MAX);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ randyL += (double(fpdL)/UINT32_MAX);
randyL /= 6.0;
randyL *= wreck; //0 to 1 the noise, may not be needed
//set up the noise
- randyR = (double(fpd)/UINT32_MAX);
- randyR += (double(fpd)/UINT32_MAX);
- randyR += (double(fpd)/UINT32_MAX);
- randyR += (double(fpd)/UINT32_MAX);
- randyR += (double(fpd)/UINT32_MAX);
- randyR += (double(fpd)/UINT32_MAX);
+ randyR = (double(fpdR)/UINT32_MAX);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ randyR += (double(fpdR)/UINT32_MAX);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ randyR += (double(fpdR)/UINT32_MAX);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ randyR += (double(fpdR)/UINT32_MAX);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ randyR += (double(fpdR)/UINT32_MAX);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ randyR += (double(fpdR)/UINT32_MAX);
randyR /= 6.0;
randyR *= wreck; //0 to 1 the noise, may not be needed
//set up the noise
@@ -226,22 +236,32 @@ void Deckwrecka::processDoubleReplacing(double **inputs, double **outputs, VstIn
bflip++;
if (bflip < 1 || bflip > 3) bflip = 1;
- randyL = (double(fpd)/UINT32_MAX);
- randyL += (double(fpd)/UINT32_MAX);
- randyL += (double(fpd)/UINT32_MAX);
- randyL += (double(fpd)/UINT32_MAX);
- randyL += (double(fpd)/UINT32_MAX);
- randyL += (double(fpd)/UINT32_MAX);
+ randyL = (double(fpdL)/UINT32_MAX);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ randyL += (double(fpdL)/UINT32_MAX);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ randyL += (double(fpdL)/UINT32_MAX);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ randyL += (double(fpdL)/UINT32_MAX);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ randyL += (double(fpdL)/UINT32_MAX);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ randyL += (double(fpdL)/UINT32_MAX);
randyL /= 6.0;
randyL *= wreck; //0 to 1 the noise, may not be needed
//set up the noise
- randyR = (double(fpd)/UINT32_MAX);
- randyR += (double(fpd)/UINT32_MAX);
- randyR += (double(fpd)/UINT32_MAX);
- randyR += (double(fpd)/UINT32_MAX);
- randyR += (double(fpd)/UINT32_MAX);
- randyR += (double(fpd)/UINT32_MAX);
+ randyR = (double(fpdR)/UINT32_MAX);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ randyR += (double(fpdR)/UINT32_MAX);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ randyR += (double(fpdR)/UINT32_MAX);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ randyR += (double(fpdR)/UINT32_MAX);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ randyR += (double(fpdR)/UINT32_MAX);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ randyR += (double(fpdR)/UINT32_MAX);
randyR /= 6.0;
randyR *= wreck; //0 to 1 the noise, may not be needed
//set up the noise
diff --git a/plugins/MacVST/Density/Density.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Density/Density.xcodeproj/christopherjohnson.pbxuser
index 86b1d22f4..43a21a4f9 100755
--- a/plugins/MacVST/Density/Density.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Density/Density.xcodeproj/christopherjohnson.pbxuser
@@ -49,14 +49,14 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569734277;
- PBXWorkspaceStateSaveDate = 569734277;
+ PBXPerProjectTemplateStateSaveDate = 667847663;
+ PBXWorkspaceStateSaveDate = 667847663;
};
perUserProjectItems = {
- 8B79379F21F574D1006E9731 /* PBXTextBookmark */ = 8B79379F21F574D1006E9731 /* PBXTextBookmark */;
8B7937A021F574D1006E9731 /* PBXTextBookmark */ = 8B7937A021F574D1006E9731 /* PBXTextBookmark */;
- 8B7937A121F574D1006E9731 /* PBXTextBookmark */ = 8B7937A121F574D1006E9731 /* PBXTextBookmark */;
- 8B7937A221F574D1006E9731 /* PBXTextBookmark */ = 8B7937A221F574D1006E9731 /* PBXTextBookmark */;
+ 8BC92C0927CE8C160091806E /* PBXTextBookmark */ = 8BC92C0927CE8C160091806E /* PBXTextBookmark */;
+ 8BC92C0A27CE8C160091806E /* PBXTextBookmark */ = 8BC92C0A27CE8C160091806E /* PBXTextBookmark */;
+ 8BC92C0B27CE8C160091806E /* PBXTextBookmark */ = 8BC92C0B27CE8C160091806E /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -72,9 +72,9 @@
};
245463B80991757100464AD3 /* Density.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {866, 962}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1110, 1152}}";
sepNavSelRange = "{2579, 0}";
- sepNavVisRange = "{2169, 536}";
+ sepNavVisRange = "{2169, 434}";
sepNavWindowFrame = "{{593, 47}, {895, 831}}";
};
};
@@ -88,10 +88,10 @@
};
24D8286F09A914000093AEF8 /* DensityProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {684, 4225}}";
- sepNavSelRange = "{8807, 0}";
- sepNavVisRange = "{8744, 275}";
- sepNavWindowFrame = "{{545, 39}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {849, 4644}}";
+ sepNavSelRange = "{8572, 0}";
+ sepNavVisRange = "{7992, 580}";
+ sepNavWindowFrame = "{{385, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -108,16 +108,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B79379F21F574D1006E9731 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* DensityProc.cpp */;
- name = "DensityProc.cpp: 240";
- rLen = 0;
- rLoc = 8807;
- rType = 0;
- vrLen = 275;
- vrLoc = 8744;
- };
8B7937A021F574D1006E9731 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2407DEB6089929BA00EB68BF /* Density.cpp */;
@@ -128,26 +118,36 @@
vrLen = 786;
vrLoc = 322;
};
- 8B7937A121F574D1006E9731 /* PBXTextBookmark */ = {
+ 8BC92C0927CE8C160091806E /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 245463B80991757100464AD3 /* Density.h */;
- name = "Density.h: 1";
- rLen = 0;
- rLoc = 0;
- rType = 0;
- vrLen = 446;
- vrLoc = 0;
- };
- 8B7937A221F574D1006E9731 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 245463B80991757100464AD3 /* Density.h */;
- name = "Density.h: 65";
+ name = "Density.h: 67";
rLen = 0;
rLoc = 2579;
rType = 0;
- vrLen = 536;
+ vrLen = 434;
vrLoc = 2169;
};
+ 8BC92C0A27CE8C160091806E /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* DensityProc.cpp */;
+ name = "DensityProc.cpp: 256";
+ rLen = 0;
+ rLoc = 8572;
+ rType = 0;
+ vrLen = 534;
+ vrLoc = 8038;
+ };
+ 8BC92C0B27CE8C160091806E /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* DensityProc.cpp */;
+ name = "DensityProc.cpp: 256";
+ rLen = 0;
+ rLoc = 8572;
+ rType = 0;
+ vrLen = 580;
+ vrLoc = 7992;
+ };
8D01CCC60486CAD60068D4B7 /* Density */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/Density/Density.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Density/Density.xcodeproj/christopherjohnson.perspectivev3
index 26b67da05..a0aab3176 100755
--- a/plugins/MacVST/Density/Density.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Density/Density.xcodeproj/christopherjohnson.perspectivev3
@@ -256,6 +256,8 @@
Layout
+ BecomeActive
+
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -298,7 +300,7 @@
PBXSmartGroupTreeModuleOutlineStateSelectionKey
- 7
+ 6
4
0
@@ -321,7 +323,7 @@
185
RubberWindowFrame
- 374 322 810 487 0 0 1440 878
+ 279 178 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -332,14 +334,12 @@
Dock
- BecomeActive
-
ContentConfiguration
PBXProjectModuleGUID
8B0237581D42B1C400E1E8C8
PBXProjectModuleLabel
- Density.h
+ DensityProc.cpp
PBXSplitModuleInNavigatorKey
Split0
@@ -347,16 +347,16 @@
PBXProjectModuleGUID
8B0237591D42B1C400E1E8C8
PBXProjectModuleLabel
- Density.h
+ DensityProc.cpp
_historyCapacity
0
bookmark
- 8B7937A221F574D1006E9731
+ 8BC92C0B27CE8C160091806E
history
- 8B79379F21F574D1006E9731
8B7937A021F574D1006E9731
- 8B7937A121F574D1006E9731
+ 8BC92C0927CE8C160091806E
+ 8BC92C0A27CE8C160091806E
SplitCount
@@ -370,18 +370,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 331}}
+ {{0, 0}, {603, 326}}
RubberWindowFrame
- 374 322 810 487 0 0 1440 878
+ 279 178 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 331pt
+ 326pt
Proportion
- 110pt
+ 115pt
Tabs
@@ -395,7 +395,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 414}}
+ {{10, 27}, {603, 88}}
+ RubberWindowFrame
+ 279 178 810 487 0 0 1280 698
Module
XCDetailModule
@@ -450,8 +452,6 @@
Frame
{{10, 27}, {603, 83}}
- RubberWindowFrame
- 374 322 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -479,11 +479,11 @@
TableOfContents
- 8B7937A321F574D1006E9731
+ 8BC92C0C27CE8C160091806E
1CA23ED40692098700951B8B
- 8B7937A421F574D1006E9731
+ 8BC92C0D27CE8C160091806E
8B0237581D42B1C400E1E8C8
- 8B7937A521F574D1006E9731
+ 8BC92C0E27CE8C160091806E
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -636,7 +636,7 @@
StatusbarIsVisible
TimeStamp
- 569734353.80657697
+ 667847702.23173201
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -653,10 +653,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/Density/Density.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Density/Density.xcodeproj
WindowString
- 374 322 810 487 0 0 1440 878
+ 279 178 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Density2/Density2.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Density2/Density2.xcodeproj/christopherjohnson.pbxuser
index ae63b6c98..802f9bfda 100755
--- a/plugins/MacVST/Density2/Density2.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Density2/Density2.xcodeproj/christopherjohnson.pbxuser
@@ -49,13 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 653242829;
- PBXWorkspaceStateSaveDate = 653242829;
+ PBXPerProjectTemplateStateSaveDate = 667847708;
+ PBXWorkspaceStateSaveDate = 667847708;
};
perUserProjectItems = {
8B06D56E25D6002500ED384E /* PBXTextBookmark */ = 8B06D56E25D6002500ED384E /* PBXTextBookmark */;
8B7DE4C825D5FF5E00C1216F /* PBXTextBookmark */ = 8B7DE4C825D5FF5E00C1216F /* PBXTextBookmark */;
- 8BCBACD326EFB26E00E491F2 /* PBXTextBookmark */ = 8BCBACD326EFB26E00E491F2 /* PBXTextBookmark */;
+ 8BC92C2127CE8C210091806E /* PBXTextBookmark */ = 8BC92C2127CE8C210091806E /* PBXTextBookmark */;
8BCBACD426EFB26E00E491F2 /* PBXTextBookmark */ = 8BCBACD426EFB26E00E491F2 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
@@ -64,9 +64,9 @@
};
2407DEB6089929BA00EB68BF /* Density2.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {930, 2844}}";
+ sepNavIntBoundsRect = "{{0, 0}, {930, 2790}}";
sepNavSelRange = "{452, 0}";
- sepNavVisRange = "{442, 32}";
+ sepNavVisRange = "{442, 22}";
sepNavWindowFrame = "{{12, 47}, {895, 831}}";
};
};
@@ -128,14 +128,14 @@
vrLen = 157;
vrLoc = 10579;
};
- 8BCBACD326EFB26E00E491F2 /* PBXTextBookmark */ = {
+ 8BC92C2127CE8C210091806E /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2407DEB6089929BA00EB68BF /* Density2.cpp */;
name = "Density2.cpp: 15";
rLen = 0;
rLoc = 452;
rType = 0;
- vrLen = 32;
+ vrLen = 22;
vrLoc = 442;
};
8BCBACD426EFB26E00E491F2 /* PBXTextBookmark */ = {
diff --git a/plugins/MacVST/Density2/Density2.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Density2/Density2.xcodeproj/christopherjohnson.perspectivev3
index e7946584f..ca2421d88 100755
--- a/plugins/MacVST/Density2/Density2.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Density2/Density2.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 403 346 810 487 0 0 1440 878
+ 301 190 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,12 +351,12 @@
_historyCapacity
0
bookmark
- 8BCBACD426EFB26E00E491F2
+ 8BC92C2127CE8C210091806E
history
8B7DE4C825D5FF5E00C1216F
8B06D56E25D6002500ED384E
- 8BCBACD326EFB26E00E491F2
+ 8BCBACD426EFB26E00E491F2
SplitCount
@@ -370,18 +370,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 86}}
+ {{0, 0}, {603, 69}}
RubberWindowFrame
- 403 346 810 487 0 0 1440 878
+ 301 190 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 86pt
+ 69pt
Proportion
- 355pt
+ 372pt
Tabs
@@ -395,9 +395,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 328}}
+ {{10, 27}, {603, 345}}
RubberWindowFrame
- 403 346 810 487 0 0 1440 878
+ 301 190 810 487 0 0 1280 698
Module
XCDetailModule
@@ -479,11 +479,11 @@
TableOfContents
- 8BCBACD526EFB26E00E491F2
+ 8BC92C2227CE8C210091806E
1CA23ED40692098700951B8B
- 8BCBACD626EFB26E00E491F2
+ 8BC92C2327CE8C210091806E
8B0237581D42B1C400E1E8C8
- 8BCBACD726EFB26E00E491F2
+ 8BC92C2427CE8C210091806E
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -636,7 +636,7 @@
StatusbarIsVisible
TimeStamp
- 653242990.08215702
+ 667847713.28473902
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -656,7 +656,7 @@
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Density2/Density2.xcodeproj
WindowString
- 403 346 810 487 0 0 1440 878
+ 301 190 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Desk/Desk.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Desk/Desk.xcodeproj/christopherjohnson.pbxuser
index 9a65a018e..52288610d 100755
--- a/plugins/MacVST/Desk/Desk.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Desk/Desk.xcodeproj/christopherjohnson.pbxuser
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569734422;
- PBXWorkspaceStateSaveDate = 569734422;
+ PBXPerProjectTemplateStateSaveDate = 667847740;
+ PBXWorkspaceStateSaveDate = 667847740;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
diff --git a/plugins/MacVST/Desk/Desk.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Desk/Desk.xcodeproj/christopherjohnson.perspectivev3
index 58a32ea78..61413bdaa 100755
--- a/plugins/MacVST/Desk/Desk.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Desk/Desk.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 430 335 810 487 0 0 1440 878
+ 321 185 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 430 335 810 487 0 0 1440 878
+ 321 185 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 430 335 810 487 0 0 1440 878
+ 321 185 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B7937D821F57520006E9731
+ 8BC92C8027CE8C410091806E
1CA23ED40692098700951B8B
- 8B7937D921F57520006E9731
+ 8BC92C8127CE8C410091806E
8B0237581D42B1C400E1E8C8
- 8B7937DA21F57520006E9731
+ 8BC92C8227CE8C410091806E
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 569734432.71270597
+ 667847745.79530501
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +643,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/Desk/Desk.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Desk/Desk.xcodeproj
WindowString
- 430 335 810 487 0 0 1440 878
+ 321 185 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Desk4/Desk4.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Desk4/Desk4.xcodeproj/christopherjohnson.pbxuser
index e47111589..36cba71a8 100755
--- a/plugins/MacVST/Desk4/Desk4.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Desk4/Desk4.xcodeproj/christopherjohnson.pbxuser
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569734453;
- PBXWorkspaceStateSaveDate = 569734453;
+ PBXPerProjectTemplateStateSaveDate = 667847750;
+ PBXWorkspaceStateSaveDate = 667847750;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
diff --git a/plugins/MacVST/Desk4/Desk4.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Desk4/Desk4.xcodeproj/christopherjohnson.perspectivev3
index eb5fa7de9..a5b94b3de 100755
--- a/plugins/MacVST/Desk4/Desk4.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Desk4/Desk4.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 296 310 810 487 0 0 1440 878
+ 221 173 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 296 310 810 487 0 0 1440 878
+ 221 173 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 296 310 810 487 0 0 1440 878
+ 221 173 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B7937F721F5753E006E9731
+ 8BC92C9F27CE8C4B0091806E
1CA23ED40692098700951B8B
- 8B7937F821F5753E006E9731
+ 8BC92CA027CE8C4B0091806E
8B0237581D42B1C400E1E8C8
- 8B7937F921F5753E006E9731
+ 8BC92CA127CE8C4B0091806E
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 569734462.79320705
+ 667847755.14928699
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +643,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/Desk4/Desk4.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Desk4/Desk4.xcodeproj
WindowString
- 296 310 810 487 0 0 1440 878
+ 221 173 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/DigitalBlack/DigitalBlack.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/DigitalBlack/DigitalBlack.xcodeproj/christopherjohnson.pbxuser
index 0971e3d57..5d3e243c8 100755
--- a/plugins/MacVST/DigitalBlack/DigitalBlack.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/DigitalBlack/DigitalBlack.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* DigitalBlack */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 603934244;
- PBXWorkspaceStateSaveDate = 603934244;
+ PBXPerProjectTemplateStateSaveDate = 667847760;
+ PBXWorkspaceStateSaveDate = 667847760;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* DigitalBlack */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/DigitalBlack/DigitalBlack.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/DigitalBlack/DigitalBlack.xcodeproj/christopherjohnson.perspectivev3
index 68bf7fcc8..01c8819bb 100755
--- a/plugins/MacVST/DigitalBlack/DigitalBlack.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/DigitalBlack/DigitalBlack.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B88B5A223FF52350032C1CD
+ 8BC92CBE27CE8C540091806E
1CA23ED40692098700951B8B
- 8B88B5A323FF52350032C1CD
+ 8BC92CBF27CE8C540091806E
8B0237581D42B1C400E1E8C8
- 8B88B5A423FF52350032C1CD
+ 8BC92CC027CE8C540091806E
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 603935285.67995405
+ 667847764.49881101
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,11 +643,10 @@
5
WindowOrderList
- 8B88B5A523FF52350032C1CD
- /Users/christopherjohnson/Desktop/DigitalBlack/DigitalBlack.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/DigitalBlack/DigitalBlack.xcodeproj
WindowString
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/DigitalBlack/DigitalBlack.xcodeproj/project.pbxproj b/plugins/MacVST/DigitalBlack/DigitalBlack.xcodeproj/project.pbxproj
index 6865d0463..ecccc1115 100755
--- a/plugins/MacVST/DigitalBlack/DigitalBlack.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/DigitalBlack/DigitalBlack.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* DigitalBlack */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "DigitalBlack" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* DigitalBlack */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/Dirt/Dirt.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Dirt/Dirt.xcodeproj/christopherjohnson.pbxuser
index b46e9388f..e96ade65b 100644
--- a/plugins/MacVST/Dirt/Dirt.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Dirt/Dirt.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* Dirt */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 666557063;
- PBXWorkspaceStateSaveDate = 666557063;
+ PBXPerProjectTemplateStateSaveDate = 667847768;
+ PBXWorkspaceStateSaveDate = 667847768;
+ };
+ perUserProjectItems = {
+ 8BC92CE727CE8D130091806E /* XCBuildMessageTextBookmark */ = 8BC92CE727CE8D130091806E /* XCBuildMessageTextBookmark */;
+ 8BC92CE827CE8D130091806E /* PBXTextBookmark */ = 8BC92CE827CE8D130091806E /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -74,9 +78,9 @@
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {859, 20267}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1074, 27342}}";
sepNavSelRange = "{10616, 0}";
- sepNavVisRange = "{9653, 2414}";
+ sepNavVisRange = "{10613, 123}";
sepNavWindowFrame = "{{15, 42}, {895, 831}}";
};
};
@@ -102,7 +106,26 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
+ 8BC92CE727CE8D130091806E /* XCBuildMessageTextBookmark */ = {
+ isa = PBXTextBookmark;
+ comments = "Deprecated conversion from string constant to 'char*'";
+ fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
+ fallbackIsa = XCBuildMessageTextBookmark;
+ rLen = 1;
+ rLoc = 306;
+ rType = 1;
+ };
+ 8BC92CE827CE8D130091806E /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
+ name = "audioeffectx.cpp: 307";
+ rLen = 0;
+ rLoc = 10616;
+ rType = 0;
+ vrLen = 80;
+ vrLoc = 10613;
+ };
+ 8D01CCC60486CAD60068D4B7 /* Dirt */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/Dirt/Dirt.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Dirt/Dirt.xcodeproj/christopherjohnson.perspectivev3
index 6dcb96a50..beba9f9d9 100644
--- a/plugins/MacVST/Dirt/Dirt.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Dirt/Dirt.xcodeproj/christopherjohnson.perspectivev3
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 630 401 646 293 0 0 1280 698
+ 404 384 646 293 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -339,7 +337,7 @@
PBXProjectModuleGUID
8B0237581D42B1C400E1E8C8
PBXProjectModuleLabel
- Gain.h
+ audioeffectx.cpp
PBXSplitModuleInNavigatorKey
Split0
@@ -347,7 +345,15 @@
PBXProjectModuleGUID
8B0237591D42B1C400E1E8C8
PBXProjectModuleLabel
- Gain.h
+ audioeffectx.cpp
+ _historyCapacity
+ 0
+ bookmark
+ 8BC92CE827CE8D130091806E
+ history
+
+ 8BC92CE727CE8D130091806E
+
SplitCount
1
@@ -360,18 +366,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {439, 0}}
+ {{0, 0}, {439, 74}}
RubberWindowFrame
- 630 401 646 293 0 0 1280 698
+ 404 384 646 293 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 0pt
+ 74pt
Proportion
- 247pt
+ 173pt
Tabs
@@ -386,8 +392,6 @@
Frame
{{10, 27}, {439, 220}}
- RubberWindowFrame
- 630 401 646 293 0 0 1280 698
Module
XCDetailModule
@@ -441,7 +445,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {439, 146}}
+ RubberWindowFrame
+ 404 384 646 293 0 0 1280 698
Module
PBXBuildResultsModule
@@ -469,11 +475,11 @@
TableOfContents
- 8B4CD2D127BADAA400DE384C
+ 8BC92CE927CE8D130091806E
1CA23ED40692098700951B8B
- 8B4CD2D227BADAA400DE384C
+ 8BC92CEA27CE8D130091806E
8B0237581D42B1C400E1E8C8
- 8B4CD2D327BADAA400DE384C
+ 8BC92CEB27CE8D130091806E
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +632,7 @@
StatusbarIsVisible
TimeStamp
- 666557092.04128397
+ 667847955.14810896
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -646,7 +652,7 @@
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Dirt/Dirt.xcodeproj
WindowString
- 630 401 646 293 0 0 1280 698
+ 404 384 646 293 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Dirt/Dirt.xcodeproj/project.pbxproj b/plugins/MacVST/Dirt/Dirt.xcodeproj/project.pbxproj
index 495cb0fda..6c41fd5b3 100755
--- a/plugins/MacVST/Dirt/Dirt.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/Dirt/Dirt.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
+ 8D01CCC60486CAD60068D4B7 /* Dirt */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "Dirt" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
+ 8D01CCC60486CAD60068D4B7 /* Dirt */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/Distance/Distance.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Distance/Distance.xcodeproj/christopherjohnson.pbxuser
index f25d8b8c3..256fdf0f2 100755
--- a/plugins/MacVST/Distance/Distance.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Distance/Distance.xcodeproj/christopherjohnson.pbxuser
@@ -49,14 +49,14 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569734484;
- PBXWorkspaceStateSaveDate = 569734484;
+ PBXPerProjectTemplateStateSaveDate = 667847961;
+ PBXWorkspaceStateSaveDate = 667847961;
};
perUserProjectItems = {
8B79381621F5756D006E9731 /* PBXTextBookmark */ = 8B79381621F5756D006E9731 /* PBXTextBookmark */;
8B79381721F5756D006E9731 /* PBXTextBookmark */ = 8B79381721F5756D006E9731 /* PBXTextBookmark */;
- 8B79381821F5756D006E9731 /* PBXBookmark */ = 8B79381821F5756D006E9731 /* PBXBookmark */;
8B79381921F5756D006E9731 /* PBXTextBookmark */ = 8B79381921F5756D006E9731 /* PBXTextBookmark */;
+ 8BC92CFC27CE8D1D0091806E /* PBXTextBookmark */ = 8BC92CFC27CE8D1D0091806E /* PBXTextBookmark */;
8BD79BE91DB421CA006FFA16 /* PBXTextBookmark */ = 8BD79BE91DB421CA006FFA16 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
@@ -89,9 +89,9 @@
};
24D8286F09A914000093AEF8 /* DistanceProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {691, 3562}}";
- sepNavSelRange = "{7303, 0}";
- sepNavVisRange = "{8890, 722}";
+ sepNavIntBoundsRect = "{{0, 0}, {849, 3690}}";
+ sepNavSelRange = "{6586, 0}";
+ sepNavVisRange = "{6253, 333}";
sepNavWindowFrame = "{{266, 47}, {895, 831}}";
};
};
@@ -129,19 +129,25 @@
vrLen = 650;
vrLoc = 0;
};
- 8B79381821F5756D006E9731 /* PBXBookmark */ = {
- isa = PBXBookmark;
- fRef = 24D8286F09A914000093AEF8 /* DistanceProc.cpp */;
- };
8B79381921F5756D006E9731 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* DistanceProc.cpp */;
name = "DistanceProc.cpp: 203";
rLen = 0;
- rLoc = 7303;
+ rLoc = 6586;
rType = 0;
- vrLen = 722;
- vrLoc = 8890;
+ vrLen = 0;
+ vrLoc = 6586;
+ };
+ 8BC92CFC27CE8D1D0091806E /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* DistanceProc.cpp */;
+ name = "DistanceProc.cpp: 206";
+ rLen = 0;
+ rLoc = 6586;
+ rType = 0;
+ vrLen = 333;
+ vrLoc = 6253;
};
8BD79BE91DB421CA006FFA16 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
diff --git a/plugins/MacVST/Distance/Distance.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Distance/Distance.xcodeproj/christopherjohnson.perspectivev3
index 5df581a9b..673742e45 100755
--- a/plugins/MacVST/Distance/Distance.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Distance/Distance.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 518 304 810 487 0 0 1440 878
+ 386 170 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,13 +351,13 @@
_historyCapacity
0
bookmark
- 8B79381921F5756D006E9731
+ 8BC92CFC27CE8D1D0091806E
history
8BD79BE91DB421CA006FFA16
8B79381621F5756D006E9731
8B79381721F5756D006E9731
- 8B79381821F5756D006E9731
+ 8B79381921F5756D006E9731
SplitCount
@@ -371,18 +371,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 281}}
+ {{0, 0}, {603, 273}}
RubberWindowFrame
- 518 304 810 487 0 0 1440 878
+ 386 170 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 281pt
+ 273pt
Proportion
- 160pt
+ 168pt
Tabs
@@ -396,9 +396,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 133}}
+ {{10, 27}, {603, 141}}
RubberWindowFrame
- 518 304 810 487 0 0 1440 878
+ 386 170 810 487 0 0 1280 698
Module
XCDetailModule
@@ -480,11 +480,11 @@
TableOfContents
- 8B79381A21F5756D006E9731
+ 8BC92CFD27CE8D1D0091806E
1CA23ED40692098700951B8B
- 8B79381B21F5756D006E9731
+ 8BC92CFE27CE8D1D0091806E
8B0237581D42B1C400E1E8C8
- 8B79381C21F5756D006E9731
+ 8BC92CFF27CE8D1D0091806E
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -637,7 +637,7 @@
StatusbarIsVisible
TimeStamp
- 569734509.28240097
+ 667847965.83493698
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -654,10 +654,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/Distance/Distance.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Distance/Distance.xcodeproj
WindowString
- 518 304 810 487 0 0 1440 878
+ 386 170 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Distance2/Distance2.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Distance2/Distance2.xcodeproj/christopherjohnson.pbxuser
index 8e417418e..ac4ad9e27 100755
--- a/plugins/MacVST/Distance2/Distance2.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Distance2/Distance2.xcodeproj/christopherjohnson.pbxuser
@@ -49,14 +49,14 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569734535;
- PBXWorkspaceStateSaveDate = 569734535;
+ PBXPerProjectTemplateStateSaveDate = 667847969;
+ PBXWorkspaceStateSaveDate = 667847969;
};
perUserProjectItems = {
8B79383921F57592006E9731 /* PBXTextBookmark */ = 8B79383921F57592006E9731 /* PBXTextBookmark */;
8B79383D21F57592006E9731 /* PBXTextBookmark */ = 8B79383D21F57592006E9731 /* PBXTextBookmark */;
- 8B7E3D5520A6501D00482CB5 /* PBXTextBookmark */ = 8B7E3D5520A6501D00482CB5 /* PBXTextBookmark */;
- 8B7E3D5B20A6501D00482CB5 /* PBXTextBookmark */ = 8B7E3D5B20A6501D00482CB5 /* PBXTextBookmark */;
+ 8BC92D1A27CE8D290091806E /* PBXTextBookmark */ = 8BC92D1A27CE8D290091806E /* PBXTextBookmark */;
+ 8BC92D1E27CE8D290091806E /* PBXTextBookmark */ = 8BC92D1E27CE8D290091806E /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -80,18 +80,18 @@
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {838, 19877}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1074, 27486}}";
sepNavSelRange = "{10616, 0}";
- sepNavVisRange = "{10459, 280}";
+ sepNavVisRange = "{10579, 157}";
sepNavWindowFrame = "{{15, 42}, {895, 831}}";
};
};
24D8286F09A914000093AEF8 /* Distance2Proc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {848, 7371}}";
- sepNavSelRange = "{21129, 0}";
- sepNavVisRange = "{8249, 1763}";
- sepNavWindowFrame = "{{0, 47}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {885, 9306}}";
+ sepNavSelRange = "{19037, 0}";
+ sepNavVisRange = "{8214, 1302}";
+ sepNavWindowFrame = "{{0, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -123,30 +123,30 @@
fRef = 24D8286F09A914000093AEF8 /* Distance2Proc.cpp */;
name = "Distance2Proc.cpp: 553";
rLen = 0;
- rLoc = 21129;
+ rLoc = 19037;
rType = 0;
vrLen = 1763;
vrLoc = 8249;
};
- 8B7E3D5520A6501D00482CB5 /* PBXTextBookmark */ = {
+ 8BC92D1A27CE8D290091806E /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
name = "audioeffectx.cpp: 307";
rLen = 0;
rLoc = 10616;
rType = 0;
- vrLen = 399;
- vrLoc = 10459;
+ vrLen = 114;
+ vrLoc = 10579;
};
- 8B7E3D5B20A6501D00482CB5 /* PBXTextBookmark */ = {
+ 8BC92D1E27CE8D290091806E /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* Distance2Proc.cpp */;
- name = "Distance2Proc.cpp: 552";
+ name = "Distance2Proc.cpp: 497";
rLen = 0;
- rLoc = 21129;
+ rLoc = 19037;
rType = 0;
- vrLen = 1763;
- vrLoc = 8249;
+ vrLen = 1302;
+ vrLoc = 8214;
};
8D01CCC60486CAD60068D4B7 /* Distance2 */ = {
activeExec = 0;
diff --git a/plugins/MacVST/Distance2/Distance2.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Distance2/Distance2.xcodeproj/christopherjohnson.perspectivev3
index 7b0ef1327..3e3af60ce 100755
--- a/plugins/MacVST/Distance2/Distance2.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Distance2/Distance2.xcodeproj/christopherjohnson.perspectivev3
@@ -241,10 +241,10 @@
_historyCapacity
0
bookmark
- 8B79383D21F57592006E9731
+ 8BC92D1E27CE8D290091806E
history
- 8B7E3D5B20A6501D00482CB5
+ 8B79383D21F57592006E9731
SplitCount
@@ -256,11 +256,11 @@
Geometry
Frame
- {{0, 20}, {895, 734}}
+ {{0, 20}, {895, 597}}
PBXModuleWindowStatusBarHidden2
RubberWindowFrame
- 0 103 895 775 0 0 1440 878
+ 0 60 895 638 0 0 1280 698
@@ -364,7 +364,7 @@
185
RubberWindowFrame
- 20 288 810 487 0 0 1440 878
+ 15 162 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -392,10 +392,10 @@
_historyCapacity
0
bookmark
- 8B79383921F57592006E9731
+ 8BC92D1A27CE8D290091806E
history
- 8B7E3D5520A6501D00482CB5
+ 8B79383921F57592006E9731
SplitCount
@@ -409,18 +409,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 117}}
+ {{0, 0}, {603, 102}}
RubberWindowFrame
- 20 288 810 487 0 0 1440 878
+ 15 162 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 117pt
+ 102pt
Proportion
- 324pt
+ 339pt
Tabs
@@ -434,9 +434,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
+ {{10, 27}, {603, 312}}
RubberWindowFrame
- 20 288 810 487 0 0 1440 878
+ 15 162 810 487 0 0 1280 698
Module
XCDetailModule
@@ -518,11 +518,11 @@
TableOfContents
- 8B79383A21F57592006E9731
+ 8BC92D1B27CE8D290091806E
1CA23ED40692098700951B8B
- 8B79383B21F57592006E9731
+ 8BC92D1C27CE8D290091806E
8B0237581D42B1C400E1E8C8
- 8B79383C21F57592006E9731
+ 8BC92D1D27CE8D290091806E
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -675,7 +675,7 @@
StatusbarIsVisible
TimeStamp
- 569734546.43575704
+ 667847977.43649101
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -693,10 +693,10 @@
WindowOrderList
8B7E3D5920A6501D00482CB5
- /Users/christopherjohnson/Desktop/MacVST/Distance2/Distance2.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Distance2/Distance2.xcodeproj
WindowString
- 20 288 810 487 0 0 1440 878
+ 15 162 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Distortion/Distortion.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Distortion/Distortion.xcodeproj/christopherjohnson.pbxuser
index a0f247b40..ea6e273a9 100755
--- a/plugins/MacVST/Distortion/Distortion.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Distortion/Distortion.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 631581029;
- PBXWorkspaceStateSaveDate = 631581029;
+ PBXPerProjectTemplateStateSaveDate = 667848082;
+ PBXWorkspaceStateSaveDate = 667848082;
};
perUserProjectItems = {
8B2E7B0625A5296F00485B86 /* PBXTextBookmark */ = 8B2E7B0625A5296F00485B86 /* PBXTextBookmark */;
- 8B7A75A62441F25200014B55 /* PBXTextBookmark */ = 8B7A75A62441F25200014B55 /* PBXTextBookmark */;
+ 8BC92D3927CE8D980091806E /* PBXTextBookmark */ = 8BC92D3927CE8D980091806E /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -78,9 +78,9 @@
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1074, 27486}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1074, 27504}}";
sepNavSelRange = "{10616, 0}";
- sepNavVisRange = "{10579, 157}";
+ sepNavVisRange = "{10579, 114}";
sepNavWindowFrame = "{{15, 42}, {895, 831}}";
};
};
@@ -116,15 +116,15 @@
vrLen = 114;
vrLoc = 10579;
};
- 8B7A75A62441F25200014B55 /* PBXTextBookmark */ = {
+ 8BC92D3927CE8D980091806E /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
name = "audioeffectx.cpp: 307";
rLen = 0;
rLoc = 10616;
rType = 0;
- vrLen = 399;
- vrLoc = 10459;
+ vrLen = 114;
+ vrLoc = 10579;
};
8D01CCC60486CAD60068D4B7 /* Distortion */ = {
activeExec = 0;
diff --git a/plugins/MacVST/Distortion/Distortion.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Distortion/Distortion.xcodeproj/christopherjohnson.perspectivev3
index a53327e10..2395e2ed1 100755
--- a/plugins/MacVST/Distortion/Distortion.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Distortion/Distortion.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 56 375 810 487 0 0 1440 878
+ 42 203 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B2E7B0625A5296F00485B86
+ 8BC92D3927CE8D980091806E
history
- 8B7A75A62441F25200014B55
+ 8B2E7B0625A5296F00485B86
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 117}}
+ {{0, 0}, {603, 102}}
RubberWindowFrame
- 56 375 810 487 0 0 1440 878
+ 42 203 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 117pt
+ 102pt
Proportion
- 324pt
+ 339pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
+ {{10, 27}, {603, 312}}
RubberWindowFrame
- 56 375 810 487 0 0 1440 878
+ 42 203 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B2E7B0725A5296F00485B86
+ 8BC92D3A27CE8D980091806E
1CA23ED40692098700951B8B
- 8B2E7B0825A5296F00485B86
+ 8BC92D3B27CE8D980091806E
8B0237581D42B1C400E1E8C8
- 8B2E7B0925A5296F00485B86
+ 8BC92D3C27CE8D980091806E
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 631581039.13416898
+ 667848088.68905199
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +651,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/Plugins/MacVST/Distortion/Distortion.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Distortion/Distortion.xcodeproj
WindowString
- 56 375 810 487 0 0 1440 878
+ 42 203 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/DitherFloat/DitherFloat.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/DitherFloat/DitherFloat.xcodeproj/christopherjohnson.pbxuser
index e742ecf4d..fc0ecaa36 100755
--- a/plugins/MacVST/DitherFloat/DitherFloat.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/DitherFloat/DitherFloat.xcodeproj/christopherjohnson.pbxuser
@@ -49,15 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 572274028;
- PBXWorkspaceStateSaveDate = 572274028;
+ PBXPerProjectTemplateStateSaveDate = 667856193;
+ PBXWorkspaceStateSaveDate = 667856193;
};
perUserProjectItems = {
- 8B6F22ED221C35E90084A947 /* PBXBookmark */ = 8B6F22ED221C35E90084A947 /* PBXBookmark */;
8B6F22F6221C37910084A947 /* PBXTextBookmark */ = 8B6F22F6221C37910084A947 /* PBXTextBookmark */;
- 8B6F22F7221C37910084A947 /* XCBuildMessageTextBookmark */ = 8B6F22F7221C37910084A947 /* XCBuildMessageTextBookmark */;
- 8B6F22F8221C37910084A947 /* PBXTextBookmark */ = 8B6F22F8221C37910084A947 /* PBXTextBookmark */;
- 8B6F22FB221C37910084A947 /* PBXTextBookmark */ = 8B6F22FB221C37910084A947 /* PBXTextBookmark */;
+ 8BDC956227CEAD4700A07B67 /* PBXTextBookmark */ = 8BDC956227CEAD4700A07B67 /* PBXTextBookmark */;
+ 8BDC957227CEAE2C00A07B67 /* PBXTextBookmark */ = 8BDC957227CEAE2C00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -81,18 +79,18 @@
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {838, 19760}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1074, 27522}}";
sepNavSelRange = "{10616, 0}";
- sepNavVisRange = "{10459, 280}";
+ sepNavVisRange = "{10613, 123}";
sepNavWindowFrame = "{{15, 42}, {895, 831}}";
};
};
24D8286F09A914000093AEF8 /* DitherFloatProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {848, 2431}}";
- sepNavSelRange = "{5133, 0}";
- sepNavVisRange = "{0, 1576}";
- sepNavWindowFrame = "{{64, 47}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1056, 3348}}";
+ sepNavSelRange = "{2108, 0}";
+ sepNavVisRange = "{1528, 1286}";
+ sepNavWindowFrame = "{{262, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -109,10 +107,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B6F22ED221C35E90084A947 /* PBXBookmark */ = {
- isa = PBXBookmark;
- fRef = 24D8286F09A914000093AEF8 /* DitherFloatProc.cpp */;
- };
8B6F22F6221C37910084A947 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* DitherFloatProc.cpp */;
@@ -123,34 +117,25 @@
vrLen = 139;
vrLoc = 479;
};
- 8B6F22F7221C37910084A947 /* XCBuildMessageTextBookmark */ = {
- isa = PBXTextBookmark;
- comments = "Deprecated conversion from string constant to 'char*'";
- fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
- fallbackIsa = XCBuildMessageTextBookmark;
- rLen = 1;
- rLoc = 306;
- rType = 1;
- };
- 8B6F22F8221C37910084A947 /* PBXTextBookmark */ = {
+ 8BDC956227CEAD4700A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
name = "audioeffectx.cpp: 307";
rLen = 0;
rLoc = 10616;
rType = 0;
- vrLen = 280;
- vrLoc = 10459;
+ vrLen = 123;
+ vrLoc = 10613;
};
- 8B6F22FB221C37910084A947 /* PBXTextBookmark */ = {
+ 8BDC957227CEAE2C00A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* DitherFloatProc.cpp */;
- name = "DitherFloatProc.cpp: 164";
+ fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
+ name = "audioeffectx.cpp: 307";
rLen = 0;
- rLoc = 5133;
+ rLoc = 10616;
rType = 0;
- vrLen = 1576;
- vrLoc = 0;
+ vrLen = 80;
+ vrLoc = 10613;
};
8D01CCC60486CAD60068D4B7 /* DitherFloat */ = {
activeExec = 0;
diff --git a/plugins/MacVST/DitherFloat/DitherFloat.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/DitherFloat/DitherFloat.xcodeproj/christopherjohnson.perspectivev3
index d671f7cce..9de45b864 100755
--- a/plugins/MacVST/DitherFloat/DitherFloat.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/DitherFloat/DitherFloat.xcodeproj/christopherjohnson.perspectivev3
@@ -222,48 +222,7 @@
OpenEditors
-
-
- Content
-
- PBXProjectModuleGUID
- 8B6F22F9221C37910084A947
- PBXProjectModuleLabel
- DitherFloatProc.cpp
- PBXSplitModuleInNavigatorKey
-
- Split0
-
- PBXProjectModuleGUID
- 8B6F22FA221C37910084A947
- PBXProjectModuleLabel
- DitherFloatProc.cpp
- _historyCapacity
- 0
- bookmark
- 8B6F22FB221C37910084A947
- history
-
- 8B6F22ED221C35E90084A947
-
-
- SplitCount
- 1
-
- StatusBarVisibility
-
-
- Geometry
-
- Frame
- {{0, 20}, {895, 734}}
- PBXModuleWindowStatusBarHidden2
-
- RubberWindowFrame
- 64 103 895 775 0 0 1440 878
-
-
-
+
PerspectiveWidths
810
@@ -362,7 +321,7 @@
185
RubberWindowFrame
- 121 270 810 487 0 0 1440 878
+ 317 176 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -390,11 +349,11 @@
_historyCapacity
0
bookmark
- 8B6F22F8221C37910084A947
+ 8BDC957227CEAE2C00A07B67
history
8B6F22F6221C37910084A947
- 8B6F22F7221C37910084A947
+ 8BDC956227CEAD4700A07B67
SplitCount
@@ -408,18 +367,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 117}}
+ {{0, 0}, {603, 86}}
RubberWindowFrame
- 121 270 810 487 0 0 1440 878
+ 317 176 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 117pt
+ 86pt
Proportion
- 324pt
+ 355pt
Tabs
@@ -433,7 +392,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
+ {{10, 27}, {603, 328}}
Module
XCDetailModule
@@ -487,9 +446,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
+ {{10, 27}, {603, 328}}
RubberWindowFrame
- 121 270 810 487 0 0 1440 878
+ 317 176 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -517,11 +476,11 @@
TableOfContents
- 8B6F22CF221C35700084A947
+ 8BDC957327CEAE2C00A07B67
1CA23ED40692098700951B8B
- 8B6F22D0221C35700084A947
+ 8BDC957427CEAE2C00A07B67
8B0237581D42B1C400E1E8C8
- 8B6F22D1221C35700084A947
+ 8BDC957527CEAE2C00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -674,7 +633,7 @@
StatusbarIsVisible
TimeStamp
- 572274577.26009297
+ 667856428.00868797
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -691,11 +650,10 @@
5
WindowOrderList
- 8B6F22F9221C37910084A947
- /Users/christopherjohnson/Desktop/MacVST/DitherFloat/DitherFloat.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/DitherFloat/DitherFloat.xcodeproj
WindowString
- 121 270 810 487 0 0 1440 878
+ 317 176 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/DitherFloat/source/DitherFloatProc.cpp b/plugins/MacVST/DitherFloat/source/DitherFloatProc.cpp
index 80e204250..9c894ad8a 100755
--- a/plugins/MacVST/DitherFloat/source/DitherFloatProc.cpp
+++ b/plugins/MacVST/DitherFloat/source/DitherFloatProc.cpp
@@ -70,11 +70,11 @@ void DitherFloat::processReplacing(float **inputs, float **outputs, VstInt32 sam
//begin stereo 32 bit floating point dither
int expon; frexpf((float)inputSampleL, &expon);
- fpd ^= fpd<<13; fpd ^= fpd>>17; fpd ^= fpd<<5;
- inputSampleL += (fpd*3.4e-36l*pow(2,expon+62)* blend); //remove 'blend' for real use, it's for the demo;
+ fpdL ^= fpdL<<13; fpdL ^= fpdL>>17; fpdL ^= fpdL<<5;
+ inputSampleL += (fpdL*3.4e-36l*pow(2,expon+62)* blend); //remove 'blend' for real use, it's for the demo;
frexpf((float)inputSampleR, &expon);
- fpd ^= fpd<<13; fpd ^= fpd>>17; fpd ^= fpd<<5;
- inputSampleR += (fpd*3.4e-36l*pow(2,expon+62)* blend); //remove 'blend' for real use, it's for the demo;
+ fpdR ^= fpdR<<13; fpdR ^= fpdR>>17; fpdR ^= fpdR<<5;
+ inputSampleR += (fpdR*3.4e-36l*pow(2,expon+62)* blend); //remove 'blend' for real use, it's for the demo;
//end stereo 32 bit floating point dither
@@ -155,11 +155,11 @@ void DitherFloat::processDoubleReplacing(double **inputs, double **outputs, VstI
//begin stereo 32 bit floating point dither
int expon; frexpf((float)inputSampleL, &expon);
- fpd ^= fpd<<13; fpd ^= fpd>>17; fpd ^= fpd<<5;
- inputSampleL += (fpd*3.4e-36l*pow(2,expon+62)* blend); //remove 'blend' for real use, it's for the demo;
+ fpdL ^= fpdL<<13; fpdL ^= fpdL>>17; fpdL ^= fpdL<<5;
+ inputSampleL += (fpdL*3.4e-36l*pow(2,expon+62)* blend); //remove 'blend' for real use, it's for the demo;
frexpf((float)inputSampleR, &expon);
- fpd ^= fpd<<13; fpd ^= fpd>>17; fpd ^= fpd<<5;
- inputSampleR += (fpd*3.4e-36l*pow(2,expon+62)* blend); //remove 'blend' for real use, it's for the demo;
+ fpdR ^= fpdR<<13; fpdR ^= fpdR>>17; fpdR ^= fpdR<<5;
+ inputSampleR += (fpdR*3.4e-36l*pow(2,expon+62)* blend); //remove 'blend' for real use, it's for the demo;
//end stereo 32 bit floating point dither
diff --git a/plugins/MacVST/DitherMeDiskers/DitherMeDiskers.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/DitherMeDiskers/DitherMeDiskers.xcodeproj/christopherjohnson.pbxuser
index a60023272..11dbdd9ab 100755
--- a/plugins/MacVST/DitherMeDiskers/DitherMeDiskers.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/DitherMeDiskers/DitherMeDiskers.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569734615;
- PBXWorkspaceStateSaveDate = 569734615;
+ PBXPerProjectTemplateStateSaveDate = 667856432;
+ PBXWorkspaceStateSaveDate = 667856432;
};
perUserProjectItems = {
8B79387A21F575DF006E9731 /* PBXTextBookmark */ = 8B79387A21F575DF006E9731 /* PBXTextBookmark */;
- 8BBB33F821C46ADB00825986 /* PBXTextBookmark */ = 8BBB33F821C46ADB00825986 /* PBXTextBookmark */;
+ 8BDC958727CEAE3E00A07B67 /* PBXTextBookmark */ = 8BDC958727CEAE3E00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -62,9 +62,9 @@
};
2407DEB6089929BA00EB68BF /* DitherMeDiskers.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {649, 1183}}";
+ sepNavIntBoundsRect = "{{0, 0}, {768, 1638}}";
sepNavSelRange = "{2491, 0}";
- sepNavVisRange = "{2345, 148}";
+ sepNavVisRange = "{2420, 73}";
sepNavWindowFrame = "{{12, 47}, {895, 831}}";
};
};
@@ -86,10 +86,10 @@
};
24D8286F09A914000093AEF8 /* DitherMeDiskersProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {848, 1729}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1029, 2394}}";
sepNavSelRange = "{3575, 0}";
- sepNavVisRange = "{410, 1557}";
- sepNavWindowFrame = "{{16, 47}, {895, 831}}";
+ sepNavVisRange = "{244, 1135}";
+ sepNavWindowFrame = "{{16, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -116,15 +116,15 @@
vrLen = 148;
vrLoc = 2345;
};
- 8BBB33F821C46ADB00825986 /* PBXTextBookmark */ = {
+ 8BDC958727CEAE3E00A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2407DEB6089929BA00EB68BF /* DitherMeDiskers.cpp */;
name = "DitherMeDiskers.cpp: 69";
rLen = 0;
rLoc = 2491;
rType = 0;
- vrLen = 150;
- vrLoc = 2343;
+ vrLen = 73;
+ vrLoc = 2420;
};
8D01CCC60486CAD60068D4B7 /* DitherMeDiskers */ = {
activeExec = 0;
diff --git a/plugins/MacVST/DitherMeDiskers/DitherMeDiskers.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/DitherMeDiskers/DitherMeDiskers.xcodeproj/christopherjohnson.perspectivev3
index a10a837fb..b51a09d52 100755
--- a/plugins/MacVST/DitherMeDiskers/DitherMeDiskers.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/DitherMeDiskers/DitherMeDiskers.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 320 286 810 487 0 0 1440 878
+ 239 161 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B79387A21F575DF006E9731
+ 8BDC958727CEAE3E00A07B67
history
- 8BBB33F821C46ADB00825986
+ 8B79387A21F575DF006E9731
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 102}}
+ {{0, 0}, {603, 86}}
RubberWindowFrame
- 320 286 810 487 0 0 1440 878
+ 239 161 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 102pt
+ 86pt
Proportion
- 339pt
+ 355pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 312}}
+ {{10, 27}, {603, 328}}
RubberWindowFrame
- 320 286 810 487 0 0 1440 878
+ 239 161 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B79387B21F575DF006E9731
+ 8BDC958827CEAE3E00A07B67
1CA23ED40692098700951B8B
- 8B79387C21F575DF006E9731
+ 8BDC958927CEAE3E00A07B67
8B0237581D42B1C400E1E8C8
- 8B79387D21F575DF006E9731
+ 8BDC958A27CEAE3E00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 569734623.23729205
+ 667856446.73438501
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +651,11 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/DitherMeDiskers/DitherMeDiskers.xcodeproj
+ 8BDC958B27CEAE3E00A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/DitherMeDiskers/DitherMeDiskers.xcodeproj
WindowString
- 320 286 810 487 0 0 1440 878
+ 239 161 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/DitherMeTimbers/DitherMeTimbers.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/DitherMeTimbers/DitherMeTimbers.xcodeproj/christopherjohnson.pbxuser
index 67d6ce99e..99e5121ac 100755
--- a/plugins/MacVST/DitherMeTimbers/DitherMeTimbers.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/DitherMeTimbers/DitherMeTimbers.xcodeproj/christopherjohnson.pbxuser
@@ -49,15 +49,14 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569734651;
- PBXWorkspaceStateSaveDate = 569734651;
+ PBXPerProjectTemplateStateSaveDate = 667856451;
+ PBXWorkspaceStateSaveDate = 667856451;
};
perUserProjectItems = {
8B416DB721B6143700DD5013 /* PBXTextBookmark */ = 8B416DB721B6143700DD5013 /* PBXTextBookmark */;
8B416DB821B6143700DD5013 /* PBXBookmark */ = 8B416DB821B6143700DD5013 /* PBXBookmark */;
8B79389A21F57607006E9731 /* PBXTextBookmark */ = 8B79389A21F57607006E9731 /* PBXTextBookmark */;
- 8BBB310321B8993300825986 /* PBXTextBookmark */ = 8BBB310321B8993300825986 /* PBXTextBookmark */;
- 8BBB34C121C46EA800825986 /* PBXTextBookmark */ = 8BBB34C121C46EA800825986 /* PBXTextBookmark */;
+ 8BDC95A627CEAE4800A07B67 /* PBXTextBookmark */ = 8BDC95A627CEAE4800A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -89,7 +88,7 @@
};
24D8286F09A914000093AEF8 /* DitherMeTimbersProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {554, 1768}}";
+ sepNavIntBoundsRect = "{{0, 0}, {554, 2448}}";
sepNavSelRange = "{3612, 0}";
sepNavVisRange = "{0, 0}";
sepNavWindowFrame = "{{556, 47}, {895, 831}}";
@@ -133,24 +132,7 @@
vrLen = 0;
vrLoc = 0;
};
- 8BBB308D21B7F07D00825986 /* DitherMeTImbers.h */ = {
- isa = PBXFileReference;
- lastKnownFileType = sourcecode.c.h;
- name = DitherMeTImbers.h;
- path = /Users/christopherjohnson/Desktop/MacVST/DitherMeTimbers/source/DitherMeTImbers.h;
- sourceTree = "";
- };
- 8BBB310321B8993300825986 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 8BBB308D21B7F07D00825986 /* DitherMeTImbers.h */;
- name = "DitherMeTImbers.h: 63";
- rLen = 0;
- rLoc = 2570;
- rType = 0;
- vrLen = 7;
- vrLoc = 2563;
- };
- 8BBB34C121C46EA800825986 /* PBXTextBookmark */ = {
+ 8BDC95A627CEAE4800A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* DitherMeTimbersProc.cpp */;
name = "DitherMeTimbersProc.cpp: 122";
diff --git a/plugins/MacVST/DitherMeTimbers/DitherMeTimbers.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/DitherMeTimbers/DitherMeTimbers.xcodeproj/christopherjohnson.perspectivev3
index 66ebae889..5265d3424 100755
--- a/plugins/MacVST/DitherMeTimbers/DitherMeTimbers.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/DitherMeTimbers/DitherMeTimbers.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 613 141 810 487 0 0 1440 878
+ 457 93 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,13 +351,12 @@
_historyCapacity
0
bookmark
- 8B79389A21F57607006E9731
+ 8BDC95A627CEAE4800A07B67
history
8B416DB721B6143700DD5013
8B416DB821B6143700DD5013
- 8BBB310321B8993300825986
- 8BBB34C121C46EA800825986
+ 8B79389A21F57607006E9731
SplitCount
@@ -373,7 +372,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 613 141 810 487 0 0 1440 878
+ 457 93 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -398,7 +397,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 613 141 810 487 0 0 1440 878
+ 457 93 810 487 0 0 1280 698
Module
XCDetailModule
@@ -480,11 +479,11 @@
TableOfContents
- 8B79389B21F57607006E9731
+ 8BDC95A727CEAE4800A07B67
1CA23ED40692098700951B8B
- 8B79389C21F57607006E9731
+ 8BDC95A827CEAE4800A07B67
8B0237581D42B1C400E1E8C8
- 8B79389D21F57607006E9731
+ 8BDC95A927CEAE4800A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -637,7 +636,7 @@
StatusbarIsVisible
TimeStamp
- 569734663.38253498
+ 667856456.59358799
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -654,10 +653,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/DitherMeTimbers/DitherMeTimbers.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/DitherMeTimbers/DitherMeTimbers.xcodeproj
WindowString
- 613 141 810 487 0 0 1440 878
+ 457 93 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Ditherbox/Ditherbox.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Ditherbox/Ditherbox.xcodeproj/christopherjohnson.pbxuser
index 32eaf9887..c21fbe5ca 100755
--- a/plugins/MacVST/Ditherbox/Ditherbox.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Ditherbox/Ditherbox.xcodeproj/christopherjohnson.pbxuser
@@ -49,13 +49,14 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569734571;
- PBXWorkspaceStateSaveDate = 569734571;
+ PBXPerProjectTemplateStateSaveDate = 667862502;
+ PBXWorkspaceStateSaveDate = 667862502;
};
perUserProjectItems = {
- 8B79385A21F575BA006E9731 /* PBXTextBookmark */ = 8B79385A21F575BA006E9731 /* PBXTextBookmark */;
8B914093213DCA1600BA6EEC /* PBXTextBookmark */ = 8B914093213DCA1600BA6EEC /* PBXTextBookmark */;
- 8B914094213DCA1600BA6EEC /* PBXTextBookmark */ = 8B914094213DCA1600BA6EEC /* PBXTextBookmark */;
+ 8BDCA64727CEC64700A07B67 /* PBXTextBookmark */ = 8BDCA64727CEC64700A07B67 /* PBXTextBookmark */;
+ 8BDCA64827CEC64700A07B67 /* PBXTextBookmark */ = 8BDCA64827CEC64700A07B67 /* PBXTextBookmark */;
+ 8BDCA64927CEC64700A07B67 /* PBXTextBookmark */ = 8BDCA64927CEC64700A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -71,10 +72,10 @@
};
245463B80991757100464AD3 /* Ditherbox.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {866, 1573}}";
- sepNavSelRange = "{2576, 0}";
- sepNavVisRange = "{1102, 2059}";
- sepNavWindowFrame = "{{17, 44}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {561, 2700}}";
+ sepNavSelRange = "{3901, 0}";
+ sepNavVisRange = "{3826, 78}";
+ sepNavWindowFrame = "{{17, 4}, {895, 694}}";
};
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
@@ -87,10 +88,10 @@
};
24D8286F09A914000093AEF8 /* DitherboxProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {554, 26065}}";
- sepNavSelRange = "{81896, 0}";
- sepNavVisRange = "{0, 0}";
- sepNavWindowFrame = "{{516, 47}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {903, 36270}}";
+ sepNavSelRange = "{55918, 0}";
+ sepNavVisRange = "{12941, 1809}";
+ sepNavWindowFrame = "{{286, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -107,16 +108,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B79385A21F575BA006E9731 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* DitherboxProc.cpp */;
- name = "DitherboxProc.cpp: 2008";
- rLen = 0;
- rLoc = 81896;
- rType = 0;
- vrLen = 0;
- vrLoc = 0;
- };
8B914093213DCA1600BA6EEC /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2407DEB6089929BA00EB68BF /* Ditherbox.cpp */;
@@ -127,15 +118,35 @@
vrLen = 137;
vrLoc = 6556;
};
- 8B914094213DCA1600BA6EEC /* PBXTextBookmark */ = {
+ 8BDCA64727CEC64700A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* DitherboxProc.cpp */;
- name = "DitherboxProc.cpp: 2008";
+ name = "DitherboxProc.cpp: 2033";
rLen = 0;
- rLoc = 81896;
+ rLoc = 85391;
rType = 0;
- vrLen = 42;
- vrLoc = 39186;
+ vrLen = 238;
+ vrLoc = 44;
+ };
+ 8BDCA64827CEC64700A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 245463B80991757100464AD3 /* Ditherbox.h */;
+ name = "Ditherbox.h: 131";
+ rLen = 0;
+ rLoc = 3901;
+ rType = 0;
+ vrLen = 78;
+ vrLoc = 3826;
+ };
+ 8BDCA64927CEC64700A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 245463B80991757100464AD3 /* Ditherbox.h */;
+ name = "Ditherbox.h: 131";
+ rLen = 0;
+ rLoc = 3901;
+ rType = 0;
+ vrLen = 78;
+ vrLoc = 3826;
};
8D01CCC60486CAD60068D4B7 /* Ditherbox */ = {
activeExec = 0;
diff --git a/plugins/MacVST/Ditherbox/Ditherbox.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Ditherbox/Ditherbox.xcodeproj/christopherjohnson.perspectivev3
index dfee9c001..2d8d2702b 100755
--- a/plugins/MacVST/Ditherbox/Ditherbox.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Ditherbox/Ditherbox.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 34 315 810 487 0 0 1440 878
+ 297 181 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -339,7 +339,7 @@
PBXProjectModuleGUID
8B0237581D42B1C400E1E8C8
PBXProjectModuleLabel
- DitherboxProc.cpp
+ Ditherbox.h
PBXSplitModuleInNavigatorKey
Split0
@@ -347,15 +347,16 @@
PBXProjectModuleGUID
8B0237591D42B1C400E1E8C8
PBXProjectModuleLabel
- DitherboxProc.cpp
+ Ditherbox.h
_historyCapacity
0
bookmark
- 8B79385A21F575BA006E9731
+ 8BDCA64927CEC64700A07B67
history
8B914093213DCA1600BA6EEC
- 8B914094213DCA1600BA6EEC
+ 8BDCA64727CEC64700A07B67
+ 8BDCA64827CEC64700A07B67
SplitCount
@@ -369,18 +370,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 32}}
+ {{0, 0}, {603, 132}}
RubberWindowFrame
- 34 315 810 487 0 0 1440 878
+ 297 181 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 32pt
+ 132pt
Proportion
- 409pt
+ 309pt
Tabs
@@ -394,9 +395,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 382}}
+ {{10, 27}, {603, 282}}
RubberWindowFrame
- 34 315 810 487 0 0 1440 878
+ 297 181 810 487 0 0 1280 698
Module
XCDetailModule
@@ -450,7 +451,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
+ {{10, 27}, {603, 401}}
Module
PBXBuildResultsModule
@@ -478,11 +479,11 @@
TableOfContents
- 8B79385B21F575BA006E9731
+ 8BDCA64A27CEC64700A07B67
1CA23ED40692098700951B8B
- 8B79385C21F575BA006E9731
+ 8BDCA64B27CEC64700A07B67
8B0237581D42B1C400E1E8C8
- 8B79385D21F575BA006E9731
+ 8BDCA64C27CEC64700A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -635,7 +636,7 @@
StatusbarIsVisible
TimeStamp
- 569734586.84466803
+ 667862599.340886
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -652,10 +653,11 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/Ditherbox/Ditherbox.xcodeproj
+ 8BDCA64D27CEC64700A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Ditherbox/Ditherbox.xcodeproj
WindowString
- 34 315 810 487 0 0 1440 878
+ 297 181 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Ditherbox/source/Ditherbox.h b/plugins/MacVST/Ditherbox/source/Ditherbox.h
index 164f37bab..51bc80e54 100755
--- a/plugins/MacVST/Ditherbox/source/Ditherbox.h
+++ b/plugins/MacVST/Ditherbox/source/Ditherbox.h
@@ -127,6 +127,9 @@ private:
double iirSampleYR;
double iirSampleZR;
+ uint32_t fpdL;
+ uint32_t fpdR;
+
float A;
};
diff --git a/plugins/MacVST/Ditherbox/source/DitherboxProc.cpp b/plugins/MacVST/Ditherbox/source/DitherboxProc.cpp
index 8daa9d0bb..f12d2abbe 100755
--- a/plugins/MacVST/Ditherbox/source/DitherboxProc.cpp
+++ b/plugins/MacVST/Ditherbox/source/DitherboxProc.cpp
@@ -70,34 +70,36 @@ void Ditherbox::processReplacing(float **inputs, float **outputs, VstInt32 sampl
break;
case 2:
- inputSampleL += (double(fpd)/UINT32_MAX);
+ inputSampleL += (double(fpdL)/UINT32_MAX);
inputSampleL -= 0.5;
inputSampleL = floor(inputSampleL);
- inputSampleR += (double(fpd)/UINT32_MAX);
+ inputSampleR += (double(fpdR)/UINT32_MAX);
inputSampleR -= 0.5;
inputSampleR = floor(inputSampleR);
//flat dither
break;
case 3:
- inputSampleL += (double(fpd)/UINT32_MAX);
- inputSampleL += (double(fpd)/UINT32_MAX);
+ inputSampleL += (double(fpdL)/UINT32_MAX);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ inputSampleL += (double(fpdL)/UINT32_MAX);
inputSampleL -= 1.0;
inputSampleL = floor(inputSampleL);
- inputSampleR += (double(fpd)/UINT32_MAX);
- inputSampleR += (double(fpd)/UINT32_MAX);
+ inputSampleR += (double(fpdR)/UINT32_MAX);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ inputSampleR += (double(fpdR)/UINT32_MAX);
inputSampleR -= 1.0;
inputSampleR = floor(inputSampleR);
//TPDF dither
break;
case 4:
- currentDitherL = (double(fpd)/UINT32_MAX);
+ currentDitherL = (double(fpdL)/UINT32_MAX);
inputSampleL += currentDitherL;
inputSampleL -= lastSampleL;
inputSampleL = floor(inputSampleL);
lastSampleL = currentDitherL;
- currentDitherR = (double(fpd)/UINT32_MAX);
+ currentDitherR = (double(fpdR)/UINT32_MAX);
inputSampleR += currentDitherR;
inputSampleR -= lastSampleR;
inputSampleR = floor(inputSampleR);
@@ -108,7 +110,7 @@ void Ditherbox::processReplacing(float **inputs, float **outputs, VstInt32 sampl
case 5:
nsL[9] = nsL[8]; nsL[8] = nsL[7]; nsL[7] = nsL[6]; nsL[6] = nsL[5];
nsL[5] = nsL[4]; nsL[4] = nsL[3]; nsL[3] = nsL[2]; nsL[2] = nsL[1];
- nsL[1] = nsL[0]; nsL[0] = (double(fpd)/UINT32_MAX);
+ nsL[1] = nsL[0]; nsL[0] = (double(fpdL)/UINT32_MAX);
currentDitherL = (nsL[0] * 0.061);
currentDitherL -= (nsL[1] * 0.11);
@@ -131,7 +133,7 @@ void Ditherbox::processReplacing(float **inputs, float **outputs, VstInt32 sampl
nsR[9] = nsR[8]; nsR[8] = nsR[7]; nsR[7] = nsR[6]; nsR[6] = nsR[5];
nsR[5] = nsR[4]; nsR[4] = nsR[3]; nsR[3] = nsR[2]; nsR[2] = nsR[1];
- nsR[1] = nsR[0]; nsR[0] = (double(fpd)/UINT32_MAX);
+ nsR[1] = nsR[0]; nsR[0] = (double(fpdR)/UINT32_MAX);
currentDitherR = (nsR[0] * 0.061);
currentDitherR -= (nsR[1] * 0.11);
@@ -156,8 +158,8 @@ void Ditherbox::processReplacing(float **inputs, float **outputs, VstInt32 sampl
break;
case 6:
- currentDitherL = (double(fpd)/UINT32_MAX);
- currentDitherR = (double(fpd)/UINT32_MAX);
+ currentDitherL = (double(fpdL)/UINT32_MAX);
+ currentDitherR = (double(fpdR)/UINT32_MAX);
inputSampleL += currentDitherL;
inputSampleR += currentDitherR;
@@ -202,37 +204,52 @@ void Ditherbox::processReplacing(float **inputs, float **outputs, VstInt32 sampl
break;
case 8:
- absSample = ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample = ((double(fpdL)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
nsL[0] += absSample; nsL[0] /= 2; absSample -= nsL[0];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
nsL[1] += absSample; nsL[1] /= 2; absSample -= nsL[1];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
nsL[2] += absSample; nsL[2] /= 2; absSample -= nsL[2];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
nsL[3] += absSample; nsL[3] /= 2; absSample -= nsL[3];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
nsL[4] += absSample; nsL[4] /= 2; absSample -= nsL[4];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
nsL[5] += absSample; nsL[5] /= 2; absSample -= nsL[5];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
nsL[6] += absSample; nsL[6] /= 2; absSample -= nsL[6];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
nsL[7] += absSample; nsL[7] /= 2; absSample -= nsL[7];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
nsL[8] += absSample; nsL[8] /= 2; absSample -= nsL[8];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
nsL[9] += absSample; nsL[9] /= 2; absSample -= nsL[9];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
nsL[10] += absSample; nsL[10] /= 2; absSample -= nsL[10];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
nsL[11] += absSample; nsL[11] /= 2; absSample -= nsL[11];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
nsL[12] += absSample; nsL[12] /= 2; absSample -= nsL[12];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
nsL[13] += absSample; nsL[13] /= 2; absSample -= nsL[13];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
nsL[14] += absSample; nsL[14] /= 2; absSample -= nsL[14];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[15] += absSample; nsL[15] /= 2; absSample -= nsL[15];
//install noise and then shape it
absSample += inputSampleL;
@@ -249,37 +266,52 @@ void Ditherbox::processReplacing(float **inputs, float **outputs, VstInt32 sampl
//TenNines dither L
- absSample = ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample = ((double(fpdR)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
nsR[0] += absSample; nsR[0] /= 2; absSample -= nsR[0];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
nsR[1] += absSample; nsR[1] /= 2; absSample -= nsR[1];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
nsR[2] += absSample; nsR[2] /= 2; absSample -= nsR[2];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
nsR[3] += absSample; nsR[3] /= 2; absSample -= nsR[3];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
nsR[4] += absSample; nsR[4] /= 2; absSample -= nsR[4];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
nsR[5] += absSample; nsR[5] /= 2; absSample -= nsR[5];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
nsR[6] += absSample; nsR[6] /= 2; absSample -= nsR[6];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
nsR[7] += absSample; nsR[7] /= 2; absSample -= nsR[7];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
nsR[8] += absSample; nsR[8] /= 2; absSample -= nsR[8];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
nsR[9] += absSample; nsR[9] /= 2; absSample -= nsR[9];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
nsR[10] += absSample; nsR[10] /= 2; absSample -= nsR[10];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
nsR[11] += absSample; nsR[11] /= 2; absSample -= nsR[11];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
nsR[12] += absSample; nsR[12] /= 2; absSample -= nsR[12];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
nsR[13] += absSample; nsR[13] /= 2; absSample -= nsR[13];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
nsR[14] += absSample; nsR[14] /= 2; absSample -= nsR[14];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[15] += absSample; nsR[15] /= 2; absSample -= nsR[15];
//install noise and then shape it
absSample += inputSampleR;
@@ -303,7 +335,10 @@ void Ditherbox::processReplacing(float **inputs, float **outputs, VstInt32 sampl
if (inputSampleR < 0) inputSampleR -= 0.383;
//adjusting to permit more information drug outta the noisefloor
- contingentRnd = (((double(fpd)/UINT32_MAX)+(double(fpd)/UINT32_MAX))-1.0) * randyConstant; //produce TPDF dist, scale
+ contingentRnd = (double(fpdL)/UINT32_MAX);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ contingentRnd += ((double(fpdL)/UINT32_MAX)-1.0);
+ contingentRnd *= randyConstant; //produce TPDF dist, scale
contingentRnd -= contingentErrL*omegaConstant; //include err
absSample = fabs(inputSampleL);
contingentErrL = absSample - floor(absSample); //get next err
@@ -317,7 +352,10 @@ void Ditherbox::processReplacing(float **inputs, float **outputs, VstInt32 sampl
//Contingent Dither
inputSampleL = floor(inputSampleL);
- contingentRnd = (((double(fpd)/UINT32_MAX)+(double(fpd)/UINT32_MAX))-1.0) * randyConstant; //produce TPDF dist, scale
+ contingentRnd = (double(fpdR)/UINT32_MAX);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ contingentRnd += ((double(fpdR)/UINT32_MAX)-1.0);
+ contingentRnd *= randyConstant; //produce TPDF dist, scale
contingentRnd -= contingentErrR*omegaConstant; //include err
absSample = fabs(inputSampleR);
contingentErrR = absSample - floor(absSample); //get next err
@@ -339,11 +377,11 @@ void Ditherbox::processReplacing(float **inputs, float **outputs, VstInt32 sampl
case 10: //this one is the original Naturalize
if (inputSampleL > 0) inputSampleL += (0.3333333333);
if (inputSampleL < 0) inputSampleL -= (0.3333333333);
- inputSampleL += (double(fpd)/UINT32_MAX)*0.6666666666;
+ inputSampleL += (double(fpdL)/UINT32_MAX)*0.6666666666;
if (inputSampleR > 0) inputSampleR += (0.3333333333);
if (inputSampleR < 0) inputSampleR -= (0.3333333333);
- inputSampleR += (double(fpd)/UINT32_MAX)*0.6666666666;
+ inputSampleR += (double(fpdR)/UINT32_MAX)*0.6666666666;
//begin L
benfordize = floor(inputSampleL);
@@ -900,12 +938,13 @@ void Ditherbox::processReplacing(float **inputs, float **outputs, VstInt32 sampl
if (inputSampleL > 0.0) inputSampleL = bridgerectifier;
else inputSampleL = -bridgerectifier;
- silhouette = rand()/(double)RAND_MAX;
+ silhouette = (double(fpdL)/UINT32_MAX);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
silhouette -= 0.5;
silhouette *= 2.0;
silhouette *= fabs(inputSampleL);
- smoother = rand()/(double)RAND_MAX;
+ smoother = (double(fpdL)/UINT32_MAX);
smoother -= 0.5;
smoother *= 2.0;
smoother *= fabs(lastSampleL);
@@ -930,12 +969,13 @@ void Ditherbox::processReplacing(float **inputs, float **outputs, VstInt32 sampl
if (inputSampleR > 0.0) inputSampleR = bridgerectifier;
else inputSampleR = -bridgerectifier;
- silhouette = rand()/(double)RAND_MAX;
+ silhouette = (double(fpdR)/UINT32_MAX);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
silhouette -= 0.5;
silhouette *= 2.0;
silhouette *= fabs(inputSampleR);
- smoother = rand()/(double)RAND_MAX;
+ smoother = (double(fpdR)/UINT32_MAX);
smoother -= 0.5;
smoother *= 2.0;
smoother *= fabs(lastSampleR);
@@ -1043,34 +1083,36 @@ void Ditherbox::processDoubleReplacing(double **inputs, double **outputs, VstInt
break;
case 2:
- inputSampleL += (double(fpd)/UINT32_MAX);
+ inputSampleL += (double(fpdL)/UINT32_MAX);
inputSampleL -= 0.5;
inputSampleL = floor(inputSampleL);
- inputSampleR += (double(fpd)/UINT32_MAX);
+ inputSampleR += (double(fpdR)/UINT32_MAX);
inputSampleR -= 0.5;
inputSampleR = floor(inputSampleR);
//flat dither
break;
case 3:
- inputSampleL += (double(fpd)/UINT32_MAX);
- inputSampleL += (double(fpd)/UINT32_MAX);
+ inputSampleL += (double(fpdL)/UINT32_MAX);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ inputSampleL += (double(fpdL)/UINT32_MAX);
inputSampleL -= 1.0;
inputSampleL = floor(inputSampleL);
- inputSampleR += (double(fpd)/UINT32_MAX);
- inputSampleR += (double(fpd)/UINT32_MAX);
+ inputSampleR += (double(fpdR)/UINT32_MAX);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ inputSampleR += (double(fpdR)/UINT32_MAX);
inputSampleR -= 1.0;
inputSampleR = floor(inputSampleR);
//TPDF dither
break;
case 4:
- currentDitherL = (double(fpd)/UINT32_MAX);
+ currentDitherL = (double(fpdL)/UINT32_MAX);
inputSampleL += currentDitherL;
inputSampleL -= lastSampleL;
inputSampleL = floor(inputSampleL);
lastSampleL = currentDitherL;
- currentDitherR = (double(fpd)/UINT32_MAX);
+ currentDitherR = (double(fpdR)/UINT32_MAX);
inputSampleR += currentDitherR;
inputSampleR -= lastSampleR;
inputSampleR = floor(inputSampleR);
@@ -1081,7 +1123,7 @@ void Ditherbox::processDoubleReplacing(double **inputs, double **outputs, VstInt
case 5:
nsL[9] = nsL[8]; nsL[8] = nsL[7]; nsL[7] = nsL[6]; nsL[6] = nsL[5];
nsL[5] = nsL[4]; nsL[4] = nsL[3]; nsL[3] = nsL[2]; nsL[2] = nsL[1];
- nsL[1] = nsL[0]; nsL[0] = (double(fpd)/UINT32_MAX);
+ nsL[1] = nsL[0]; nsL[0] = (double(fpdL)/UINT32_MAX);
currentDitherL = (nsL[0] * 0.061);
currentDitherL -= (nsL[1] * 0.11);
@@ -1104,7 +1146,7 @@ void Ditherbox::processDoubleReplacing(double **inputs, double **outputs, VstInt
nsR[9] = nsR[8]; nsR[8] = nsR[7]; nsR[7] = nsR[6]; nsR[6] = nsR[5];
nsR[5] = nsR[4]; nsR[4] = nsR[3]; nsR[3] = nsR[2]; nsR[2] = nsR[1];
- nsR[1] = nsR[0]; nsR[0] = (double(fpd)/UINT32_MAX);
+ nsR[1] = nsR[0]; nsR[0] = (double(fpdR)/UINT32_MAX);
currentDitherR = (nsR[0] * 0.061);
currentDitherR -= (nsR[1] * 0.11);
@@ -1128,8 +1170,8 @@ void Ditherbox::processDoubleReplacing(double **inputs, double **outputs, VstInt
break;
case 6:
- currentDitherL = (double(fpd)/UINT32_MAX);
- currentDitherR = (double(fpd)/UINT32_MAX);
+ currentDitherL = (double(fpdL)/UINT32_MAX);
+ currentDitherR = (double(fpdR)/UINT32_MAX);
inputSampleL += currentDitherL;
inputSampleR += currentDitherR;
@@ -1174,37 +1216,52 @@ void Ditherbox::processDoubleReplacing(double **inputs, double **outputs, VstInt
break;
case 8:
- absSample = ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample = ((double(fpdL)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
nsL[0] += absSample; nsL[0] /= 2; absSample -= nsL[0];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
nsL[1] += absSample; nsL[1] /= 2; absSample -= nsL[1];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
nsL[2] += absSample; nsL[2] /= 2; absSample -= nsL[2];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
nsL[3] += absSample; nsL[3] /= 2; absSample -= nsL[3];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
nsL[4] += absSample; nsL[4] /= 2; absSample -= nsL[4];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
nsL[5] += absSample; nsL[5] /= 2; absSample -= nsL[5];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
nsL[6] += absSample; nsL[6] /= 2; absSample -= nsL[6];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
nsL[7] += absSample; nsL[7] /= 2; absSample -= nsL[7];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
nsL[8] += absSample; nsL[8] /= 2; absSample -= nsL[8];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
nsL[9] += absSample; nsL[9] /= 2; absSample -= nsL[9];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
nsL[10] += absSample; nsL[10] /= 2; absSample -= nsL[10];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
nsL[11] += absSample; nsL[11] /= 2; absSample -= nsL[11];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
nsL[12] += absSample; nsL[12] /= 2; absSample -= nsL[12];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
nsL[13] += absSample; nsL[13] /= 2; absSample -= nsL[13];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
nsL[14] += absSample; nsL[14] /= 2; absSample -= nsL[14];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[15] += absSample; nsL[15] /= 2; absSample -= nsL[15];
//install noise and then shape it
absSample += inputSampleL;
@@ -1221,37 +1278,52 @@ void Ditherbox::processDoubleReplacing(double **inputs, double **outputs, VstInt
//TenNines dither L
- absSample = ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample = ((double(fpdR)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
nsR[0] += absSample; nsR[0] /= 2; absSample -= nsR[0];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
nsR[1] += absSample; nsR[1] /= 2; absSample -= nsR[1];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
nsR[2] += absSample; nsR[2] /= 2; absSample -= nsR[2];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
nsR[3] += absSample; nsR[3] /= 2; absSample -= nsR[3];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
nsR[4] += absSample; nsR[4] /= 2; absSample -= nsR[4];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
nsR[5] += absSample; nsR[5] /= 2; absSample -= nsR[5];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
nsR[6] += absSample; nsR[6] /= 2; absSample -= nsR[6];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
nsR[7] += absSample; nsR[7] /= 2; absSample -= nsR[7];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
nsR[8] += absSample; nsR[8] /= 2; absSample -= nsR[8];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
nsR[9] += absSample; nsR[9] /= 2; absSample -= nsR[9];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
nsR[10] += absSample; nsR[10] /= 2; absSample -= nsR[10];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
nsR[11] += absSample; nsR[11] /= 2; absSample -= nsR[11];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
nsR[12] += absSample; nsR[12] /= 2; absSample -= nsR[12];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
nsR[13] += absSample; nsR[13] /= 2; absSample -= nsR[13];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
nsR[14] += absSample; nsR[14] /= 2; absSample -= nsR[14];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[15] += absSample; nsR[15] /= 2; absSample -= nsR[15];
//install noise and then shape it
absSample += inputSampleR;
@@ -1275,7 +1347,10 @@ void Ditherbox::processDoubleReplacing(double **inputs, double **outputs, VstInt
if (inputSampleR < 0) inputSampleR -= 0.383;
//adjusting to permit more information drug outta the noisefloor
- contingentRnd = (((double(fpd)/UINT32_MAX)+(double(fpd)/UINT32_MAX))-1.0) * randyConstant; //produce TPDF dist, scale
+ contingentRnd = (double(fpdL)/UINT32_MAX);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ contingentRnd += ((double(fpdL)/UINT32_MAX)-1.0);
+ contingentRnd *= randyConstant; //produce TPDF dist, scale
contingentRnd -= contingentErrL*omegaConstant; //include err
absSample = fabs(inputSampleL);
contingentErrL = absSample - floor(absSample); //get next err
@@ -1289,7 +1364,10 @@ void Ditherbox::processDoubleReplacing(double **inputs, double **outputs, VstInt
//Contingent Dither
inputSampleL = floor(inputSampleL);
- contingentRnd = (((double(fpd)/UINT32_MAX)+(double(fpd)/UINT32_MAX))-1.0) * randyConstant; //produce TPDF dist, scale
+ contingentRnd = (double(fpdR)/UINT32_MAX);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ contingentRnd += ((double(fpdR)/UINT32_MAX)-1.0);
+ contingentRnd *= randyConstant; //produce TPDF dist, scale
contingentRnd -= contingentErrR*omegaConstant; //include err
absSample = fabs(inputSampleR);
contingentErrR = absSample - floor(absSample); //get next err
@@ -1311,11 +1389,11 @@ void Ditherbox::processDoubleReplacing(double **inputs, double **outputs, VstInt
case 10: //this one is the original Naturalize
if (inputSampleL > 0) inputSampleL += (0.3333333333);
if (inputSampleL < 0) inputSampleL -= (0.3333333333);
- inputSampleL += (double(fpd)/UINT32_MAX)*0.6666666666;
+ inputSampleL += (double(fpdL)/UINT32_MAX)*0.6666666666;
if (inputSampleR > 0) inputSampleR += (0.3333333333);
if (inputSampleR < 0) inputSampleR -= (0.3333333333);
- inputSampleR += (double(fpd)/UINT32_MAX)*0.6666666666;
+ inputSampleR += (double(fpdR)/UINT32_MAX)*0.6666666666;
//begin L
benfordize = floor(inputSampleL);
@@ -1872,12 +1950,13 @@ void Ditherbox::processDoubleReplacing(double **inputs, double **outputs, VstInt
if (inputSampleL > 0.0) inputSampleL = bridgerectifier;
else inputSampleL = -bridgerectifier;
- silhouette = rand()/(double)RAND_MAX;
+ silhouette = (double(fpdL)/UINT32_MAX);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
silhouette -= 0.5;
silhouette *= 2.0;
silhouette *= fabs(inputSampleL);
- smoother = rand()/(double)RAND_MAX;
+ smoother = (double(fpdL)/UINT32_MAX);
smoother -= 0.5;
smoother *= 2.0;
smoother *= fabs(lastSampleL);
@@ -1902,12 +1981,13 @@ void Ditherbox::processDoubleReplacing(double **inputs, double **outputs, VstInt
if (inputSampleR > 0.0) inputSampleR = bridgerectifier;
else inputSampleR = -bridgerectifier;
- silhouette = rand()/(double)RAND_MAX;
+ silhouette = (double(fpdR)/UINT32_MAX);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
silhouette -= 0.5;
silhouette *= 2.0;
silhouette *= fabs(inputSampleR);
- smoother = rand()/(double)RAND_MAX;
+ smoother = (double(fpdR)/UINT32_MAX);
smoother -= 0.5;
smoother *= 2.0;
smoother *= fabs(lastSampleR);
diff --git a/plugins/MacVST/DoublePaul/DoublePaul.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/DoublePaul/DoublePaul.xcodeproj/christopherjohnson.pbxuser
index 87088d6cf..8319deba2 100755
--- a/plugins/MacVST/DoublePaul/DoublePaul.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/DoublePaul/DoublePaul.xcodeproj/christopherjohnson.pbxuser
@@ -49,13 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569734688;
- PBXWorkspaceStateSaveDate = 569734688;
+ PBXPerProjectTemplateStateSaveDate = 667856462;
+ PBXWorkspaceStateSaveDate = 667856462;
};
perUserProjectItems = {
- 8B7938BA21F5762A006E9731 /* PBXTextBookmark */ = 8B7938BA21F5762A006E9731 /* PBXTextBookmark */;
8B913F4F213DBA1400BA6EEC /* PBXTextBookmark */ = 8B913F4F213DBA1400BA6EEC /* PBXTextBookmark */;
- 8B913F51213DBA1400BA6EEC /* PBXTextBookmark */ = 8B913F51213DBA1400BA6EEC /* PBXTextBookmark */;
+ 8BDC95C427CEAE5000A07B67 /* PBXTextBookmark */ = 8BDC95C427CEAE5000A07B67 /* PBXTextBookmark */;
+ 8BDC95D627CEAEC500A07B67 /* PBXTextBookmark */ = 8BDC95D627CEAEC500A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -71,10 +71,10 @@
};
245463B80991757100464AD3 /* DoublePaul.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {866, 780}}";
- sepNavSelRange = "{2407, 0}";
- sepNavVisRange = "{169, 2261}";
- sepNavWindowFrame = "{{20, 47}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1110, 1116}}";
+ sepNavSelRange = "{2444, 0}";
+ sepNavVisRange = "{596, 1856}";
+ sepNavWindowFrame = "{{20, 4}, {895, 694}}";
};
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
@@ -87,10 +87,10 @@
};
24D8286F09A914000093AEF8 /* DoublePaulProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {684, 3328}}";
+ sepNavIntBoundsRect = "{{0, 0}, {660, 3384}}";
sepNavSelRange = "{615, 0}";
- sepNavVisRange = "{522, 172}";
- sepNavWindowFrame = "{{15, 47}, {895, 831}}";
+ sepNavVisRange = "{545, 151}";
+ sepNavWindowFrame = "{{15, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -107,16 +107,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B7938BA21F5762A006E9731 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* DoublePaulProc.cpp */;
- name = "DoublePaulProc.cpp: 25";
- rLen = 0;
- rLoc = 615;
- rType = 0;
- vrLen = 172;
- vrLoc = 522;
- };
8B913F4F213DBA1400BA6EEC /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
@@ -127,15 +117,25 @@
vrLen = 280;
vrLoc = 107;
};
- 8B913F51213DBA1400BA6EEC /* PBXTextBookmark */ = {
+ 8BDC95C427CEAE5000A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* DoublePaulProc.cpp */;
- name = "DoublePaulProc.cpp: 25";
+ name = "DoublePaulProc.cpp: 26";
rLen = 0;
rLoc = 615;
rType = 0;
- vrLen = 291;
- vrLoc = 522;
+ vrLen = 151;
+ vrLoc = 545;
+ };
+ 8BDC95D627CEAEC500A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* DoublePaulProc.cpp */;
+ name = "DoublePaulProc.cpp: 26";
+ rLen = 0;
+ rLoc = 615;
+ rType = 0;
+ vrLen = 151;
+ vrLoc = 545;
};
8D01CCC60486CAD60068D4B7 /* DoublePaul */ = {
activeExec = 0;
diff --git a/plugins/MacVST/DoublePaul/DoublePaul.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/DoublePaul/DoublePaul.xcodeproj/christopherjohnson.perspectivev3
index d88c23568..b7a29828c 100755
--- a/plugins/MacVST/DoublePaul/DoublePaul.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/DoublePaul/DoublePaul.xcodeproj/christopherjohnson.perspectivev3
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -300,7 +298,7 @@
PBXSmartGroupTreeModuleOutlineStateSelectionKey
- 6
+ 7
4
0
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 73 294 810 487 0 0 1440 878
+ 221 191 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,11 +349,11 @@
_historyCapacity
0
bookmark
- 8B7938BA21F5762A006E9731
+ 8BDC95D627CEAEC500A07B67
history
8B913F4F213DBA1400BA6EEC
- 8B913F51213DBA1400BA6EEC
+ 8BDC95C427CEAE5000A07B67
SplitCount
@@ -369,18 +367,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 117}}
+ {{0, 0}, {603, 102}}
RubberWindowFrame
- 73 294 810 487 0 0 1440 878
+ 221 191 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 117pt
+ 102pt
Proportion
- 324pt
+ 339pt
Tabs
@@ -394,9 +392,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
- RubberWindowFrame
- 73 294 810 487 0 0 1440 878
+ {{10, 27}, {603, 312}}
Module
XCDetailModule
@@ -450,7 +446,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 363}}
+ {{10, 27}, {603, 312}}
+ RubberWindowFrame
+ 221 191 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -478,11 +476,11 @@
TableOfContents
- 8B7938BB21F5762A006E9731
+ 8BDC95D727CEAEC500A07B67
1CA23ED40692098700951B8B
- 8B7938BC21F5762A006E9731
+ 8BDC95D827CEAEC500A07B67
8B0237581D42B1C400E1E8C8
- 8B7938BD21F5762A006E9731
+ 8BDC95D927CEAEC500A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -635,7 +633,7 @@
StatusbarIsVisible
TimeStamp
- 569734698.54333794
+ 667856581.91406596
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -652,10 +650,11 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/DoublePaul/DoublePaul.xcodeproj
+ 8BDC95DA27CEAEC500A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/DoublePaul/DoublePaul.xcodeproj
WindowString
- 73 294 810 487 0 0 1440 878
+ 221 191 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/DoublePaul/source/DoublePaul.h b/plugins/MacVST/DoublePaul/source/DoublePaul.h
index 4cb0b8827..1a9f0fd05 100755
--- a/plugins/MacVST/DoublePaul/source/DoublePaul.h
+++ b/plugins/MacVST/DoublePaul/source/DoublePaul.h
@@ -52,7 +52,9 @@ private:
std::set< std::string > _canDo;
double bL[11];
- double bR[11];
+ double bR[11];
+ uint32_t fpdL;
+ uint32_t fpdR;
};
diff --git a/plugins/MacVST/DoublePaul/source/DoublePaulProc.cpp b/plugins/MacVST/DoublePaul/source/DoublePaulProc.cpp
index cd11d65ea..430915416 100755
--- a/plugins/MacVST/DoublePaul/source/DoublePaulProc.cpp
+++ b/plugins/MacVST/DoublePaul/source/DoublePaulProc.cpp
@@ -33,7 +33,7 @@ void DoublePaul::processReplacing(float **inputs, float **outputs, VstInt32 samp
bL[9] = bL[8]; bL[8] = bL[7]; bL[7] = bL[6]; bL[6] = bL[5];
bL[5] = bL[4]; bL[4] = bL[3]; bL[3] = bL[2]; bL[2] = bL[1];
- bL[1] = bL[0]; bL[0] = (double(fpd)/UINT32_MAX);
+ bL[1] = bL[0]; bL[0] = (double(fpdL)/UINT32_MAX);
currentDitherL = (bL[0] * 0.061);
currentDitherL -= (bL[1] * 0.11);
@@ -56,7 +56,7 @@ void DoublePaul::processReplacing(float **inputs, float **outputs, VstInt32 samp
bR[9] = bR[8]; bR[8] = bR[7]; bR[7] = bR[6]; bR[6] = bR[5];
bR[5] = bR[4]; bR[4] = bR[3]; bR[3] = bR[2]; bR[2] = bR[1];
- bR[1] = bR[0]; bR[0] = (double(fpd)/UINT32_MAX);
+ bR[1] = bR[0]; bR[0] = (double(fpdR)/UINT32_MAX);
currentDitherR = (bR[0] * 0.061);
currentDitherR -= (bR[1] * 0.11);
@@ -120,7 +120,7 @@ void DoublePaul::processDoubleReplacing(double **inputs, double **outputs, VstIn
bL[9] = bL[8]; bL[8] = bL[7]; bL[7] = bL[6]; bL[6] = bL[5];
bL[5] = bL[4]; bL[4] = bL[3]; bL[3] = bL[2]; bL[2] = bL[1];
- bL[1] = bL[0]; bL[0] = (double(fpd)/UINT32_MAX);
+ bL[1] = bL[0]; bL[0] = (double(fpdL)/UINT32_MAX);
currentDitherL = (bL[0] * 0.061);
currentDitherL -= (bL[1] * 0.11);
@@ -143,7 +143,7 @@ void DoublePaul::processDoubleReplacing(double **inputs, double **outputs, VstIn
bR[9] = bR[8]; bR[8] = bR[7]; bR[7] = bR[6]; bR[6] = bR[5];
bR[5] = bR[4]; bR[4] = bR[3]; bR[3] = bR[2]; bR[2] = bR[1];
- bR[1] = bR[0]; bR[0] = (double(fpd)/UINT32_MAX);
+ bR[1] = bR[0]; bR[0] = (double(fpdR)/UINT32_MAX);
currentDitherR = (bR[0] * 0.061);
currentDitherR -= (bR[1] * 0.11);
diff --git a/plugins/MacVST/Drive/Drive.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Drive/Drive.xcodeproj/christopherjohnson.pbxuser
index d05e38b1f..f855a3fd8 100755
--- a/plugins/MacVST/Drive/Drive.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Drive/Drive.xcodeproj/christopherjohnson.pbxuser
@@ -49,14 +49,14 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 643464458;
- PBXWorkspaceStateSaveDate = 643464458;
+ PBXPerProjectTemplateStateSaveDate = 667856593;
+ PBXWorkspaceStateSaveDate = 667856593;
};
perUserProjectItems = {
- 8B7938E821F5766D006E9731 /* PBXTextBookmark */ = 8B7938E821F5766D006E9731 /* PBXTextBookmark */;
8B7FF47F265A7D2200EA6425 /* PBXTextBookmark */ = 8B7FF47F265A7D2200EA6425 /* PBXTextBookmark */;
8B7FF480265A7D2200EA6425 /* PBXTextBookmark */ = 8B7FF480265A7D2200EA6425 /* PBXTextBookmark */;
8B93B4861DB80EC5000D49A5 /* PBXTextBookmark */ = 8B93B4861DB80EC5000D49A5 /* PBXTextBookmark */;
+ 8BDC95EB27CEAED500A07B67 /* PBXTextBookmark */ = 8BDC95EB27CEAED500A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -72,9 +72,9 @@
};
245463B80991757100464AD3 /* Drive.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1110, 1206}}";
+ sepNavIntBoundsRect = "{{0, 0}, {669, 1386}}";
sepNavSelRange = "{2630, 0}";
- sepNavVisRange = "{2566, 26}";
+ sepNavVisRange = "{0, 0}";
sepNavWindowFrame = "{{20, 47}, {895, 831}}";
};
};
@@ -108,16 +108,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B7938E821F5766D006E9731 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 245463B80991757100464AD3 /* Drive.h */;
- name = "Drive.h: 69";
- rLen = 0;
- rLoc = 2630;
- rType = 0;
- vrLen = 100;
- vrLoc = 2568;
- };
8B7FF47F265A7D2200EA6425 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* DriveProc.cpp */;
@@ -148,6 +138,16 @@
vrLen = 296;
vrLoc = 44;
};
+ 8BDC95EB27CEAED500A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 245463B80991757100464AD3 /* Drive.h */;
+ name = "Drive.h: 69";
+ rLen = 0;
+ rLoc = 2630;
+ rType = 0;
+ vrLen = 0;
+ vrLoc = 0;
+ };
8D01CCC60486CAD60068D4B7 /* Drive */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/Drive/Drive.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Drive/Drive.xcodeproj/christopherjohnson.perspectivev3
index 77fd3c0de..239b8f12e 100755
--- a/plugins/MacVST/Drive/Drive.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Drive/Drive.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 332 336 810 487 0 0 1440 878
+ 248 185 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,12 +351,12 @@
_historyCapacity
0
bookmark
- 8B7FF480265A7D2200EA6425
+ 8BDC95EB27CEAED500A07B67
history
8B93B4861DB80EC5000D49A5
8B7FF47F265A7D2200EA6425
- 8B7938E821F5766D006E9731
+ 8B7FF480265A7D2200EA6425
SplitCount
@@ -370,18 +370,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 51}}
+ {{0, 0}, {603, 32}}
RubberWindowFrame
- 332 336 810 487 0 0 1440 878
+ 248 185 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 51pt
+ 32pt
Proportion
- 390pt
+ 409pt
Tabs
@@ -395,9 +395,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 363}}
+ {{10, 27}, {603, 382}}
RubberWindowFrame
- 332 336 810 487 0 0 1440 878
+ 248 185 810 487 0 0 1280 698
Module
XCDetailModule
@@ -479,11 +479,11 @@
TableOfContents
- 8B7FF481265A7D2200EA6425
+ 8BDC95EC27CEAED500A07B67
1CA23ED40692098700951B8B
- 8B7FF482265A7D2200EA6425
+ 8BDC95ED27CEAED500A07B67
8B0237581D42B1C400E1E8C8
- 8B7FF483265A7D2200EA6425
+ 8BDC95EE27CEAED500A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -636,7 +636,7 @@
StatusbarIsVisible
TimeStamp
- 643464482.64968705
+ 667856597.50524199
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -653,11 +653,10 @@
5
WindowOrderList
- 8B7FF484265A7D2200EA6425
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Drive/Drive.xcodeproj
WindowString
- 332 336 810 487 0 0 1440 878
+ 248 185 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/DrumSlam/DrumSlam.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/DrumSlam/DrumSlam.xcodeproj/christopherjohnson.pbxuser
index 085419cc9..46cd29e44 100755
--- a/plugins/MacVST/DrumSlam/DrumSlam.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/DrumSlam/DrumSlam.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* DrumSlam */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
breakpoints = (
);
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
@@ -51,8 +51,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569734786;
- PBXWorkspaceStateSaveDate = 569734786;
+ PBXPerProjectTemplateStateSaveDate = 667856603;
+ PBXWorkspaceStateSaveDate = 667856603;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -84,10 +84,10 @@
};
24D8286F09A914000093AEF8 /* DrumSlamProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {848, 7111}}";
+ sepNavIntBoundsRect = "{{0, 0}, {894, 7164}}";
sepNavSelRange = "{833, 0}";
- sepNavVisRange = "{0, 1976}";
- sepNavWindowFrame = "{{54, 47}, {895, 831}}";
+ sepNavVisRange = "{11356, 1177}";
+ sepNavWindowFrame = "{{54, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -104,7 +104,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* DrumSlam */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/DrumSlam/DrumSlam.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/DrumSlam/DrumSlam.xcodeproj/christopherjohnson.perspectivev3
index d1c4f807b..f15f3bcc7 100755
--- a/plugins/MacVST/DrumSlam/DrumSlam.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/DrumSlam/DrumSlam.xcodeproj/christopherjohnson.perspectivev3
@@ -300,7 +300,7 @@
PBXSmartGroupTreeModuleOutlineStateSelectionKey
- 7
+ 6
4
0
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 176 340 810 487 0 0 1440 878
+ 131 187 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 176 340 810 487 0 0 1440 878
+ 131 187 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -386,6 +386,8 @@
Frame
{{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 131 187 810 487 0 0 1280 698
Module
XCDetailModule
@@ -440,8 +442,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 176 340 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B79390D21F576B0006E9731
+ 8BDC960A27CEAEF500A07B67
1CA23ED40692098700951B8B
- 8B79390E21F576B0006E9731
+ 8BDC960B27CEAEF500A07B67
8B0237581D42B1C400E1E8C8
- 8B79390F21F576B0006E9731
+ 8BDC960C27CEAEF500A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -646,7 +646,7 @@
StatusbarIsVisible
TimeStamp
- 569734832.13053405
+ 667856629.84974205
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -663,10 +663,11 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/DrumSlam/DrumSlam.xcodeproj
+ 8BDC960D27CEAEF500A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/DrumSlam/DrumSlam.xcodeproj
WindowString
- 176 340 810 487 0 0 1440 878
+ 131 187 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/DrumSlam/DrumSlam.xcodeproj/project.pbxproj b/plugins/MacVST/DrumSlam/DrumSlam.xcodeproj/project.pbxproj
index dbb7ad584..612bb2ff5 100755
--- a/plugins/MacVST/DrumSlam/DrumSlam.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/DrumSlam/DrumSlam.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* DrumSlam */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "DrumSlam" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* DrumSlam */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/DubCenter/DubCenter.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/DubCenter/DubCenter.xcodeproj/christopherjohnson.pbxuser
index 540fd54ae..9fbe41e4f 100755
--- a/plugins/MacVST/DubCenter/DubCenter.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/DubCenter/DubCenter.xcodeproj/christopherjohnson.pbxuser
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569734854;
- PBXWorkspaceStateSaveDate = 569734854;
+ PBXPerProjectTemplateStateSaveDate = 667856635;
+ PBXWorkspaceStateSaveDate = 667856635;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -82,10 +82,10 @@
};
24D8286F09A914000093AEF8 /* DubCenterProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {848, 8086}}";
- sepNavSelRange = "{6339, 0}";
- sepNavVisRange = "{5899, 3296}";
- sepNavWindowFrame = "{{45, 47}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {984, 9900}}";
+ sepNavSelRange = "{16472, 0}";
+ sepNavVisRange = "{15731, 1523}";
+ sepNavWindowFrame = "{{45, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
diff --git a/plugins/MacVST/DubCenter/DubCenter.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/DubCenter/DubCenter.xcodeproj/christopherjohnson.perspectivev3
index 1b6627645..f6444ce73 100755
--- a/plugins/MacVST/DubCenter/DubCenter.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/DubCenter/DubCenter.xcodeproj/christopherjohnson.perspectivev3
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 28 291 810 487 0 0 1440 878
+ 353 168 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +360,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 28 291 810 487 0 0 1440 878
+ 353 168 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -386,8 +384,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 28 291 810 487 0 0 1440 878
Module
XCDetailModule
@@ -442,6 +438,8 @@
Frame
{{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 353 168 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -469,11 +467,11 @@
TableOfContents
- 8B79392221F576D2006E9731
+ 8BDC963627CEAF4F00A07B67
1CA23ED40692098700951B8B
- 8B79392321F576D2006E9731
+ 8BDC963727CEAF4F00A07B67
8B0237581D42B1C400E1E8C8
- 8B79392421F576D2006E9731
+ 8BDC963827CEAF4F00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +624,7 @@
StatusbarIsVisible
TimeStamp
- 569734870.07559299
+ 667856719.99054098
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +641,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/DubCenter/DubCenter.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/DubCenter/DubCenter.xcodeproj
WindowString
- 28 291 810 487 0 0 1440 878
+ 353 168 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/DubCenter/source/DubCenterProc.cpp b/plugins/MacVST/DubCenter/source/DubCenterProc.cpp
index b51207b1d..eac78920a 100755
--- a/plugins/MacVST/DubCenter/source/DubCenterProc.cpp
+++ b/plugins/MacVST/DubCenter/source/DubCenterProc.cpp
@@ -42,7 +42,6 @@ void DubCenter::processReplacing(float **inputs, float **outputs, VstInt32 sampl
double out;
double fuzz = 0.111;
double wet = J;
- double dry = 1.0-wet;
double glitch = 0.60;
double tempSample;
@@ -155,7 +154,7 @@ void DubCenter::processReplacing(float **inputs, float **outputs, VstInt32 sampl
{if (WasNegative){SubOctave = !SubOctave;} WasNegative = false;}
else {WasNegative = true;}
//set up polarities for sub-bass version
- randy = (double(fpd)/UINT32_MAX)*fuzz; //0 to 1 the noise, may not be needed
+ randy = (double(fpdL)/UINT32_MAX)*fuzz; //0 to 1 the noise, may not be needed
invrandy = (1.0-randy);
randy /= 2.0;
//set up the noise
@@ -326,7 +325,6 @@ void DubCenter::processDoubleReplacing(double **inputs, double **outputs, VstInt
double out;
double fuzz = 0.111;
double wet = J;
- double dry = 1.0-wet;
double glitch = 0.60;
double tempSample;
@@ -438,7 +436,7 @@ void DubCenter::processDoubleReplacing(double **inputs, double **outputs, VstInt
{if (WasNegative){SubOctave = !SubOctave;} WasNegative = false;}
else {WasNegative = true;}
//set up polarities for sub-bass version
- randy = (double(fpd)/UINT32_MAX)*fuzz; //0 to 1 the noise, may not be needed
+ randy = (double(fpdL)/UINT32_MAX)*fuzz; //0 to 1 the noise, may not be needed
invrandy = (1.0-randy);
randy /= 2.0;
//set up the noise
diff --git a/plugins/MacVST/DubSub/DubSub.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/DubSub/DubSub.xcodeproj/christopherjohnson.pbxuser
index 759f11f6e..127ad6d6b 100755
--- a/plugins/MacVST/DubSub/DubSub.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/DubSub/DubSub.xcodeproj/christopherjohnson.pbxuser
@@ -49,14 +49,14 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569734904;
- PBXWorkspaceStateSaveDate = 569734904;
+ PBXPerProjectTemplateStateSaveDate = 667856724;
+ PBXWorkspaceStateSaveDate = 667856724;
};
perUserProjectItems = {
8B15DBE121788E19007AD769 /* PBXTextBookmark */ = 8B15DBE121788E19007AD769 /* PBXTextBookmark */;
8B15DC4F21789111007AD769 /* PBXTextBookmark */ = 8B15DC4F21789111007AD769 /* PBXTextBookmark */;
- 8B15DC6F217891D4007AD769 /* PBXTextBookmark */ = 8B15DC6F217891D4007AD769 /* PBXTextBookmark */;
- 8B79394121F57705006E9731 /* PBXTextBookmark */ = 8B79394121F57705006E9731 /* PBXTextBookmark */;
+ 8BDC964927CEAF5700A07B67 /* PBXTextBookmark */ = 8BDC964927CEAF5700A07B67 /* PBXTextBookmark */;
+ 8BDC965727CEAF8B00A07B67 /* PBXTextBookmark */ = 8BDC965727CEAF8B00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -64,9 +64,9 @@
};
2407DEB6089929BA00EB68BF /* DubSub.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {712, 3575}}";
+ sepNavIntBoundsRect = "{{0, 0}, {912, 5004}}";
sepNavSelRange = "{8745, 0}";
- sepNavVisRange = "{44, 171}";
+ sepNavVisRange = "{168, 47}";
sepNavWindowFrame = "{{705, 47}, {895, 831}}";
};
};
@@ -88,10 +88,10 @@
};
24D8286F09A914000093AEF8 /* DubSubProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {554, 10985}}";
- sepNavSelRange = "{0, 0}";
- sepNavVisRange = "{0, 0}";
- sepNavWindowFrame = "{{563, 47}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1038, 14076}}";
+ sepNavSelRange = "{24747, 0}";
+ sepNavVisRange = "{35185, 973}";
+ sepNavWindowFrame = "{{385, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -128,25 +128,25 @@
vrLen = 0;
vrLoc = 0;
};
- 8B15DC6F217891D4007AD769 /* PBXTextBookmark */ = {
+ 8BDC964927CEAF5700A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2407DEB6089929BA00EB68BF /* DubSub.cpp */;
- name = "DubSub.cpp: 267";
+ name = "DubSub.cpp: 266";
rLen = 0;
rLoc = 8745;
rType = 0;
- vrLen = 172;
- vrLoc = 44;
+ vrLen = 47;
+ vrLoc = 168;
};
- 8B79394121F57705006E9731 /* PBXTextBookmark */ = {
+ 8BDC965727CEAF8B00A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2407DEB6089929BA00EB68BF /* DubSub.cpp */;
- name = "DubSub.cpp: 267";
+ name = "DubSub.cpp: 266";
rLen = 0;
rLoc = 8745;
rType = 0;
- vrLen = 171;
- vrLoc = 44;
+ vrLen = 47;
+ vrLoc = 168;
};
8D01CCC60486CAD60068D4B7 /* DubSub */ = {
activeExec = 0;
diff --git a/plugins/MacVST/DubSub/DubSub.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/DubSub/DubSub.xcodeproj/christopherjohnson.perspectivev3
index f2fabd241..28cd59d51 100755
--- a/plugins/MacVST/DubSub/DubSub.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/DubSub/DubSub.xcodeproj/christopherjohnson.perspectivev3
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 613 292 810 487 0 0 1440 878
+ 457 164 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,12 +349,12 @@
_historyCapacity
0
bookmark
- 8B79394121F57705006E9731
+ 8BDC965727CEAF8B00A07B67
history
8B15DBE121788E19007AD769
8B15DC4F21789111007AD769
- 8B15DC6F217891D4007AD769
+ 8BDC964927CEAF5700A07B67
SplitCount
@@ -370,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 117}}
+ {{0, 0}, {603, 102}}
RubberWindowFrame
- 613 292 810 487 0 0 1440 878
+ 457 164 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 117pt
+ 102pt
Proportion
- 324pt
+ 339pt
Tabs
@@ -395,9 +393,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
- RubberWindowFrame
- 613 292 810 487 0 0 1440 878
+ {{10, 27}, {603, 312}}
Module
XCDetailModule
@@ -451,7 +447,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 328}}
+ {{10, 27}, {603, 312}}
+ RubberWindowFrame
+ 457 164 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -479,11 +477,11 @@
TableOfContents
- 8B79394221F57705006E9731
+ 8BDC965827CEAF8B00A07B67
1CA23ED40692098700951B8B
- 8B79394321F57705006E9731
+ 8BDC965927CEAF8B00A07B67
8B0237581D42B1C400E1E8C8
- 8B79394421F57705006E9731
+ 8BDC965A27CEAF8B00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -636,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 569734917.70818102
+ 667856779.19729996
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -653,10 +651,11 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/DubSub/DubSub.xcodeproj
+ 8BDC965B27CEAF8B00A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/DubSub/DubSub.xcodeproj
WindowString
- 613 292 810 487 0 0 1440 878
+ 457 164 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/DubSub/source/DubSubProc.cpp b/plugins/MacVST/DubSub/source/DubSubProc.cpp
index bdc30447d..679ab020b 100755
--- a/plugins/MacVST/DubSub/source/DubSubProc.cpp
+++ b/plugins/MacVST/DubSub/source/DubSubProc.cpp
@@ -46,7 +46,6 @@ void DubSub::processReplacing(float **inputs, float **outputs, VstInt32 sampleFr
double out;
double fuzz = 0.111;
double wet = J;
- double dry = 1.0-wet;
double glitch = 0.60;
double tempSampleL;
double tempSampleR;
@@ -194,11 +193,11 @@ void DubSub::processReplacing(float **inputs, float **outputs, VstInt32 sampleFr
else {WasNegativeR = true;}
//set up polarities for sub-bass version
- randyL = (double(fpd)/UINT32_MAX)*fuzz; //0 to 1 the noise, may not be needed
+ randyL = (double(fpdL)/UINT32_MAX)*fuzz; //0 to 1 the noise, may not be needed
invrandyL = (1.0-randyL);
randyL /= 2.0;
- randyR = (double(fpd)/UINT32_MAX)*fuzz; //0 to 1 the noise, may not be needed
+ randyR = (double(fpdR)/UINT32_MAX)*fuzz; //0 to 1 the noise, may not be needed
invrandyR = (1.0-randyR);
randyR /= 2.0;
//set up the noise
@@ -450,7 +449,6 @@ void DubSub::processDoubleReplacing(double **inputs, double **outputs, VstInt32
double out;
double fuzz = 0.111;
double wet = J;
- double dry = 1.0-wet;
double glitch = 0.60;
double tempSampleL;
double tempSampleR;
@@ -597,11 +595,11 @@ void DubSub::processDoubleReplacing(double **inputs, double **outputs, VstInt32
else {WasNegativeR = true;}
//set up polarities for sub-bass version
- randyL = (double(fpd)/UINT32_MAX)*fuzz; //0 to 1 the noise, may not be needed
+ randyL = (double(fpdL)/UINT32_MAX)*fuzz; //0 to 1 the noise, may not be needed
invrandyL = (1.0-randyL);
randyL /= 2.0;
- randyR = (double(fpd)/UINT32_MAX)*fuzz; //0 to 1 the noise, may not be needed
+ randyR = (double(fpdR)/UINT32_MAX)*fuzz; //0 to 1 the noise, may not be needed
invrandyR = (1.0-randyR);
randyR /= 2.0;
//set up the noise
diff --git a/plugins/MacVST/DustBunny/DustBunny.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/DustBunny/DustBunny.xcodeproj/christopherjohnson.pbxuser
index d0f3d39af..e1b539287 100755
--- a/plugins/MacVST/DustBunny/DustBunny.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/DustBunny/DustBunny.xcodeproj/christopherjohnson.pbxuser
@@ -51,13 +51,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569734942;
- PBXWorkspaceStateSaveDate = 569734942;
+ PBXPerProjectTemplateStateSaveDate = 667856783;
+ PBXWorkspaceStateSaveDate = 667856783;
};
perUserProjectItems = {
- 8B79396121F5772F006E9731 /* PBXTextBookmark */ = 8B79396121F5772F006E9731 /* PBXTextBookmark */;
- 8B9D79DA1F7FAA9D007AB60F /* PBXTextBookmark */ = 8B9D79DA1F7FAA9D007AB60F /* PBXTextBookmark */;
8BCF31DB1F4E436800632CB6 /* PBXTextBookmark */ = 8BCF31DB1F4E436800632CB6 /* PBXTextBookmark */;
+ 8BDC966C27CEAF9300A07B67 /* PBXTextBookmark */ = 8BDC966C27CEAF9300A07B67 /* PBXTextBookmark */;
+ 8BDC967D27CEAFE100A07B67 /* PBXTextBookmark */ = 8BDC967D27CEAFE100A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -65,18 +65,18 @@
};
2407DEB6089929BA00EB68BF /* DustBunny.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {656, 1638}}";
+ sepNavIntBoundsRect = "{{0, 0}, {840, 2322}}";
sepNavSelRange = "{1342, 0}";
- sepNavVisRange = "{1232, 294}";
+ sepNavVisRange = "{1287, 146}";
sepNavWindowFrame = "{{12, 47}, {895, 831}}";
};
};
245463B80991757100464AD3 /* DustBunny.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {866, 1196}}";
- sepNavSelRange = "{2854, 0}";
- sepNavVisRange = "{0, 2413}";
- sepNavWindowFrame = "{{40, 46}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1110, 1710}}";
+ sepNavSelRange = "{3166, 0}";
+ sepNavVisRange = "{2540, 645}";
+ sepNavWindowFrame = "{{40, 4}, {895, 694}}";
};
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
@@ -89,10 +89,10 @@
};
24D8286F09A914000093AEF8 /* DustBunnyProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1076, 3458}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1380, 3420}}";
sepNavSelRange = "{638, 0}";
- sepNavVisRange = "{526, 2626}";
- sepNavWindowFrame = "{{250, 43}, {1027, 835}}";
+ sepNavVisRange = "{4608, 1479}";
+ sepNavWindowFrame = "{{250, 4}, {1027, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -109,26 +109,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B79396121F5772F006E9731 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 2407DEB6089929BA00EB68BF /* DustBunny.cpp */;
- name = "DustBunny.cpp: 30";
- rLen = 0;
- rLoc = 1342;
- rType = 0;
- vrLen = 294;
- vrLoc = 1232;
- };
- 8B9D79DA1F7FAA9D007AB60F /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 2407DEB6089929BA00EB68BF /* DustBunny.cpp */;
- name = "DustBunny.cpp: 30";
- rLen = 0;
- rLoc = 1342;
- rType = 0;
- vrLen = 454;
- vrLoc = 1146;
- };
8BCF31DB1F4E436800632CB6 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* DustBunnyProc.cpp */;
@@ -139,6 +119,26 @@
vrLen = 376;
vrLoc = 44;
};
+ 8BDC966C27CEAF9300A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 2407DEB6089929BA00EB68BF /* DustBunny.cpp */;
+ name = "DustBunny.cpp: 30";
+ rLen = 0;
+ rLoc = 1342;
+ rType = 0;
+ vrLen = 146;
+ vrLoc = 1287;
+ };
+ 8BDC967D27CEAFE100A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 2407DEB6089929BA00EB68BF /* DustBunny.cpp */;
+ name = "DustBunny.cpp: 30";
+ rLen = 0;
+ rLoc = 1342;
+ rType = 0;
+ vrLen = 146;
+ vrLoc = 1287;
+ };
8D01CCC60486CAD60068D4B7 /* DustBunny */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/DustBunny/DustBunny.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/DustBunny/DustBunny.xcodeproj/christopherjohnson.perspectivev3
index 8d8c720d5..ef5b554e2 100755
--- a/plugins/MacVST/DustBunny/DustBunny.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/DustBunny/DustBunny.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 354 325 810 487 0 0 1440 878
+ 264 180 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,11 +351,11 @@
_historyCapacity
0
bookmark
- 8B79396121F5772F006E9731
+ 8BDC967D27CEAFE100A07B67
history
8BCF31DB1F4E436800632CB6
- 8B9D79DA1F7FAA9D007AB60F
+ 8BDC966C27CEAF9300A07B67
SplitCount
@@ -369,18 +369,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 86}}
+ {{0, 0}, {603, 69}}
RubberWindowFrame
- 354 325 810 487 0 0 1440 878
+ 264 180 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 86pt
+ 69pt
Proportion
- 355pt
+ 372pt
Tabs
@@ -394,9 +394,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 328}}
- RubberWindowFrame
- 354 325 810 487 0 0 1440 878
+ {{10, 27}, {603, 345}}
Module
XCDetailModule
@@ -450,7 +448,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 382}}
+ {{10, 27}, {603, 345}}
+ RubberWindowFrame
+ 264 180 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -478,11 +478,11 @@
TableOfContents
- 8B79396221F5772F006E9731
+ 8BDC967E27CEAFE100A07B67
1CA23ED40692098700951B8B
- 8B79396321F5772F006E9731
+ 8BDC967F27CEAFE100A07B67
8B0237581D42B1C400E1E8C8
- 8B79396421F5772F006E9731
+ 8BDC968027CEAFE100A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -655,7 +655,7 @@
StatusbarIsVisible
TimeStamp
- 569734959.42124605
+ 667856865.04584301
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -672,10 +672,11 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/DustBunny/DustBunny.xcodeproj
+ 8BDC968127CEAFE100A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/DustBunny/DustBunny.xcodeproj
WindowString
- 354 325 810 487 0 0 1440 878
+ 264 180 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/DustBunny/source/DustBunny.h b/plugins/MacVST/DustBunny/source/DustBunny.h
index 0e75e7880..e9f1199a4 100755
--- a/plugins/MacVST/DustBunny/source/DustBunny.h
+++ b/plugins/MacVST/DustBunny/source/DustBunny.h
@@ -85,6 +85,9 @@ private:
bool LataFlip; //end defining of antialiasing variables
bool RataFlip; //end defining of antialiasing variables
+ uint32_t fpdL;
+ uint32_t fpdR;
+
float A;
};
diff --git a/plugins/MacVST/Dyno/Dyno.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Dyno/Dyno.xcodeproj/christopherjohnson.pbxuser
index 311827629..ddcf83734 100755
--- a/plugins/MacVST/Dyno/Dyno.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Dyno/Dyno.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 585506385;
- PBXWorkspaceStateSaveDate = 585506385;
+ PBXPerProjectTemplateStateSaveDate = 667856869;
+ PBXWorkspaceStateSaveDate = 667856869;
};
perUserProjectItems = {
- 8B5213CB22E61F6E009B824C /* PBXTextBookmark */ = 8B5213CB22E61F6E009B824C /* PBXTextBookmark */;
8B5213CC22E61F6E009B824C /* PBXTextBookmark */ = 8B5213CC22E61F6E009B824C /* PBXTextBookmark */;
+ 8BDC969227CEAFE900A07B67 /* PBXTextBookmark */ = 8BDC969227CEAFE900A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -86,9 +86,9 @@
};
24D8286F09A914000093AEF8 /* DynoProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {656, 1274}}";
+ sepNavIntBoundsRect = "{{0, 0}, {849, 1800}}";
sepNavSelRange = "{2643, 0}";
- sepNavVisRange = "{1652, 634}";
+ sepNavVisRange = "{1862, 423}";
sepNavWindowFrame = "{{507, 57}, {895, 821}}";
};
};
@@ -106,16 +106,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B5213CB22E61F6E009B824C /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* DynoProc.cpp */;
- name = "DynoProc.cpp: 84";
- rLen = 0;
- rLoc = 2643;
- rType = 0;
- vrLen = 49;
- vrLoc = 1652;
- };
8B5213CC22E61F6E009B824C /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* DynoProc.cpp */;
@@ -126,6 +116,16 @@
vrLen = 634;
vrLoc = 1652;
};
+ 8BDC969227CEAFE900A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* DynoProc.cpp */;
+ name = "DynoProc.cpp: 85";
+ rLen = 0;
+ rLoc = 2643;
+ rType = 0;
+ vrLen = 423;
+ vrLoc = 1862;
+ };
8D01CCC60486CAD60068D4B7 /* Dyno */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/Dyno/Dyno.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Dyno/Dyno.xcodeproj/christopherjohnson.perspectivev3
index 49d2762bc..e194c7954 100755
--- a/plugins/MacVST/Dyno/Dyno.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Dyno/Dyno.xcodeproj/christopherjohnson.perspectivev3
@@ -306,7 +306,7 @@
PBXSmartGroupTreeModuleOutlineStateVisibleRectKey
- {{0, 0}, {185, 692}}
+ {{0, 0}, {185, 585}}
PBXTopSmartGroupGIDs
@@ -316,14 +316,14 @@
GeometryConfiguration
Frame
- {{0, 0}, {202, 710}}
+ {{0, 0}, {202, 603}}
GroupTreeTableConfiguration
MainColumn
185
RubberWindowFrame
- 648 114 763 751 0 0 1440 878
+ 495 54 763 644 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B5213CC22E61F6E009B824C
+ 8BDC969227CEAFE900A07B67
history
- 8B5213CB22E61F6E009B824C
+ 8B5213CC22E61F6E009B824C
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {556, 366}}
+ {{0, 0}, {556, 310}}
RubberWindowFrame
- 648 114 763 751 0 0 1440 878
+ 495 54 763 644 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 366pt
+ 310pt
Proportion
- 339pt
+ 288pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {556, 312}}
+ {{10, 27}, {556, 261}}
RubberWindowFrame
- 648 114 763 751 0 0 1440 878
+ 495 54 763 644 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B5213CD22E61F6E009B824C
+ 8BDC969327CEAFE900A07B67
1CA23ED40692098700951B8B
- 8B5213CE22E61F6E009B824C
+ 8BDC969427CEAFE900A07B67
8B0237581D42B1C400E1E8C8
- 8B5213CF22E61F6E009B824C
+ 8BDC969527CEAFE900A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 585506670.54215205
+ 667856873.91190803
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +651,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/Plugins/MacVST/Dyno/Dyno.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Dyno/Dyno.xcodeproj
WindowString
- 648 114 763 751 0 0 1440 878
+ 495 54 763 644 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/EQ/EQ.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/EQ/EQ.xcodeproj/christopherjohnson.pbxuser
index b00c2623c..fb275afc6 100755
--- a/plugins/MacVST/EQ/EQ.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/EQ/EQ.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569735191;
- PBXWorkspaceStateSaveDate = 569735191;
+ PBXPerProjectTemplateStateSaveDate = 667857214;
+ PBXWorkspaceStateSaveDate = 667857214;
};
perUserProjectItems = {
- 8B181AF8204C941100516BEE /* PBXTextBookmark */ = 8B181AF8204C941100516BEE /* PBXTextBookmark */;
8B793A0321F57823006E9731 /* PBXTextBookmark */ = 8B793A0321F57823006E9731 /* PBXTextBookmark */;
+ 8BDC97A427CEB15600A07B67 /* PBXTextBookmark */ = 8BDC97A427CEB15600A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -78,9 +78,9 @@
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {838, 19877}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1074, 27486}}";
sepNavSelRange = "{10616, 0}";
- sepNavVisRange = "{10459, 280}";
+ sepNavVisRange = "{10583, 156}";
sepNavWindowFrame = "{{15, 42}, {895, 831}}";
};
};
@@ -106,16 +106,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B181AF8204C941100516BEE /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
- name = "audioeffectx.cpp: 307";
- rLen = 0;
- rLoc = 10616;
- rType = 0;
- vrLen = 399;
- vrLoc = 10459;
- };
8B793A0321F57823006E9731 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
@@ -126,6 +116,16 @@
vrLen = 280;
vrLoc = 10459;
};
+ 8BDC97A427CEB15600A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
+ name = "audioeffectx.cpp: 307";
+ rLen = 0;
+ rLoc = 10616;
+ rType = 0;
+ vrLen = 153;
+ vrLoc = 10583;
+ };
8D01CCC60486CAD60068D4B7 /* EQ */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/EQ/EQ.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/EQ/EQ.xcodeproj/christopherjohnson.perspectivev3
index 708c37d82..5b1d65810 100755
--- a/plugins/MacVST/EQ/EQ.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/EQ/EQ.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 15 373 810 487 0 0 1440 878
+ 11 203 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B793A0321F57823006E9731
+ 8BDC97A427CEB15600A07B67
history
- 8B181AF8204C941100516BEE
+ 8B793A0321F57823006E9731
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 117}}
+ {{0, 0}, {603, 102}}
RubberWindowFrame
- 15 373 810 487 0 0 1440 878
+ 11 203 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 117pt
+ 102pt
Proportion
- 324pt
+ 339pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
+ {{10, 27}, {603, 312}}
RubberWindowFrame
- 15 373 810 487 0 0 1440 878
+ 11 203 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B793A0421F57823006E9731
+ 8BDC97A527CEB15600A07B67
1CA23ED40692098700951B8B
- 8B793A0521F57823006E9731
+ 8BDC97A627CEB15600A07B67
8B0237581D42B1C400E1E8C8
- 8B793A0621F57823006E9731
+ 8BDC97A727CEB15600A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 569735203.85904706
+ 667857238.612414
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +651,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/EQ/EQ.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/EQ/EQ.xcodeproj
WindowString
- 15 373 810 487 0 0 1440 878
+ 11 203 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/EdIsDim/EdIsDim.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/EdIsDim/EdIsDim.xcodeproj/christopherjohnson.pbxuser
index 83c37d050..1a975be29 100755
--- a/plugins/MacVST/EdIsDim/EdIsDim.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/EdIsDim/EdIsDim.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569735013;
- PBXWorkspaceStateSaveDate = 569735013;
+ PBXPerProjectTemplateStateSaveDate = 667856888;
+ PBXWorkspaceStateSaveDate = 667856888;
};
perUserProjectItems = {
8B79398121F57771006E9731 /* PBXTextBookmark */ = 8B79398121F57771006E9731 /* PBXTextBookmark */;
- 8B9D79F01F7FAAB9007AB60F /* PBXTextBookmark */ = 8B9D79F01F7FAAB9007AB60F /* PBXTextBookmark */;
+ 8BDC96E927CEB07800A07B67 /* PBXTextBookmark */ = 8BDC96E927CEB07800A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -78,7 +78,7 @@
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {747, 19864}}";
+ sepNavIntBoundsRect = "{{0, 0}, {957, 27522}}";
sepNavSelRange = "{10616, 0}";
sepNavVisRange = "{0, 0}";
sepNavWindowFrame = "{{15, 42}, {895, 831}}";
@@ -86,10 +86,10 @@
};
24D8286F09A914000093AEF8 /* EdIsDimProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {848, 2600}}";
- sepNavSelRange = "{4058, 1892}";
- sepNavVisRange = "{0, 1918}";
- sepNavWindowFrame = "{{415, 47}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {867, 1908}}";
+ sepNavSelRange = "{2724, 0}";
+ sepNavVisRange = "{1916, 914}";
+ sepNavWindowFrame = "{{385, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -116,7 +116,7 @@
vrLen = 0;
vrLoc = 0;
};
- 8B9D79F01F7FAAB9007AB60F /* PBXTextBookmark */ = {
+ 8BDC96E927CEB07800A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
name = "audioeffectx.cpp: 307";
diff --git a/plugins/MacVST/EdIsDim/EdIsDim.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/EdIsDim/EdIsDim.xcodeproj/christopherjohnson.perspectivev3
index 0d8290a7c..e899c7f63 100755
--- a/plugins/MacVST/EdIsDim/EdIsDim.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/EdIsDim/EdIsDim.xcodeproj/christopherjohnson.perspectivev3
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 267 298 810 487 0 0 1440 878
+ 199 167 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +349,10 @@
_historyCapacity
0
bookmark
- 8B79398121F57771006E9731
+ 8BDC96E927CEB07800A07B67
history
- 8B9D79F01F7FAAB9007AB60F
+ 8B79398121F57771006E9731
SplitCount
@@ -370,7 +368,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 267 298 810 487 0 0 1440 878
+ 199 167 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -394,8 +392,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 267 298 810 487 0 0 1440 878
Module
XCDetailModule
@@ -449,7 +445,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 363}}
+ {{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 199 167 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -477,11 +475,11 @@
TableOfContents
- 8B79398221F57771006E9731
+ 8BDC96EA27CEB07800A07B67
1CA23ED40692098700951B8B
- 8B79398321F57771006E9731
+ 8BDC96EB27CEB07800A07B67
8B0237581D42B1C400E1E8C8
- 8B79398421F57771006E9731
+ 8BDC96EC27CEB07800A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +632,7 @@
StatusbarIsVisible
TimeStamp
- 569735025.80681503
+ 667857016.67069495
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +649,11 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/EdIsDim/EdIsDim.xcodeproj
+ 8BDC96ED27CEB07800A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/EdIsDim/EdIsDim.xcodeproj
WindowString
- 267 298 810 487 0 0 1440 878
+ 199 167 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/EdIsDim/source/EdIsDimProc.cpp b/plugins/MacVST/EdIsDim/source/EdIsDimProc.cpp
index 2273bfcaa..39f21f688 100755
--- a/plugins/MacVST/EdIsDim/source/EdIsDimProc.cpp
+++ b/plugins/MacVST/EdIsDim/source/EdIsDimProc.cpp
@@ -36,15 +36,17 @@ void EdIsDim::processReplacing(float **inputs, float **outputs, VstInt32 sampleF
mid = (inputSampleL+inputSampleR)/2.0;
side = (inputSampleL-inputSampleR)/2.0;
- //stereo 32 bit dither, made small and tidy.
+ //begin 32 bit floating point dither
int expon; frexpf((float)mid, &expon);
- double dither = (rand()/(RAND_MAX*7.737125245533627e+25))*pow(2,expon+62);
- mid += (dither-fpNShapeL); fpNShapeL = dither;
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ mid += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62));
+ //end 32 bit floating point dither
+ //begin 32 bit floating point dither
frexpf((float)side, &expon);
- dither = (rand()/(RAND_MAX*7.737125245533627e+25))*pow(2,expon+62);
- side += (dither-fpNShapeR); fpNShapeR = dither;
- //end 32 bit dither
-
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ side += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62));
+ //end 32 bit floating point dither
+
*out1 = mid;
*out2 = side;
@@ -86,14 +88,14 @@ void EdIsDim::processDoubleReplacing(double **inputs, double **outputs, VstInt32
side = (inputSampleL-inputSampleR)/2.0;
//stereo 64 bit dither, made small and tidy.
- int expon; frexp((double)mid, &expon);
- double dither = (rand()/(RAND_MAX*7.737125245533627e+25))*pow(2,expon+62);
- dither /= 536870912.0; //needs this to scale to 64 bit zone
- mid += (dither-fpNShapeL); fpNShapeL = dither;
- frexp((double)side, &expon);
- dither = (rand()/(RAND_MAX*7.737125245533627e+25))*pow(2,expon+62);
- dither /= 536870912.0; //needs this to scale to 64 bit zone
- side += (dither-fpNShapeR); fpNShapeR = dither;
+ //int expon; frexpf((float)mid, &expon);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ //mid += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62));
+ //end 32 bit floating point dither
+ //begin 32 bit floating point dither
+ //frexpf((float)side, &expon);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ //side += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62));
//end 64 bit dither
*out1 = mid;
diff --git a/plugins/MacVST/Edge/Edge.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Edge/Edge.xcodeproj/christopherjohnson.pbxuser
index 6aecd338c..d39772413 100644
--- a/plugins/MacVST/Edge/Edge.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Edge/Edge.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 666556871;
- PBXWorkspaceStateSaveDate = 666556871;
+ PBXPerProjectTemplateStateSaveDate = 667856877;
+ PBXWorkspaceStateSaveDate = 667856877;
};
perUserProjectItems = {
- 8B4CD27527BAD38F00DE384C /* PBXTextBookmark */ = 8B4CD27527BAD38F00DE384C /* PBXTextBookmark */;
8B4CD2BB27BADA7D00DE384C /* PBXTextBookmark */ = 8B4CD2BB27BADA7D00DE384C /* PBXTextBookmark */;
+ 8BDC96B027CEAFF300A07B67 /* PBXTextBookmark */ = 8BDC96B027CEAFF300A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -88,7 +88,7 @@
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {849, 7686}}";
sepNavSelRange = "{20181, 0}";
- sepNavVisRange = "{20116, 193}";
+ sepNavVisRange = "{20177, 88}";
sepNavWindowFrame = "{{71, 144}, {1173, 554}}";
};
};
@@ -106,16 +106,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B4CD27527BAD38F00DE384C /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* EdgeProc.cpp */;
- name = "EdgeProc.cpp: 409";
- rLen = 0;
- rLoc = 20181;
- rType = 0;
- vrLen = 193;
- vrLoc = 20116;
- };
8B4CD2BB27BADA7D00DE384C /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* EdgeProc.cpp */;
@@ -126,6 +116,16 @@
vrLen = 193;
vrLoc = 20116;
};
+ 8BDC96B027CEAFF300A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* EdgeProc.cpp */;
+ name = "EdgeProc.cpp: 409";
+ rLen = 0;
+ rLoc = 20181;
+ rType = 0;
+ vrLen = 88;
+ vrLoc = 20177;
+ };
8D01CCC60486CAD60068D4B7 /* Edge */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/Edge/Edge.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Edge/Edge.xcodeproj/christopherjohnson.perspectivev3
index 50b1a5361..95a40ee0a 100644
--- a/plugins/MacVST/Edge/Edge.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Edge/Edge.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 15 405 629 288 0 0 1280 698
+ 399 361 629 288 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B4CD2BB27BADA7D00DE384C
+ 8BDC96B027CEAFF300A07B67
history
- 8B4CD27527BAD38F00DE384C
+ 8B4CD2BB27BADA7D00DE384C
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {422, 58}}
+ {{0, 0}, {422, 42}}
RubberWindowFrame
- 15 405 629 288 0 0 1280 698
+ 399 361 629 288 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 58pt
+ 42pt
Proportion
- 184pt
+ 200pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {422, 157}}
+ {{10, 27}, {422, 173}}
RubberWindowFrame
- 15 405 629 288 0 0 1280 698
+ 399 361 629 288 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B4CD2BC27BADA7D00DE384C
+ 8BDC96B127CEAFF300A07B67
1CA23ED40692098700951B8B
- 8B4CD2BD27BADA7D00DE384C
+ 8BDC96B227CEAFF300A07B67
8B0237581D42B1C400E1E8C8
- 8B4CD2BE27BADA7D00DE384C
+ 8BDC96B327CEAFF300A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 666557053.01943099
+ 667856883.58174098
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,11 +651,10 @@
5
WindowOrderList
- 8B4CD2BF27BADA7D00DE384C
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Edge/Edge.xcodeproj
WindowString
- 15 405 629 288 0 0 1280 698
+ 399 361 629 288 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Elation/Elation.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Elation/Elation.xcodeproj/christopherjohnson.pbxuser
index 5469ec93a..7fae9d3d5 100755
--- a/plugins/MacVST/Elation/Elation.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Elation/Elation.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* Elation */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 604012623;
- PBXWorkspaceStateSaveDate = 604012623;
+ PBXPerProjectTemplateStateSaveDate = 667857025;
+ PBXWorkspaceStateSaveDate = 667857025;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -82,10 +82,10 @@
};
24D8286F09A914000093AEF8 /* ElationProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1048, 7397}}";
- sepNavSelRange = "{26136, 0}";
- sepNavVisRange = "{22189, 2680}";
- sepNavWindowFrame = "{{19, 57}, {895, 821}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1056, 10746}}";
+ sepNavSelRange = "{25921, 0}";
+ sepNavVisRange = "{25403, 1244}";
+ sepNavWindowFrame = "{{19, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* Elation */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/Elation/Elation.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Elation/Elation.xcodeproj/christopherjohnson.perspectivev3
index adc15bc94..42aebde2c 100755
--- a/plugins/MacVST/Elation/Elation.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Elation/Elation.xcodeproj/christopherjohnson.perspectivev3
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +360,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -441,7 +439,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -469,11 +467,11 @@
TableOfContents
- 8B88B6AD240080660032C1CD
+ 8BDC970727CEB0A100A07B67
1CA23ED40692098700951B8B
- 8B88B6AE240080660032C1CD
+ 8BDC970827CEB0A100A07B67
8B0237581D42B1C400E1E8C8
- 8B88B6AF240080660032C1CD
+ 8BDC970927CEB0A100A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +624,7 @@
StatusbarIsVisible
TimeStamp
- 604015116.93417704
+ 667857057.99632001
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,11 +641,11 @@
5
WindowOrderList
- 8B88B6DB24008A0C0032C1CD
- /Users/christopherjohnson/Desktop/Elation/Elation.xcodeproj
+ 8BDC970A27CEB0A100A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Elation/Elation.xcodeproj
WindowString
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Elation/Elation.xcodeproj/project.pbxproj b/plugins/MacVST/Elation/Elation.xcodeproj/project.pbxproj
index 5c82f50c5..7390958d2 100755
--- a/plugins/MacVST/Elation/Elation.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/Elation/Elation.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* Elation */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "Elation" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* Elation */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/Elation/source/ElationProc.cpp b/plugins/MacVST/Elation/source/ElationProc.cpp
index 0d5064ba1..8b99b97fa 100755
--- a/plugins/MacVST/Elation/source/ElationProc.cpp
+++ b/plugins/MacVST/Elation/source/ElationProc.cpp
@@ -258,12 +258,12 @@ void Elation::processReplacing(float **inputs, float **outputs, VstInt32 sampleF
flip = !flip;
- randy = ((double(fpd)/UINT32_MAX)*0.054);
+ randy = ((double(fpdL)/UINT32_MAX)*0.054);
outputSample = ((((inputSampleL*(1-randy))+(lastSampleL*randy))*wet)+(drySampleL*(1.0-wet))) * outlevel;
lastSampleL = inputSampleL;
inputSampleL = outputSample;
- randy = ((double(fpd)/UINT32_MAX)*0.054);
+ randy = ((double(fpdR)/UINT32_MAX)*0.054);
outputSample = ((((inputSampleR*(1-randy))+(lastSampleR*randy))*wet)+(drySampleR*(1.0-wet))) * outlevel;
lastSampleR = inputSampleR;
inputSampleR = outputSample;
@@ -538,12 +538,12 @@ void Elation::processDoubleReplacing(double **inputs, double **outputs, VstInt32
flip = !flip;
- randy = ((double(fpd)/UINT32_MAX)*0.054);
+ randy = ((double(fpdL)/UINT32_MAX)*0.054);
outputSample = ((((inputSampleL*(1-randy))+(lastSampleL*randy))*wet)+(drySampleL*(1.0-wet))) * outlevel;
lastSampleL = inputSampleL;
inputSampleL = outputSample;
- randy = ((double(fpd)/UINT32_MAX)*0.054);
+ randy = ((double(fpdR)/UINT32_MAX)*0.054);
outputSample = ((((inputSampleR*(1-randy))+(lastSampleR*randy))*wet)+(drySampleR*(1.0-wet))) * outlevel;
lastSampleR = inputSampleR;
inputSampleR = outputSample;
diff --git a/plugins/MacVST/ElectroHat/ElectroHat.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/ElectroHat/ElectroHat.xcodeproj/christopherjohnson.pbxuser
index bf3d2b1d7..799336e63 100755
--- a/plugins/MacVST/ElectroHat/ElectroHat.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/ElectroHat/ElectroHat.xcodeproj/christopherjohnson.pbxuser
@@ -49,13 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569735050;
- PBXWorkspaceStateSaveDate = 569735050;
+ PBXPerProjectTemplateStateSaveDate = 667857075;
+ PBXWorkspaceStateSaveDate = 667857075;
};
perUserProjectItems = {
- 8B7939A121F57797006E9731 /* PBXTextBookmark */ = 8B7939A121F57797006E9731 /* PBXTextBookmark */;
8BC009F720436BB500304BC7 /* PBXTextBookmark */ = 8BC009F720436BB500304BC7 /* PBXTextBookmark */;
- 8BC00A1E20436E0500304BC7 /* PBXTextBookmark */ = 8BC00A1E20436E0500304BC7 /* PBXTextBookmark */;
+ 8BDC972827CEB0CC00A07B67 /* XCBuildMessageTextBookmark */ = 8BDC972827CEB0CC00A07B67 /* XCBuildMessageTextBookmark */;
+ 8BDC972927CEB0CC00A07B67 /* PBXTextBookmark */ = 8BDC972927CEB0CC00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -87,10 +87,10 @@
};
24D8286F09A914000093AEF8 /* ElectroHatProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {554, 3705}}";
- sepNavSelRange = "{5210, 0}";
- sepNavVisRange = "{5118, 103}";
- sepNavWindowFrame = "{{57, 47}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {624, 4914}}";
+ sepNavSelRange = "{913, 0}";
+ sepNavVisRange = "{896, 85}";
+ sepNavWindowFrame = "{{57, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -107,16 +107,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B7939A121F57797006E9731 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* ElectroHatProc.cpp */;
- name = "ElectroHatProc.cpp: 182";
- rLen = 0;
- rLoc = 5210;
- rType = 0;
- vrLen = 103;
- vrLoc = 5118;
- };
8BC009F720436BB500304BC7 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2407DEB6089929BA00EB68BF /* ElectroHat.cpp */;
@@ -127,15 +117,24 @@
vrLen = 124;
vrLoc = 508;
};
- 8BC00A1E20436E0500304BC7 /* PBXTextBookmark */ = {
+ 8BDC972827CEB0CC00A07B67 /* XCBuildMessageTextBookmark */ = {
+ isa = PBXTextBookmark;
+ comments = "Unused variable 'dry'";
+ fRef = 24D8286F09A914000093AEF8 /* ElectroHatProc.cpp */;
+ fallbackIsa = XCBuildMessageTextBookmark;
+ rLen = 1;
+ rLoc = 35;
+ rType = 1;
+ };
+ 8BDC972927CEB0CC00A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* ElectroHatProc.cpp */;
- name = "ElectroHatProc.cpp: 183";
+ name = "ElectroHatProc.cpp: 36";
rLen = 0;
- rLoc = 5210;
+ rLoc = 913;
rType = 0;
- vrLen = 138;
- vrLoc = 5074;
+ vrLen = 85;
+ vrLoc = 896;
};
8D01CCC60486CAD60068D4B7 /* ElectroHat */ = {
activeExec = 0;
diff --git a/plugins/MacVST/ElectroHat/ElectroHat.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/ElectroHat/ElectroHat.xcodeproj/christopherjohnson.perspectivev3
index c845be7e1..53c16fa0a 100755
--- a/plugins/MacVST/ElectroHat/ElectroHat.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/ElectroHat/ElectroHat.xcodeproj/christopherjohnson.perspectivev3
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 35 342 810 487 0 0 1440 878
+ 26 188 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,11 +349,11 @@
_historyCapacity
0
bookmark
- 8B7939A121F57797006E9731
+ 8BDC972927CEB0CC00A07B67
history
8BC009F720436BB500304BC7
- 8BC00A1E20436E0500304BC7
+ 8BDC972827CEB0CC00A07B67
SplitCount
@@ -369,18 +367,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 86}}
+ {{0, 0}, {603, 69}}
RubberWindowFrame
- 35 342 810 487 0 0 1440 878
+ 26 188 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 86pt
+ 69pt
Proportion
- 355pt
+ 372pt
Tabs
@@ -394,9 +392,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 328}}
- RubberWindowFrame
- 35 342 810 487 0 0 1440 878
+ {{10, 27}, {603, 345}}
Module
XCDetailModule
@@ -450,7 +446,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 414}}
+ {{10, 27}, {603, 345}}
+ RubberWindowFrame
+ 26 188 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -478,11 +476,11 @@
TableOfContents
- 8B7939A221F57797006E9731
+ 8BDC972A27CEB0CC00A07B67
1CA23ED40692098700951B8B
- 8B7939A321F57797006E9731
+ 8BDC972B27CEB0CC00A07B67
8B0237581D42B1C400E1E8C8
- 8B7939A421F57797006E9731
+ 8BDC972C27CEB0CC00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -635,7 +633,7 @@
StatusbarIsVisible
TimeStamp
- 569735063.85601294
+ 667857100.42577803
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -652,10 +650,11 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/ElectroHat/ElectroHat.xcodeproj
+ 8BDC972D27CEB0CC00A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/ElectroHat/ElectroHat.xcodeproj
WindowString
- 35 342 810 487 0 0 1440 878
+ 26 188 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/ElectroHat/source/ElectroHatProc.cpp b/plugins/MacVST/ElectroHat/source/ElectroHatProc.cpp
index e1ef925b7..d49babc4b 100755
--- a/plugins/MacVST/ElectroHat/source/ElectroHatProc.cpp
+++ b/plugins/MacVST/ElectroHat/source/ElectroHatProc.cpp
@@ -33,7 +33,6 @@ void ElectroHat::processReplacing(float **inputs, float **outputs, VstInt32 samp
double brighten = C;
double outputlevel = D;
double wet = E;
- double dry = 1.0-wet;
if (deSyn == 4) {deSyn = 1; increment = 0.411; brighten = 0.87;}
//606 preset
@@ -168,7 +167,6 @@ void ElectroHat::processDoubleReplacing(double **inputs, double **outputs, VstIn
double brighten = C;
double outputlevel = D;
double wet = E;
- double dry = 1.0-wet;
if (deSyn == 4) {deSyn = 1; increment = 0.411; brighten = 0.87;}
//606 preset
diff --git a/plugins/MacVST/Energy/Energy.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Energy/Energy.xcodeproj/christopherjohnson.pbxuser
index 3774603d8..0493a01d3 100755
--- a/plugins/MacVST/Energy/Energy.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Energy/Energy.xcodeproj/christopherjohnson.pbxuser
@@ -51,13 +51,14 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 646771732;
- PBXWorkspaceStateSaveDate = 646771732;
+ PBXPerProjectTemplateStateSaveDate = 667857104;
+ PBXWorkspaceStateSaveDate = 667857104;
};
perUserProjectItems = {
8B34300D268CFB0900EC59C2 /* PBXTextBookmark */ = 8B34300D268CFB0900EC59C2 /* PBXTextBookmark */;
- 8B34300E268CFB0900EC59C2 /* PBXBookmark */ = 8B34300E268CFB0900EC59C2 /* PBXBookmark */;
- 8B34300F268CFB0900EC59C2 /* PBXTextBookmark */ = 8B34300F268CFB0900EC59C2 /* PBXTextBookmark */;
+ 8BDC975227CEB12200A07B67 /* PBXTextBookmark */ = 8BDC975227CEB12200A07B67 /* PBXTextBookmark */;
+ 8BDC975327CEB12200A07B67 /* XCBuildMessageTextBookmark */ = 8BDC975327CEB12200A07B67 /* XCBuildMessageTextBookmark */;
+ 8BDC975427CEB12200A07B67 /* PBXTextBookmark */ = 8BDC975427CEB12200A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -81,17 +82,17 @@
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {859, 20267}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1074, 27360}}";
sepNavSelRange = "{10616, 0}";
- sepNavVisRange = "{9653, 2414}";
+ sepNavVisRange = "{10583, 156}";
sepNavWindowFrame = "{{15, 42}, {895, 831}}";
};
};
24D8286F09A914000093AEF8 /* EnergyProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {554, 27432}}";
+ sepNavIntBoundsRect = "{{0, 0}, {554, 25740}}";
sepNavSelRange = "{0, 0}";
- sepNavVisRange = "{4613, 80}";
+ sepNavVisRange = "{4611, 74}";
sepNavWindowFrame = "{{24, 47}, {895, 831}}";
};
};
@@ -119,19 +120,34 @@
vrLen = 270;
vrLoc = 6630;
};
- 8B34300E268CFB0900EC59C2 /* PBXBookmark */ = {
- isa = PBXBookmark;
- fRef = 24D8286F09A914000093AEF8 /* EnergyProc.cpp */;
- };
- 8B34300F268CFB0900EC59C2 /* PBXTextBookmark */ = {
+ 8BDC975227CEB12200A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* EnergyProc.cpp */;
name = "EnergyProc.cpp: 1";
rLen = 0;
rLoc = 0;
rType = 0;
- vrLen = 80;
- vrLoc = 4613;
+ vrLen = 74;
+ vrLoc = 4611;
+ };
+ 8BDC975327CEB12200A07B67 /* XCBuildMessageTextBookmark */ = {
+ isa = PBXTextBookmark;
+ comments = "Deprecated conversion from string constant to 'char*'";
+ fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
+ fallbackIsa = XCBuildMessageTextBookmark;
+ rLen = 1;
+ rLoc = 306;
+ rType = 1;
+ };
+ 8BDC975427CEB12200A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
+ name = "audioeffectx.cpp: 307";
+ rLen = 0;
+ rLoc = 10616;
+ rType = 0;
+ vrLen = 153;
+ vrLoc = 10583;
};
8D01CCC60486CAD60068D4B7 /* Energy */ = {
activeExec = 0;
diff --git a/plugins/MacVST/Energy/Energy.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Energy/Energy.xcodeproj/christopherjohnson.perspectivev3
index a26aed481..0cf084ee5 100755
--- a/plugins/MacVST/Energy/Energy.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Energy/Energy.xcodeproj/christopherjohnson.perspectivev3
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 218 341 810 487 0 0 1440 878
+ 163 187 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -339,7 +337,7 @@
PBXProjectModuleGUID
8B0237581D42B1C400E1E8C8
PBXProjectModuleLabel
- EnergyProc.cpp
+ audioeffectx.cpp
PBXSplitModuleInNavigatorKey
Split0
@@ -347,15 +345,16 @@
PBXProjectModuleGUID
8B0237591D42B1C400E1E8C8
PBXProjectModuleLabel
- EnergyProc.cpp
+ audioeffectx.cpp
_historyCapacity
0
bookmark
- 8B34300F268CFB0900EC59C2
+ 8BDC975427CEB12200A07B67
history
8B34300D268CFB0900EC59C2
- 8B34300E268CFB0900EC59C2
+ 8BDC975227CEB12200A07B67
+ 8BDC975327CEB12200A07B67
SplitCount
@@ -369,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 117}}
+ {{0, 0}, {603, 102}}
RubberWindowFrame
- 218 341 810 487 0 0 1440 878
+ 163 187 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 117pt
+ 102pt
Proportion
- 324pt
+ 339pt
Tabs
@@ -394,9 +393,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
- RubberWindowFrame
- 218 341 810 487 0 0 1440 878
+ {{10, 27}, {603, 312}}
Module
XCDetailModule
@@ -450,7 +447,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 414}}
+ {{10, 27}, {603, 312}}
+ RubberWindowFrame
+ 163 187 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -478,11 +477,11 @@
TableOfContents
- 8B343010268CFB0900EC59C2
+ 8BDC975527CEB12200A07B67
1CA23ED40692098700951B8B
- 8B343011268CFB0900EC59C2
+ 8BDC975627CEB12200A07B67
8B0237581D42B1C400E1E8C8
- 8B343012268CFB0900EC59C2
+ 8BDC975727CEB12200A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -655,7 +654,7 @@
StatusbarIsVisible
TimeStamp
- 646773513.70692205
+ 667857186.42190099
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -675,7 +674,7 @@
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Energy/Energy.xcodeproj
WindowString
- 218 341 810 487 0 0 1440 878
+ 163 187 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Energy2/Energy2.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Energy2/Energy2.xcodeproj/christopherjohnson.pbxuser
index 971b6f6bd..5f55ad0ad 100644
--- a/plugins/MacVST/Energy2/Energy2.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Energy2/Energy2.xcodeproj/christopherjohnson.pbxuser
@@ -49,14 +49,14 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 647528394;
- PBXWorkspaceStateSaveDate = 647528394;
+ PBXPerProjectTemplateStateSaveDate = 667857192;
+ PBXWorkspaceStateSaveDate = 667857192;
};
perUserProjectItems = {
8B5C611A2693AD970038F773 /* PBXTextBookmark */ = 8B5C611A2693AD970038F773 /* PBXTextBookmark */;
8B5C61F32697CFBC0038F773 /* PBXTextBookmark */ = 8B5C61F32697CFBC0038F773 /* PBXTextBookmark */;
- 8B5C62BF269880800038F773 /* PBXTextBookmark */ = 8B5C62BF269880800038F773 /* PBXTextBookmark */;
8B5C62C0269880800038F773 /* PBXTextBookmark */ = 8B5C62C0269880800038F773 /* PBXTextBookmark */;
+ 8BDC976827CEB13100A07B67 /* PBXTextBookmark */ = 8BDC976827CEB13100A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -88,9 +88,9 @@
};
24D8286F09A914000093AEF8 /* Energy2Proc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {777, 23256}}";
+ sepNavIntBoundsRect = "{{0, 0}, {714, 23220}}";
sepNavSelRange = "{42178, 0}";
- sepNavVisRange = "{41985, 342}";
+ sepNavVisRange = "{42103, 284}";
sepNavWindowFrame = "{{544, 47}, {895, 831}}";
};
};
@@ -128,16 +128,6 @@
vrLen = 94;
vrLoc = 2518;
};
- 8B5C62BF269880800038F773 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* Energy2Proc.cpp */;
- name = "Energy2Proc.cpp: 1213";
- rLen = 0;
- rLoc = 42178;
- rType = 0;
- vrLen = 342;
- vrLoc = 42009;
- };
8B5C62C0269880800038F773 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* Energy2Proc.cpp */;
@@ -148,6 +138,16 @@
vrLen = 342;
vrLoc = 41985;
};
+ 8BDC976827CEB13100A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* Energy2Proc.cpp */;
+ name = "Energy2Proc.cpp: 1214";
+ rLen = 0;
+ rLoc = 42178;
+ rType = 0;
+ vrLen = 284;
+ vrLoc = 42103;
+ };
8D01CCC60486CAD60068D4B7 /* Energy2 */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/Energy2/Energy2.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Energy2/Energy2.xcodeproj/christopherjohnson.perspectivev3
index c21effa0b..114f21495 100644
--- a/plugins/MacVST/Energy2/Energy2.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Energy2/Energy2.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 618 362 810 487 0 0 1440 878
+ 461 197 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,12 +351,12 @@
_historyCapacity
0
bookmark
- 8B5C62C0269880800038F773
+ 8BDC976827CEB13100A07B67
history
8B5C611A2693AD970038F773
8B5C61F32697CFBC0038F773
- 8B5C62BF269880800038F773
+ 8B5C62C0269880800038F773
SplitCount
@@ -370,18 +370,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 123}}
+ {{0, 0}, {603, 108}}
RubberWindowFrame
- 618 362 810 487 0 0 1440 878
+ 461 197 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 123pt
+ 108pt
Proportion
- 318pt
+ 333pt
Tabs
@@ -395,9 +395,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 291}}
+ {{10, 27}, {603, 306}}
RubberWindowFrame
- 618 362 810 487 0 0 1440 878
+ 461 197 810 487 0 0 1280 698
Module
XCDetailModule
@@ -479,11 +479,11 @@
TableOfContents
- 8B5C62C1269880800038F773
+ 8BDC976927CEB13100A07B67
1CA23ED40692098700951B8B
- 8B5C62C2269880800038F773
+ 8BDC976A27CEB13100A07B67
8B0237581D42B1C400E1E8C8
- 8B5C62C3269880800038F773
+ 8BDC976B27CEB13100A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -636,7 +636,7 @@
StatusbarIsVisible
TimeStamp
- 647528576.10708499
+ 667857201.31669903
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -653,11 +653,10 @@
5
WindowOrderList
- 8B5C62C4269880800038F773
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Energy2/Energy2.xcodeproj
WindowString
- 618 362 810 487 0 0 1440 878
+ 461 197 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Ensemble/Ensemble.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Ensemble/Ensemble.xcodeproj/christopherjohnson.pbxuser
index 2c3d879f9..5fe188009 100755
--- a/plugins/MacVST/Ensemble/Ensemble.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Ensemble/Ensemble.xcodeproj/christopherjohnson.pbxuser
@@ -51,12 +51,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569735122;
- PBXWorkspaceStateSaveDate = 569735122;
+ PBXPerProjectTemplateStateSaveDate = 667857205;
+ PBXWorkspaceStateSaveDate = 667857205;
};
perUserProjectItems = {
- 8B7939DE21F577D7006E9731 /* PBXTextBookmark */ = 8B7939DE21F577D7006E9731 /* PBXTextBookmark */;
8B7939ED21F57803006E9731 /* PBXTextBookmark */ = 8B7939ED21F57803006E9731 /* PBXTextBookmark */;
+ 8BDC978627CEB13A00A07B67 /* PBXTextBookmark */ = 8BDC978627CEB13A00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -64,9 +64,9 @@
};
2407DEB6089929BA00EB68BF /* Ensemble.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {628, 2067}}";
+ sepNavIntBoundsRect = "{{0, 0}, {804, 2862}}";
sepNavSelRange = "{656, 0}";
- sepNavVisRange = "{570, 99}";
+ sepNavVisRange = "{0, 0}";
sepNavWindowFrame = "{{46, 47}, {895, 831}}";
};
};
@@ -108,16 +108,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B7939DE21F577D7006E9731 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 2407DEB6089929BA00EB68BF /* Ensemble.cpp */;
- name = "Ensemble.cpp: 22";
- rLen = 0;
- rLoc = 656;
- rType = 0;
- vrLen = 99;
- vrLoc = 570;
- };
8B7939ED21F57803006E9731 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2407DEB6089929BA00EB68BF /* Ensemble.cpp */;
@@ -128,6 +118,16 @@
vrLen = 99;
vrLoc = 570;
};
+ 8BDC978627CEB13A00A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 2407DEB6089929BA00EB68BF /* Ensemble.cpp */;
+ name = "Ensemble.cpp: 22";
+ rLen = 0;
+ rLoc = 656;
+ rType = 0;
+ vrLen = 0;
+ vrLoc = 0;
+ };
8D01CCC60486CAD60068D4B7 /* Ensemble */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/Ensemble/Ensemble.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Ensemble/Ensemble.xcodeproj/christopherjohnson.perspectivev3
index 3188f6d6e..83cd92840 100755
--- a/plugins/MacVST/Ensemble/Ensemble.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Ensemble/Ensemble.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 348 289 810 487 0 0 1440 878
+ 260 163 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B7939ED21F57803006E9731
+ 8BDC978627CEB13A00A07B67
history
- 8B7939DE21F577D7006E9731
+ 8B7939ED21F57803006E9731
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 51}}
+ {{0, 0}, {603, 32}}
RubberWindowFrame
- 348 289 810 487 0 0 1440 878
+ 260 163 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 51pt
+ 32pt
Proportion
- 390pt
+ 409pt
Tabs
@@ -393,7 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 363}}
+ {{10, 27}, {603, 382}}
+ RubberWindowFrame
+ 260 163 810 487 0 0 1280 698
Module
XCDetailModule
@@ -448,8 +450,6 @@
Frame
{{10, 27}, {603, 363}}
- RubberWindowFrame
- 348 289 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B7939EE21F57803006E9731
+ 8BDC978727CEB13A00A07B67
1CA23ED40692098700951B8B
- 8B7939EF21F57803006E9731
+ 8BDC978827CEB13A00A07B67
8B0237581D42B1C400E1E8C8
- 8B7939F021F57803006E9731
+ 8BDC978927CEB13A00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -654,7 +654,7 @@
StatusbarIsVisible
TimeStamp
- 569735171.20292497
+ 667857210.41872895
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -671,10 +671,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/Ensemble/Ensemble.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Ensemble/Ensemble.xcodeproj
WindowString
- 348 289 810 487 0 0 1440 878
+ 260 163 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/EveryTrim/EveryTrim.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/EveryTrim/EveryTrim.xcodeproj/christopherjohnson.pbxuser
index b623a3828..f5ea1a629 100755
--- a/plugins/MacVST/EveryTrim/EveryTrim.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/EveryTrim/EveryTrim.xcodeproj/christopherjohnson.pbxuser
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569735228;
- PBXWorkspaceStateSaveDate = 569735228;
+ PBXPerProjectTemplateStateSaveDate = 667857243;
+ PBXWorkspaceStateSaveDate = 667857243;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
diff --git a/plugins/MacVST/EveryTrim/EveryTrim.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/EveryTrim/EveryTrim.xcodeproj/christopherjohnson.perspectivev3
index 09818e74e..b55d7f0d4 100755
--- a/plugins/MacVST/EveryTrim/EveryTrim.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/EveryTrim/EveryTrim.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 630 231 810 487 0 0 1440 878
+ 470 135 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 630 231 810 487 0 0 1440 878
+ 470 135 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 630 231 810 487 0 0 1440 878
+ 470 135 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B793A2521F57858006E9731
+ 8BDC97C227CEB15F00A07B67
1CA23ED40692098700951B8B
- 8B793A2621F57858006E9731
+ 8BDC97C327CEB15F00A07B67
8B0237581D42B1C400E1E8C8
- 8B793A2721F57858006E9731
+ 8BDC97C427CEB15F00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 569735256.70818996
+ 667857247.81548703
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +643,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/EveryTrim/EveryTrim.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/EveryTrim/EveryTrim.xcodeproj
WindowString
- 630 231 810 487 0 0 1440 878
+ 470 135 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Facet/Facet.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Facet/Facet.xcodeproj/christopherjohnson.pbxuser
index f8c1da0f0..cfa64dd57 100755
--- a/plugins/MacVST/Facet/Facet.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Facet/Facet.xcodeproj/christopherjohnson.pbxuser
@@ -49,11 +49,11 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 592220919;
- PBXWorkspaceStateSaveDate = 592220919;
+ PBXPerProjectTemplateStateSaveDate = 667857252;
+ PBXWorkspaceStateSaveDate = 667857252;
};
perUserProjectItems = {
- 8BE6E121234C949D00BA65CC /* XCBuildMessageTextBookmark */ = 8BE6E121234C949D00BA65CC /* XCBuildMessageTextBookmark */;
+ 8BDC97DF27CEB16C00A07B67 /* PBXTextBookmark */ = 8BDC97DF27CEB16C00A07B67 /* PBXTextBookmark */;
8BE6E122234C949D00BA65CC /* PBXTextBookmark */ = 8BE6E122234C949D00BA65CC /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
@@ -78,9 +78,9 @@
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {838, 19747}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1074, 27486}}";
sepNavSelRange = "{10616, 0}";
- sepNavVisRange = "{10459, 399}";
+ sepNavVisRange = "{10579, 157}";
sepNavWindowFrame = "{{15, 42}, {895, 831}}";
};
};
@@ -106,14 +106,15 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8BE6E121234C949D00BA65CC /* XCBuildMessageTextBookmark */ = {
+ 8BDC97DF27CEB16C00A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
- comments = "Deprecated conversion from string constant to 'char*'";
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
- fallbackIsa = XCBuildMessageTextBookmark;
- rLen = 1;
- rLoc = 306;
- rType = 1;
+ name = "audioeffectx.cpp: 307";
+ rLen = 0;
+ rLoc = 10616;
+ rType = 0;
+ vrLen = 114;
+ vrLoc = 10579;
};
8BE6E122234C949D00BA65CC /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
diff --git a/plugins/MacVST/Facet/Facet.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Facet/Facet.xcodeproj/christopherjohnson.perspectivev3
index 2beca04a9..9a80246ce 100755
--- a/plugins/MacVST/Facet/Facet.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Facet/Facet.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8BE6E122234C949D00BA65CC
+ 8BDC97DF27CEB16C00A07B67
history
- 8BE6E121234C949D00BA65CC
+ 8BE6E122234C949D00BA65CC
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 132}}
+ {{0, 0}, {603, 117}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 132pt
+ 117pt
Proportion
- 309pt
+ 324pt
Tabs
@@ -393,7 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 414}}
+ {{10, 27}, {603, 297}}
+ RubberWindowFrame
+ 25 199 810 487 0 0 1280 698
Module
XCDetailModule
@@ -448,8 +450,6 @@
Frame
{{10, 27}, {603, 282}}
- RubberWindowFrame
- 34 365 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -477,11 +477,11 @@
TableOfContents
- 8BE6E123234C949D00BA65CC
+ 8BDC97E027CEB16C00A07B67
1CA23ED40692098700951B8B
- 8BE6E124234C949D00BA65CC
+ 8BDC97E127CEB16C00A07B67
8B0237581D42B1C400E1E8C8
- 8BE6E125234C949D00BA65CC
+ 8BDC97E227CEB16C00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 592221341.96223795
+ 667857260.45385897
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,11 +651,10 @@
5
WindowOrderList
- 8BE6E126234C949D00BA65CC
- /Users/christopherjohnson/Desktop/Facet/Facet.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Facet/Facet.xcodeproj
WindowString
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/FathomFive/FathomFive.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/FathomFive/FathomFive.xcodeproj/christopherjohnson.pbxuser
index ce016247e..33315a4a9 100755
--- a/plugins/MacVST/FathomFive/FathomFive.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/FathomFive/FathomFive.xcodeproj/christopherjohnson.pbxuser
@@ -49,14 +49,14 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569735282;
- PBXWorkspaceStateSaveDate = 569735282;
+ PBXPerProjectTemplateStateSaveDate = 667857265;
+ PBXWorkspaceStateSaveDate = 667857265;
};
perUserProjectItems = {
8B21780D1D7BA3A500797BDD /* PBXTextBookmark */ = 8B21780D1D7BA3A500797BDD /* PBXTextBookmark */;
8B4E72C81D7B161E00EE9940 /* PBXTextBookmark */ = 8B4E72C81D7B161E00EE9940 /* PBXTextBookmark */;
- 8B793A4421F57884006E9731 /* PBXTextBookmark */ = 8B793A4421F57884006E9731 /* PBXTextBookmark */;
- 8B9D7A101F7FAAD9007AB60F /* PBXTextBookmark */ = 8B9D7A101F7FAAD9007AB60F /* PBXTextBookmark */;
+ 8BDC97FD27CEB17300A07B67 /* PBXTextBookmark */ = 8BDC97FD27CEB17300A07B67 /* PBXTextBookmark */;
+ 8BDC980127CEB19300A07B67 /* PBXTextBookmark */ = 8BDC980127CEB19300A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -72,10 +72,10 @@
};
245463B80991757100464AD3 /* FathomFive.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {554, 1079}}";
+ sepNavIntBoundsRect = "{{0, 0}, {554, 1476}}";
sepNavSelRange = "{491, 0}";
sepNavVisRange = "{0, 0}";
- sepNavWindowFrame = "{{513, 39}, {895, 831}}";
+ sepNavWindowFrame = "{{385, 4}, {895, 694}}";
};
};
24A2FFD90F90D1DD003BB5A7 /* audioeffect.cpp */ = {
@@ -144,7 +144,7 @@
vrLen = 0;
vrLoc = 0;
};
- 8B793A4421F57884006E9731 /* PBXTextBookmark */ = {
+ 8BDC97FD27CEB17300A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 245463B80991757100464AD3 /* FathomFive.h */;
name = "FathomFive.h: 26";
@@ -154,15 +154,15 @@
vrLen = 0;
vrLoc = 0;
};
- 8B9D7A101F7FAAD9007AB60F /* PBXTextBookmark */ = {
+ 8BDC980127CEB19300A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 245463B80991757100464AD3 /* FathomFive.h */;
name = "FathomFive.h: 26";
rLen = 0;
rLoc = 491;
rType = 0;
- vrLen = 55;
- vrLoc = 464;
+ vrLen = 0;
+ vrLoc = 0;
};
8D01CCC60486CAD60068D4B7 /* FathomFive */ = {
activeExec = 0;
diff --git a/plugins/MacVST/FathomFive/FathomFive.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/FathomFive/FathomFive.xcodeproj/christopherjohnson.perspectivev3
index eb66b06ab..9108ddb9b 100755
--- a/plugins/MacVST/FathomFive/FathomFive.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/FathomFive/FathomFive.xcodeproj/christopherjohnson.perspectivev3
@@ -300,7 +300,7 @@
PBXSmartGroupTreeModuleOutlineStateSelectionKey
- 6
+ 7
4
0
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 607 307 810 487 0 0 1440 878
+ 453 171 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,12 +351,12 @@
_historyCapacity
0
bookmark
- 8B793A4421F57884006E9731
+ 8BDC980127CEB19300A07B67
history
8B4E72C81D7B161E00EE9940
8B21780D1D7BA3A500797BDD
- 8B9D7A101F7FAAD9007AB60F
+ 8BDC97FD27CEB17300A07B67
SplitCount
@@ -370,18 +370,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 32}}
+ {{0, 0}, {603, 13}}
RubberWindowFrame
- 607 307 810 487 0 0 1440 878
+ 453 171 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 32pt
+ 13pt
Proportion
- 409pt
+ 428pt
Tabs
@@ -395,9 +395,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 382}}
- RubberWindowFrame
- 607 307 810 487 0 0 1440 878
+ {{10, 27}, {603, 401}}
Module
XCDetailModule
@@ -451,7 +449,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 414}}
+ {{10, 27}, {603, 401}}
+ RubberWindowFrame
+ 453 171 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -479,11 +479,11 @@
TableOfContents
- 8B793A4521F57884006E9731
+ 8BDC980227CEB19300A07B67
1CA23ED40692098700951B8B
- 8B793A4621F57884006E9731
+ 8BDC980327CEB19300A07B67
8B0237581D42B1C400E1E8C8
- 8B793A4721F57884006E9731
+ 8BDC980427CEB19300A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -636,7 +636,7 @@
StatusbarIsVisible
TimeStamp
- 569735300.74946201
+ 667857299.98195803
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -653,10 +653,11 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/FathomFive/FathomFive.xcodeproj
+ 8BDC980527CEB19300A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/FathomFive/FathomFive.xcodeproj
WindowString
- 607 307 810 487 0 0 1440 878
+ 453 171 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/FathomFive/source/FathomFive.h b/plugins/MacVST/FathomFive/source/FathomFive.h
index 51b9f4e35..8a67aae1b 100755
--- a/plugins/MacVST/FathomFive/source/FathomFive.h
+++ b/plugins/MacVST/FathomFive/source/FathomFive.h
@@ -74,6 +74,8 @@ private:
float C; //Frequency
float D; //Dry/Wet
//parameters. Always 0-1, and we scale/alter them elsewhere.
+ uint32_t fpdL;
+ uint32_t fpdR;
};
#endif
diff --git a/plugins/MacVST/Floor/Floor.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Floor/Floor.xcodeproj/christopherjohnson.pbxuser
index 80b3123f6..51d2eccd6 100755
--- a/plugins/MacVST/Floor/Floor.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Floor/Floor.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569735322;
- PBXWorkspaceStateSaveDate = 569735322;
+ PBXPerProjectTemplateStateSaveDate = 667857307;
+ PBXWorkspaceStateSaveDate = 667857307;
};
perUserProjectItems = {
- 8B15DD34217AAF67007AD769 /* PBXTextBookmark */ = 8B15DD34217AAF67007AD769 /* PBXTextBookmark */;
- 8B793A6E21F578D2006E9731 /* PBXTextBookmark */ = 8B793A6E21F578D2006E9731 /* PBXTextBookmark */;
+ 8BDC982327CEB1B400A07B67 /* PBXTextBookmark */ = 8BDC982327CEB1B400A07B67 /* PBXTextBookmark */;
+ 8BDC982427CEB1B400A07B67 /* XCBuildMessageTextBookmark */ = 8BDC982427CEB1B400A07B67 /* XCBuildMessageTextBookmark */;
+ 8BDC982527CEB1B400A07B67 /* PBXTextBookmark */ = 8BDC982527CEB1B400A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -70,9 +71,9 @@
};
245463B80991757100464AD3 /* Floor.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {600, 1365}}";
+ sepNavIntBoundsRect = "{{0, 0}, {768, 1764}}";
sepNavSelRange = "{0, 0}";
- sepNavVisRange = "{485, 155}";
+ sepNavVisRange = "{485, 113}";
sepNavWindowFrame = "{{20, 47}, {895, 831}}";
};
};
@@ -86,10 +87,10 @@
};
24D8286F09A914000093AEF8 /* FloorProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {848, 7644}}";
- sepNavSelRange = "{18863, 0}";
- sepNavVisRange = "{17679, 2215}";
- sepNavWindowFrame = "{{151, 47}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {660, 8388}}";
+ sepNavSelRange = "{894, 0}";
+ sepNavVisRange = "{877, 51}";
+ sepNavWindowFrame = "{{151, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -106,25 +107,34 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B15DD34217AAF67007AD769 /* PBXTextBookmark */ = {
+ 8BDC982327CEB1B400A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 245463B80991757100464AD3 /* Floor.h */;
name = "Floor.h: 1";
rLen = 0;
rLoc = 0;
rType = 0;
- vrLen = 163;
+ vrLen = 113;
vrLoc = 485;
};
- 8B793A6E21F578D2006E9731 /* PBXTextBookmark */ = {
+ 8BDC982427CEB1B400A07B67 /* XCBuildMessageTextBookmark */ = {
isa = PBXTextBookmark;
- fRef = 245463B80991757100464AD3 /* Floor.h */;
- name = "Floor.h: 1";
+ comments = "Unused variable 'dry'";
+ fRef = 24D8286F09A914000093AEF8 /* FloorProc.cpp */;
+ fallbackIsa = XCBuildMessageTextBookmark;
+ rLen = 1;
+ rLoc = 34;
+ rType = 1;
+ };
+ 8BDC982527CEB1B400A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* FloorProc.cpp */;
+ name = "FloorProc.cpp: 35";
rLen = 0;
- rLoc = 0;
+ rLoc = 894;
rType = 0;
- vrLen = 155;
- vrLoc = 485;
+ vrLen = 51;
+ vrLoc = 877;
};
8D01CCC60486CAD60068D4B7 /* Floor */ = {
activeExec = 0;
diff --git a/plugins/MacVST/Floor/Floor.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Floor/Floor.xcodeproj/christopherjohnson.perspectivev3
index 3af6cc1c8..7f1c13dcb 100755
--- a/plugins/MacVST/Floor/Floor.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Floor/Floor.xcodeproj/christopherjohnson.perspectivev3
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 334 313 810 487 0 0 1440 878
+ 249 174 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -339,7 +337,7 @@
PBXProjectModuleGUID
8B0237581D42B1C400E1E8C8
PBXProjectModuleLabel
- Floor.h
+ FloorProc.cpp
PBXSplitModuleInNavigatorKey
Split0
@@ -347,14 +345,15 @@
PBXProjectModuleGUID
8B0237591D42B1C400E1E8C8
PBXProjectModuleLabel
- Floor.h
+ FloorProc.cpp
_historyCapacity
0
bookmark
- 8B793A6E21F578D2006E9731
+ 8BDC982527CEB1B400A07B67
history
- 8B15DD34217AAF67007AD769
+ 8BDC982327CEB1B400A07B67
+ 8BDC982427CEB1B400A07B67
SplitCount
@@ -368,18 +367,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 102}}
+ {{0, 0}, {603, 86}}
RubberWindowFrame
- 334 313 810 487 0 0 1440 878
+ 249 174 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 102pt
+ 86pt
Proportion
- 339pt
+ 355pt
Tabs
@@ -393,9 +392,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 312}}
- RubberWindowFrame
- 334 313 810 487 0 0 1440 878
+ {{10, 27}, {603, 328}}
Module
XCDetailModule
@@ -449,7 +446,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 328}}
+ RubberWindowFrame
+ 249 174 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -477,11 +476,11 @@
TableOfContents
- 8B793A6F21F578D2006E9731
+ 8BDC982627CEB1B400A07B67
1CA23ED40692098700951B8B
- 8B793A7021F578D2006E9731
+ 8BDC982727CEB1B400A07B67
8B0237581D42B1C400E1E8C8
- 8B793A7121F578D2006E9731
+ 8BDC982827CEB1B400A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +633,7 @@
StatusbarIsVisible
TimeStamp
- 569735378.06358504
+ 667857332.05929303
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +650,11 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/Floor/Floor.xcodeproj
+ 8BDC982927CEB1B400A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Floor/Floor.xcodeproj
WindowString
- 334 313 810 487 0 0 1440 878
+ 249 174 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Floor/source/FloorProc.cpp b/plugins/MacVST/Floor/source/FloorProc.cpp
index 1c5ba156c..115f0bc79 100755
--- a/plugins/MacVST/Floor/source/FloorProc.cpp
+++ b/plugins/MacVST/Floor/source/FloorProc.cpp
@@ -32,7 +32,6 @@ void Floor::processReplacing(float **inputs, float **outputs, VstInt32 sampleFra
if (iirAmount <= 0.0) iirAmount = 0.0;
if (iirAmount > 1.0) iirAmount = 1.0;
double wet = C;
- double dry = 1.0-wet;
while (--sampleFrames >= 0)
{
@@ -257,7 +256,6 @@ void Floor::processDoubleReplacing(double **inputs, double **outputs, VstInt32 s
if (iirAmount <= 0.0) iirAmount = 0.0;
if (iirAmount > 1.0) iirAmount = 1.0;
double wet = C;
- double dry = 1.0-wet;
while (--sampleFrames >= 0)
{
diff --git a/plugins/MacVST/Focus/Focus.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Focus/Focus.xcodeproj/christopherjohnson.pbxuser
index d303dae5d..6a923481b 100755
--- a/plugins/MacVST/Focus/Focus.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Focus/Focus.xcodeproj/christopherjohnson.pbxuser
@@ -51,13 +51,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 649285890;
- PBXWorkspaceStateSaveDate = 649285890;
+ PBXPerProjectTemplateStateSaveDate = 667857337;
+ PBXWorkspaceStateSaveDate = 667857337;
};
perUserProjectItems = {
8B6BED70269CBC6B00F3C78E /* PBXTextBookmark */ = 8B6BED70269CBC6B00F3C78E /* PBXTextBookmark */;
+ 8BDC984427CEB1BF00A07B67 /* PBXTextBookmark */ = 8BDC984427CEB1BF00A07B67 /* PBXTextBookmark */;
8BE1360A26B3510C00A345C1 /* PBXTextBookmark */ = 8BE1360A26B3510C00A345C1 /* PBXTextBookmark */;
- 8BE1360B26B3510C00A345C1 /* PBXTextBookmark */ = 8BE1360B26B3510C00A345C1 /* PBXTextBookmark */;
8BE1360C26B3510C00A345C1 /* PBXTextBookmark */ = 8BE1360C26B3510C00A345C1 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
@@ -90,9 +90,9 @@
};
24D8286F09A914000093AEF8 /* FocusProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {867, 5184}}";
+ sepNavIntBoundsRect = "{{0, 0}, {705, 5166}}";
sepNavSelRange = "{1780, 0}";
- sepNavVisRange = "{0, 185}";
+ sepNavVisRange = "{44, 141}";
sepNavWindowFrame = "{{10, 48}, {895, 821}}";
};
};
@@ -120,6 +120,16 @@
vrLen = 0;
vrLoc = 0;
};
+ 8BDC984427CEB1BF00A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* FocusProc.cpp */;
+ name = "FocusProc.cpp: 51";
+ rLen = 0;
+ rLoc = 1780;
+ rType = 0;
+ vrLen = 141;
+ vrLoc = 44;
+ };
8BE1360A26B3510C00A345C1 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2407DEB6089929BA00EB68BF /* Focus.cpp */;
@@ -130,16 +140,6 @@
vrLen = 228;
vrLoc = 44;
};
- 8BE1360B26B3510C00A345C1 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* FocusProc.cpp */;
- name = "FocusProc.cpp: 49";
- rLen = 0;
- rLoc = 1780;
- rType = 0;
- vrLen = 185;
- vrLoc = 0;
- };
8BE1360C26B3510C00A345C1 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* FocusProc.cpp */;
diff --git a/plugins/MacVST/Focus/Focus.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Focus/Focus.xcodeproj/christopherjohnson.perspectivev3
index c498a7dab..6f5dd3db1 100755
--- a/plugins/MacVST/Focus/Focus.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Focus/Focus.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 625 354 810 487 0 0 1440 878
+ 466 194 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,12 +351,12 @@
_historyCapacity
0
bookmark
- 8BE1360C26B3510C00A345C1
+ 8BDC984427CEB1BF00A07B67
history
8B6BED70269CBC6B00F3C78E
8BE1360A26B3510C00A345C1
- 8BE1360B26B3510C00A345C1
+ 8BE1360C26B3510C00A345C1
SplitCount
@@ -370,18 +370,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 132}}
+ {{0, 0}, {603, 117}}
RubberWindowFrame
- 625 354 810 487 0 0 1440 878
+ 466 194 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 132pt
+ 117pt
Proportion
- 309pt
+ 324pt
Tabs
@@ -395,9 +395,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 297}}
RubberWindowFrame
- 625 354 810 487 0 0 1440 878
+ 466 194 810 487 0 0 1280 698
Module
XCDetailModule
@@ -479,11 +479,11 @@
TableOfContents
- 8BE1360D26B3510C00A345C1
+ 8BDC984527CEB1BF00A07B67
1CA23ED40692098700951B8B
- 8BE1360E26B3510C00A345C1
+ 8BDC984627CEB1BF00A07B67
8B0237581D42B1C400E1E8C8
- 8BE1360F26B3510C00A345C1
+ 8BDC984727CEB1BF00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -656,7 +656,7 @@
StatusbarIsVisible
TimeStamp
- 649285900.88932002
+ 667857343.41299701
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -673,11 +673,10 @@
5
WindowOrderList
- 8BE1361026B3510C00A345C1
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Focus/Focus.xcodeproj
WindowString
- 625 354 810 487 0 0 1440 878
+ 466 194 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Fracture/Fracture.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Fracture/Fracture.xcodeproj/christopherjohnson.pbxuser
index 46f29ffc1..16203164c 100755
--- a/plugins/MacVST/Fracture/Fracture.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Fracture/Fracture.xcodeproj/christopherjohnson.pbxuser
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569735404;
- PBXWorkspaceStateSaveDate = 569735404;
+ PBXPerProjectTemplateStateSaveDate = 667857348;
+ PBXWorkspaceStateSaveDate = 667857348;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
diff --git a/plugins/MacVST/Fracture/Fracture.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Fracture/Fracture.xcodeproj/christopherjohnson.perspectivev3
index da6f297c8..310106bca 100755
--- a/plugins/MacVST/Fracture/Fracture.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Fracture/Fracture.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 473 295 810 487 0 0 1440 878
+ 353 166 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 473 295 810 487 0 0 1440 878
+ 353 166 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 473 295 810 487 0 0 1440 878
+ 353 166 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B793A8421F578F8006E9731
+ 8BDC986227CEB1C800A07B67
1CA23ED40692098700951B8B
- 8B793A8521F578F8006E9731
+ 8BDC986327CEB1C800A07B67
8B0237581D42B1C400E1E8C8
- 8B793A8621F578F8006E9731
+ 8BDC986427CEB1C800A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 569735416.520316
+ 667857352.30077004
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +643,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/Fracture/Fracture.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Fracture/Fracture.xcodeproj
WindowString
- 473 295 810 487 0 0 1440 878
+ 353 166 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/FromTape/FromTape.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/FromTape/FromTape.xcodeproj/christopherjohnson.pbxuser
index dc3d1fa40..16e4e726a 100755
--- a/plugins/MacVST/FromTape/FromTape.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/FromTape/FromTape.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* FromTape */;
breakpoints = (
);
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
@@ -51,8 +51,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569735440;
- PBXWorkspaceStateSaveDate = 569735440;
+ PBXPerProjectTemplateStateSaveDate = 667857357;
+ PBXWorkspaceStateSaveDate = 667857357;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -84,10 +84,10 @@
};
24D8286F09A914000093AEF8 /* FromTapeProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {848, 7007}}";
- sepNavSelRange = "{15307, 1892}";
- sepNavVisRange = "{1068, 2290}";
- sepNavWindowFrame = "{{444, 47}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1182, 7650}}";
+ sepNavSelRange = "{13445, 0}";
+ sepNavVisRange = "{13109, 2018}";
+ sepNavWindowFrame = "{{385, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -104,7 +104,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
+ 8D01CCC60486CAD60068D4B7 /* FromTape */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/FromTape/FromTape.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/FromTape/FromTape.xcodeproj/christopherjohnson.perspectivev3
index 070d7b1ce..b43843380 100755
--- a/plugins/MacVST/FromTape/FromTape.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/FromTape/FromTape.xcodeproj/christopherjohnson.perspectivev3
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 593 371 810 487 0 0 1440 878
+ 442 202 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +360,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 593 371 810 487 0 0 1440 878
+ 442 202 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -386,8 +384,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 593 371 810 487 0 0 1440 878
Module
XCDetailModule
@@ -442,6 +438,8 @@
Frame
{{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 442 202 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -469,11 +467,11 @@
TableOfContents
- 8B793AA321F5791C006E9731
+ 8BDC988C27CEB20900A07B67
1CA23ED40692098700951B8B
- 8B793AA421F5791C006E9731
+ 8BDC988D27CEB20900A07B67
8B0237581D42B1C400E1E8C8
- 8B793AA521F5791C006E9731
+ 8BDC988E27CEB20900A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -646,7 +644,7 @@
StatusbarIsVisible
TimeStamp
- 569735452.09700799
+ 667857417.35467303
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -663,11 +661,11 @@
5
WindowOrderList
- 8B2B778A1F6D6FF800A2CD5B
- /Users/christopherjohnson/Desktop/MacVST/FromTape/FromTape.xcodeproj
+ 8BDC988F27CEB20900A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/FromTape/FromTape.xcodeproj
WindowString
- 593 371 810 487 0 0 1440 878
+ 442 202 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/FromTape/FromTape.xcodeproj/project.pbxproj b/plugins/MacVST/FromTape/FromTape.xcodeproj/project.pbxproj
index 8175f337c..1f0cea081 100755
--- a/plugins/MacVST/FromTape/FromTape.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/FromTape/FromTape.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
+ 8D01CCC60486CAD60068D4B7 /* FromTape */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "FromTape" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
+ 8D01CCC60486CAD60068D4B7 /* FromTape */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/FromTape/source/FromTapeProc.cpp b/plugins/MacVST/FromTape/source/FromTapeProc.cpp
index 46bc5759b..eb3154f70 100755
--- a/plugins/MacVST/FromTape/source/FromTapeProc.cpp
+++ b/plugins/MacVST/FromTape/source/FromTapeProc.cpp
@@ -55,7 +55,7 @@ void FromTape::processReplacing(float **inputs, float **outputs, VstInt32 sample
inputSampleR *= inputgain;
}
- randy = (double(fpd)/UINT32_MAX) * SoftenControl; //for soften
+ randy = (double(fpdL)/UINT32_MAX) * SoftenControl; //for soften
invrandy = (1.0-randy);
randy /= 2.0;
//we've set up so that we dial in the amount of the alt sections (in pairs) with invrandy being the source section
@@ -252,7 +252,7 @@ void FromTape::processDoubleReplacing(double **inputs, double **outputs, VstInt3
inputSampleR *= inputgain;
}
- randy = (double(fpd)/UINT32_MAX) * SoftenControl; //for soften
+ randy = (double(fpdL)/UINT32_MAX) * SoftenControl; //for soften
invrandy = (1.0-randy);
randy /= 2.0;
//we've set up so that we dial in the amount of the alt sections (in pairs) with invrandy being the source section
diff --git a/plugins/MacVST/Galactic/Galactic.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Galactic/Galactic.xcodeproj/christopherjohnson.pbxuser
index f2241392b..1b33bebb1 100644
--- a/plugins/MacVST/Galactic/Galactic.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Galactic/Galactic.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* Galactic */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 656391401;
- PBXWorkspaceStateSaveDate = 656391401;
+ PBXPerProjectTemplateStateSaveDate = 667857425;
+ PBXWorkspaceStateSaveDate = 667857425;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* Galactic */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/Galactic/Galactic.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Galactic/Galactic.xcodeproj/christopherjohnson.perspectivev3
index 74bbc1a03..cd3eb6f58 100644
--- a/plugins/MacVST/Galactic/Galactic.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Galactic/Galactic.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 255 318 810 487 0 0 1440 878
+ 190 177 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 255 318 810 487 0 0 1440 878
+ 190 177 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 255 318 810 487 0 0 1440 878
+ 190 177 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B5F8E3A271FBD8100A9D8DA
+ 8BDC98A027CEB21800A07B67
1CA23ED40692098700951B8B
- 8B5F8E3B271FBD8100A9D8DA
+ 8BDC98A127CEB21800A07B67
8B0237581D42B1C400E1E8C8
- 8B5F8E3C271FBD8100A9D8DA
+ 8BDC98A227CEB21800A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 656391553.66459405
+ 667857432.55854106
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,11 +643,10 @@
5
WindowOrderList
- 8B5F8E3D271FBD8100A9D8DA
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Galactic/Galactic.xcodeproj
WindowString
- 255 318 810 487 0 0 1440 878
+ 190 177 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Galactic/Galactic.xcodeproj/project.pbxproj b/plugins/MacVST/Galactic/Galactic.xcodeproj/project.pbxproj
index 1ee5a1f6e..a2abef343 100755
--- a/plugins/MacVST/Galactic/Galactic.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/Galactic/Galactic.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* Galactic */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "Galactic" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* Galactic */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/Gatelope/Gatelope.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Gatelope/Gatelope.xcodeproj/christopherjohnson.pbxuser
index bc12e1c8c..cd8da49dc 100755
--- a/plugins/MacVST/Gatelope/Gatelope.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Gatelope/Gatelope.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569735474;
- PBXWorkspaceStateSaveDate = 569735474;
+ PBXPerProjectTemplateStateSaveDate = 667857436;
+ PBXWorkspaceStateSaveDate = 667857436;
};
perUserProjectItems = {
- 8B416DA521B60DFE00DD5013 /* PBXTextBookmark */ = 8B416DA521B60DFE00DD5013 /* PBXTextBookmark */;
8B793AC221F57942006E9731 /* PBXTextBookmark */ = 8B793AC221F57942006E9731 /* PBXTextBookmark */;
+ 8BDC98BD27CEB22000A07B67 /* PBXTextBookmark */ = 8BDC98BD27CEB22000A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -78,7 +78,7 @@
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {747, 19864}}";
+ sepNavIntBoundsRect = "{{0, 0}, {957, 27504}}";
sepNavSelRange = "{10616, 0}";
sepNavVisRange = "{0, 0}";
sepNavWindowFrame = "{{15, 42}, {895, 831}}";
@@ -106,17 +106,17 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B416DA521B60DFE00DD5013 /* PBXTextBookmark */ = {
+ 8B793AC221F57942006E9731 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
name = "audioeffectx.cpp: 307";
rLen = 0;
rLoc = 10616;
rType = 0;
- vrLen = 123;
- vrLoc = 10613;
+ vrLen = 0;
+ vrLoc = 0;
};
- 8B793AC221F57942006E9731 /* PBXTextBookmark */ = {
+ 8BDC98BD27CEB22000A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
name = "audioeffectx.cpp: 307";
diff --git a/plugins/MacVST/Gatelope/Gatelope.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Gatelope/Gatelope.xcodeproj/christopherjohnson.perspectivev3
index f64344349..f67fdf2c1 100755
--- a/plugins/MacVST/Gatelope/Gatelope.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Gatelope/Gatelope.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 460 296 810 487 0 0 1440 878
+ 343 166 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B793AC221F57942006E9731
+ 8BDC98BD27CEB22000A07B67
history
- 8B416DA521B60DFE00DD5013
+ 8B793AC221F57942006E9731
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 32}}
+ {{0, 0}, {603, 13}}
RubberWindowFrame
- 460 296 810 487 0 0 1440 878
+ 343 166 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 32pt
+ 13pt
Proportion
- 409pt
+ 428pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 382}}
+ {{10, 27}, {603, 401}}
RubberWindowFrame
- 460 296 810 487 0 0 1440 878
+ 343 166 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B793AC321F57942006E9731
+ 8BDC98BE27CEB22000A07B67
1CA23ED40692098700951B8B
- 8B793AC421F57942006E9731
+ 8BDC98BF27CEB22000A07B67
8B0237581D42B1C400E1E8C8
- 8B793AC521F57942006E9731
+ 8BDC98C027CEB22000A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 569735490.74607503
+ 667857440.47943103
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +651,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/Gatelope/Gatelope.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Gatelope/Gatelope.xcodeproj
WindowString
- 460 296 810 487 0 0 1440 878
+ 343 166 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/GlitchShifter/GlitchShifter.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/GlitchShifter/GlitchShifter.xcodeproj/christopherjohnson.pbxuser
index d40f538a4..207b52772 100755
--- a/plugins/MacVST/GlitchShifter/GlitchShifter.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/GlitchShifter/GlitchShifter.xcodeproj/christopherjohnson.pbxuser
@@ -49,11 +49,11 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 622813903;
- PBXWorkspaceStateSaveDate = 622813903;
+ PBXPerProjectTemplateStateSaveDate = 667857444;
+ PBXWorkspaceStateSaveDate = 667857444;
};
perUserProjectItems = {
- 8BF7794F2521295E0071ED6E /* XCBuildMessageTextBookmark */ = 8BF7794F2521295E0071ED6E /* XCBuildMessageTextBookmark */;
+ 8BDC98DB27CEB22900A07B67 /* PBXTextBookmark */ = 8BDC98DB27CEB22900A07B67 /* PBXTextBookmark */;
8BF7797C252131110071ED6E /* PBXTextBookmark */ = 8BF7797C252131110071ED6E /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
@@ -86,9 +86,9 @@
};
24D8286F09A914000093AEF8 /* GlitchShifterProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {803, 9100}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1029, 11790}}";
sepNavSelRange = "{2125, 0}";
- sepNavVisRange = "{1967, 331}";
+ sepNavVisRange = "{2057, 134}";
sepNavWindowFrame = "{{334, 57}, {895, 821}}";
};
};
@@ -106,14 +106,15 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8BF7794F2521295E0071ED6E /* XCBuildMessageTextBookmark */ = {
+ 8BDC98DB27CEB22900A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
- comments = "'gcount' was not declared in this scope";
fRef = 24D8286F09A914000093AEF8 /* GlitchShifterProc.cpp */;
- fallbackIsa = XCBuildMessageTextBookmark;
- rLen = 1;
- rLoc = 57;
- rType = 1;
+ name = "GlitchShifterProc.cpp: 59";
+ rLen = 0;
+ rLoc = 2125;
+ rType = 0;
+ vrLen = 134;
+ vrLoc = 2057;
};
8BF7797C252131110071ED6E /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
diff --git a/plugins/MacVST/GlitchShifter/GlitchShifter.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/GlitchShifter/GlitchShifter.xcodeproj/christopherjohnson.perspectivev3
index 353052120..2b6607edc 100755
--- a/plugins/MacVST/GlitchShifter/GlitchShifter.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/GlitchShifter/GlitchShifter.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8BF7797C252131110071ED6E
+ 8BDC98DB27CEB22900A07B67
history
- 8BF7794F2521295E0071ED6E
+ 8BF7797C252131110071ED6E
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 132}}
+ {{0, 0}, {603, 117}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 132pt
+ 117pt
Proportion
- 309pt
+ 324pt
Tabs
@@ -393,7 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 414}}
+ {{10, 27}, {603, 297}}
+ RubberWindowFrame
+ 25 199 810 487 0 0 1280 698
Module
XCDetailModule
@@ -448,8 +450,6 @@
Frame
{{10, 27}, {603, 282}}
- RubberWindowFrame
- 34 365 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -477,11 +477,11 @@
TableOfContents
- 8BF779512521295E0071ED6E
+ 8BDC98DC27CEB22900A07B67
1CA23ED40692098700951B8B
- 8BF779522521295E0071ED6E
+ 8BDC98DD27CEB22900A07B67
8B0237581D42B1C400E1E8C8
- 8BF779532521295E0071ED6E
+ 8BDC98DE27CEB22900A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 622932241.10781896
+ 667857449.16592205
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,11 +651,10 @@
5
WindowOrderList
- 8BF7797D252131110071ED6E
- /Users/christopherjohnson/Desktop/GlitchShifter/GlitchShifter.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/GlitchShifter/GlitchShifter.xcodeproj
WindowString
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Golem/Golem.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Golem/Golem.xcodeproj/christopherjohnson.pbxuser
index 92a98644d..4e80c5d64 100755
--- a/plugins/MacVST/Golem/Golem.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Golem/Golem.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569735514;
- PBXWorkspaceStateSaveDate = 569735514;
+ PBXPerProjectTemplateStateSaveDate = 667857454;
+ PBXWorkspaceStateSaveDate = 667857454;
};
perUserProjectItems = {
- 8B793AE021F57961006E9731 /* PBXTextBookmark */ = 8B793AE021F57961006E9731 /* PBXTextBookmark */;
8B793AF221F579C4006E9731 /* PBXTextBookmark */ = 8B793AF221F579C4006E9731 /* PBXTextBookmark */;
+ 8BDC98F927CEB23400A07B67 /* PBXTextBookmark */ = 8BDC98F927CEB23400A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -70,9 +70,9 @@
};
245463B80991757100464AD3 /* Golem.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {817, 923}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1002, 1422}}";
sepNavSelRange = "{2444, 0}";
- sepNavVisRange = "{2413, 96}";
+ sepNavVisRange = "{2405, 74}";
sepNavWindowFrame = "{{20, 47}, {895, 831}}";
};
};
@@ -106,16 +106,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B793AE021F57961006E9731 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 245463B80991757100464AD3 /* Golem.h */;
- name = "Golem.h: 61";
- rLen = 0;
- rLoc = 2444;
- rType = 0;
- vrLen = 133;
- vrLoc = 2414;
- };
8B793AF221F579C4006E9731 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 245463B80991757100464AD3 /* Golem.h */;
@@ -126,6 +116,16 @@
vrLen = 96;
vrLoc = 2413;
};
+ 8BDC98F927CEB23400A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 245463B80991757100464AD3 /* Golem.h */;
+ name = "Golem.h: 60";
+ rLen = 0;
+ rLoc = 2444;
+ rType = 0;
+ vrLen = 74;
+ vrLoc = 2405;
+ };
8D01CCC60486CAD60068D4B7 /* Golem */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/Golem/Golem.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Golem/Golem.xcodeproj/christopherjohnson.perspectivev3
index 0726bc58b..9b9e1d862 100755
--- a/plugins/MacVST/Golem/Golem.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Golem/Golem.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 504 266 810 487 0 0 1440 878
+ 376 152 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B793AF221F579C4006E9731
+ 8BDC98F927CEB23400A07B67
history
- 8B793AE021F57961006E9731
+ 8B793AF221F579C4006E9731
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 117}}
+ {{0, 0}, {603, 102}}
RubberWindowFrame
- 504 266 810 487 0 0 1440 878
+ 376 152 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 117pt
+ 102pt
Proportion
- 324pt
+ 339pt
Tabs
@@ -393,7 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
+ {{10, 27}, {603, 312}}
+ RubberWindowFrame
+ 376 152 810 487 0 0 1280 698
Module
XCDetailModule
@@ -448,8 +450,6 @@
Frame
{{10, 27}, {603, 297}}
- RubberWindowFrame
- 504 266 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B793AF321F579C4006E9731
+ 8BDC98FA27CEB23400A07B67
1CA23ED40692098700951B8B
- 8B793AF421F579C4006E9731
+ 8BDC98FB27CEB23400A07B67
8B0237581D42B1C400E1E8C8
- 8B793AF521F579C4006E9731
+ 8BDC98FC27CEB23400A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 569735620.885432
+ 667857460.38436103
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +651,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/Golem/Golem.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Golem/Golem.xcodeproj
WindowString
- 504 266 810 487 0 0 1440 878
+ 376 152 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Gringer/Gringer.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Gringer/Gringer.xcodeproj/christopherjohnson.pbxuser
index 9c939be78..22175ca65 100755
--- a/plugins/MacVST/Gringer/Gringer.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Gringer/Gringer.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* Gringer */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 595856850;
- PBXWorkspaceStateSaveDate = 595856850;
+ PBXPerProjectTemplateStateSaveDate = 667857464;
+ PBXWorkspaceStateSaveDate = 667857464;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* Gringer */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/Gringer/Gringer.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Gringer/Gringer.xcodeproj/christopherjohnson.perspectivev3
index bf7b311e3..d72865c9c 100755
--- a/plugins/MacVST/Gringer/Gringer.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Gringer/Gringer.xcodeproj/christopherjohnson.perspectivev3
@@ -256,6 +256,8 @@
Layout
+ BecomeActive
+
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -321,7 +323,7 @@
185
RubberWindowFrame
- 19 365 810 487 0 0 1440 878
+ 14 199 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -360,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 19 365 810 487 0 0 1440 878
+ 14 199 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -384,6 +386,8 @@
Frame
{{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 14 199 810 487 0 0 1280 698
Module
XCDetailModule
@@ -438,8 +442,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 19 365 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -467,11 +469,11 @@
TableOfContents
- 8B0FEE8C2384113F00200DE0
+ 8BDC991727CEB23D00A07B67
1CA23ED40692098700951B8B
- 8B0FEE8D2384113F00200DE0
+ 8BDC991827CEB23D00A07B67
8B0237581D42B1C400E1E8C8
- 8B0FEE8E2384113F00200DE0
+ 8BDC991927CEB23D00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -624,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 595857728.05276
+ 667857469.60412204
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -641,11 +643,10 @@
5
WindowOrderList
- 8B0FEE8F2384113F00200DE0
- /Users/christopherjohnson/Desktop/Gringer/Gringer.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Gringer/Gringer.xcodeproj
WindowString
- 19 365 810 487 0 0 1440 878
+ 14 199 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Gringer/Gringer.xcodeproj/project.pbxproj b/plugins/MacVST/Gringer/Gringer.xcodeproj/project.pbxproj
index c672b15a2..046b69ce0 100755
--- a/plugins/MacVST/Gringer/Gringer.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/Gringer/Gringer.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* Gringer */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "Gringer" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* Gringer */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/GrooveWear/GrooveWear.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/GrooveWear/GrooveWear.xcodeproj/christopherjohnson.pbxuser
index d93196d49..4867afd3f 100755
--- a/plugins/MacVST/GrooveWear/GrooveWear.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/GrooveWear/GrooveWear.xcodeproj/christopherjohnson.pbxuser
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569735642;
- PBXWorkspaceStateSaveDate = 569735642;
+ PBXPerProjectTemplateStateSaveDate = 667857474;
+ PBXWorkspaceStateSaveDate = 667857474;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
diff --git a/plugins/MacVST/GrooveWear/GrooveWear.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/GrooveWear/GrooveWear.xcodeproj/christopherjohnson.perspectivev3
index c016b372c..e54f5e9fd 100755
--- a/plugins/MacVST/GrooveWear/GrooveWear.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/GrooveWear/GrooveWear.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 630 296 810 487 0 0 1440 878
+ 470 166 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 630 296 810 487 0 0 1440 878
+ 470 166 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 630 296 810 487 0 0 1440 878
+ 470 166 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B793B0821F579E6006E9731
+ 8BDC993427CEB24600A07B67
1CA23ED40692098700951B8B
- 8B793B0921F579E6006E9731
+ 8BDC993527CEB24600A07B67
8B0237581D42B1C400E1E8C8
- 8B793B0A21F579E6006E9731
+ 8BDC993627CEB24600A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 569735654.76659203
+ 667857478.50715697
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +643,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/GrooveWear/GrooveWear.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/GrooveWear/GrooveWear.xcodeproj
WindowString
- 630 296 810 487 0 0 1440 878
+ 470 166 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/GuitarConditioner/GuitarConditioner.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/GuitarConditioner/GuitarConditioner.xcodeproj/christopherjohnson.pbxuser
index 878b3b6e2..125407361 100755
--- a/plugins/MacVST/GuitarConditioner/GuitarConditioner.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/GuitarConditioner/GuitarConditioner.xcodeproj/christopherjohnson.pbxuser
@@ -49,14 +49,14 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569735678;
- PBXWorkspaceStateSaveDate = 569735678;
+ PBXPerProjectTemplateStateSaveDate = 667857483;
+ PBXWorkspaceStateSaveDate = 667857483;
};
perUserProjectItems = {
8B55B2CB1D5E372E00B8D4D6 /* PBXTextBookmark */ = 8B55B2CB1D5E372E00B8D4D6 /* PBXTextBookmark */;
- 8B793B2521F57A02006E9731 /* PBXTextBookmark */ = 8B793B2521F57A02006E9731 /* PBXTextBookmark */;
8B793B3421F57A3B006E9731 /* PBXTextBookmark */ = 8B793B3421F57A3B006E9731 /* PBXTextBookmark */;
8BA186921D49975600F8B3DC /* PBXTextBookmark */ = 8BA186921D49975600F8B3DC /* PBXTextBookmark */;
+ 8BDC995127CEB25200A07B67 /* PBXTextBookmark */ = 8BDC995127CEB25200A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -72,7 +72,7 @@
};
245463B80991757100464AD3 /* GuitarConditioner.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {554, 975}}";
+ sepNavIntBoundsRect = "{{0, 0}, {554, 1332}}";
sepNavSelRange = "{0, 0}";
sepNavVisRange = "{0, 0}";
sepNavWindowFrame = "{{20, 47}, {895, 831}}";
@@ -118,16 +118,6 @@
vrLen = 156;
vrLoc = 3340;
};
- 8B793B2521F57A02006E9731 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 245463B80991757100464AD3 /* GuitarConditioner.h */;
- name = "GuitarConditioner.h: 1";
- rLen = 0;
- rLoc = 0;
- rType = 0;
- vrLen = 0;
- vrLoc = 0;
- };
8B793B3421F57A3B006E9731 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 245463B80991757100464AD3 /* GuitarConditioner.h */;
@@ -148,6 +138,16 @@
vrLen = 208;
vrLoc = 44;
};
+ 8BDC995127CEB25200A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 245463B80991757100464AD3 /* GuitarConditioner.h */;
+ name = "GuitarConditioner.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 0;
+ vrLoc = 0;
+ };
8D01CCC60486CAD60068D4B7 /* GuitarConditioner */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/GuitarConditioner/GuitarConditioner.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/GuitarConditioner/GuitarConditioner.xcodeproj/christopherjohnson.perspectivev3
index dc3886b55..5db50d994 100755
--- a/plugins/MacVST/GuitarConditioner/GuitarConditioner.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/GuitarConditioner/GuitarConditioner.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 306 299 810 487 0 0 1440 878
+ 228 168 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,12 +351,12 @@
_historyCapacity
0
bookmark
- 8B793B3421F57A3B006E9731
+ 8BDC995127CEB25200A07B67
history
8BA186921D49975600F8B3DC
8B55B2CB1D5E372E00B8D4D6
- 8B793B2521F57A02006E9731
+ 8B793B3421F57A3B006E9731
SplitCount
@@ -370,18 +370,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 13}}
+ {{0, 0}, {603, 0}}
RubberWindowFrame
- 306 299 810 487 0 0 1440 878
+ 228 168 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 13pt
+ 0pt
Proportion
- 428pt
+ 441pt
Tabs
@@ -395,7 +395,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 401}}
+ {{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 228 168 810 487 0 0 1280 698
Module
XCDetailModule
@@ -450,8 +452,6 @@
Frame
{{10, 27}, {603, 401}}
- RubberWindowFrame
- 306 299 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -479,11 +479,11 @@
TableOfContents
- 8B793B3521F57A3B006E9731
+ 8BDC995227CEB25200A07B67
1CA23ED40692098700951B8B
- 8B793B3621F57A3B006E9731
+ 8BDC995327CEB25200A07B67
8B0237581D42B1C400E1E8C8
- 8B793B3721F57A3B006E9731
+ 8BDC995427CEB25200A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -636,7 +636,7 @@
StatusbarIsVisible
TimeStamp
- 569735739.28810406
+ 667857490.14407206
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -653,11 +653,10 @@
5
WindowOrderList
- 8B793B3821F57A3B006E9731
- /Users/christopherjohnson/Desktop/MacVST/GuitarConditioner/GuitarConditioner.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/GuitarConditioner/GuitarConditioner.xcodeproj
WindowString
- 306 299 810 487 0 0 1440 878
+ 228 168 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/HardVacuum/HardVacuum.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/HardVacuum/HardVacuum.xcodeproj/christopherjohnson.pbxuser
index 2dae48f1c..4698f2376 100755
--- a/plugins/MacVST/HardVacuum/HardVacuum.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/HardVacuum/HardVacuum.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569767859;
- PBXWorkspaceStateSaveDate = 569767859;
+ PBXPerProjectTemplateStateSaveDate = 667858029;
+ PBXWorkspaceStateSaveDate = 667858029;
};
perUserProjectItems = {
- 8B181A1B204B984700516BEE /* PBXTextBookmark */ = 8B181A1B204B984700516BEE /* PBXTextBookmark */;
- 8B793B5521F5F802006E9731 /* PBXTextBookmark */ = 8B793B5521F5F802006E9731 /* PBXTextBookmark */;
+ 8BDC997227CEB48700A07B67 /* PBXTextBookmark */ = 8BDC997227CEB48700A07B67 /* PBXTextBookmark */;
+ 8BDC997327CEB48700A07B67 /* XCBuildMessageTextBookmark */ = 8BDC997327CEB48700A07B67 /* XCBuildMessageTextBookmark */;
+ 8BDC997427CEB48700A07B67 /* PBXTextBookmark */ = 8BDC997427CEB48700A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -78,18 +79,18 @@
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {838, 19877}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1074, 27486}}";
sepNavSelRange = "{10616, 0}";
- sepNavVisRange = "{10459, 280}";
+ sepNavVisRange = "{10579, 157}";
sepNavWindowFrame = "{{15, 42}, {895, 831}}";
};
};
24D8286F09A914000093AEF8 /* HardVacuumProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {848, 5122}}";
- sepNavSelRange = "{12811, 0}";
- sepNavVisRange = "{11302, 1820}";
- sepNavWindowFrame = "{{35, 42}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {554, 5544}}";
+ sepNavSelRange = "{708, 0}";
+ sepNavVisRange = "{674, 85}";
+ sepNavWindowFrame = "{{35, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -106,25 +107,34 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B181A1B204B984700516BEE /* PBXTextBookmark */ = {
+ 8BDC997227CEB48700A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
name = "audioeffectx.cpp: 307";
rLen = 0;
rLoc = 10616;
rType = 0;
- vrLen = 399;
- vrLoc = 10459;
+ vrLen = 114;
+ vrLoc = 10579;
};
- 8B793B5521F5F802006E9731 /* PBXTextBookmark */ = {
+ 8BDC997327CEB48700A07B67 /* XCBuildMessageTextBookmark */ = {
isa = PBXTextBookmark;
- fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
- name = "audioeffectx.cpp: 307";
+ comments = "Unused variable 'dry'";
+ fRef = 24D8286F09A914000093AEF8 /* HardVacuumProc.cpp */;
+ fallbackIsa = XCBuildMessageTextBookmark;
+ rLen = 1;
+ rLoc = 26;
+ rType = 1;
+ };
+ 8BDC997427CEB48700A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* HardVacuumProc.cpp */;
+ name = "HardVacuumProc.cpp: 27";
rLen = 0;
- rLoc = 10616;
+ rLoc = 708;
rType = 0;
- vrLen = 280;
- vrLoc = 10459;
+ vrLen = 85;
+ vrLoc = 674;
};
8D01CCC60486CAD60068D4B7 /* HardVacuum */ = {
activeExec = 0;
diff --git a/plugins/MacVST/HardVacuum/HardVacuum.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/HardVacuum/HardVacuum.xcodeproj/christopherjohnson.perspectivev3
index b731835ff..7613aef2b 100755
--- a/plugins/MacVST/HardVacuum/HardVacuum.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/HardVacuum/HardVacuum.xcodeproj/christopherjohnson.perspectivev3
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 23 367 810 487 0 0 1440 878
+ 17 200 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -339,7 +337,7 @@
PBXProjectModuleGUID
8B0237581D42B1C400E1E8C8
PBXProjectModuleLabel
- audioeffectx.cpp
+ HardVacuumProc.cpp
PBXSplitModuleInNavigatorKey
Split0
@@ -347,14 +345,15 @@
PBXProjectModuleGUID
8B0237591D42B1C400E1E8C8
PBXProjectModuleLabel
- audioeffectx.cpp
+ HardVacuumProc.cpp
_historyCapacity
0
bookmark
- 8B793B5521F5F802006E9731
+ 8BDC997427CEB48700A07B67
history
- 8B181A1B204B984700516BEE
+ 8BDC997227CEB48700A07B67
+ 8BDC997327CEB48700A07B67
SplitCount
@@ -368,18 +367,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 117}}
+ {{0, 0}, {603, 102}}
RubberWindowFrame
- 23 367 810 487 0 0 1440 878
+ 17 200 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 117pt
+ 102pt
Proportion
- 324pt
+ 339pt
Tabs
@@ -393,9 +392,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
- RubberWindowFrame
- 23 367 810 487 0 0 1440 878
+ {{10, 27}, {603, 312}}
Module
XCDetailModule
@@ -449,7 +446,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 312}}
+ RubberWindowFrame
+ 17 200 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -477,11 +476,11 @@
TableOfContents
- 8B793B5621F5F802006E9731
+ 8BDC997527CEB48700A07B67
1CA23ED40692098700951B8B
- 8B793B5721F5F802006E9731
+ 8BDC997627CEB48700A07B67
8B0237581D42B1C400E1E8C8
- 8B793B5821F5F802006E9731
+ 8BDC997727CEB48700A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +633,7 @@
StatusbarIsVisible
TimeStamp
- 569767938.33907902
+ 667858055.44316101
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +650,11 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/HardVacuum/HardVacuum.xcodeproj
+ 8BDC997827CEB48700A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/HardVacuum/HardVacuum.xcodeproj
WindowString
- 23 367 810 487 0 0 1440 878
+ 17 200 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/HardVacuum/source/HardVacuumProc.cpp b/plugins/MacVST/HardVacuum/source/HardVacuumProc.cpp
index a39e01b19..9979a8126 100755
--- a/plugins/MacVST/HardVacuum/source/HardVacuumProc.cpp
+++ b/plugins/MacVST/HardVacuum/source/HardVacuumProc.cpp
@@ -24,7 +24,6 @@ void HardVacuum::processReplacing(float **inputs, float **outputs, VstInt32 samp
double aura = C*3.1415926;
double out = D;
double wet = E;
- double dry = 1.0-wet;
double drive;
double positive;
double negative;
@@ -173,7 +172,6 @@ void HardVacuum::processDoubleReplacing(double **inputs, double **outputs, VstIn
double aura = C*3.1415926;
double out = D;
double wet = E;
- double dry = 1.0-wet;
double drive;
double positive;
double negative;
diff --git a/plugins/MacVST/HermeTrim/HermeTrim.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/HermeTrim/HermeTrim.xcodeproj/christopherjohnson.pbxuser
index 1d213fa9d..0f5b514ae 100755
--- a/plugins/MacVST/HermeTrim/HermeTrim.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/HermeTrim/HermeTrim.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569768168;
- PBXWorkspaceStateSaveDate = 569768168;
+ PBXPerProjectTemplateStateSaveDate = 667858277;
+ PBXWorkspaceStateSaveDate = 667858277;
};
perUserProjectItems = {
8B793B8E21F5F8F6006E9731 /* PBXTextBookmark */ = 8B793B8E21F5F8F6006E9731 /* PBXTextBookmark */;
- 8BB5DD521FBCE26D008B4570 /* PBXTextBookmark */ = 8BB5DD521FBCE26D008B4570 /* PBXTextBookmark */;
+ 8BDC99CF27CEB56900A07B67 /* PBXTextBookmark */ = 8BDC99CF27CEB56900A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -78,9 +78,9 @@
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {838, 19877}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1074, 27486}}";
sepNavSelRange = "{10616, 0}";
- sepNavVisRange = "{10459, 280}";
+ sepNavVisRange = "{10579, 157}";
sepNavWindowFrame = "{{15, 42}, {895, 831}}";
};
};
@@ -116,15 +116,15 @@
vrLen = 280;
vrLoc = 10459;
};
- 8BB5DD521FBCE26D008B4570 /* PBXTextBookmark */ = {
+ 8BDC99CF27CEB56900A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
name = "audioeffectx.cpp: 307";
rLen = 0;
rLoc = 10616;
rType = 0;
- vrLen = 399;
- vrLoc = 10459;
+ vrLen = 114;
+ vrLoc = 10579;
};
8D01CCC60486CAD60068D4B7 /* HermeTrim */ = {
activeExec = 0;
diff --git a/plugins/MacVST/HermeTrim/HermeTrim.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/HermeTrim/HermeTrim.xcodeproj/christopherjohnson.perspectivev3
index c7b44c40c..58af1cb8d 100755
--- a/plugins/MacVST/HermeTrim/HermeTrim.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/HermeTrim/HermeTrim.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 37 371 810 487 0 0 1440 878
+ 28 202 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B793B8E21F5F8F6006E9731
+ 8BDC99CF27CEB56900A07B67
history
- 8BB5DD521FBCE26D008B4570
+ 8B793B8E21F5F8F6006E9731
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 117}}
+ {{0, 0}, {603, 102}}
RubberWindowFrame
- 37 371 810 487 0 0 1440 878
+ 28 202 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 117pt
+ 102pt
Proportion
- 324pt
+ 339pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
+ {{10, 27}, {603, 312}}
RubberWindowFrame
- 37 371 810 487 0 0 1440 878
+ 28 202 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B793B8F21F5F8F6006E9731
+ 8BDC99D027CEB56900A07B67
1CA23ED40692098700951B8B
- 8B793B9021F5F8F6006E9731
+ 8BDC99D127CEB56900A07B67
8B0237581D42B1C400E1E8C8
- 8B793B9121F5F8F6006E9731
+ 8BDC99D227CEB56900A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 569768182.06468904
+ 667858281.31496203
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +651,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/HermeTrim/HermeTrim.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/HermeTrim/HermeTrim.xcodeproj
WindowString
- 37 371 810 487 0 0 1440 878
+ 28 202 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Hermepass/Hermepass.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Hermepass/Hermepass.xcodeproj/christopherjohnson.pbxuser
index 7c8d8e8c8..2feea29cc 100755
--- a/plugins/MacVST/Hermepass/Hermepass.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Hermepass/Hermepass.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569767979;
- PBXWorkspaceStateSaveDate = 569767979;
+ PBXPerProjectTemplateStateSaveDate = 667858267;
+ PBXWorkspaceStateSaveDate = 667858267;
};
perUserProjectItems = {
- 8B793B7321F5F897006E9731 /* PBXTextBookmark */ = 8B793B7321F5F897006E9731 /* PBXTextBookmark */;
- 8B793B7821F5F8CF006E9731 /* PBXTextBookmark */ = 8B793B7821F5F8CF006E9731 /* PBXTextBookmark */;
+ 8BDC999327CEB49500A07B67 /* PBXTextBookmark */ = 8BDC999327CEB49500A07B67 /* PBXTextBookmark */;
+ 8BDC99B127CEB56000A07B67 /* PBXTextBookmark */ = 8BDC99B127CEB56000A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -78,7 +78,7 @@
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {747, 19877}}";
+ sepNavIntBoundsRect = "{{0, 0}, {957, 27504}}";
sepNavSelRange = "{10616, 0}";
sepNavVisRange = "{0, 0}";
sepNavWindowFrame = "{{15, 42}, {895, 831}}";
@@ -106,7 +106,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B793B7321F5F897006E9731 /* PBXTextBookmark */ = {
+ 8BDC999327CEB49500A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
name = "audioeffectx.cpp: 307";
@@ -116,7 +116,7 @@
vrLen = 0;
vrLoc = 0;
};
- 8B793B7821F5F8CF006E9731 /* PBXTextBookmark */ = {
+ 8BDC99B127CEB56000A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
name = "audioeffectx.cpp: 307";
diff --git a/plugins/MacVST/Hermepass/Hermepass.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Hermepass/Hermepass.xcodeproj/christopherjohnson.perspectivev3
index 5ca388137..ed40ab407 100755
--- a/plugins/MacVST/Hermepass/Hermepass.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Hermepass/Hermepass.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 278 293 810 487 0 0 1440 878
+ 207 165 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B793B7821F5F8CF006E9731
+ 8BDC99B127CEB56000A07B67
history
- 8B793B7321F5F897006E9731
+ 8BDC999327CEB49500A07B67
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 13}}
+ {{0, 0}, {603, 0}}
RubberWindowFrame
- 278 293 810 487 0 0 1440 878
+ 207 165 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 13pt
+ 0pt
Proportion
- 428pt
+ 441pt
Tabs
@@ -393,7 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 401}}
+ {{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 207 165 810 487 0 0 1280 698
Module
XCDetailModule
@@ -448,8 +450,6 @@
Frame
{{10, 27}, {603, 401}}
- RubberWindowFrame
- 278 293 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B793B7921F5F8CF006E9731
+ 8BDC99B227CEB56000A07B67
1CA23ED40692098700951B8B
- 8B793B7A21F5F8CF006E9731
+ 8BDC99B327CEB56000A07B67
8B0237581D42B1C400E1E8C8
- 8B793B7B21F5F8CF006E9731
+ 8BDC99B427CEB56000A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 569768143.68088698
+ 667858272.72874606
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +651,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/Hermepass/Hermepass.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Hermepass/Hermepass.xcodeproj
WindowString
- 278 293 810 487 0 0 1440 878
+ 207 165 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/HighGlossDither/HighGlossDither.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/HighGlossDither/HighGlossDither.xcodeproj/christopherjohnson.pbxuser
index 39c977688..ee5e74d4e 100755
--- a/plugins/MacVST/HighGlossDither/HighGlossDither.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/HighGlossDither/HighGlossDither.xcodeproj/christopherjohnson.pbxuser
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 528460670;
- PBXWorkspaceStateSaveDate = 528460670;
+ PBXPerProjectTemplateStateSaveDate = 667858287;
+ PBXWorkspaceStateSaveDate = 667858287;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -66,10 +66,10 @@
};
245463B80991757100464AD3 /* HighGlossDither.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {866, 767}}";
- sepNavSelRange = "{2444, 0}";
- sepNavVisRange = "{179, 2276}";
- sepNavWindowFrame = "{{20, 47}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1110, 1098}}";
+ sepNavSelRange = "{2475, 0}";
+ sepNavVisRange = "{621, 1859}";
+ sepNavWindowFrame = "{{20, 4}, {895, 694}}";
};
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
@@ -82,10 +82,10 @@
};
24D8286F09A914000093AEF8 /* HighGlossDitherProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {848, 2873}}";
- sepNavSelRange = "{5801, 0}";
- sepNavVisRange = "{4734, 1846}";
- sepNavWindowFrame = "{{401, 47}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {939, 2142}}";
+ sepNavSelRange = "{683, 0}";
+ sepNavVisRange = "{1774, 905}";
+ sepNavWindowFrame = "{{385, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
diff --git a/plugins/MacVST/HighGlossDither/HighGlossDither.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/HighGlossDither/HighGlossDither.xcodeproj/christopherjohnson.perspectivev3
index 108bda973..046cd8e94 100755
--- a/plugins/MacVST/HighGlossDither/HighGlossDither.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/HighGlossDither/HighGlossDither.xcodeproj/christopherjohnson.perspectivev3
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -300,7 +298,7 @@
PBXSmartGroupTreeModuleOutlineStateSelectionKey
- 6
+ 7
4
0
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 448 298 810 487 0 0 1440 878
+ 334 167 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -360,18 +358,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 13}}
+ {{0, 0}, {603, 0}}
RubberWindowFrame
- 448 298 810 487 0 0 1440 878
+ 334 167 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 13pt
+ 0pt
Proportion
- 428pt
+ 441pt
Tabs
@@ -385,9 +383,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 401}}
- RubberWindowFrame
- 448 298 810 487 0 0 1440 878
+ {{10, 27}, {603, 414}}
Module
XCDetailModule
@@ -441,7 +437,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 334 167 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -469,11 +467,11 @@
TableOfContents
- 8B9D7AB91F7FABB6007AB60F
+ 8BDC99FB27CEB59C00A07B67
1CA23ED40692098700951B8B
- 8B9D7ABA1F7FABB6007AB60F
+ 8BDC99FC27CEB59C00A07B67
8B0237581D42B1C400E1E8C8
- 8B9D7ABB1F7FABB6007AB60F
+ 8BDC99FD27CEB59C00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +624,7 @@
StatusbarIsVisible
TimeStamp
- 528460726.21145099
+ 667858332.53486502
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,11 +641,11 @@
5
WindowOrderList
- 8B9D7ABC1F7FABB6007AB60F
- /Users/christopherjohnson/Desktop/MacVST/HighGlossDither/HighGlossDither.xcodeproj
+ 8BDC99FE27CEB59C00A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/HighGlossDither/HighGlossDither.xcodeproj
WindowString
- 448 298 810 487 0 0 1440 878
+ 334 167 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/HighGlossDither/source/HighGlossDither.h b/plugins/MacVST/HighGlossDither/source/HighGlossDither.h
index 8bce9066b..96804c5a8 100755
--- a/plugins/MacVST/HighGlossDither/source/HighGlossDither.h
+++ b/plugins/MacVST/HighGlossDither/source/HighGlossDither.h
@@ -53,6 +53,8 @@ private:
int Position;
bool flip;
+ uint32_t fpdL;
+ uint32_t fpdR;
};
#endif
diff --git a/plugins/MacVST/HighImpact/HighImpact.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/HighImpact/HighImpact.xcodeproj/christopherjohnson.pbxuser
index b8832a53e..a66537898 100755
--- a/plugins/MacVST/HighImpact/HighImpact.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/HighImpact/HighImpact.xcodeproj/christopherjohnson.pbxuser
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569768208;
- PBXWorkspaceStateSaveDate = 569768208;
+ PBXPerProjectTemplateStateSaveDate = 667858338;
+ PBXWorkspaceStateSaveDate = 667858338;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
diff --git a/plugins/MacVST/HighImpact/HighImpact.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/HighImpact/HighImpact.xcodeproj/christopherjohnson.perspectivev3
index f860614f3..7cadb897f 100755
--- a/plugins/MacVST/HighImpact/HighImpact.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/HighImpact/HighImpact.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 358 280 810 487 0 0 1440 878
+ 267 159 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 358 280 810 487 0 0 1440 878
+ 267 159 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 358 280 810 487 0 0 1440 878
+ 267 159 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B793BAE21F5F91A006E9731
+ 8BDC9A0F27CEB5A600A07B67
1CA23ED40692098700951B8B
- 8B793BAF21F5F91A006E9731
+ 8BDC9A1027CEB5A600A07B67
8B0237581D42B1C400E1E8C8
- 8B793BB021F5F91A006E9731
+ 8BDC9A1127CEB5A600A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 569768218.37077904
+ 667858342.60053205
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +643,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/HighImpact/HighImpact.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/HighImpact/HighImpact.xcodeproj
WindowString
- 358 280 810 487 0 0 1440 878
+ 267 159 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Highpass/Highpass.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Highpass/Highpass.xcodeproj/christopherjohnson.pbxuser
index 6a621d42e..6a434de53 100755
--- a/plugins/MacVST/Highpass/Highpass.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Highpass/Highpass.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569768258;
- PBXWorkspaceStateSaveDate = 569768258;
+ PBXPerProjectTemplateStateSaveDate = 667858346;
+ PBXWorkspaceStateSaveDate = 667858346;
};
perUserProjectItems = {
8B793BD921F5FB42006E9731 /* PBXTextBookmark */ = 8B793BD921F5FB42006E9731 /* PBXTextBookmark */;
- 8B9D7AED1F7FABEE007AB60F /* PBXTextBookmark */ = 8B9D7AED1F7FABEE007AB60F /* PBXTextBookmark */;
+ 8BDC9A2C27CEB5B100A07B67 /* PBXTextBookmark */ = 8BDC9A2C27CEB5B100A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -86,8 +86,8 @@
};
24D8286F09A914000093AEF8 /* HighpassProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {554, 3549}}";
- sepNavSelRange = "{9802, 0}";
+ sepNavIntBoundsRect = "{{0, 0}, {554, 3546}}";
+ sepNavSelRange = "{6298, 0}";
sepNavVisRange = "{0, 0}";
sepNavWindowFrame = "{{325, 47}, {895, 831}}";
};
@@ -111,17 +111,17 @@
fRef = 24D8286F09A914000093AEF8 /* HighpassProc.cpp */;
name = "HighpassProc.cpp: 270";
rLen = 0;
- rLoc = 9802;
+ rLoc = 6298;
rType = 0;
vrLen = 0;
vrLoc = 0;
};
- 8B9D7AED1F7FABEE007AB60F /* PBXTextBookmark */ = {
+ 8BDC9A2C27CEB5B100A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* HighpassProc.cpp */;
- name = "HighpassProc.cpp: 297";
+ name = "HighpassProc.cpp: 196";
rLen = 0;
- rLoc = 9802;
+ rLoc = 6298;
rType = 0;
vrLen = 0;
vrLoc = 0;
diff --git a/plugins/MacVST/Highpass/Highpass.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Highpass/Highpass.xcodeproj/christopherjohnson.perspectivev3
index e1cb811ce..5bdc82767 100755
--- a/plugins/MacVST/Highpass/Highpass.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Highpass/Highpass.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 369 207 810 487 0 0 1440 878
+ 275 124 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B793BD921F5FB42006E9731
+ 8BDC9A2C27CEB5B100A07B67
history
- 8B9D7AED1F7FABEE007AB60F
+ 8B793BD921F5FB42006E9731
SplitCount
@@ -370,7 +370,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 369 207 810 487 0 0 1440 878
+ 275 124 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -394,6 +394,8 @@
Frame
{{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 275 124 810 487 0 0 1280 698
Module
XCDetailModule
@@ -448,8 +450,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 369 207 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B793BDA21F5FB42006E9731
+ 8BDC9A2D27CEB5B100A07B67
1CA23ED40692098700951B8B
- 8B793BDB21F5FB42006E9731
+ 8BDC9A2E27CEB5B100A07B67
8B0237581D42B1C400E1E8C8
- 8B793BDC21F5FB42006E9731
+ 8BDC9A2F27CEB5B100A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 569768770.42441106
+ 667858353.88805795
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +651,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/Highpass/Highpass.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Highpass/Highpass.xcodeproj
WindowString
- 369 207 810 487 0 0 1440 878
+ 275 124 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Highpass2/Highpass2.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Highpass2/Highpass2.xcodeproj/christopherjohnson.pbxuser
index 004dc4d96..87219f64d 100755
--- a/plugins/MacVST/Highpass2/Highpass2.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Highpass2/Highpass2.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* Highpass2 */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 575131668;
- PBXWorkspaceStateSaveDate = 575131668;
+ PBXPerProjectTemplateStateSaveDate = 667858358;
+ PBXWorkspaceStateSaveDate = 667858358;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* Highpass2 */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/Highpass2/Highpass2.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Highpass2/Highpass2.xcodeproj/christopherjohnson.perspectivev3
index 767018716..053085ac5 100755
--- a/plugins/MacVST/Highpass2/Highpass2.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Highpass2/Highpass2.xcodeproj/christopherjohnson.perspectivev3
@@ -256,6 +256,8 @@
Layout
+ BecomeActive
+
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -321,7 +323,7 @@
185
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -360,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -384,6 +386,8 @@
Frame
{{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 25 199 810 487 0 0 1280 698
Module
XCDetailModule
@@ -438,8 +442,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 34 365 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -467,11 +469,11 @@
TableOfContents
- 8B6111842247D016001915CF
+ 8BDC9A4A27CEB5BA00A07B67
1CA23ED40692098700951B8B
- 8B6111852247D016001915CF
+ 8BDC9A4B27CEB5BA00A07B67
8B0237581D42B1C400E1E8C8
- 8B6111862247D016001915CF
+ 8BDC9A4C27CEB5BA00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -624,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 575133175.26487505
+ 667858362.57365596
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -641,11 +643,10 @@
5
WindowOrderList
- 8B6111FB2247D5F7001915CF
- /Users/christopherjohnson/Desktop/Highpass2/Highpass2.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Highpass2/Highpass2.xcodeproj
WindowString
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Highpass2/Highpass2.xcodeproj/project.pbxproj b/plugins/MacVST/Highpass2/Highpass2.xcodeproj/project.pbxproj
index 416a9f659..21e0eb118 100755
--- a/plugins/MacVST/Highpass2/Highpass2.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/Highpass2/Highpass2.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* Highpass2 */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "Highpass2" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* Highpass2 */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/Holt/Holt.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Holt/Holt.xcodeproj/christopherjohnson.pbxuser
index 3000916dd..ba55b2932 100755
--- a/plugins/MacVST/Holt/Holt.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Holt/Holt.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 631581103;
- PBXWorkspaceStateSaveDate = 631581103;
+ PBXPerProjectTemplateStateSaveDate = 667858367;
+ PBXWorkspaceStateSaveDate = 667858367;
};
perUserProjectItems = {
8B2E7B4A25A529B900485B86 /* PBXTextBookmark */ = 8B2E7B4A25A529B900485B86 /* PBXTextBookmark */;
- 8BB51E59222200D9000C92BC /* PBXTextBookmark */ = 8BB51E59222200D9000C92BC /* PBXTextBookmark */;
+ 8BDC9A6727CEB5C300A07B67 /* PBXTextBookmark */ = 8BDC9A6727CEB5C300A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -86,9 +86,9 @@
};
24D8286F09A914000093AEF8 /* HoltProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {894, 5220}}";
- sepNavSelRange = "{11924, 0}";
- sepNavVisRange = "{1609, 174}";
+ sepNavIntBoundsRect = "{{0, 0}, {678, 5220}}";
+ sepNavSelRange = "{11892, 0}";
+ sepNavVisRange = "{1589, 135}";
sepNavWindowFrame = "{{53, 46}, {895, 831}}";
};
};
@@ -111,20 +111,20 @@
fRef = 24D8286F09A914000093AEF8 /* HoltProc.cpp */;
name = "HoltProc.cpp: 283";
rLen = 0;
- rLoc = 11924;
+ rLoc = 11892;
rType = 0;
vrLen = 174;
vrLoc = 1609;
};
- 8BB51E59222200D9000C92BC /* PBXTextBookmark */ = {
+ 8BDC9A6727CEB5C300A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* HoltProc.cpp */;
- name = "HoltProc.cpp: 295";
+ name = "HoltProc.cpp: 283";
rLen = 0;
- rLoc = 11924;
+ rLoc = 11892;
rType = 0;
- vrLen = 225;
- vrLoc = 1640;
+ vrLen = 135;
+ vrLoc = 1589;
};
8D01CCC60486CAD60068D4B7 /* Holt */ = {
activeExec = 0;
diff --git a/plugins/MacVST/Holt/Holt.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Holt/Holt.xcodeproj/christopherjohnson.perspectivev3
index 39c4c9def..09255fc60 100755
--- a/plugins/MacVST/Holt/Holt.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Holt/Holt.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 38 344 810 487 0 0 1440 878
+ 28 189 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B2E7B4A25A529B900485B86
+ 8BDC9A6727CEB5C300A07B67
history
- 8BB51E59222200D9000C92BC
+ 8B2E7B4A25A529B900485B86
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 102}}
+ {{0, 0}, {603, 86}}
RubberWindowFrame
- 38 344 810 487 0 0 1440 878
+ 28 189 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 102pt
+ 86pt
Proportion
- 339pt
+ 355pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 312}}
+ {{10, 27}, {603, 328}}
RubberWindowFrame
- 38 344 810 487 0 0 1440 878
+ 28 189 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B2E7B4B25A529B900485B86
+ 8BDC9A6827CEB5C300A07B67
1CA23ED40692098700951B8B
- 8B2E7B4C25A529B900485B86
+ 8BDC9A6927CEB5C300A07B67
8B0237581D42B1C400E1E8C8
- 8B2E7B4D25A529B900485B86
+ 8BDC9A6A27CEB5C300A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 631581113.17621303
+ 667858371.99536002
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +651,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/Plugins/MacVST/Holt/Holt.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Holt/Holt.xcodeproj
WindowString
- 38 344 810 487 0 0 1440 878
+ 28 189 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Hombre/Hombre.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Hombre/Hombre.xcodeproj/christopherjohnson.pbxuser
index e7c095ecf..d1138cea5 100755
--- a/plugins/MacVST/Hombre/Hombre.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Hombre/Hombre.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* Hombre */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569768789;
- PBXWorkspaceStateSaveDate = 569768789;
+ PBXPerProjectTemplateStateSaveDate = 667858376;
+ PBXWorkspaceStateSaveDate = 667858376;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* Hombre */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/Hombre/Hombre.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Hombre/Hombre.xcodeproj/christopherjohnson.perspectivev3
index 0ff9e72cd..62bb33734 100755
--- a/plugins/MacVST/Hombre/Hombre.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Hombre/Hombre.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 191 335 810 487 0 0 1440 878
+ 142 185 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 191 335 810 487 0 0 1440 878
+ 142 185 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 191 335 810 487 0 0 1440 878
+ 142 185 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B793BF921F5FCAE006E9731
+ 8BDC9A8527CEB5CD00A07B67
1CA23ED40692098700951B8B
- 8B793BFA21F5FCAE006E9731
+ 8BDC9A8627CEB5CD00A07B67
8B0237581D42B1C400E1E8C8
- 8B793BFB21F5FCAE006E9731
+ 8BDC9A8727CEB5CD00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 569769134.11826503
+ 667858381.16420496
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +643,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/Hombre/Hombre.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Hombre/Hombre.xcodeproj
WindowString
- 191 335 810 487 0 0 1440 878
+ 142 185 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Hombre/Hombre.xcodeproj/project.pbxproj b/plugins/MacVST/Hombre/Hombre.xcodeproj/project.pbxproj
index 0beffb66c..2e3db5b42 100755
--- a/plugins/MacVST/Hombre/Hombre.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/Hombre/Hombre.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* Hombre */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "Hombre" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* Hombre */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/Hull/Hull.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Hull/Hull.xcodeproj/christopherjohnson.pbxuser
index 063e73731..6153c9566 100644
--- a/plugins/MacVST/Hull/Hull.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Hull/Hull.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* Hull */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 648677054;
- PBXWorkspaceStateSaveDate = 648677054;
+ PBXPerProjectTemplateStateSaveDate = 667858385;
+ PBXWorkspaceStateSaveDate = 667858385;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* Hull */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/Hull/Hull.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Hull/Hull.xcodeproj/christopherjohnson.perspectivev3
index 4b0370c44..5119f1e2b 100644
--- a/plugins/MacVST/Hull/Hull.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Hull/Hull.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 611 353 810 487 0 0 1440 878
+ 456 193 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 611 353 810 487 0 0 1440 878
+ 456 193 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 611 353 810 487 0 0 1440 878
+ 456 193 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B7D1CCA26AA2EFB00256A86
+ 8BDC9AA227CEB5D600A07B67
1CA23ED40692098700951B8B
- 8B7D1CCB26AA2EFB00256A86
+ 8BDC9AA327CEB5D600A07B67
8B0237581D42B1C400E1E8C8
- 8B7D1CCC26AA2EFB00256A86
+ 8BDC9AA427CEB5D600A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 648687355.45283198
+ 667858390.18428695
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +643,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/Hull/Hull.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Hull/Hull.xcodeproj
WindowString
- 611 353 810 487 0 0 1440 878
+ 456 193 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Hull/Hull.xcodeproj/project.pbxproj b/plugins/MacVST/Hull/Hull.xcodeproj/project.pbxproj
index c3f992ee0..3a2bbc982 100755
--- a/plugins/MacVST/Hull/Hull.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/Hull/Hull.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* Hull */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "Hull" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* Hull */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/HypersonX/HypersonX.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/HypersonX/HypersonX.xcodeproj/christopherjohnson.pbxuser
index 6240fede2..30cfb8e7f 100644
--- a/plugins/MacVST/HypersonX/HypersonX.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/HypersonX/HypersonX.xcodeproj/christopherjohnson.pbxuser
@@ -49,13 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 665107757;
- PBXWorkspaceStateSaveDate = 665107757;
+ PBXPerProjectTemplateStateSaveDate = 667858417;
+ PBXWorkspaceStateSaveDate = 667858417;
};
perUserProjectItems = {
8BB92D0827A4BD1400420832 /* PBXTextBookmark */ = 8BB92D0827A4BD1400420832 /* PBXTextBookmark */;
- 8BB92D0A27A4BD1400420832 /* PBXTextBookmark */ = 8BB92D0A27A4BD1400420832 /* PBXTextBookmark */;
8BB92D2127A4BD3200420832 /* PBXTextBookmark */ = 8BB92D2127A4BD3200420832 /* PBXTextBookmark */;
+ 8BDC9ADF27CEB5F500A07B67 /* PBXTextBookmark */ = 8BDC9ADF27CEB5F500A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -73,7 +73,7 @@
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {561, 1584}}";
sepNavSelRange = "{0, 0}";
- sepNavVisRange = "{0, 214}";
+ sepNavVisRange = "{0, 167}";
sepNavWindowFrame = "{{20, 47}, {895, 831}}";
};
};
@@ -117,16 +117,6 @@
vrLen = 324;
vrLoc = 481;
};
- 8BB92D0A27A4BD1400420832 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 245463B80991757100464AD3 /* HypersonX.h */;
- name = "HypersonX.h: 1";
- rLen = 0;
- rLoc = 0;
- rType = 0;
- vrLen = 215;
- vrLoc = 0;
- };
8BB92D2127A4BD3200420832 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 245463B80991757100464AD3 /* HypersonX.h */;
@@ -137,6 +127,16 @@
vrLen = 214;
vrLoc = 0;
};
+ 8BDC9ADF27CEB5F500A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 245463B80991757100464AD3 /* HypersonX.h */;
+ name = "HypersonX.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 167;
+ vrLoc = 0;
+ };
8D01CCC60486CAD60068D4B7 /* HypersonX */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/HypersonX/HypersonX.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/HypersonX/HypersonX.xcodeproj/christopherjohnson.perspectivev3
index 3c7ec4c28..9e8267859 100644
--- a/plugins/MacVST/HypersonX/HypersonX.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/HypersonX/HypersonX.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,11 +351,11 @@
_historyCapacity
0
bookmark
- 8BB92D2127A4BD3200420832
+ 8BDC9ADF27CEB5F500A07B67
history
8BB92D0827A4BD1400420832
- 8BB92D0A27A4BD1400420832
+ 8BB92D2127A4BD3200420832
SplitCount
@@ -369,18 +369,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 117}}
+ {{0, 0}, {603, 102}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 117pt
+ 102pt
Proportion
- 324pt
+ 339pt
Tabs
@@ -394,9 +394,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
+ {{10, 27}, {603, 312}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
XCDetailModule
@@ -478,11 +478,11 @@
TableOfContents
- 8BB92D2227A4BD3200420832
+ 8BDC9AE027CEB5F500A07B67
1CA23ED40692098700951B8B
- 8BB92D2327A4BD3200420832
+ 8BDC9AE127CEB5F500A07B67
8B0237581D42B1C400E1E8C8
- 8BB92D2427A4BD3200420832
+ 8BDC9AE227CEB5F500A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -635,7 +635,7 @@
StatusbarIsVisible
TimeStamp
- 665107762.820719
+ 667858421.61158097
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -652,10 +652,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/HypersonX/HypersonX.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/HypersonX/HypersonX.xcodeproj
WindowString
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Hypersonic/Hypersonic.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Hypersonic/Hypersonic.xcodeproj/christopherjohnson.pbxuser
index 0b81903c1..d2240a21b 100644
--- a/plugins/MacVST/Hypersonic/Hypersonic.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Hypersonic/Hypersonic.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 667178174;
- PBXWorkspaceStateSaveDate = 667178174;
+ PBXPerProjectTemplateStateSaveDate = 667858394;
+ PBXWorkspaceStateSaveDate = 667858394;
};
perUserProjectItems = {
- 8B4AFBB527C454EF00664C18 /* PBXTextBookmark */ = 8B4AFBB527C454EF00664C18 /* PBXTextBookmark */;
- 8B4AFBB627C454EF00664C18 /* PBXTextBookmark */ = 8B4AFBB627C454EF00664C18 /* PBXTextBookmark */;
+ 8BDC9ABF27CEB5EC00A07B67 /* PBXTextBookmark */ = 8BDC9ABF27CEB5EC00A07B67 /* PBXTextBookmark */;
+ 8BDC9AC027CEB5EC00A07B67 /* XCBuildMessageTextBookmark */ = 8BDC9AC027CEB5EC00A07B67 /* XCBuildMessageTextBookmark */;
+ 8BDC9AC127CEB5EC00A07B67 /* PBXTextBookmark */ = 8BDC9AC127CEB5EC00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -63,8 +64,8 @@
2407DEB6089929BA00EB68BF /* Hypersonic.cpp */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {948, 2196}}";
- sepNavSelRange = "{458, 161}";
- sepNavVisRange = "{0, 1395}";
+ sepNavSelRange = "{2454, 0}";
+ sepNavVisRange = "{2374, 183}";
sepNavWindowFrame = "{{538, 47}, {895, 831}}";
};
};
@@ -86,9 +87,9 @@
};
24D8286F09A914000093AEF8 /* HypersonicProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1182, 6282}}";
+ sepNavIntBoundsRect = "{{0, 0}, {903, 6156}}";
sepNavSelRange = "{15100, 41}";
- sepNavVisRange = "{9232, 249}";
+ sepNavVisRange = "{9282, 199}";
sepNavWindowFrame = "{{274, 42}, {1166, 836}}";
};
};
@@ -106,25 +107,34 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B4AFBB527C454EF00664C18 /* PBXTextBookmark */ = {
+ 8BDC9ABF27CEB5EC00A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* HypersonicProc.cpp */;
name = "HypersonicProc.cpp: 322";
rLen = 41;
rLoc = 15100;
rType = 0;
- vrLen = 249;
- vrLoc = 9232;
+ vrLen = 199;
+ vrLoc = 9282;
};
- 8B4AFBB627C454EF00664C18 /* PBXTextBookmark */ = {
+ 8BDC9AC027CEB5EC00A07B67 /* XCBuildMessageTextBookmark */ = {
isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* HypersonicProc.cpp */;
- name = "HypersonicProc.cpp: 322";
- rLen = 41;
- rLoc = 15100;
+ comments = "Unused variable 'chunkData'";
+ fRef = 2407DEB6089929BA00EB68BF /* Hypersonic.cpp */;
+ fallbackIsa = XCBuildMessageTextBookmark;
+ rLen = 1;
+ rLoc = 66;
+ rType = 1;
+ };
+ 8BDC9AC127CEB5EC00A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 2407DEB6089929BA00EB68BF /* Hypersonic.cpp */;
+ name = "Hypersonic.cpp: 67";
+ rLen = 0;
+ rLoc = 2454;
rType = 0;
- vrLen = 249;
- vrLoc = 9232;
+ vrLen = 183;
+ vrLoc = 2374;
};
8D01CCC60486CAD60068D4B7 /* Hypersonic */ = {
activeExec = 0;
diff --git a/plugins/MacVST/Hypersonic/Hypersonic.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Hypersonic/Hypersonic.xcodeproj/christopherjohnson.perspectivev3
index 658ca1be7..9067d09d0 100644
--- a/plugins/MacVST/Hypersonic/Hypersonic.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Hypersonic/Hypersonic.xcodeproj/christopherjohnson.perspectivev3
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 624 349 810 487 0 0 1440 878
+ 466 191 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -339,7 +337,7 @@
PBXProjectModuleGUID
8B0237581D42B1C400E1E8C8
PBXProjectModuleLabel
- HypersonicProc.cpp
+ Hypersonic.cpp
PBXSplitModuleInNavigatorKey
Split0
@@ -347,14 +345,15 @@
PBXProjectModuleGUID
8B0237591D42B1C400E1E8C8
PBXProjectModuleLabel
- HypersonicProc.cpp
+ Hypersonic.cpp
_historyCapacity
0
bookmark
- 8B4AFBB627C454EF00664C18
+ 8BDC9AC127CEB5EC00A07B67
history
- 8B4AFBB527C454EF00664C18
+ 8BDC9ABF27CEB5EC00A07B67
+ 8BDC9AC027CEB5EC00A07B67
SplitCount
@@ -368,18 +367,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 132}}
+ {{0, 0}, {603, 117}}
RubberWindowFrame
- 624 349 810 487 0 0 1440 878
+ 466 191 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 132pt
+ 117pt
Proportion
- 309pt
+ 324pt
Tabs
@@ -393,9 +392,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
- RubberWindowFrame
- 624 349 810 487 0 0 1440 878
+ {{10, 27}, {603, 297}}
Module
XCDetailModule
@@ -449,7 +446,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 414}}
+ {{10, 27}, {603, 297}}
+ RubberWindowFrame
+ 466 191 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -477,11 +476,11 @@
TableOfContents
- 8B4AFBB727C454EF00664C18
+ 8BDC9AC227CEB5EC00A07B67
1CA23ED40692098700951B8B
- 8B4AFBB827C454EF00664C18
+ 8BDC9AC327CEB5EC00A07B67
8B0237581D42B1C400E1E8C8
- 8B4AFBB927C454EF00664C18
+ 8BDC9AC427CEB5EC00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +633,7 @@
StatusbarIsVisible
TimeStamp
- 667178223.64046299
+ 667858412.59019101
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -654,7 +653,7 @@
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Hypersonic/Hypersonic.xcodeproj
WindowString
- 624 349 810 487 0 0 1440 878
+ 466 191 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Infinity/Infinity.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Infinity/Infinity.xcodeproj/christopherjohnson.pbxuser
index 41a1ac4c8..224b46928 100755
--- a/plugins/MacVST/Infinity/Infinity.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Infinity/Infinity.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 642023475;
- PBXWorkspaceStateSaveDate = 642023475;
+ PBXPerProjectTemplateStateSaveDate = 667858425;
+ PBXWorkspaceStateSaveDate = 667858425;
};
perUserProjectItems = {
- 8BA2A94B2644844600EB96D1 /* PBXTextBookmark */ = 8BA2A94B2644844600EB96D1 /* PBXTextBookmark */;
8BA2A94C2644844600EB96D1 /* PBXTextBookmark */ = 8BA2A94C2644844600EB96D1 /* PBXTextBookmark */;
+ 8BDC9AFD27CEB60000A07B67 /* PBXTextBookmark */ = 8BDC9AFD27CEB60000A07B67 /* PBXTextBookmark */;
8BE20B6D259EB6B900009ECB /* PBXTextBookmark */ = 8BE20B6D259EB6B900009ECB /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
@@ -87,9 +87,9 @@
};
24D8286F09A914000093AEF8 /* InfinityProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {687, 10584}}";
+ sepNavIntBoundsRect = "{{0, 0}, {606, 10512}}";
sepNavSelRange = "{23972, 0}";
- sepNavVisRange = "{13033, 84}";
+ sepNavVisRange = "{13047, 74}";
sepNavWindowFrame = "{{358, 49}, {1082, 829}}";
};
};
@@ -107,16 +107,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8BA2A94B2644844600EB96D1 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* InfinityProc.cpp */;
- name = "InfinityProc.cpp: 561";
- rLen = 0;
- rLoc = 23972;
- rType = 0;
- vrLen = 84;
- vrLoc = 13033;
- };
8BA2A94C2644844600EB96D1 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* InfinityProc.cpp */;
@@ -127,6 +117,16 @@
vrLen = 84;
vrLoc = 13033;
};
+ 8BDC9AFD27CEB60000A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* InfinityProc.cpp */;
+ name = "InfinityProc.cpp: 563";
+ rLen = 0;
+ rLoc = 23972;
+ rType = 0;
+ vrLen = 74;
+ vrLoc = 13047;
+ };
8BE20B6D259EB6B900009ECB /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
diff --git a/plugins/MacVST/Infinity/Infinity.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Infinity/Infinity.xcodeproj/christopherjohnson.perspectivev3
index f9c9c1c89..bca83dc1f 100755
--- a/plugins/MacVST/Infinity/Infinity.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Infinity/Infinity.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 612 343 810 487 0 0 1440 878
+ 457 188 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,11 +351,11 @@
_historyCapacity
0
bookmark
- 8BA2A94C2644844600EB96D1
+ 8BDC9AFD27CEB60000A07B67
history
8BE20B6D259EB6B900009ECB
- 8BA2A94B2644844600EB96D1
+ 8BA2A94C2644844600EB96D1
SplitCount
@@ -369,18 +369,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 69}}
+ {{0, 0}, {603, 51}}
RubberWindowFrame
- 612 343 810 487 0 0 1440 878
+ 457 188 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 69pt
+ 51pt
Proportion
- 372pt
+ 390pt
Tabs
@@ -394,9 +394,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 345}}
+ {{10, 27}, {603, 363}}
RubberWindowFrame
- 612 343 810 487 0 0 1440 878
+ 457 188 810 487 0 0 1280 698
Module
XCDetailModule
@@ -478,11 +478,11 @@
TableOfContents
- 8BA2A94D2644844600EB96D1
+ 8BDC9AFE27CEB60000A07B67
1CA23ED40692098700951B8B
- 8BA2A94E2644844600EB96D1
+ 8BDC9AFF27CEB60000A07B67
8B0237581D42B1C400E1E8C8
- 8BA2A94F2644844600EB96D1
+ 8BDC9B0027CEB60000A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -635,7 +635,7 @@
StatusbarIsVisible
TimeStamp
- 642024518.74809599
+ 667858432.61541796
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -655,7 +655,7 @@
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Infinity/Infinity.xcodeproj
WindowString
- 612 343 810 487 0 0 1440 878
+ 457 188 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Infinity2/Infinity2.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Infinity2/Infinity2.xcodeproj/christopherjohnson.pbxuser
index cb75a091d..8eb2d23bf 100644
--- a/plugins/MacVST/Infinity2/Infinity2.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Infinity2/Infinity2.xcodeproj/christopherjohnson.pbxuser
@@ -49,13 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 642019132;
- PBXWorkspaceStateSaveDate = 642019132;
+ PBXPerProjectTemplateStateSaveDate = 667858437;
+ PBXWorkspaceStateSaveDate = 667858437;
};
perUserProjectItems = {
8BA2A95826448D1100EB96D1 /* PBXTextBookmark */ = 8BA2A95826448D1100EB96D1 /* PBXTextBookmark */;
- 8BA2A95A26448D1100EB96D1 /* PBXTextBookmark */ = 8BA2A95A26448D1100EB96D1 /* PBXTextBookmark */;
8BA2A97326448F6B00EB96D1 /* PBXTextBookmark */ = 8BA2A97326448F6B00EB96D1 /* PBXTextBookmark */;
+ 8BDC9B1B27CEB60A00A07B67 /* PBXTextBookmark */ = 8BDC9B1B27CEB60A00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -87,9 +87,9 @@
};
24D8286F09A914000093AEF8 /* Infinity2Proc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {714, 12348}}";
+ sepNavIntBoundsRect = "{{0, 0}, {957, 10890}}";
sepNavSelRange = "{21243, 6}";
- sepNavVisRange = "{20517, 366}";
+ sepNavVisRange = "{20682, 298}";
sepNavWindowFrame = "{{8, 44}, {1147, 831}}";
};
};
@@ -117,16 +117,6 @@
vrLen = 224;
vrLoc = 571;
};
- 8BA2A95A26448D1100EB96D1 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* Infinity2Proc.cpp */;
- name = "Infinity2Proc.cpp: 593";
- rLen = 0;
- rLoc = 28363;
- rType = 0;
- vrLen = 516;
- vrLoc = 23303;
- };
8BA2A97326448F6B00EB96D1 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* Infinity2Proc.cpp */;
@@ -137,6 +127,16 @@
vrLen = 366;
vrLoc = 20517;
};
+ 8BDC9B1B27CEB60A00A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* Infinity2Proc.cpp */;
+ name = "Infinity2Proc.cpp: 487";
+ rLen = 6;
+ rLoc = 21243;
+ rType = 0;
+ vrLen = 298;
+ vrLoc = 20682;
+ };
8D01CCC60486CAD60068D4B7 /* Infinity2 */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/Infinity2/Infinity2.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Infinity2/Infinity2.xcodeproj/christopherjohnson.perspectivev3
index 5165f65d4..140acd4b2 100644
--- a/plugins/MacVST/Infinity2/Infinity2.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Infinity2/Infinity2.xcodeproj/christopherjohnson.perspectivev3
@@ -256,6 +256,8 @@
Layout
+ BecomeActive
+
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -321,7 +323,7 @@
185
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -349,11 +351,11 @@
_historyCapacity
0
bookmark
- 8BA2A97326448F6B00EB96D1
+ 8BDC9B1B27CEB60A00A07B67
history
8BA2A95826448D1100EB96D1
- 8BA2A95A26448D1100EB96D1
+ 8BA2A97326448F6B00EB96D1
SplitCount
@@ -367,18 +369,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 132}}
+ {{0, 0}, {603, 117}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 132pt
+ 117pt
Proportion
- 309pt
+ 324pt
Tabs
@@ -392,7 +394,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 297}}
+ RubberWindowFrame
+ 25 199 810 487 0 0 1280 698
Module
XCDetailModule
@@ -447,8 +451,6 @@
Frame
{{10, 27}, {603, 282}}
- RubberWindowFrame
- 34 365 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -476,11 +478,11 @@
TableOfContents
- 8BA2A97426448F6B00EB96D1
+ 8BDC9B1C27CEB60A00A07B67
1CA23ED40692098700951B8B
- 8BA2A97526448F6B00EB96D1
+ 8BDC9B1D27CEB60A00A07B67
8B0237581D42B1C400E1E8C8
- 8BA2A97626448F6B00EB96D1
+ 8BDC9B1E27CEB60A00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -633,7 +635,7 @@
StatusbarIsVisible
TimeStamp
- 642027371.25458503
+ 667858442.81892502
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -650,11 +652,10 @@
5
WindowOrderList
- 8BA2A97726448F6B00EB96D1
- /Users/christopherjohnson/Desktop/Infinity2/Infinity2.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Infinity2/Infinity2.xcodeproj
WindowString
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Infrasonic/Infrasonic.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Infrasonic/Infrasonic.xcodeproj/christopherjohnson.pbxuser
index bef60e810..028ffb674 100755
--- a/plugins/MacVST/Infrasonic/Infrasonic.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Infrasonic/Infrasonic.xcodeproj/christopherjohnson.pbxuser
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 627363610;
- PBXWorkspaceStateSaveDate = 627363610;
+ PBXPerProjectTemplateStateSaveDate = 667858448;
+ PBXWorkspaceStateSaveDate = 667858448;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
diff --git a/plugins/MacVST/Infrasonic/Infrasonic.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Infrasonic/Infrasonic.xcodeproj/christopherjohnson.perspectivev3
index c2980ff69..bf4267eb6 100755
--- a/plugins/MacVST/Infrasonic/Infrasonic.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Infrasonic/Infrasonic.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 604 312 810 487 0 0 1440 878
+ 451 174 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 604 312 810 487 0 0 1440 878
+ 451 174 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 604 312 810 487 0 0 1440 878
+ 451 174 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8BEF60272564CFB700C3C67D
+ 8BDC9B4527CEB68900A07B67
1CA23ED40692098700951B8B
- 8BEF60282564CFB700C3C67D
+ 8BDC9B4627CEB68900A07B67
8B0237581D42B1C400E1E8C8
- 8BEF60292564CFB700C3C67D
+ 8BDC9B4727CEB68900A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 627363767.10812795
+ 667858569.05788696
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,11 +643,10 @@
5
WindowOrderList
- 8BEF602A2564CFB700C3C67D
- /Users/christopherjohnson/Desktop/Plugins/MacVST/Infrasonic/Infrasonic.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Infrasonic/Infrasonic.xcodeproj
WindowString
- 604 312 810 487 0 0 1440 878
+ 451 174 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Interstage/Interstage.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Interstage/Interstage.xcodeproj/christopherjohnson.pbxuser
index 9e616d4c1..57fbb68c9 100755
--- a/plugins/MacVST/Interstage/Interstage.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Interstage/Interstage.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* Interstage */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
breakpoints = (
);
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
@@ -51,8 +51,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 588023661;
- PBXWorkspaceStateSaveDate = 588023661;
+ PBXPerProjectTemplateStateSaveDate = 667858574;
+ PBXWorkspaceStateSaveDate = 667858574;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -104,7 +104,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* Interstage */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/Interstage/Interstage.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Interstage/Interstage.xcodeproj/christopherjohnson.perspectivev3
index d65aae828..c083465dc 100755
--- a/plugins/MacVST/Interstage/Interstage.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Interstage/Interstage.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B8DE8AB230C878F00AEB924
+ 8BDC9B5827CEB69700A07B67
1CA23ED40692098700951B8B
- 8B8DE8AC230C878F00AEB924
+ 8BDC9B5927CEB69700A07B67
8B0237581D42B1C400E1E8C8
- 8B8DE8AD230C878F00AEB924
+ 8BDC9B5A27CEB69700A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -646,7 +646,7 @@
StatusbarIsVisible
TimeStamp
- 588023695.79677296
+ 667858583.82953501
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -663,11 +663,10 @@
5
WindowOrderList
- 8B8DE8AE230C878F00AEB924
- /Users/christopherjohnson/Desktop/Plugins/MacVST/Interstage/Interstage.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Interstage/Interstage.xcodeproj
WindowString
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Interstage/Interstage.xcodeproj/project.pbxproj b/plugins/MacVST/Interstage/Interstage.xcodeproj/project.pbxproj
index 43ac5d99b..37a498372 100755
--- a/plugins/MacVST/Interstage/Interstage.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/Interstage/Interstage.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* Interstage */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "Interstage" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* Interstage */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/IronOxide5/IronOxide5.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/IronOxide5/IronOxide5.xcodeproj/christopherjohnson.pbxuser
index 3c067ed57..eb8f2cd06 100755
--- a/plugins/MacVST/IronOxide5/IronOxide5.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/IronOxide5/IronOxide5.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569769155;
- PBXWorkspaceStateSaveDate = 569769155;
+ PBXPerProjectTemplateStateSaveDate = 667858589;
+ PBXWorkspaceStateSaveDate = 667858589;
};
perUserProjectItems = {
- 8B793C0E21F5FCCD006E9731 /* PBXTextBookmark */ = 8B793C0E21F5FCCD006E9731 /* PBXTextBookmark */;
- 8B9D7B361F7FAC33007AB60F /* PBXTextBookmark */ = 8B9D7B361F7FAC33007AB60F /* PBXTextBookmark */;
+ 8BDC9B7527CEB69E00A07B67 /* PBXTextBookmark */ = 8BDC9B7527CEB69E00A07B67 /* PBXTextBookmark */;
+ 8BDC9B8627CEB70B00A07B67 /* PBXTextBookmark */ = 8BDC9B8627CEB70B00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -62,9 +62,9 @@
};
2407DEB6089929BA00EB68BF /* IronOxide5.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {670, 2353}}";
+ sepNavIntBoundsRect = "{{0, 0}, {858, 3294}}";
sepNavSelRange = "{5913, 24}";
- sepNavVisRange = "{5294, 1247}";
+ sepNavVisRange = "{5606, 951}";
sepNavWindowFrame = "{{274, 45}, {895, 831}}";
};
};
@@ -86,10 +86,10 @@
};
24D8286F09A914000093AEF8 /* IronOxide5Proc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {905, 11297}}";
- sepNavSelRange = "{15825, 1892}";
- sepNavVisRange = "{2137, 2504}";
- sepNavWindowFrame = "{{470, 39}, {952, 839}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1092, 14382}}";
+ sepNavSelRange = "{21685, 0}";
+ sepNavVisRange = "{20800, 1458}";
+ sepNavWindowFrame = "{{328, 4}, {952, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -106,25 +106,25 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B793C0E21F5FCCD006E9731 /* PBXTextBookmark */ = {
+ 8BDC9B7527CEB69E00A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2407DEB6089929BA00EB68BF /* IronOxide5.cpp */;
name = "IronOxide5.cpp: 155";
rLen = 24;
rLoc = 5913;
rType = 0;
- vrLen = 1247;
- vrLoc = 5294;
+ vrLen = 951;
+ vrLoc = 5606;
};
- 8B9D7B361F7FAC33007AB60F /* PBXTextBookmark */ = {
+ 8BDC9B8627CEB70B00A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2407DEB6089929BA00EB68BF /* IronOxide5.cpp */;
- name = "IronOxide5.cpp: 158";
+ name = "IronOxide5.cpp: 155";
rLen = 24;
rLoc = 5913;
rType = 0;
- vrLen = 1406;
- vrLoc = 5125;
+ vrLen = 951;
+ vrLoc = 5606;
};
8D01CCC60486CAD60068D4B7 /* IronOxide5 */ = {
activeExec = 0;
diff --git a/plugins/MacVST/IronOxide5/IronOxide5.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/IronOxide5/IronOxide5.xcodeproj/christopherjohnson.perspectivev3
index d0aaa3749..26d804c5c 100755
--- a/plugins/MacVST/IronOxide5/IronOxide5.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/IronOxide5/IronOxide5.xcodeproj/christopherjohnson.perspectivev3
@@ -225,8 +225,8 @@
PerspectiveWidths
- 810
- 810
+ 811
+ 811
Perspectives
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -306,7 +304,7 @@
PBXSmartGroupTreeModuleOutlineStateVisibleRectKey
- {{0, 0}, {185, 651}}
+ {{0, 0}, {185, 585}}
PBXTopSmartGroupGIDs
@@ -316,14 +314,14 @@
GeometryConfiguration
Frame
- {{0, 0}, {202, 669}}
+ {{0, 0}, {202, 603}}
GroupTreeTableConfiguration
MainColumn
185
RubberWindowFrame
- 564 142 811 710 0 0 1440 878
+ 421 54 811 644 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +349,10 @@
_historyCapacity
0
bookmark
- 8B793C0E21F5FCCD006E9731
+ 8BDC9B8627CEB70B00A07B67
history
- 8B9D7B361F7FAC33007AB60F
+ 8BDC9B7527CEB69E00A07B67
SplitCount
@@ -368,18 +366,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {604, 303}}
+ {{0, 0}, {604, 273}}
RubberWindowFrame
- 564 142 811 710 0 0 1440 878
+ 421 54 811 644 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 303pt
+ 273pt
Proportion
- 361pt
+ 325pt
Tabs
@@ -393,9 +391,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {604, 334}}
- RubberWindowFrame
- 564 142 811 710 0 0 1440 878
+ {{10, 27}, {604, 298}}
Module
XCDetailModule
@@ -449,7 +445,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 382}}
+ {{10, 27}, {604, 298}}
+ RubberWindowFrame
+ 421 54 811 644 0 0 1280 698
Module
PBXBuildResultsModule
@@ -477,11 +475,11 @@
TableOfContents
- 8B793C0F21F5FCCD006E9731
+ 8BDC9B8727CEB70B00A07B67
1CA23ED40692098700951B8B
- 8B793C1021F5FCCD006E9731
+ 8BDC9B8827CEB70B00A07B67
8B0237581D42B1C400E1E8C8
- 8B793C1121F5FCCD006E9731
+ 8BDC9B8927CEB70B00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +632,7 @@
StatusbarIsVisible
TimeStamp
- 569769165.367818
+ 667858699.18318498
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +649,11 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/IronOxide5/IronOxide5.xcodeproj
+ 8BDC9B8A27CEB70B00A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/IronOxide5/IronOxide5.xcodeproj
WindowString
- 564 142 811 710 0 0 1440 878
+ 421 54 811 644 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/IronOxide5/source/IronOxide5Proc.cpp b/plugins/MacVST/IronOxide5/source/IronOxide5Proc.cpp
index ebffe6e53..b51e9b7cf 100755
--- a/plugins/MacVST/IronOxide5/source/IronOxide5Proc.cpp
+++ b/plugins/MacVST/IronOxide5/source/IronOxide5Proc.cpp
@@ -76,7 +76,7 @@ void IronOxide5::processReplacing(float **inputs, float **outputs, VstInt32 samp
drySampleL = inputSampleL;
drySampleR = inputSampleR;
- flutterrandy = (double(fpd)/UINT32_MAX);
+ flutterrandy = (double(fpdL)/UINT32_MAX);
//part of flutter section
//now we've got a random flutter, so we're messing with the pitch before tape effects go on
if (fstoredcount < 0 || fstoredcount > 30) {fstoredcount = 30;}
@@ -347,7 +347,7 @@ void IronOxide5::processReplacing(float **inputs, float **outputs, VstInt32 samp
else inputSampleR = -bridgerectifierR;
//second stage of overdrive to prevent overs and allow bloody loud extremeness
- randy = (0.55 + tempRandy + ((double(fpd)/UINT32_MAX)*tempRandy))*noise; //0 to 2
+ randy = (0.55 + tempRandy + ((double(fpdR)/UINT32_MAX)*tempRandy))*noise; //0 to 2
inputSampleL *= (1.0 - randy);
inputSampleL += (prevInputSampleL*randy);
@@ -471,7 +471,7 @@ void IronOxide5::processDoubleReplacing(double **inputs, double **outputs, VstIn
drySampleL = inputSampleL;
drySampleR = inputSampleR;
- flutterrandy = (double(fpd)/UINT32_MAX);
+ flutterrandy = (double(fpdL)/UINT32_MAX);
//part of flutter section
//now we've got a random flutter, so we're messing with the pitch before tape effects go on
if (fstoredcount < 0 || fstoredcount > 30) {fstoredcount = 30;}
@@ -742,7 +742,7 @@ void IronOxide5::processDoubleReplacing(double **inputs, double **outputs, VstIn
else inputSampleR = -bridgerectifierR;
//second stage of overdrive to prevent overs and allow bloody loud extremeness
- randy = (0.55 + tempRandy + ((double(fpd)/UINT32_MAX)*tempRandy))*noise; //0 to 2
+ randy = (0.55 + tempRandy + ((double(fpdR)/UINT32_MAX)*tempRandy))*noise; //0 to 2
inputSampleL *= (1.0 - randy);
inputSampleL += (prevInputSampleL*randy);
diff --git a/plugins/MacVST/IronOxideClassic/IronOxideClassic.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/IronOxideClassic/IronOxideClassic.xcodeproj/christopherjohnson.pbxuser
index 45dee94f2..3cc979e52 100755
--- a/plugins/MacVST/IronOxideClassic/IronOxideClassic.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/IronOxideClassic/IronOxideClassic.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* IronOxideClassic */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569769189;
- PBXWorkspaceStateSaveDate = 569769189;
+ PBXPerProjectTemplateStateSaveDate = 667858704;
+ PBXWorkspaceStateSaveDate = 667858704;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* IronOxideClassic */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/IronOxideClassic/IronOxideClassic.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/IronOxideClassic/IronOxideClassic.xcodeproj/christopherjohnson.perspectivev3
index 2960170c5..bd26c5c5e 100755
--- a/plugins/MacVST/IronOxideClassic/IronOxideClassic.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/IronOxideClassic/IronOxideClassic.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 415 94 810 487 0 0 1440 878
+ 310 71 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 415 94 810 487 0 0 1440 878
+ 310 71 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -386,6 +386,8 @@
Frame
{{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 310 71 810 487 0 0 1280 698
Module
XCDetailModule
@@ -440,8 +442,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 415 94 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B793C3A21F5FF8A006E9731
+ 8BDC9B9B27CEB71600A07B67
1CA23ED40692098700951B8B
- 8B793C3B21F5FF8A006E9731
+ 8BDC9B9C27CEB71600A07B67
8B0237581D42B1C400E1E8C8
- 8B793C3C21F5FF8A006E9731
+ 8BDC9B9D27CEB71600A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 569769866.66388798
+ 667858710.60126805
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +643,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/IronOxideClassic/IronOxideClassic.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/IronOxideClassic/IronOxideClassic.xcodeproj
WindowString
- 415 94 810 487 0 0 1440 878
+ 310 71 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/IronOxideClassic/IronOxideClassic.xcodeproj/project.pbxproj b/plugins/MacVST/IronOxideClassic/IronOxideClassic.xcodeproj/project.pbxproj
index 80d9369bd..2863d6bfc 100755
--- a/plugins/MacVST/IronOxideClassic/IronOxideClassic.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/IronOxideClassic/IronOxideClassic.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* IronOxideClassic */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "IronOxideClassic" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* IronOxideClassic */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/IronOxideClassic2/IronOxideClassic2.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/IronOxideClassic2/IronOxideClassic2.xcodeproj/christopherjohnson.pbxuser
index e21c23d3a..5d81cceb3 100755
--- a/plugins/MacVST/IronOxideClassic2/IronOxideClassic2.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/IronOxideClassic2/IronOxideClassic2.xcodeproj/christopherjohnson.pbxuser
@@ -51,13 +51,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 660600703;
- PBXWorkspaceStateSaveDate = 660600703;
+ PBXPerProjectTemplateStateSaveDate = 667858715;
+ PBXWorkspaceStateSaveDate = 667858715;
};
perUserProjectItems = {
8B9E1E35275FF79E00AF4668 /* PBXTextBookmark */ = 8B9E1E35275FF79E00AF4668 /* PBXTextBookmark */;
8BA2406425FD854100C915DA /* PBXTextBookmark */ = 8BA2406425FD854100C915DA /* PBXTextBookmark */;
- 8BDC4C74268673F80000E649 /* PBXTextBookmark */ = 8BDC4C74268673F80000E649 /* PBXTextBookmark */;
+ 8BDC9BB827CEB72000A07B67 /* PBXTextBookmark */ = 8BDC9BB827CEB72000A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -89,7 +89,7 @@
};
24D8286F09A914000093AEF8 /* IronOxideClassic2Proc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {554, 15174}}";
+ sepNavIntBoundsRect = "{{0, 0}, {554, 15138}}";
sepNavSelRange = "{1239, 0}";
sepNavVisRange = "{0, 0}";
sepNavWindowFrame = "{{461, 47}, {895, 831}}";
@@ -129,7 +129,7 @@
vrLen = 183;
vrLoc = 0;
};
- 8BDC4C74268673F80000E649 /* PBXTextBookmark */ = {
+ 8BDC9BB827CEB72000A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* IronOxideClassic2Proc.cpp */;
name = "IronOxideClassic2Proc.cpp: 38";
diff --git a/plugins/MacVST/IronOxideClassic2/IronOxideClassic2.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/IronOxideClassic2/IronOxideClassic2.xcodeproj/christopherjohnson.perspectivev3
index ddd2a0eff..837a83936 100755
--- a/plugins/MacVST/IronOxideClassic2/IronOxideClassic2.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/IronOxideClassic2/IronOxideClassic2.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 567 266 810 487 0 0 1440 878
+ 423 152 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,11 +351,11 @@
_historyCapacity
0
bookmark
- 8B9E1E35275FF79E00AF4668
+ 8BDC9BB827CEB72000A07B67
history
8BA2406425FD854100C915DA
- 8BDC4C74268673F80000E649
+ 8B9E1E35275FF79E00AF4668
SplitCount
@@ -371,7 +371,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 567 266 810 487 0 0 1440 878
+ 423 152 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -396,7 +396,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 567 266 810 487 0 0 1440 878
+ 423 152 810 487 0 0 1280 698
Module
XCDetailModule
@@ -478,11 +478,11 @@
TableOfContents
- 8B9E1E36275FF79E00AF4668
+ 8BDC9BB927CEB72000A07B67
1CA23ED40692098700951B8B
- 8B9E1E37275FF79E00AF4668
+ 8BDC9BBA27CEB72000A07B67
8B0237581D42B1C400E1E8C8
- 8B9E1E38275FF79E00AF4668
+ 8BDC9BBB27CEB72000A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -655,7 +655,7 @@
StatusbarIsVisible
TimeStamp
- 660600734.40743101
+ 667858720.13987505
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -675,7 +675,7 @@
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/IronOxideClassic2/IronOxideClassic2.xcodeproj
WindowString
- 567 266 810 487 0 0 1440 878
+ 423 152 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Isolator/Isolator.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Isolator/Isolator.xcodeproj/christopherjohnson.pbxuser
index 8fe6307fc..83f6f456c 100755
--- a/plugins/MacVST/Isolator/Isolator.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Isolator/Isolator.xcodeproj/christopherjohnson.pbxuser
@@ -49,11 +49,11 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 626535084;
- PBXWorkspaceStateSaveDate = 626535084;
+ PBXPerProjectTemplateStateSaveDate = 667858754;
+ PBXWorkspaceStateSaveDate = 667858754;
};
perUserProjectItems = {
- 8BFAE34F25582CDB00D6AE26 /* PBXTextBookmark */ = 8BFAE34F25582CDB00D6AE26 /* PBXTextBookmark */;
+ 8BDC9BD627CEB74700A07B67 /* PBXTextBookmark */ = 8BDC9BD627CEB74700A07B67 /* PBXTextBookmark */;
8BFAE35025582CDB00D6AE26 /* PBXTextBookmark */ = 8BFAE35025582CDB00D6AE26 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
@@ -86,9 +86,9 @@
};
24D8286F09A914000093AEF8 /* IsolatorProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {554, 4608}}";
+ sepNavIntBoundsRect = "{{0, 0}, {777, 4626}}";
sepNavSelRange = "{9436, 0}";
- sepNavVisRange = "{980, 187}";
+ sepNavVisRange = "{982, 185}";
sepNavWindowFrame = "{{42, 58}, {976, 820}}";
};
};
@@ -106,15 +106,15 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8BFAE34F25582CDB00D6AE26 /* PBXTextBookmark */ = {
+ 8BDC9BD627CEB74700A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* IsolatorProc.cpp */;
- name = "IsolatorProc.cpp: 215";
+ name = "IsolatorProc.cpp: 231";
rLen = 0;
rLoc = 9436;
rType = 0;
- vrLen = 184;
- vrLoc = 930;
+ vrLen = 185;
+ vrLoc = 982;
};
8BFAE35025582CDB00D6AE26 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
diff --git a/plugins/MacVST/Isolator/Isolator.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Isolator/Isolator.xcodeproj/christopherjohnson.perspectivev3
index 8b46330d2..3fed926fe 100755
--- a/plugins/MacVST/Isolator/Isolator.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Isolator/Isolator.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8BFAE35025582CDB00D6AE26
+ 8BDC9BD627CEB74700A07B67
history
- 8BFAE34F25582CDB00D6AE26
+ 8BFAE35025582CDB00D6AE26
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 132}}
+ {{0, 0}, {603, 117}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 132pt
+ 117pt
Proportion
- 309pt
+ 324pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 297}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8BFAE35125582CDB00D6AE26
+ 8BDC9BD727CEB74700A07B67
1CA23ED40692098700951B8B
- 8BFAE35225582CDB00D6AE26
+ 8BDC9BD827CEB74700A07B67
8B0237581D42B1C400E1E8C8
- 8BFAE35325582CDB00D6AE26
+ 8BDC9BD927CEB74700A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 626535643.51310098
+ 667858759.60318995
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +651,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/Plugins/MacVST/Isolator/Isolator.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Isolator/Isolator.xcodeproj
WindowString
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Isolator2/Isolator2.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Isolator2/Isolator2.xcodeproj/christopherjohnson.pbxuser
index 64faa7905..a1f79157b 100644
--- a/plugins/MacVST/Isolator2/Isolator2.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Isolator2/Isolator2.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* Isolator2 */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 667176928;
- PBXWorkspaceStateSaveDate = 667176928;
+ PBXPerProjectTemplateStateSaveDate = 667858763;
+ PBXWorkspaceStateSaveDate = 667858763;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* Isolator2 */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/Isolator2/Isolator2.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Isolator2/Isolator2.xcodeproj/christopherjohnson.perspectivev3
index ec12bd0c4..6a485cc42 100644
--- a/plugins/MacVST/Isolator2/Isolator2.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Isolator2/Isolator2.xcodeproj/christopherjohnson.perspectivev3
@@ -256,6 +256,8 @@
Layout
+ BecomeActive
+
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -321,7 +323,7 @@
185
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -360,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -384,6 +386,8 @@
Frame
{{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 25 199 810 487 0 0 1280 698
Module
XCDetailModule
@@ -438,8 +442,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 34 365 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -467,11 +469,11 @@
TableOfContents
- 8B4AFBE427C459AB00664C18
+ 8BDC9BF427CEB75500A07B67
1CA23ED40692098700951B8B
- 8B4AFBE527C459AB00664C18
+ 8BDC9BF527CEB75500A07B67
8B0237581D42B1C400E1E8C8
- 8B4AFBE627C459AB00664C18
+ 8BDC9BF627CEB75500A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -624,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 667179435.75699401
+ 667858773.05808198
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -641,10 +643,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/Isolator2/Isolator2.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Isolator2/Isolator2.xcodeproj
WindowString
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Isolator2/Isolator2.xcodeproj/project.pbxproj b/plugins/MacVST/Isolator2/Isolator2.xcodeproj/project.pbxproj
index 475cbd2f8..73edf8f84 100755
--- a/plugins/MacVST/Isolator2/Isolator2.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/Isolator2/Isolator2.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* Isolator2 */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "Isolator2" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* Isolator2 */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/LRFlipTimer/LRFlipTimer.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/LRFlipTimer/LRFlipTimer.xcodeproj/christopherjohnson.pbxuser
index c17dfea41..f39790cf6 100755
--- a/plugins/MacVST/LRFlipTimer/LRFlipTimer.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/LRFlipTimer/LRFlipTimer.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* LRFlipTimer */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 633656782;
- PBXWorkspaceStateSaveDate = 633656782;
+ PBXPerProjectTemplateStateSaveDate = 667858945;
+ PBXWorkspaceStateSaveDate = 667858945;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* LRFlipTimer */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/LRFlipTimer/LRFlipTimer.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/LRFlipTimer/LRFlipTimer.xcodeproj/christopherjohnson.perspectivev3
index 68a403300..d0bb9fb6c 100755
--- a/plugins/MacVST/LRFlipTimer/LRFlipTimer.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/LRFlipTimer/LRFlipTimer.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 22 339 810 487 0 0 1440 878
+ 16 186 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 22 339 810 487 0 0 1440 878
+ 16 186 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 22 339 810 487 0 0 1440 878
+ 16 186 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B0A953A25C4D8E900119366
+ 8BDC9CB227CEB80500A07B67
1CA23ED40692098700951B8B
- 8B0A953B25C4D8E900119366
+ 8BDC9CB327CEB80500A07B67
8B0237581D42B1C400E1E8C8
- 8B0A953C25C4D8E900119366
+ 8BDC9CB427CEB80500A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 633657577.59549797
+ 667858949.13237405
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,11 +643,10 @@
5
WindowOrderList
- 8B0A953D25C4D8E900119366
- /Users/christopherjohnson/Desktop/LRFlipTimer/LRFlipTimer.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/LRFlipTimer/LRFlipTimer.xcodeproj
WindowString
- 22 339 810 487 0 0 1440 878
+ 16 186 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/LRFlipTimer/LRFlipTimer.xcodeproj/project.pbxproj b/plugins/MacVST/LRFlipTimer/LRFlipTimer.xcodeproj/project.pbxproj
index 124c68e58..868037c03 100755
--- a/plugins/MacVST/LRFlipTimer/LRFlipTimer.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/LRFlipTimer/LRFlipTimer.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* LRFlipTimer */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "LRFlipTimer" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* LRFlipTimer */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/LeftoMono/LeftoMono.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/LeftoMono/LeftoMono.xcodeproj/christopherjohnson.pbxuser
index bf1955c9c..e86c62dd6 100755
--- a/plugins/MacVST/LeftoMono/LeftoMono.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/LeftoMono/LeftoMono.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 593260779;
- PBXWorkspaceStateSaveDate = 593260779;
+ PBXPerProjectTemplateStateSaveDate = 667858778;
+ PBXWorkspaceStateSaveDate = 667858778;
};
perUserProjectItems = {
- 8B3573EF235C729300CD33C1 /* PBXBookmark */ = 8B3573EF235C729300CD33C1 /* PBXBookmark */;
8B3573F0235C729300CD33C1 /* PBXTextBookmark */ = 8B3573F0235C729300CD33C1 /* PBXTextBookmark */;
+ 8BDC9C1127CEB76000A07B67 /* PBXTextBookmark */ = 8BDC9C1127CEB76000A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -70,9 +70,9 @@
};
245463B80991757100464AD3 /* LeftoMono.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {554, 897}}";
+ sepNavIntBoundsRect = "{{0, 0}, {561, 1080}}";
sepNavSelRange = "{0, 0}";
- sepNavVisRange = "{0, 259}";
+ sepNavVisRange = "{0, 214}";
sepNavWindowFrame = "{{215, 57}, {895, 821}}";
};
};
@@ -106,10 +106,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B3573EF235C729300CD33C1 /* PBXBookmark */ = {
- isa = PBXBookmark;
- fRef = 245463B80991757100464AD3 /* LeftoMono.h */;
- };
8B3573F0235C729300CD33C1 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 245463B80991757100464AD3 /* LeftoMono.h */;
@@ -120,6 +116,16 @@
vrLen = 259;
vrLoc = 0;
};
+ 8BDC9C1127CEB76000A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 245463B80991757100464AD3 /* LeftoMono.h */;
+ name = "LeftoMono.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 214;
+ vrLoc = 0;
+ };
8D01CCC60486CAD60068D4B7 /* LeftoMono */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/LeftoMono/LeftoMono.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/LeftoMono/LeftoMono.xcodeproj/christopherjohnson.perspectivev3
index 091c7605d..3d621f3d6 100755
--- a/plugins/MacVST/LeftoMono/LeftoMono.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/LeftoMono/LeftoMono.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B3573F0235C729300CD33C1
+ 8BDC9C1127CEB76000A07B67
history
- 8B3573EF235C729300CD33C1
+ 8B3573F0235C729300CD33C1
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 132}}
+ {{0, 0}, {603, 117}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 132pt
+ 117pt
Proportion
- 309pt
+ 324pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 297}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B3573F1235C729300CD33C1
+ 8BDC9C1227CEB76000A07B67
1CA23ED40692098700951B8B
- 8B3573F2235C729300CD33C1
+ 8BDC9C1327CEB76000A07B67
8B0237581D42B1C400E1E8C8
- 8B3573F3235C729300CD33C1
+ 8BDC9C1427CEB76000A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 593261203.87727499
+ 667858784.09558105
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +651,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/LeftoMono/LeftoMono.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/LeftoMono/LeftoMono.xcodeproj
WindowString
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Logical4/Logical4.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Logical4/Logical4.xcodeproj/christopherjohnson.pbxuser
index 12e473a5d..50dcc1882 100755
--- a/plugins/MacVST/Logical4/Logical4.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Logical4/Logical4.xcodeproj/christopherjohnson.pbxuser
@@ -51,12 +51,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569769890;
- PBXWorkspaceStateSaveDate = 569769890;
+ PBXPerProjectTemplateStateSaveDate = 667858789;
+ PBXWorkspaceStateSaveDate = 667858789;
};
perUserProjectItems = {
8B793C5C21F60027006E9731 /* PBXTextBookmark */ = 8B793C5C21F60027006E9731 /* PBXTextBookmark */;
- 8B9D7B751F7FACB8007AB60F /* PBXTextBookmark */ = 8B9D7B751F7FACB8007AB60F /* PBXTextBookmark */;
+ 8BDC9C4427CEB7DD00A07B67 /* PBXTextBookmark */ = 8BDC9C4427CEB7DD00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -72,15 +72,15 @@
};
245463B80991757100464AD3 /* Logical4.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {866, 2002}}";
- sepNavSelRange = "{4021, 0}";
- sepNavVisRange = "{3285, 841}";
- sepNavWindowFrame = "{{20, 47}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1002, 3402}}";
+ sepNavSelRange = "{3997, 0}";
+ sepNavVisRange = "{3720, 400}";
+ sepNavWindowFrame = "{{20, 4}, {895, 694}}";
};
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {747, 19877}}";
+ sepNavIntBoundsRect = "{{0, 0}, {957, 27522}}";
sepNavSelRange = "{10616, 0}";
sepNavVisRange = "{0, 0}";
sepNavWindowFrame = "{{15, 42}, {895, 831}}";
@@ -88,10 +88,10 @@
};
24D8286F09A914000093AEF8 /* Logical4Proc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {950, 23504}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1326, 30546}}";
sepNavSelRange = "{36787, 1892}";
- sepNavVisRange = "{9422, 1935}";
- sepNavWindowFrame = "{{446, 47}, {895, 831}}";
+ sepNavVisRange = "{31710, 866}";
+ sepNavWindowFrame = "{{385, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -118,7 +118,7 @@
vrLen = 0;
vrLoc = 0;
};
- 8B9D7B751F7FACB8007AB60F /* PBXTextBookmark */ = {
+ 8BDC9C4427CEB7DD00A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
name = "audioeffectx.cpp: 307";
diff --git a/plugins/MacVST/Logical4/Logical4.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Logical4/Logical4.xcodeproj/christopherjohnson.perspectivev3
index 4d9ff5b9c..de0c49975 100755
--- a/plugins/MacVST/Logical4/Logical4.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Logical4/Logical4.xcodeproj/christopherjohnson.perspectivev3
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -300,7 +298,7 @@
PBXSmartGroupTreeModuleOutlineStateSelectionKey
- 6
+ 7
4
0
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 307 326 810 487 0 0 1440 878
+ 229 180 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +349,10 @@
_historyCapacity
0
bookmark
- 8B793C5C21F60027006E9731
+ 8BDC9C4427CEB7DD00A07B67
history
- 8B9D7B751F7FACB8007AB60F
+ 8B793C5C21F60027006E9731
SplitCount
@@ -370,7 +368,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 307 326 810 487 0 0 1440 878
+ 229 180 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -449,7 +447,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 307 326 810 487 0 0 1440 878
+ 229 180 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -477,11 +475,11 @@
TableOfContents
- 8B793C5D21F60027006E9731
+ 8BDC9C4527CEB7DD00A07B67
1CA23ED40692098700951B8B
- 8B793C5E21F60027006E9731
+ 8BDC9C4627CEB7DD00A07B67
8B0237581D42B1C400E1E8C8
- 8B793C5F21F60027006E9731
+ 8BDC9C4727CEB7DD00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -654,7 +652,7 @@
StatusbarIsVisible
TimeStamp
- 569770023.37923205
+ 667858909.55331504
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -671,10 +669,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/Logical4/Logical4.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Logical4/Logical4.xcodeproj
WindowString
- 307 326 810 487 0 0 1440 878
+ 229 180 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Logical4/source/Logical4.h b/plugins/MacVST/Logical4/source/Logical4.h
index fd802c812..f1389f452 100755
--- a/plugins/MacVST/Logical4/source/Logical4.h
+++ b/plugins/MacVST/Logical4/source/Logical4.h
@@ -143,10 +143,10 @@ private:
int gcount;
- double fpNShapeL;
- double fpNShapeR;
bool fpFlip;
//default stuff
+ uint32_t fpdL;
+ uint32_t fpdR;
float A;
float B;
diff --git a/plugins/MacVST/Loud/Loud.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Loud/Loud.xcodeproj/christopherjohnson.pbxuser
index 6d23f0c56..cc80454e6 100755
--- a/plugins/MacVST/Loud/Loud.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Loud/Loud.xcodeproj/christopherjohnson.pbxuser
@@ -49,13 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 626624244;
- PBXWorkspaceStateSaveDate = 626624244;
+ PBXPerProjectTemplateStateSaveDate = 667858916;
+ PBXWorkspaceStateSaveDate = 667858916;
};
perUserProjectItems = {
8B5B01A5255987490021E83B /* PBXTextBookmark */ = 8B5B01A5255987490021E83B /* PBXTextBookmark */;
- 8B5B01A6255987490021E83B /* PBXBookmark */ = 8B5B01A6255987490021E83B /* PBXBookmark */;
8B5B01A7255987490021E83B /* PBXTextBookmark */ = 8B5B01A7255987490021E83B /* PBXTextBookmark */;
+ 8BDC9C5827CEB7E800A07B67 /* PBXTextBookmark */ = 8BDC9C5827CEB7E800A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -73,7 +73,7 @@
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {680, 1278}}";
sepNavSelRange = "{0, 0}";
- sepNavVisRange = "{0, 205}";
+ sepNavVisRange = "{0, 204}";
sepNavWindowFrame = "{{20, 47}, {895, 831}}";
};
};
@@ -117,10 +117,6 @@
vrLen = 206;
vrLoc = 107;
};
- 8B5B01A6255987490021E83B /* PBXBookmark */ = {
- isa = PBXBookmark;
- fRef = 245463B80991757100464AD3 /* Loud.h */;
- };
8B5B01A7255987490021E83B /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 245463B80991757100464AD3 /* Loud.h */;
@@ -131,6 +127,16 @@
vrLen = 205;
vrLoc = 0;
};
+ 8BDC9C5827CEB7E800A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 245463B80991757100464AD3 /* Loud.h */;
+ name = "Loud.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 204;
+ vrLoc = 0;
+ };
8D01CCC60486CAD60068D4B7 /* Loud */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/Loud/Loud.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Loud/Loud.xcodeproj/christopherjohnson.perspectivev3
index e7f461cff..55ec96cda 100755
--- a/plugins/MacVST/Loud/Loud.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Loud/Loud.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 75 226 936 504 0 0 1440 878
+ 51 128 936 504 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,11 +351,11 @@
_historyCapacity
0
bookmark
- 8B5B01A7255987490021E83B
+ 8BDC9C5827CEB7E800A07B67
history
8B5B01A5255987490021E83B
- 8B5B01A6255987490021E83B
+ 8B5B01A7255987490021E83B
SplitCount
@@ -369,18 +369,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {729, 137}}
+ {{0, 0}, {729, 122}}
RubberWindowFrame
- 75 226 936 504 0 0 1440 878
+ 51 128 936 504 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 137pt
+ 122pt
Proportion
- 321pt
+ 336pt
Tabs
@@ -394,9 +394,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {729, 294}}
+ {{10, 27}, {729, 309}}
RubberWindowFrame
- 75 226 936 504 0 0 1440 878
+ 51 128 936 504 0 0 1280 698
Module
XCDetailModule
@@ -478,11 +478,11 @@
TableOfContents
- 8B5B01A8255987490021E83B
+ 8BDC9C5927CEB7E800A07B67
1CA23ED40692098700951B8B
- 8B5B01A9255987490021E83B
+ 8BDC9C5A27CEB7E800A07B67
8B0237581D42B1C400E1E8C8
- 8B5B01AA255987490021E83B
+ 8BDC9C5B27CEB7E800A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -635,7 +635,7 @@
StatusbarIsVisible
TimeStamp
- 626624329.02790701
+ 667858920.82239199
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -652,11 +652,10 @@
5
WindowOrderList
- 8B5B01AB255987490021E83B
- /Users/christopherjohnson/Desktop/Plugins/MacVST/Loud/Loud.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Loud/Loud.xcodeproj
WindowString
- 75 226 936 504 0 0 1440 878
+ 51 128 936 504 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Lowpass/Lowpass.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Lowpass/Lowpass.xcodeproj/christopherjohnson.pbxuser
index 8c9ad7056..3c12d341e 100755
--- a/plugins/MacVST/Lowpass/Lowpass.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Lowpass/Lowpass.xcodeproj/christopherjohnson.pbxuser
@@ -49,14 +49,14 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569770101;
- PBXWorkspaceStateSaveDate = 569770101;
+ PBXPerProjectTemplateStateSaveDate = 667858926;
+ PBXWorkspaceStateSaveDate = 667858926;
};
perUserProjectItems = {
8B22B1231DB18F4A0075D7AA /* PBXTextBookmark */ = 8B22B1231DB18F4A0075D7AA /* PBXTextBookmark */;
8B22B1531DB190EA0075D7AA /* PBXTextBookmark */ = 8B22B1531DB190EA0075D7AA /* PBXTextBookmark */;
- 8B793C9021F6007F006E9731 /* PBXTextBookmark */ = 8B793C9021F6007F006E9731 /* PBXTextBookmark */;
8B793C9521F600A2006E9731 /* PBXTextBookmark */ = 8B793C9521F600A2006E9731 /* PBXTextBookmark */;
+ 8BDC9C7627CEB7F200A07B67 /* PBXTextBookmark */ = 8BDC9C7627CEB7F200A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -72,9 +72,9 @@
};
245463B80991757100464AD3 /* Lowpass.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {866, 767}}";
- sepNavSelRange = "{2605, 0}";
- sepNavVisRange = "{2427, 182}";
+ sepNavIntBoundsRect = "{{0, 0}, {1047, 1332}}";
+ sepNavSelRange = "{2601, 0}";
+ sepNavVisRange = "{2419, 115}";
sepNavWindowFrame = "{{61, 47}, {895, 831}}";
};
};
@@ -128,26 +128,26 @@
vrLen = 707;
vrLoc = 10342;
};
- 8B793C9021F6007F006E9731 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 245463B80991757100464AD3 /* Lowpass.h */;
- name = "Lowpass.h: 67";
- rLen = 43;
- rLoc = 2574;
- rType = 0;
- vrLen = 194;
- vrLoc = 2398;
- };
8B793C9521F600A2006E9731 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 245463B80991757100464AD3 /* Lowpass.h */;
name = "Lowpass.h: 68";
rLen = 0;
- rLoc = 2605;
+ rLoc = 2601;
rType = 0;
- vrLen = 182;
+ vrLen = 174;
vrLoc = 2427;
};
+ 8BDC9C7627CEB7F200A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 245463B80991757100464AD3 /* Lowpass.h */;
+ name = "Lowpass.h: 72";
+ rLen = 0;
+ rLoc = 2601;
+ rType = 0;
+ vrLen = 115;
+ vrLoc = 2419;
+ };
8D01CCC60486CAD60068D4B7 /* Lowpass */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/Lowpass/Lowpass.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Lowpass/Lowpass.xcodeproj/christopherjohnson.perspectivev3
index bb86e03e0..d0738d47b 100755
--- a/plugins/MacVST/Lowpass/Lowpass.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Lowpass/Lowpass.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 355 287 810 487 0 0 1440 878
+ 265 162 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,12 +351,12 @@
_historyCapacity
0
bookmark
- 8B793C9521F600A2006E9731
+ 8BDC9C7627CEB7F200A07B67
history
8B22B1231DB18F4A0075D7AA
8B22B1531DB190EA0075D7AA
- 8B793C9021F6007F006E9731
+ 8B793C9521F600A2006E9731
SplitCount
@@ -370,18 +370,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 182}}
+ {{0, 0}, {603, 170}}
RubberWindowFrame
- 355 287 810 487 0 0 1440 878
+ 265 162 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 182pt
+ 170pt
Proportion
- 259pt
+ 271pt
Tabs
@@ -395,7 +395,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 232}}
+ {{10, 27}, {603, 244}}
+ RubberWindowFrame
+ 265 162 810 487 0 0 1280 698
Module
XCDetailModule
@@ -450,8 +452,6 @@
Frame
{{10, 27}, {603, 232}}
- RubberWindowFrame
- 355 287 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -479,11 +479,11 @@
TableOfContents
- 8B793C9621F600A2006E9731
+ 8BDC9C7727CEB7F200A07B67
1CA23ED40692098700951B8B
- 8B793C9721F600A2006E9731
+ 8BDC9C7827CEB7F200A07B67
8B0237581D42B1C400E1E8C8
- 8B793C9821F600A2006E9731
+ 8BDC9C7927CEB7F200A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -636,7 +636,7 @@
StatusbarIsVisible
TimeStamp
- 569770146.430691
+ 667858930.14328897
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -653,11 +653,10 @@
5
WindowOrderList
- 8B793C9921F600A2006E9731
- /Users/christopherjohnson/Desktop/MacVST/Lowpass/Lowpass.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Lowpass/Lowpass.xcodeproj
WindowString
- 355 287 810 487 0 0 1440 878
+ 265 162 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Lowpass2/Lowpass2.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Lowpass2/Lowpass2.xcodeproj/christopherjohnson.pbxuser
index 036e4f736..11e5f9b7f 100755
--- a/plugins/MacVST/Lowpass2/Lowpass2.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Lowpass2/Lowpass2.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 575132339;
- PBXWorkspaceStateSaveDate = 575132339;
+ PBXPerProjectTemplateStateSaveDate = 667858935;
+ PBXWorkspaceStateSaveDate = 667858935;
};
perUserProjectItems = {
- 8B6111FC2247D5FB001915CF /* PBXTextBookmark */ = 8B6111FC2247D5FB001915CF /* PBXTextBookmark */;
8B6111FD2247D5FB001915CF /* PBXTextBookmark */ = 8B6111FD2247D5FB001915CF /* PBXTextBookmark */;
+ 8BDC9C9427CEB7FB00A07B67 /* PBXTextBookmark */ = 8BDC9C9427CEB7FB00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -86,9 +86,9 @@
};
24D8286F09A914000093AEF8 /* Lowpass2Proc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {817, 4589}}";
- sepNavSelRange = "{13615, 0}";
- sepNavVisRange = "{14125, 49}";
+ sepNavIntBoundsRect = "{{0, 0}, {849, 5184}}";
+ sepNavSelRange = "{11800, 0}";
+ sepNavVisRange = "{11792, 8}";
sepNavWindowFrame = "{{558, 47}, {895, 831}}";
};
};
@@ -106,25 +106,25 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B6111FC2247D5FB001915CF /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* Lowpass2Proc.cpp */;
- name = "Lowpass2Proc.cpp: 332";
- rLen = 0;
- rLoc = 13615;
- rType = 0;
- vrLen = 49;
- vrLoc = 14125;
- };
8B6111FD2247D5FB001915CF /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* Lowpass2Proc.cpp */;
name = "Lowpass2Proc.cpp: 332";
rLen = 0;
- rLoc = 13615;
+ rLoc = 11800;
rType = 0;
- vrLen = 49;
- vrLoc = 14125;
+ vrLen = 0;
+ vrLoc = 11800;
+ };
+ 8BDC9C9427CEB7FB00A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* Lowpass2Proc.cpp */;
+ name = "Lowpass2Proc.cpp: 282";
+ rLen = 0;
+ rLoc = 11800;
+ rType = 0;
+ vrLen = 8;
+ vrLoc = 11792;
};
8D01CCC60486CAD60068D4B7 /* Lowpass2 */ = {
activeExec = 0;
diff --git a/plugins/MacVST/Lowpass2/Lowpass2.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Lowpass2/Lowpass2.xcodeproj/christopherjohnson.perspectivev3
index 02a68ca3b..e5bb4ff1f 100755
--- a/plugins/MacVST/Lowpass2/Lowpass2.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Lowpass2/Lowpass2.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 630 348 810 487 0 0 1440 878
+ 470 191 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B6111FD2247D5FB001915CF
+ 8BDC9C9427CEB7FB00A07B67
history
- 8B6111FC2247D5FB001915CF
+ 8B6111FD2247D5FB001915CF
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 102}}
+ {{0, 0}, {603, 86}}
RubberWindowFrame
- 630 348 810 487 0 0 1440 878
+ 470 191 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 102pt
+ 86pt
Proportion
- 339pt
+ 355pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 312}}
+ {{10, 27}, {603, 328}}
RubberWindowFrame
- 630 348 810 487 0 0 1440 878
+ 470 191 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B6111FE2247D5FB001915CF
+ 8BDC9C9527CEB7FB00A07B67
1CA23ED40692098700951B8B
- 8B6111FF2247D5FB001915CF
+ 8BDC9C9627CEB7FB00A07B67
8B0237581D42B1C400E1E8C8
- 8B6112002247D5FB001915CF
+ 8BDC9C9727CEB7FB00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 575133179.24867201
+ 667858939.81046402
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,11 +651,10 @@
5
WindowOrderList
- 8B6112012247D5FB001915CF
- /Users/christopherjohnson/Desktop/Lowpass2/Lowpass2.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Lowpass2/Lowpass2.xcodeproj
WindowString
- 630 348 810 487 0 0 1440 878
+ 470 191 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Luxor/Luxor.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Luxor/Luxor.xcodeproj/christopherjohnson.pbxuser
index 5ca0099a5..593321b76 100755
--- a/plugins/MacVST/Luxor/Luxor.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Luxor/Luxor.xcodeproj/christopherjohnson.pbxuser
@@ -49,8 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 604017846;
- PBXWorkspaceStateSaveDate = 604017846;
+ PBXPerProjectTemplateStateSaveDate = 667859097;
+ PBXWorkspaceStateSaveDate = 667859097;
+ };
+ perUserProjectItems = {
+ 8BDC9CDD27CEB82D00A07B67 /* PBXTextBookmark */ = 8BDC9CDD27CEB82D00A07B67 /* PBXTextBookmark */;
+ 8BDC9CF227CEB89C00A07B67 /* PBXTextBookmark */ = 8BDC9CF227CEB89C00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -82,10 +86,10 @@
};
24D8286F09A914000093AEF8 /* LuxorProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1048, 6682}}";
- sepNavSelRange = "{21312, 0}";
- sepNavVisRange = "{19670, 2203}";
- sepNavWindowFrame = "{{184, 57}, {895, 821}}";
+ sepNavIntBoundsRect = "{{0, 0}, {966, 6768}}";
+ sepNavSelRange = "{10156, 0}";
+ sepNavVisRange = "{10094, 213}";
+ sepNavWindowFrame = "{{184, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -102,6 +106,26 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
+ 8BDC9CDD27CEB82D00A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* LuxorProc.cpp */;
+ name = "LuxorProc.cpp: 163";
+ rLen = 0;
+ rLoc = 10156;
+ rType = 0;
+ vrLen = 220;
+ vrLoc = 10090;
+ };
+ 8BDC9CF227CEB89C00A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* LuxorProc.cpp */;
+ name = "LuxorProc.cpp: 163";
+ rLen = 0;
+ rLoc = 10156;
+ rType = 0;
+ vrLen = 213;
+ vrLoc = 10094;
+ };
8D01CCC60486CAD60068D4B7 /* Luxor */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/Luxor/Luxor.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Luxor/Luxor.xcodeproj/christopherjohnson.perspectivev3
index beaf49c9c..d87475a92 100755
--- a/plugins/MacVST/Luxor/Luxor.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Luxor/Luxor.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 270 197 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -339,7 +339,7 @@
PBXProjectModuleGUID
8B0237581D42B1C400E1E8C8
PBXProjectModuleLabel
- Gain.h
+ LuxorProc.cpp
PBXSplitModuleInNavigatorKey
Split0
@@ -347,7 +347,15 @@
PBXProjectModuleGUID
8B0237591D42B1C400E1E8C8
PBXProjectModuleLabel
- Gain.h
+ LuxorProc.cpp
+ _historyCapacity
+ 0
+ bookmark
+ 8BDC9CF227CEB89C00A07B67
+ history
+
+ 8BDC9CDD27CEB82D00A07B67
+
SplitCount
1
@@ -360,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 0}}
+ {{0, 0}, {603, 117}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 270 197 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 0pt
+ 117pt
Proportion
- 441pt
+ 324pt
Tabs
@@ -385,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 414}}
+ {{10, 27}, {603, 297}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 270 197 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +477,11 @@
TableOfContents
- 8B88B714240098380032C1CD
+ 8BDC9CF327CEB89C00A07B67
1CA23ED40692098700951B8B
- 8B88B715240098380032C1CD
+ 8BDC9CF427CEB89C00A07B67
8B0237581D42B1C400E1E8C8
- 8B88B716240098380032C1CD
+ 8BDC9CF527CEB89C00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 604018744.73036206
+ 667859100.03101099
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +651,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/Luxor/Luxor.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Luxor/Luxor.xcodeproj
WindowString
- 34 365 810 487 0 0 1440 878
+ 270 197 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Luxor/source/LuxorProc.cpp b/plugins/MacVST/Luxor/source/LuxorProc.cpp
index 2dfb60013..2ea8a55c1 100755
--- a/plugins/MacVST/Luxor/source/LuxorProc.cpp
+++ b/plugins/MacVST/Luxor/source/LuxorProc.cpp
@@ -160,11 +160,11 @@ void Luxor::processReplacing(float **inputs, float **outputs, VstInt32 sampleFra
}
//otherwise we leave it untouched by the overdrive stuff
- randy = ((double(fpd)/UINT32_MAX)*0.031);
+ randy = ((double(fpdL)/UINT32_MAX)*0.031);
inputSampleL = ((inputSampleL*(1-randy))+(lastSampleL*randy)) * outlevel;
lastSampleL = inputSampleL;
- randy = ((double(fpd)/UINT32_MAX)*0.031);
+ randy = ((double(fpdR)/UINT32_MAX)*0.031);
inputSampleR = ((inputSampleR*(1-randy))+(lastSampleR*randy)) * outlevel;
lastSampleR = inputSampleR;
@@ -341,11 +341,11 @@ void Luxor::processDoubleReplacing(double **inputs, double **outputs, VstInt32 s
}
//otherwise we leave it untouched by the overdrive stuff
- randy = ((double(fpd)/UINT32_MAX)*0.031);
+ randy = ((double(fpdL)/UINT32_MAX)*0.031);
inputSampleL = ((inputSampleL*(1-randy))+(lastSampleL*randy)) * outlevel;
lastSampleL = inputSampleL;
- randy = ((double(fpd)/UINT32_MAX)*0.031);
+ randy = ((double(fpdR)/UINT32_MAX)*0.031);
inputSampleR = ((inputSampleR*(1-randy))+(lastSampleR*randy)) * outlevel;
lastSampleR = inputSampleR;
diff --git a/plugins/MacVST/MV/MV.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/MV/MV.xcodeproj/christopherjohnson.pbxuser
index 691e495e3..38a9cafc3 100755
--- a/plugins/MacVST/MV/MV.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/MV/MV.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 572653893;
- PBXWorkspaceStateSaveDate = 572653893;
+ PBXPerProjectTemplateStateSaveDate = 667859834;
+ PBXWorkspaceStateSaveDate = 667859834;
};
perUserProjectItems = {
- 8B6F22A5221C30B80084A947 /* PBXTextBookmark */ = 8B6F22A5221C30B80084A947 /* PBXTextBookmark */;
8BB51F772222014B000C92BC /* PBXTextBookmark */ = 8BB51F772222014B000C92BC /* PBXTextBookmark */;
+ 8BDC9E8227CEBB9300A07B67 /* PBXTextBookmark */ = 8BDC9E8227CEBB9300A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -86,10 +86,10 @@
};
24D8286F09A914000093AEF8 /* MVProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {600, 20800}}";
+ sepNavIntBoundsRect = "{{0, 0}, {768, 27360}}";
sepNavSelRange = "{24855, 0}";
- sepNavVisRange = "{3295, 148}";
- sepNavWindowFrame = "{{0, 47}, {895, 831}}";
+ sepNavVisRange = "{3354, 111}";
+ sepNavWindowFrame = "{{0, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -106,16 +106,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B6F22A5221C30B80084A947 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* MVProc.cpp */;
- name = "MVProc.cpp: 871";
- rLen = 0;
- rLoc = 24855;
- rType = 0;
- vrLen = 154;
- vrLoc = 3289;
- };
8BB51F772222014B000C92BC /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* MVProc.cpp */;
@@ -126,6 +116,16 @@
vrLen = 148;
vrLoc = 3295;
};
+ 8BDC9E8227CEBB9300A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* MVProc.cpp */;
+ name = "MVProc.cpp: 892";
+ rLen = 0;
+ rLoc = 24855;
+ rType = 0;
+ vrLen = 111;
+ vrLoc = 3354;
+ };
8D01CCC60486CAD60068D4B7 /* MV */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/MV/MV.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/MV/MV.xcodeproj/christopherjohnson.perspectivev3
index 1cc4489ea..e08147c7d 100755
--- a/plugins/MacVST/MV/MV.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/MV/MV.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 27 348 810 487 0 0 1440 878
+ 239 195 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8BB51F772222014B000C92BC
+ 8BDC9E8227CEBB9300A07B67
history
- 8B6F22A5221C30B80084A947
+ 8BB51F772222014B000C92BC
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 117}}
+ {{0, 0}, {603, 102}}
RubberWindowFrame
- 27 348 810 487 0 0 1440 878
+ 239 195 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 117pt
+ 102pt
Proportion
- 324pt
+ 339pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
+ {{10, 27}, {603, 312}}
RubberWindowFrame
- 27 348 810 487 0 0 1440 878
+ 239 195 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8BB51F782222014B000C92BC
+ 8BDC9E8327CEBB9300A07B67
1CA23ED40692098700951B8B
- 8BB51F792222014B000C92BC
+ 8BDC9E8427CEBB9300A07B67
8B0237581D42B1C400E1E8C8
- 8BB51F7A2222014B000C92BC
+ 8BDC9E8527CEBB9300A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 572653899.92089999
+ 667859859.91025901
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +651,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/Plugins/MacVST/MV/MV.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/MV/MV.xcodeproj
WindowString
- 27 348 810 487 0 0 1440 878
+ 239 195 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/MackEQ/MackEQ.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/MackEQ/MackEQ.xcodeproj/christopherjohnson.pbxuser
index 0dae3a1ed..564f0e49e 100644
--- a/plugins/MacVST/MackEQ/MackEQ.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/MackEQ/MackEQ.xcodeproj/christopherjohnson.pbxuser
@@ -49,11 +49,11 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 641247367;
- PBXWorkspaceStateSaveDate = 641247367;
+ PBXPerProjectTemplateStateSaveDate = 667859104;
+ PBXWorkspaceStateSaveDate = 667859104;
};
perUserProjectItems = {
- 8BE5B02F2638A8F300B8F5BF /* PBXTextBookmark */ = 8BE5B02F2638A8F300B8F5BF /* PBXTextBookmark */;
+ 8BDC9D1027CEB8A400A07B67 /* PBXTextBookmark */ = 8BDC9D1027CEB8A400A07B67 /* PBXTextBookmark */;
8BE5B0302638A8F300B8F5BF /* PBXTextBookmark */ = 8BE5B0302638A8F300B8F5BF /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
@@ -86,9 +86,9 @@
};
24D8286F09A914000093AEF8 /* MackEQProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1416, 8082}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1416, 8064}}";
sepNavSelRange = "{18820, 0}";
- sepNavVisRange = "{18630, 433}";
+ sepNavVisRange = "{18648, 489}";
sepNavWindowFrame = "{{62, 47}, {895, 831}}";
};
};
@@ -106,15 +106,15 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8BE5B02F2638A8F300B8F5BF /* PBXTextBookmark */ = {
+ 8BDC9D1027CEB8A400A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* MackEQProc.cpp */;
- name = "MackEQProc.cpp: 433";
+ name = "MackEQProc.cpp: 435";
rLen = 0;
rLoc = 18820;
rType = 0;
- vrLen = 433;
- vrLoc = 18606;
+ vrLen = 489;
+ vrLoc = 18648;
};
8BE5B0302638A8F300B8F5BF /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
diff --git a/plugins/MacVST/MackEQ/MackEQ.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/MackEQ/MackEQ.xcodeproj/christopherjohnson.perspectivev3
index 8d3cb1a70..4e26b54ff 100644
--- a/plugins/MacVST/MackEQ/MackEQ.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/MackEQ/MackEQ.xcodeproj/christopherjohnson.perspectivev3
@@ -306,7 +306,7 @@
PBXSmartGroupTreeModuleOutlineStateVisibleRectKey
- {{0, 0}, {185, 594}}
+ {{0, 0}, {185, 585}}
PBXTopSmartGroupGIDs
@@ -316,14 +316,14 @@
GeometryConfiguration
Frame
- {{0, 0}, {202, 612}}
+ {{0, 0}, {202, 603}}
GroupTreeTableConfiguration
MainColumn
185
RubberWindowFrame
- 197 190 840 653 0 0 1440 878
+ 144 54 840 644 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8BE5B0302638A8F300B8F5BF
+ 8BDC9D1027CEB8A400A07B67
history
- 8BE5B02F2638A8F300B8F5BF
+ 8BE5B0302638A8F300B8F5BF
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {633, 182}}
+ {{0, 0}, {633, 179}}
RubberWindowFrame
- 197 190 840 653 0 0 1440 878
+ 144 54 840 644 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 182pt
+ 179pt
Proportion
- 425pt
+ 419pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {633, 398}}
+ {{10, 27}, {633, 392}}
RubberWindowFrame
- 197 190 840 653 0 0 1440 878
+ 144 54 840 644 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8BE5B0312638A8F300B8F5BF
+ 8BDC9D1127CEB8A400A07B67
1CA23ED40692098700951B8B
- 8BE5B0322638A8F300B8F5BF
+ 8BDC9D1227CEB8A400A07B67
8B0237581D42B1C400E1E8C8
- 8BE5B0332638A8F300B8F5BF
+ 8BDC9D1327CEB8A400A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 641247475.31837595
+ 667859108.75001299
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,11 +651,10 @@
5
WindowOrderList
- 8BE5B0342638A8F300B8F5BF
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/MackEQ/MackEQ.xcodeproj
WindowString
- 197 190 840 653 0 0 1440 878
+ 144 54 840 644 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Mackity/Mackity.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Mackity/Mackity.xcodeproj/christopherjohnson.pbxuser
index efd1ae919..fdad315d7 100644
--- a/plugins/MacVST/Mackity/Mackity.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Mackity/Mackity.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 659297240;
- PBXWorkspaceStateSaveDate = 659297240;
+ PBXPerProjectTemplateStateSaveDate = 667859117;
+ PBXWorkspaceStateSaveDate = 667859117;
};
perUserProjectItems = {
- 8B6D9F5C274C140500FF1E06 /* PBXTextBookmark */ = 8B6D9F5C274C140500FF1E06 /* PBXTextBookmark */;
8B6D9F5D274C140500FF1E06 /* PBXTextBookmark */ = 8B6D9F5D274C140500FF1E06 /* PBXTextBookmark */;
+ 8BDC9D3027CEB8C000A07B67 /* PBXTextBookmark */ = 8BDC9D3027CEB8C000A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -86,9 +86,9 @@
};
24D8286F09A914000093AEF8 /* MackityProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1362, 3744}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1362, 3762}}";
sepNavSelRange = "{7929, 0}";
- sepNavVisRange = "{6971, 97}";
+ sepNavVisRange = "{6979, 178}";
sepNavWindowFrame = "{{189, 55}, {1251, 823}}";
};
};
@@ -106,16 +106,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B6D9F5C274C140500FF1E06 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* MackityProc.cpp */;
- name = "MackityProc.cpp: 188";
- rLen = 0;
- rLoc = 7929;
- rType = 0;
- vrLen = 97;
- vrLoc = 6971;
- };
8B6D9F5D274C140500FF1E06 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* MackityProc.cpp */;
@@ -126,6 +116,16 @@
vrLen = 97;
vrLoc = 6971;
};
+ 8BDC9D3027CEB8C000A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* MackityProc.cpp */;
+ name = "MackityProc.cpp: 191";
+ rLen = 0;
+ rLoc = 7929;
+ rType = 0;
+ vrLen = 178;
+ vrLoc = 6979;
+ };
8D01CCC60486CAD60068D4B7 /* Mackity */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/Mackity/Mackity.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Mackity/Mackity.xcodeproj/christopherjohnson.perspectivev3
index 3b25d9bca..deac242c3 100644
--- a/plugins/MacVST/Mackity/Mackity.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Mackity/Mackity.xcodeproj/christopherjohnson.perspectivev3
@@ -321,7 +321,7 @@
185
RubberWindowFrame
- 532 304 810 487 0 0 1440 878
+ 397 170 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -349,10 +349,10 @@
_historyCapacity
0
bookmark
- 8B6D9F5D274C140500FF1E06
+ 8BDC9D3027CEB8C000A07B67
history
- 8B6D9F5C274C140500FF1E06
+ 8B6D9F5D274C140500FF1E06
SplitCount
@@ -366,18 +366,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 86}}
+ {{0, 0}, {603, 69}}
RubberWindowFrame
- 532 304 810 487 0 0 1440 878
+ 397 170 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 86pt
+ 69pt
Proportion
- 355pt
+ 372pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 328}}
+ {{10, 27}, {603, 345}}
RubberWindowFrame
- 532 304 810 487 0 0 1440 878
+ 397 170 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B6D9F5E274C140500FF1E06
+ 8BDC9D3127CEB8C000A07B67
1CA23ED40692098700951B8B
- 8B6D9F5F274C140500FF1E06
+ 8BDC9D3227CEB8C000A07B67
8B0237581D42B1C400E1E8C8
- 8B6D9F60274C140500FF1E06
+ 8BDC9D3327CEB8C000A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 659297285.09835899
+ 667859136.25797796
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,11 +651,10 @@
5
WindowOrderList
- 8B6D9F61274C140500FF1E06
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Mackity/Mackity.xcodeproj
WindowString
- 532 304 810 487 0 0 1440 878
+ 397 170 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/MatrixVerb/MatrixVerb.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/MatrixVerb/MatrixVerb.xcodeproj/christopherjohnson.pbxuser
index ae698bbed..fbcbe4dce 100755
--- a/plugins/MacVST/MatrixVerb/MatrixVerb.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/MatrixVerb/MatrixVerb.xcodeproj/christopherjohnson.pbxuser
@@ -49,11 +49,11 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 631158209;
- PBXWorkspaceStateSaveDate = 631158209;
+ PBXPerProjectTemplateStateSaveDate = 667859141;
+ PBXWorkspaceStateSaveDate = 667859141;
};
perUserProjectItems = {
- 8BE20B73259EB6BA00009ECB /* PBXTextBookmark */ = 8BE20B73259EB6BA00009ECB /* PBXTextBookmark */;
+ 8BDC9D4E27CEB8CA00A07B67 /* PBXTextBookmark */ = 8BDC9D4E27CEB8CA00A07B67 /* PBXTextBookmark */;
8BE20B74259EB6BA00009ECB /* PBXTextBookmark */ = 8BE20B74259EB6BA00009ECB /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
@@ -86,9 +86,9 @@
};
24D8286F09A914000093AEF8 /* MatrixVerbProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {714, 14526}}";
+ sepNavIntBoundsRect = "{{0, 0}, {660, 14346}}";
sepNavSelRange = "{19195, 0}";
- sepNavVisRange = "{19552, 42}";
+ sepNavVisRange = "{19543, 57}";
sepNavWindowFrame = "{{386, 42}, {990, 836}}";
};
};
@@ -106,15 +106,15 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8BE20B73259EB6BA00009ECB /* PBXTextBookmark */ = {
+ 8BDC9D4E27CEB8CA00A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* MatrixVerbProc.cpp */;
- name = "MatrixVerbProc.cpp: 460";
+ name = "MatrixVerbProc.cpp: 445";
rLen = 0;
rLoc = 19195;
rType = 0;
- vrLen = 109;
- vrLoc = 19878;
+ vrLen = 57;
+ vrLoc = 19543;
};
8BE20B74259EB6BA00009ECB /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
diff --git a/plugins/MacVST/MatrixVerb/MatrixVerb.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/MatrixVerb/MatrixVerb.xcodeproj/christopherjohnson.perspectivev3
index f798d5e62..9d1ead16d 100755
--- a/plugins/MacVST/MatrixVerb/MatrixVerb.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/MatrixVerb/MatrixVerb.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 620 269 810 487 0 0 1440 878
+ 463 153 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8BE20B74259EB6BA00009ECB
+ 8BDC9D4E27CEB8CA00A07B67
history
- 8BE20B73259EB6BA00009ECB
+ 8BE20B74259EB6BA00009ECB
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 86}}
+ {{0, 0}, {603, 69}}
RubberWindowFrame
- 620 269 810 487 0 0 1440 878
+ 463 153 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 86pt
+ 69pt
Proportion
- 355pt
+ 372pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 328}}
+ {{10, 27}, {603, 345}}
RubberWindowFrame
- 620 269 810 487 0 0 1440 878
+ 463 153 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8BE20B75259EB6BA00009ECB
+ 8BDC9D4F27CEB8CA00A07B67
1CA23ED40692098700951B8B
- 8BE20B76259EB6BA00009ECB
+ 8BDC9D5027CEB8CA00A07B67
8B0237581D42B1C400E1E8C8
- 8BE20B77259EB6BA00009ECB
+ 8BDC9D5127CEB8CA00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 631158458.20741498
+ 667859146.56155896
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +651,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/Plugins/MacVST/MatrixVerb/MatrixVerb.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/MatrixVerb/MatrixVerb.xcodeproj
WindowString
- 620 269 810 487 0 0 1440 878
+ 463 153 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Melt/Melt.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Melt/Melt.xcodeproj/christopherjohnson.pbxuser
index 3b3fdf37d..57d686c79 100755
--- a/plugins/MacVST/Melt/Melt.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Melt/Melt.xcodeproj/christopherjohnson.pbxuser
@@ -51,12 +51,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569770170;
- PBXWorkspaceStateSaveDate = 569770170;
+ PBXPerProjectTemplateStateSaveDate = 667859152;
+ PBXWorkspaceStateSaveDate = 667859152;
};
perUserProjectItems = {
8B793CB821F600C5006E9731 /* PBXTextBookmark */ = 8B793CB821F600C5006E9731 /* PBXTextBookmark */;
- 8B9D7BCD1F7FAD1A007AB60F /* PBXTextBookmark */ = 8B9D7BCD1F7FAD1A007AB60F /* PBXTextBookmark */;
+ 8BDC9D6E27CEB8DF00A07B67 /* PBXTextBookmark */ = 8BDC9D6E27CEB8DF00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -88,8 +88,8 @@
};
24D8286F09A914000093AEF8 /* MeltProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {621, 7371}}";
- sepNavSelRange = "{19360, 0}";
+ sepNavIntBoundsRect = "{{0, 0}, {554, 8892}}";
+ sepNavSelRange = "{16297, 0}";
sepNavVisRange = "{0, 0}";
sepNavWindowFrame = "{{254, 39}, {895, 831}}";
};
@@ -113,17 +113,17 @@
fRef = 24D8286F09A914000093AEF8 /* MeltProc.cpp */;
name = "MeltProc.cpp: 553";
rLen = 0;
- rLoc = 19360;
+ rLoc = 16297;
rType = 0;
vrLen = 0;
vrLoc = 0;
};
- 8B9D7BCD1F7FAD1A007AB60F /* PBXTextBookmark */ = {
+ 8BDC9D6E27CEB8DF00A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* MeltProc.cpp */;
- name = "MeltProc.cpp: 560";
+ name = "MeltProc.cpp: 496";
rLen = 0;
- rLoc = 19360;
+ rLoc = 16297;
rType = 0;
vrLen = 0;
vrLoc = 0;
diff --git a/plugins/MacVST/Melt/Melt.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Melt/Melt.xcodeproj/christopherjohnson.perspectivev3
index e6e16171a..5caaee6d4 100755
--- a/plugins/MacVST/Melt/Melt.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Melt/Melt.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 339 331 810 487 0 0 1440 878
+ 253 183 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B793CB821F600C5006E9731
+ 8BDC9D6E27CEB8DF00A07B67
history
- 8B9D7BCD1F7FAD1A007AB60F
+ 8B793CB821F600C5006E9731
SplitCount
@@ -370,7 +370,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 339 331 810 487 0 0 1440 878
+ 253 183 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -395,7 +395,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 339 331 810 487 0 0 1440 878
+ 253 183 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B793CB921F600C5006E9731
+ 8BDC9D6F27CEB8DF00A07B67
1CA23ED40692098700951B8B
- 8B793CBA21F600C5006E9731
+ 8BDC9D7027CEB8DF00A07B67
8B0237581D42B1C400E1E8C8
- 8B793CBB21F600C5006E9731
+ 8BDC9D7127CEB8DF00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -654,7 +654,7 @@
StatusbarIsVisible
TimeStamp
- 569770181.85578704
+ 667859167.58633101
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -671,10 +671,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/Melt/Melt.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Melt/Melt.xcodeproj
WindowString
- 339 331 810 487 0 0 1440 878
+ 253 183 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/MidSide/MidSide.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/MidSide/MidSide.xcodeproj/christopherjohnson.pbxuser
index 62992bac6..843917197 100755
--- a/plugins/MacVST/MidSide/MidSide.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/MidSide/MidSide.xcodeproj/christopherjohnson.pbxuser
@@ -51,12 +51,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569770425;
- PBXWorkspaceStateSaveDate = 569770425;
+ PBXPerProjectTemplateStateSaveDate = 667859173;
+ PBXWorkspaceStateSaveDate = 667859173;
};
perUserProjectItems = {
8B793CDA21F601C2006E9731 /* PBXTextBookmark */ = 8B793CDA21F601C2006E9731 /* PBXTextBookmark */;
- 8B9D7BED1F7FAD3F007AB60F /* PBXTextBookmark */ = 8B9D7BED1F7FAD3F007AB60F /* PBXTextBookmark */;
+ 8BDC9DAB27CEB9AC00A07B67 /* PBXTextBookmark */ = 8BDC9DAB27CEB9AC00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -80,7 +80,7 @@
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {747, 19864}}";
+ sepNavIntBoundsRect = "{{0, 0}, {957, 27522}}";
sepNavSelRange = "{10616, 0}";
sepNavVisRange = "{0, 0}";
sepNavWindowFrame = "{{15, 42}, {895, 831}}";
@@ -88,10 +88,10 @@
};
24D8286F09A914000093AEF8 /* MidSideProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {848, 2587}}";
- sepNavSelRange = "{4044, 1892}";
- sepNavVisRange = "{574, 2210}";
- sepNavWindowFrame = "{{264, 39}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {867, 1872}}";
+ sepNavSelRange = "{2532, 0}";
+ sepNavVisRange = "{1827, 889}";
+ sepNavWindowFrame = "{{264, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -118,7 +118,7 @@
vrLen = 0;
vrLoc = 0;
};
- 8B9D7BED1F7FAD3F007AB60F /* PBXTextBookmark */ = {
+ 8BDC9DAB27CEB9AC00A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
name = "audioeffectx.cpp: 307";
diff --git a/plugins/MacVST/MidSide/MidSide.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/MidSide/MidSide.xcodeproj/christopherjohnson.perspectivev3
index 721ff9274..13bbdb1b7 100755
--- a/plugins/MacVST/MidSide/MidSide.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/MidSide/MidSide.xcodeproj/christopherjohnson.perspectivev3
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 428 322 810 487 0 0 1440 878
+ 319 178 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +349,10 @@
_historyCapacity
0
bookmark
- 8B793CDA21F601C2006E9731
+ 8BDC9DAB27CEB9AC00A07B67
history
- 8B9D7BED1F7FAD3F007AB60F
+ 8B793CDA21F601C2006E9731
SplitCount
@@ -370,7 +368,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 428 322 810 487 0 0 1440 878
+ 319 178 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -394,8 +392,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 428 322 810 487 0 0 1440 878
Module
XCDetailModule
@@ -449,7 +445,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 363}}
+ {{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 319 178 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -477,11 +475,11 @@
TableOfContents
- 8B793CDB21F601C2006E9731
+ 8BDC9DAC27CEB9AC00A07B67
1CA23ED40692098700951B8B
- 8B793CDC21F601C2006E9731
+ 8BDC9DAD27CEB9AC00A07B67
8B0237581D42B1C400E1E8C8
- 8B793CDD21F601C2006E9731
+ 8BDC9DAE27CEB9AC00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -654,7 +652,7 @@
StatusbarIsVisible
TimeStamp
- 569770434.56493402
+ 667859372.05184495
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -671,10 +669,11 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/MidSide/MidSide.xcodeproj
+ 8BDC9DAF27CEB9AC00A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/MidSide/MidSide.xcodeproj
WindowString
- 428 322 810 487 0 0 1440 878
+ 319 178 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/MidSide/source/MidSideProc.cpp b/plugins/MacVST/MidSide/source/MidSideProc.cpp
index 46fb1397e..cb5f2ffa6 100755
--- a/plugins/MacVST/MidSide/source/MidSideProc.cpp
+++ b/plugins/MacVST/MidSide/source/MidSideProc.cpp
@@ -37,14 +37,15 @@ void MidSide::processReplacing(float **inputs, float **outputs, VstInt32 sampleF
mid *= midgain;
side *= sidegain;
- //stereo 32 bit dither, made small and tidy.
+ //begin 32 bit floating point dither
int expon; frexpf((float)mid, &expon);
- double dither = (rand()/(RAND_MAX*7.737125245533627e+25))*pow(2,expon+62);
- mid += (dither-fpNShapeL); fpNShapeL = dither;
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ mid += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62));
+ //end 32 bit floating point dither
frexpf((float)side, &expon);
- dither = (rand()/(RAND_MAX*7.737125245533627e+25))*pow(2,expon+62);
- side += (dither-fpNShapeR); fpNShapeR = dither;
- //end 32 bit dither
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ side += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62));
+ //end 32 bit floating point dither
*out1 = mid;
*out2 = side;
@@ -87,14 +88,13 @@ void MidSide::processDoubleReplacing(double **inputs, double **outputs, VstInt32
side *= sidegain;
//stereo 64 bit dither, made small and tidy.
- int expon; frexp((double)mid, &expon);
- double dither = (rand()/(RAND_MAX*7.737125245533627e+25))*pow(2,expon+62);
- dither /= 536870912.0; //needs this to scale to 64 bit zone
- mid += (dither-fpNShapeL); fpNShapeL = dither;
- frexp((double)side, &expon);
- dither = (rand()/(RAND_MAX*7.737125245533627e+25))*pow(2,expon+62);
- dither /= 536870912.0; //needs this to scale to 64 bit zone
- side += (dither-fpNShapeR); fpNShapeR = dither;
+ //int expon; frexpf((float)mid, &expon);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ //mid += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62));
+ //end 32 bit floating point dither
+ //frexpf((float)side, &expon);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ //side += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62));
//end 64 bit dither
*out1 = mid;
diff --git a/plugins/MacVST/MoNoam/MoNoam.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/MoNoam/MoNoam.xcodeproj/christopherjohnson.pbxuser
index d82cb657a..0c266c194 100755
--- a/plugins/MacVST/MoNoam/MoNoam.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/MoNoam/MoNoam.xcodeproj/christopherjohnson.pbxuser
@@ -49,13 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 592089124;
- PBXWorkspaceStateSaveDate = 592089124;
+ PBXPerProjectTemplateStateSaveDate = 667859807;
+ PBXWorkspaceStateSaveDate = 667859807;
};
perUserProjectItems = {
8B121024234A907D00C990C9 /* PBXTextBookmark */ = 8B121024234A907D00C990C9 /* PBXTextBookmark */;
- 8B121025234A907D00C990C9 /* PBXBookmark */ = 8B121025234A907D00C990C9 /* PBXBookmark */;
- 8B121026234A907D00C990C9 /* PBXTextBookmark */ = 8B121026234A907D00C990C9 /* PBXTextBookmark */;
+ 8BDC9E2327CEBB5C00A07B67 /* PBXTextBookmark */ = 8BDC9E2327CEBB5C00A07B67 /* PBXTextBookmark */;
+ 8BDC9E4227CEBB6A00A07B67 /* PBXTextBookmark */ = 8BDC9E4227CEBB6A00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -71,9 +71,9 @@
};
245463B80991757100464AD3 /* MoNoam.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {866, 884}}";
+ sepNavIntBoundsRect = "{{0, 0}, {554, 1440}}";
sepNavSelRange = "{2640, 0}";
- sepNavVisRange = "{2462, 181}";
+ sepNavVisRange = "{2568, 91}";
sepNavWindowFrame = "{{20, 57}, {895, 821}}";
};
};
@@ -87,10 +87,10 @@
};
24D8286F09A914000093AEF8 /* MoNoamProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {848, 1443}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1047, 1998}}";
sepNavSelRange = "{2252, 0}";
- sepNavVisRange = "{1986, 1799}";
- sepNavWindowFrame = "{{435, 57}, {895, 821}}";
+ sepNavVisRange = "{2086, 1162}";
+ sepNavWindowFrame = "{{385, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -117,19 +117,25 @@
vrLen = 280;
vrLoc = 10459;
};
- 8B121025234A907D00C990C9 /* PBXBookmark */ = {
- isa = PBXBookmark;
- fRef = 245463B80991757100464AD3 /* MoNoam.h */;
- };
- 8B121026234A907D00C990C9 /* PBXTextBookmark */ = {
+ 8BDC9E2327CEBB5C00A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 245463B80991757100464AD3 /* MoNoam.h */;
- name = "MoNoam.h: 65";
+ name = "MoNoam.h: 66";
rLen = 0;
rLoc = 2640;
rType = 0;
- vrLen = 181;
- vrLoc = 2462;
+ vrLen = 120;
+ vrLoc = 2539;
+ };
+ 8BDC9E4227CEBB6A00A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 245463B80991757100464AD3 /* MoNoam.h */;
+ name = "MoNoam.h: 66";
+ rLen = 0;
+ rLoc = 2640;
+ rType = 0;
+ vrLen = 91;
+ vrLoc = 2568;
};
8D01CCC60486CAD60068D4B7 /* MoNoam */ = {
activeExec = 0;
diff --git a/plugins/MacVST/MoNoam/MoNoam.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/MoNoam/MoNoam.xcodeproj/christopherjohnson.perspectivev3
index 5d6e4f4d4..d632228c9 100755
--- a/plugins/MacVST/MoNoam/MoNoam.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/MoNoam/MoNoam.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 85 240 810 487 0 0 1440 878
+ 63 140 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,11 +351,11 @@
_historyCapacity
0
bookmark
- 8B121026234A907D00C990C9
+ 8BDC9E4227CEBB6A00A07B67
history
8B121024234A907D00C990C9
- 8B121025234A907D00C990C9
+ 8BDC9E2327CEBB5C00A07B67
SplitCount
@@ -369,18 +369,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 117}}
+ {{0, 0}, {603, 86}}
RubberWindowFrame
- 85 240 810 487 0 0 1440 878
+ 63 140 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 117pt
+ 86pt
Proportion
- 324pt
+ 355pt
Tabs
@@ -394,9 +394,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
+ {{10, 27}, {603, 328}}
RubberWindowFrame
- 85 240 810 487 0 0 1440 878
+ 63 140 810 487 0 0 1280 698
Module
XCDetailModule
@@ -478,11 +478,11 @@
TableOfContents
- 8B121027234A907D00C990C9
+ 8BDC9E4327CEBB6A00A07B67
1CA23ED40692098700951B8B
- 8B121028234A907D00C990C9
+ 8BDC9E4427CEBB6A00A07B67
8B0237581D42B1C400E1E8C8
- 8B121029234A907D00C990C9
+ 8BDC9E4527CEBB6A00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -635,7 +635,7 @@
StatusbarIsVisible
TimeStamp
- 592089213.59423494
+ 667859818.59451902
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -652,11 +652,11 @@
5
WindowOrderList
- 8B12102A234A907D00C990C9
- /Users/christopherjohnson/Desktop/Plugins/MacVST/MoNoam/MoNoam.xcodeproj
+ 8BDC9E4627CEBB6A00A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/MoNoam/MoNoam.xcodeproj
WindowString
- 85 240 810 487 0 0 1440 878
+ 63 140 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Mojo/Mojo.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Mojo/Mojo.xcodeproj/christopherjohnson.pbxuser
index daa329e48..acd626e61 100755
--- a/plugins/MacVST/Mojo/Mojo.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Mojo/Mojo.xcodeproj/christopherjohnson.pbxuser
@@ -49,13 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 585506370;
- PBXWorkspaceStateSaveDate = 585506370;
+ PBXPerProjectTemplateStateSaveDate = 667859377;
+ PBXWorkspaceStateSaveDate = 667859377;
};
perUserProjectItems = {
8B52134922E619E3009B824C /* PBXTextBookmark */ = 8B52134922E619E3009B824C /* PBXTextBookmark */;
- 8B52134A22E619E3009B824C /* PBXTextBookmark */ = 8B52134A22E619E3009B824C /* PBXTextBookmark */;
8B5213D022E61F6F009B824C /* PBXTextBookmark */ = 8B5213D022E61F6F009B824C /* PBXTextBookmark */;
+ 8BDC9DC027CEB9BB00A07B67 /* PBXTextBookmark */ = 8BDC9DC027CEB9BB00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -87,9 +87,9 @@
};
24D8286F09A914000093AEF8 /* MojoProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {712, 1287}}";
+ sepNavIntBoundsRect = "{{0, 0}, {912, 1818}}";
sepNavSelRange = "{708, 514}";
- sepNavVisRange = "{0, 780}";
+ sepNavVisRange = "{355, 424}";
sepNavWindowFrame = "{{31, 57}, {895, 821}}";
};
};
@@ -117,16 +117,6 @@
vrLen = 280;
vrLoc = 10459;
};
- 8B52134A22E619E3009B824C /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* MojoProc.cpp */;
- name = "MojoProc.cpp: 25";
- rLen = 514;
- rLoc = 708;
- rType = 0;
- vrLen = 780;
- vrLoc = 0;
- };
8B5213D022E61F6F009B824C /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* MojoProc.cpp */;
@@ -137,6 +127,16 @@
vrLen = 780;
vrLoc = 0;
};
+ 8BDC9DC027CEB9BB00A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* MojoProc.cpp */;
+ name = "MojoProc.cpp: 26";
+ rLen = 514;
+ rLoc = 708;
+ rType = 0;
+ vrLen = 424;
+ vrLoc = 355;
+ };
8D01CCC60486CAD60068D4B7 /* Mojo */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/Mojo/Mojo.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Mojo/Mojo.xcodeproj/christopherjohnson.perspectivev3
index 92c74c350..6932d73fe 100755
--- a/plugins/MacVST/Mojo/Mojo.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Mojo/Mojo.xcodeproj/christopherjohnson.perspectivev3
@@ -306,7 +306,7 @@
PBXSmartGroupTreeModuleOutlineStateVisibleRectKey
- {{0, 0}, {185, 707}}
+ {{0, 0}, {185, 585}}
PBXTopSmartGroupGIDs
@@ -316,14 +316,14 @@
GeometryConfiguration
Frame
- {{0, 0}, {202, 725}}
+ {{0, 0}, {202, 603}}
GroupTreeTableConfiguration
MainColumn
185
RubberWindowFrame
- 33 107 845 766 0 0 1440 878
+ 24 54 845 644 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,11 +351,11 @@
_historyCapacity
0
bookmark
- 8B5213D022E61F6F009B824C
+ 8BDC9DC027CEB9BB00A07B67
history
8B52134922E619E3009B824C
- 8B52134A22E619E3009B824C
+ 8B5213D022E61F6F009B824C
SplitCount
@@ -369,18 +369,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {638, 387}}
+ {{0, 0}, {638, 321}}
RubberWindowFrame
- 33 107 845 766 0 0 1440 878
+ 24 54 845 644 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 387pt
+ 321pt
Proportion
- 333pt
+ 277pt
Tabs
@@ -394,9 +394,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {638, 306}}
+ {{10, 27}, {638, 250}}
RubberWindowFrame
- 33 107 845 766 0 0 1440 878
+ 24 54 845 644 0 0 1280 698
Module
XCDetailModule
@@ -478,11 +478,11 @@
TableOfContents
- 8B5213D122E61F6F009B824C
+ 8BDC9DC127CEB9BB00A07B67
1CA23ED40692098700951B8B
- 8B5213D222E61F6F009B824C
+ 8BDC9DC227CEB9BB00A07B67
8B0237581D42B1C400E1E8C8
- 8B5213D322E61F6F009B824C
+ 8BDC9DC327CEB9BB00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -635,7 +635,7 @@
StatusbarIsVisible
TimeStamp
- 585506671.40982199
+ 667859387.218889
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -652,10 +652,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/Plugins/MacVST/Mojo/Mojo.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Mojo/Mojo.xcodeproj
WindowString
- 33 107 845 766 0 0 1440 878
+ 24 54 845 644 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Monitoring/Monitoring.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Monitoring/Monitoring.xcodeproj/christopherjohnson.pbxuser
index c0c946e27..3db2e0f44 100755
--- a/plugins/MacVST/Monitoring/Monitoring.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Monitoring/Monitoring.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 653282819;
- PBXWorkspaceStateSaveDate = 653282819;
+ PBXPerProjectTemplateStateSaveDate = 667859393;
+ PBXWorkspaceStateSaveDate = 667859393;
};
perUserProjectItems = {
- 8BCBAF1226F04F5B00E491F2 /* PBXTextBookmark */ = 8BCBAF1226F04F5B00E491F2 /* PBXTextBookmark */;
8BCBAF1326F04F5B00E491F2 /* PBXTextBookmark */ = 8BCBAF1326F04F5B00E491F2 /* PBXTextBookmark */;
+ 8BDC9DEB27CEBB1000A07B67 /* PBXTextBookmark */ = 8BDC9DEB27CEBB1000A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -86,10 +86,10 @@
};
24D8286F09A914000093AEF8 /* MonitoringProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1164, 18972}}";
+ sepNavIntBoundsRect = "{{0, 0}, {831, 18954}}";
sepNavSelRange = "{49235, 0}";
- sepNavVisRange = "{177, 54}";
- sepNavWindowFrame = "{{30, 66}, {1229, 812}}";
+ sepNavVisRange = "{200, 31}";
+ sepNavWindowFrame = "{{199, 10}, {1061, 688}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -106,16 +106,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8BCBAF1226F04F5B00E491F2 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* MonitoringProc.cpp */;
- name = "MonitoringProc.cpp: 826";
- rLen = 0;
- rLoc = 49235;
- rType = 0;
- vrLen = 54;
- vrLoc = 177;
- };
8BCBAF1326F04F5B00E491F2 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* MonitoringProc.cpp */;
@@ -126,6 +116,16 @@
vrLen = 54;
vrLoc = 177;
};
+ 8BDC9DEB27CEBB1000A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* MonitoringProc.cpp */;
+ name = "MonitoringProc.cpp: 830";
+ rLen = 0;
+ rLoc = 49235;
+ rType = 0;
+ vrLen = 31;
+ vrLoc = 200;
+ };
8D01CCC60486CAD60068D4B7 /* Monitoring */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/Monitoring/Monitoring.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Monitoring/Monitoring.xcodeproj/christopherjohnson.perspectivev3
index e7d56095d..3050a39b5 100755
--- a/plugins/MacVST/Monitoring/Monitoring.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Monitoring/Monitoring.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 4 361 810 487 0 0 1440 878
+ 386 209 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8BCBAF1326F04F5B00E491F2
+ 8BDC9DEB27CEBB1000A07B67
history
- 8BCBAF1226F04F5B00E491F2
+ 8BCBAF1326F04F5B00E491F2
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 69}}
+ {{0, 0}, {603, 51}}
RubberWindowFrame
- 4 361 810 487 0 0 1440 878
+ 386 209 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 69pt
+ 51pt
Proportion
- 372pt
+ 390pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 345}}
+ {{10, 27}, {603, 363}}
RubberWindowFrame
- 4 361 810 487 0 0 1440 878
+ 386 209 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8BCBAF1426F04F5B00E491F2
+ 8BDC9DEC27CEBB1000A07B67
1CA23ED40692098700951B8B
- 8BCBAF1526F04F5B00E491F2
+ 8BDC9DED27CEBB1000A07B67
8B0237581D42B1C400E1E8C8
- 8BCBAF1626F04F5B00E491F2
+ 8BDC9DEE27CEBB1000A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 653283163.85720301
+ 667859728.53230906
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,11 +651,10 @@
5
WindowOrderList
- 8BCBAF1726F04F5B00E491F2
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Monitoring/Monitoring.xcodeproj
WindowString
- 4 361 810 487 0 0 1440 878
+ 386 209 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Monitoring2/Monitoring2.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Monitoring2/Monitoring2.xcodeproj/christopherjohnson.pbxuser
index 2db17ba0b..d482ed38e 100644
--- a/plugins/MacVST/Monitoring2/Monitoring2.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Monitoring2/Monitoring2.xcodeproj/christopherjohnson.pbxuser
@@ -51,13 +51,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 665258435;
- PBXWorkspaceStateSaveDate = 665258435;
+ PBXPerProjectTemplateStateSaveDate = 667859734;
+ PBXWorkspaceStateSaveDate = 667859734;
};
perUserProjectItems = {
8B016D742742D6AF006B94F9 /* PBXTextBookmark */ = 8B016D742742D6AF006B94F9 /* PBXTextBookmark */;
- 8B53549F27A2D5AB000DAA29 /* PBXTextBookmark */ = 8B53549F27A2D5AB000DAA29 /* PBXTextBookmark */;
8BB92D6527A709F800420832 /* PBXTextBookmark */ = 8BB92D6527A709F800420832 /* PBXTextBookmark */;
+ 8BDC9E0C27CEBB3B00A07B67 /* PBXTextBookmark */ = 8BDC9E0C27CEBB3B00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -65,9 +65,9 @@
};
2407DEB6089929BA00EB68BF /* Monitoring2.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {804, 2844}}";
+ sepNavIntBoundsRect = "{{0, 0}, {804, 2862}}";
sepNavSelRange = "{4904, 1390}";
- sepNavVisRange = "{4904, 161}";
+ sepNavVisRange = "{0, 0}";
sepNavWindowFrame = "{{39, 47}, {895, 831}}";
};
};
@@ -89,10 +89,10 @@
};
24D8286F09A914000093AEF8 /* Monitoring2Proc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1200, 16866}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1272, 18090}}";
sepNavSelRange = "{18691, 0}";
- sepNavVisRange = "{17820, 2170}";
- sepNavWindowFrame = "{{361, 42}, {1023, 836}}";
+ sepNavVisRange = "{24925, 1250}";
+ sepNavWindowFrame = "{{257, 4}, {1023, 694}}";
};
};
8B016D742742D6AF006B94F9 /* PBXTextBookmark */ = {
@@ -100,7 +100,7 @@
fRef = 24D8286F09A914000093AEF8 /* Monitoring2Proc.cpp */;
name = "Monitoring2Proc.cpp: 972";
rLen = 0;
- rLoc = 55111;
+ rLoc = 55009;
rType = 0;
vrLen = 226;
vrLoc = 53720;
@@ -119,16 +119,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B53549F27A2D5AB000DAA29 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 2407DEB6089929BA00EB68BF /* Monitoring2.cpp */;
- name = "Monitoring2.cpp: 120";
- rLen = 1390;
- rLoc = 4904;
- rType = 0;
- vrLen = 232;
- vrLoc = 4904;
- };
8BB92D6527A709F800420832 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2407DEB6089929BA00EB68BF /* Monitoring2.cpp */;
@@ -139,6 +129,16 @@
vrLen = 161;
vrLoc = 4904;
};
+ 8BDC9E0C27CEBB3B00A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 2407DEB6089929BA00EB68BF /* Monitoring2.cpp */;
+ name = "Monitoring2.cpp: 120";
+ rLen = 1390;
+ rLoc = 4904;
+ rType = 0;
+ vrLen = 0;
+ vrLoc = 0;
+ };
8D01CCC60486CAD60068D4B7 /* Monitoring2 */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/Monitoring2/Monitoring2.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Monitoring2/Monitoring2.xcodeproj/christopherjohnson.perspectivev3
index 62458f457..7c0b30998 100644
--- a/plugins/MacVST/Monitoring2/Monitoring2.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Monitoring2/Monitoring2.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 47 360 810 487 0 0 1440 878
+ 35 196 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,11 +351,11 @@
_historyCapacity
0
bookmark
- 8BB92D6527A709F800420832
+ 8BDC9E0C27CEBB3B00A07B67
history
8B016D742742D6AF006B94F9
- 8B53549F27A2D5AB000DAA29
+ 8BB92D6527A709F800420832
SplitCount
@@ -369,18 +369,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 51}}
+ {{0, 0}, {603, 32}}
RubberWindowFrame
- 47 360 810 487 0 0 1440 878
+ 35 196 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 51pt
+ 32pt
Proportion
- 390pt
+ 409pt
Tabs
@@ -394,9 +394,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 363}}
+ {{10, 27}, {603, 382}}
RubberWindowFrame
- 47 360 810 487 0 0 1440 878
+ 35 196 810 487 0 0 1280 698
Module
XCDetailModule
@@ -478,11 +478,11 @@
TableOfContents
- 8BB92D6627A709F800420832
+ 8BDC9E0D27CEBB3B00A07B67
1CA23ED40692098700951B8B
- 8BB92D6727A709F800420832
+ 8BDC9E0E27CEBB3B00A07B67
8B0237581D42B1C400E1E8C8
- 8BB92D6827A709F800420832
+ 8BDC9E0F27CEBB3B00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -655,7 +655,7 @@
StatusbarIsVisible
TimeStamp
- 665258488.166435
+ 667859771.67946303
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -672,11 +672,11 @@
5
WindowOrderList
- 8BB92D6927A709F800420832
+ 8BDC9E1027CEBB3B00A07B67
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Monitoring2/Monitoring2.xcodeproj
WindowString
- 47 360 810 487 0 0 1440 878
+ 35 196 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/MultiBandDistortion/MultiBandDistortion.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/MultiBandDistortion/MultiBandDistortion.xcodeproj/christopherjohnson.pbxuser
index 3eaada3ec..1307f6f02 100644
--- a/plugins/MacVST/MultiBandDistortion/MultiBandDistortion.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/MultiBandDistortion/MultiBandDistortion.xcodeproj/christopherjohnson.pbxuser
@@ -49,13 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 655558705;
- PBXWorkspaceStateSaveDate = 655558705;
+ PBXPerProjectTemplateStateSaveDate = 667859822;
+ PBXWorkspaceStateSaveDate = 667859822;
};
perUserProjectItems = {
8BA34A6E271308410091244E /* PBXTextBookmark */ = 8BA34A6E271308410091244E /* PBXTextBookmark */;
8BCBAD4426EFC5BE00E491F2 /* PBXTextBookmark */ = 8BCBAD4426EFC5BE00E491F2 /* PBXTextBookmark */;
- 8BCBAD4626EFC5BE00E491F2 /* PBXTextBookmark */ = 8BCBAD4626EFC5BE00E491F2 /* PBXTextBookmark */;
+ 8BDC9E6127CEBB7500A07B67 /* PBXTextBookmark */ = 8BDC9E6127CEBB7500A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -87,9 +87,9 @@
};
24D8286F09A914000093AEF8 /* MultiBandDistortionProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {966, 8892}}";
+ sepNavIntBoundsRect = "{{0, 0}, {966, 8910}}";
sepNavSelRange = "{13884, 0}";
- sepNavVisRange = "{13824, 104}";
+ sepNavVisRange = "{13856, 114}";
sepNavWindowFrame = "{{202, 42}, {1131, 836}}";
};
};
@@ -127,15 +127,15 @@
vrLen = 234;
vrLoc = 0;
};
- 8BCBAD4626EFC5BE00E491F2 /* PBXTextBookmark */ = {
+ 8BDC9E6127CEBB7500A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* MultiBandDistortionProc.cpp */;
- name = "MultiBandDistortionProc.cpp: 336";
+ name = "MultiBandDistortionProc.cpp: 337";
rLen = 0;
rLoc = 13884;
rType = 0;
- vrLen = 108;
- vrLoc = 13824;
+ vrLen = 114;
+ vrLoc = 13856;
};
8D01CCC60486CAD60068D4B7 /* MultiBandDistortion */ = {
activeExec = 0;
diff --git a/plugins/MacVST/MultiBandDistortion/MultiBandDistortion.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/MultiBandDistortion/MultiBandDistortion.xcodeproj/christopherjohnson.perspectivev3
index 61ae42c81..617b354e9 100644
--- a/plugins/MacVST/MultiBandDistortion/MultiBandDistortion.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/MultiBandDistortion/MultiBandDistortion.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
219
RubberWindowFrame
- 360 299 810 487 0 0 1440 878
+ 269 168 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,11 +351,11 @@
_historyCapacity
0
bookmark
- 8BA34A6E271308410091244E
+ 8BDC9E6127CEBB7500A07B67
history
8BCBAD4426EFC5BE00E491F2
- 8BCBAD4626EFC5BE00E491F2
+ 8BA34A6E271308410091244E
SplitCount
@@ -369,18 +369,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {569, 102}}
+ {{0, 0}, {569, 86}}
RubberWindowFrame
- 360 299 810 487 0 0 1440 878
+ 269 168 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 102pt
+ 86pt
Proportion
- 339pt
+ 355pt
Tabs
@@ -394,9 +394,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {569, 312}}
+ {{10, 27}, {569, 328}}
RubberWindowFrame
- 360 299 810 487 0 0 1440 878
+ 269 168 810 487 0 0 1280 698
Module
XCDetailModule
@@ -478,11 +478,11 @@
TableOfContents
- 8BA34A6F271308410091244E
+ 8BDC9E6227CEBB7500A07B67
1CA23ED40692098700951B8B
- 8BA34A70271308410091244E
+ 8BDC9E6327CEBB7500A07B67
8B0237581D42B1C400E1E8C8
- 8BA34A71271308410091244E
+ 8BDC9E6427CEBB7500A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -635,7 +635,7 @@
StatusbarIsVisible
TimeStamp
- 655558721.47602296
+ 667859829.36604702
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -655,7 +655,7 @@
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/MultiBandDistortion/MultiBandDistortion.xcodeproj
WindowString
- 360 299 810 487 0 0 1440 878
+ 269 168 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/NCSeventeen/NCSeventeen.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/NCSeventeen/NCSeventeen.xcodeproj/christopherjohnson.pbxuser
index b951dba08..bfa1b2e67 100755
--- a/plugins/MacVST/NCSeventeen/NCSeventeen.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/NCSeventeen/NCSeventeen.xcodeproj/christopherjohnson.pbxuser
@@ -49,14 +49,14 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569770459;
- PBXWorkspaceStateSaveDate = 569770459;
+ PBXPerProjectTemplateStateSaveDate = 667859937;
+ PBXWorkspaceStateSaveDate = 667859937;
};
perUserProjectItems = {
8B6692F41FB1C728007B3434 /* PBXTextBookmark */ = 8B6692F41FB1C728007B3434 /* PBXTextBookmark */;
8B67C7A21FA3B4CC008C64D6 /* PBXTextBookmark */ = 8B67C7A21FA3B4CC008C64D6 /* PBXTextBookmark */;
8B793CFA21F601E6006E9731 /* PBXTextBookmark */ = 8B793CFA21F601E6006E9731 /* PBXTextBookmark */;
- 8BE0C0701FB1C9E6000B2082 /* PBXTextBookmark */ = 8BE0C0701FB1C9E6000B2082 /* PBXTextBookmark */;
+ 8BDC9ECE27CEBC0000A07B67 /* PBXTextBookmark */ = 8BDC9ECE27CEBC0000A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -72,9 +72,9 @@
};
245463B80991757100464AD3 /* NCSeventeen.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {817, 1105}}";
+ sepNavIntBoundsRect = "{{0, 0}, {554, 1692}}";
sepNavSelRange = "{2660, 0}";
- sepNavVisRange = "{2320, 107}";
+ sepNavVisRange = "{2376, 51}";
sepNavWindowFrame = "{{20, 47}, {895, 831}}";
};
};
@@ -138,15 +138,15 @@
vrLen = 107;
vrLoc = 2320;
};
- 8BE0C0701FB1C9E6000B2082 /* PBXTextBookmark */ = {
+ 8BDC9ECE27CEBC0000A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 245463B80991757100464AD3 /* NCSeventeen.h */;
name = "NCSeventeen.h: 69";
rLen = 0;
rLoc = 2660;
rType = 0;
- vrLen = 147;
- vrLoc = 2280;
+ vrLen = 51;
+ vrLoc = 2376;
};
8D01CCC60486CAD60068D4B7 /* NCSeventeen */ = {
activeExec = 0;
diff --git a/plugins/MacVST/NCSeventeen/NCSeventeen.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/NCSeventeen/NCSeventeen.xcodeproj/christopherjohnson.perspectivev3
index 89e115794..550c112cd 100755
--- a/plugins/MacVST/NCSeventeen/NCSeventeen.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/NCSeventeen/NCSeventeen.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 249 231 810 487 0 0 1440 878
+ 186 135 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,12 +351,12 @@
_historyCapacity
0
bookmark
- 8B793CFA21F601E6006E9731
+ 8BDC9ECE27CEBC0000A07B67
history
8B67C7A21FA3B4CC008C64D6
8B6692F41FB1C728007B3434
- 8BE0C0701FB1C9E6000B2082
+ 8B793CFA21F601E6006E9731
SplitCount
@@ -370,18 +370,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 86}}
+ {{0, 0}, {603, 69}}
RubberWindowFrame
- 249 231 810 487 0 0 1440 878
+ 186 135 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 86pt
+ 69pt
Proportion
- 355pt
+ 372pt
Tabs
@@ -395,9 +395,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 328}}
+ {{10, 27}, {603, 345}}
RubberWindowFrame
- 249 231 810 487 0 0 1440 878
+ 186 135 810 487 0 0 1280 698
Module
XCDetailModule
@@ -479,11 +479,11 @@
TableOfContents
- 8B793CFB21F601E6006E9731
+ 8BDC9ECF27CEBC0000A07B67
1CA23ED40692098700951B8B
- 8B793CFC21F601E6006E9731
+ 8BDC9ED027CEBC0000A07B67
8B0237581D42B1C400E1E8C8
- 8B793CFD21F601E6006E9731
+ 8BDC9ED127CEBC0000A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -636,7 +636,7 @@
StatusbarIsVisible
TimeStamp
- 569770470.40799499
+ 667859968.24221396
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -653,10 +653,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/NCSeventeen/NCSeventeen.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/NCSeventeen/NCSeventeen.xcodeproj
WindowString
- 249 231 810 487 0 0 1440 878
+ 186 135 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/NaturalizeDither/NaturalizeDither.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/NaturalizeDither/NaturalizeDither.xcodeproj/christopherjohnson.pbxuser
index 4ef5c5491..d30bfd51e 100755
--- a/plugins/MacVST/NaturalizeDither/NaturalizeDither.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/NaturalizeDither/NaturalizeDither.xcodeproj/christopherjohnson.pbxuser
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 528461129;
- PBXWorkspaceStateSaveDate = 528461129;
+ PBXPerProjectTemplateStateSaveDate = 667859867;
+ PBXWorkspaceStateSaveDate = 667859867;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -66,10 +66,10 @@
};
245463B80991757100464AD3 /* NaturalizeDither.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {866, 780}}";
- sepNavSelRange = "{2424, 36}";
- sepNavVisRange = "{228, 2244}";
- sepNavWindowFrame = "{{712, 47}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1110, 1098}}";
+ sepNavSelRange = "{2491, 0}";
+ sepNavVisRange = "{626, 1870}";
+ sepNavWindowFrame = "{{385, 4}, {895, 694}}";
};
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
@@ -82,10 +82,10 @@
};
24D8286F09A914000093AEF8 /* NaturalizeDitherProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {848, 6539}}";
- sepNavSelRange = "{1262, 0}";
- sepNavVisRange = "{566, 2299}";
- sepNavWindowFrame = "{{545, 47}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {2694, 7380}}";
+ sepNavSelRange = "{7246, 0}";
+ sepNavVisRange = "{6651, 1124}";
+ sepNavWindowFrame = "{{385, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
diff --git a/plugins/MacVST/NaturalizeDither/NaturalizeDither.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/NaturalizeDither/NaturalizeDither.xcodeproj/christopherjohnson.perspectivev3
index 4c0b4e844..40eacf27c 100755
--- a/plugins/MacVST/NaturalizeDither/NaturalizeDither.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/NaturalizeDither/NaturalizeDither.xcodeproj/christopherjohnson.perspectivev3
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -300,7 +298,7 @@
PBXSmartGroupTreeModuleOutlineStateSelectionKey
- 6
+ 7
4
0
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 604 236 810 487 0 0 1440 878
+ 451 138 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +360,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 604 236 810 487 0 0 1440 878
+ 451 138 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -386,8 +384,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 604 236 810 487 0 0 1440 878
Module
XCDetailModule
@@ -441,7 +437,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 451 138 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -469,11 +467,11 @@
TableOfContents
- 8B9D7C171F7FAD77007AB60F
+ 8BDC9EB027CEBBDD00A07B67
1CA23ED40692098700951B8B
- 8B9D7C181F7FAD77007AB60F
+ 8BDC9EB127CEBBDD00A07B67
8B0237581D42B1C400E1E8C8
- 8B9D7C191F7FAD77007AB60F
+ 8BDC9EB227CEBBDD00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +624,7 @@
StatusbarIsVisible
TimeStamp
- 528461175.53941298
+ 667859933.25230706
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,11 +641,11 @@
5
WindowOrderList
- 8B9D7C1A1F7FAD77007AB60F
- /Users/christopherjohnson/Desktop/MacVST/NaturalizeDither/NaturalizeDither.xcodeproj
+ 8BDC9EB327CEBBDD00A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/NaturalizeDither/NaturalizeDither.xcodeproj
WindowString
- 604 236 810 487 0 0 1440 878
+ 451 138 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/NaturalizeDither/source/NaturalizeDither.h b/plugins/MacVST/NaturalizeDither/source/NaturalizeDither.h
index 47044a992..6692763d8 100755
--- a/plugins/MacVST/NaturalizeDither/source/NaturalizeDither.h
+++ b/plugins/MacVST/NaturalizeDither/source/NaturalizeDither.h
@@ -53,7 +53,8 @@ private:
double bynL[13];
double bynR[13];
-
+ uint32_t fpdL;
+ uint32_t fpdR;
};
#endif
diff --git a/plugins/MacVST/NaturalizeDither/source/NaturalizeDitherProc.cpp b/plugins/MacVST/NaturalizeDither/source/NaturalizeDitherProc.cpp
index 6228d9601..04f45e9b1 100755
--- a/plugins/MacVST/NaturalizeDither/source/NaturalizeDitherProc.cpp
+++ b/plugins/MacVST/NaturalizeDither/source/NaturalizeDitherProc.cpp
@@ -36,11 +36,11 @@ void NaturalizeDither::processReplacing(float **inputs, float **outputs, VstInt3
if (inputSampleL > 0) inputSampleL += (0.3333333333);
if (inputSampleL < 0) inputSampleL -= (0.3333333333);
- inputSampleL += (double(fpd)/UINT32_MAX)*0.6666666666;
+ inputSampleL += (double(fpdL)/UINT32_MAX)*0.6666666666;
if (inputSampleR > 0) inputSampleR += (0.3333333333);
if (inputSampleR < 0) inputSampleR -= (0.3333333333);
- inputSampleR += (double(fpd)/UINT32_MAX)*0.6666666666;
+ inputSampleR += (double(fpdR)/UINT32_MAX)*0.6666666666;
//begin L
benfordize = floor(inputSampleL);
@@ -238,11 +238,11 @@ void NaturalizeDither::processDoubleReplacing(double **inputs, double **outputs,
if (inputSampleL > 0) inputSampleL += (0.3333333333);
if (inputSampleL < 0) inputSampleL -= (0.3333333333);
- inputSampleL += (double(fpd)/UINT32_MAX)*0.6666666666;
+ inputSampleL += (double(fpdL)/UINT32_MAX)*0.6666666666;
if (inputSampleR > 0) inputSampleR += (0.3333333333);
if (inputSampleR < 0) inputSampleR -= (0.3333333333);
- inputSampleR += (double(fpd)/UINT32_MAX)*0.6666666666;
+ inputSampleR += (double(fpdR)/UINT32_MAX)*0.6666666666;
//begin L
benfordize = floor(inputSampleL);
diff --git a/plugins/MacVST/Neverland/Neverland.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Neverland/Neverland.xcodeproj/christopherjohnson.pbxuser
index 0799bf92b..39e2e99e8 100755
--- a/plugins/MacVST/Neverland/Neverland.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Neverland/Neverland.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* Neverland */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 602885723;
- PBXWorkspaceStateSaveDate = 602885723;
+ PBXPerProjectTemplateStateSaveDate = 667859973;
+ PBXWorkspaceStateSaveDate = 667859973;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -82,10 +82,10 @@
};
24D8286F09A914000093AEF8 /* NeverlandProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1048, 5330}}";
- sepNavSelRange = "{21524, 0}";
- sepNavVisRange = "{18684, 3396}";
- sepNavWindowFrame = "{{31, 57}, {1092, 821}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1344, 6138}}";
+ sepNavSelRange = "{21389, 0}";
+ sepNavVisRange = "{19859, 2147}";
+ sepNavWindowFrame = "{{31, 4}, {1092, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* Neverland */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/Neverland/Neverland.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Neverland/Neverland.xcodeproj/christopherjohnson.perspectivev3
index 8e3e540d7..ff4f16977 100755
--- a/plugins/MacVST/Neverland/Neverland.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Neverland/Neverland.xcodeproj/christopherjohnson.perspectivev3
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 276 211 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +360,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 276 211 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -386,8 +384,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 34 365 810 487 0 0 1440 878
Module
XCDetailModule
@@ -441,7 +437,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 276 211 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -469,11 +467,11 @@
TableOfContents
- 8B7724CC23F0BB4000206F9E
+ 8BDC9EE527CEBC2600A07B67
1CA23ED40692098700951B8B
- 8B7724CD23F0BB4000206F9E
+ 8BDC9EE627CEBC2600A07B67
8B0237581D42B1C400E1E8C8
- 8B7724CE23F0BB4000206F9E
+ 8BDC9EE727CEBC2600A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +624,7 @@
StatusbarIsVisible
TimeStamp
- 602979136.99477696
+ 667860006.02236605
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,11 +641,11 @@
5
WindowOrderList
- 8B7724CF23F0BB4000206F9E
- /Users/christopherjohnson/Desktop/Neverland/Neverland.xcodeproj
+ 8BDC9EE827CEBC2600A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Neverland/Neverland.xcodeproj
WindowString
- 34 365 810 487 0 0 1440 878
+ 276 211 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Neverland/Neverland.xcodeproj/project.pbxproj b/plugins/MacVST/Neverland/Neverland.xcodeproj/project.pbxproj
index 876dcc440..7e5092ba8 100755
--- a/plugins/MacVST/Neverland/Neverland.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/Neverland/Neverland.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* Neverland */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "Neverland" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* Neverland */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/Neverland/source/NeverlandProc.cpp b/plugins/MacVST/Neverland/source/NeverlandProc.cpp
index 26ed2c176..f2224b6ea 100755
--- a/plugins/MacVST/Neverland/source/NeverlandProc.cpp
+++ b/plugins/MacVST/Neverland/source/NeverlandProc.cpp
@@ -156,11 +156,11 @@ void Neverland::processReplacing(float **inputs, float **outputs, VstInt32 sampl
inputSampleR += (bR[33] * (0.00555223929714115 - (0.00030319367948553*fabs(bR[33]))));
//we apply the first samples of the Neve impulse- dynamically adjusted.
}
- randy = ((double(fpd)/UINT32_MAX)*0.034);
+ randy = ((double(fpdL)/UINT32_MAX)*0.034);
inputSampleL = ((inputSampleL*(1-randy))+(lastSampleL*randy)) * outlevel;
lastSampleL = inputSampleL;
- randy = ((double(fpd)/UINT32_MAX)*0.034);
+ randy = ((double(fpdR)/UINT32_MAX)*0.034);
inputSampleR = ((inputSampleR*(1-randy))+(lastSampleR*randy)) * outlevel;
lastSampleR = inputSampleR;
@@ -332,11 +332,11 @@ void Neverland::processDoubleReplacing(double **inputs, double **outputs, VstInt
inputSampleR += (bR[33] * (0.00555223929714115 - (0.00030319367948553*fabs(bR[33]))));
//we apply the first samples of the Neve impulse- dynamically adjusted.
}
- randy = ((double(fpd)/UINT32_MAX)*0.034);
+ randy = ((double(fpdL)/UINT32_MAX)*0.034);
inputSampleL = ((inputSampleL*(1-randy))+(lastSampleL*randy)) * outlevel;
lastSampleL = inputSampleL;
- randy = ((double(fpd)/UINT32_MAX)*0.034);
+ randy = ((double(fpdR)/UINT32_MAX)*0.034);
inputSampleR = ((inputSampleR*(1-randy))+(lastSampleR*randy)) * outlevel;
lastSampleR = inputSampleR;
diff --git a/plugins/MacVST/Nikola/Nikola.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Nikola/Nikola.xcodeproj/christopherjohnson.pbxuser
index b828d357b..4043b8d20 100755
--- a/plugins/MacVST/Nikola/Nikola.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Nikola/Nikola.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 624243018;
- PBXWorkspaceStateSaveDate = 624243018;
+ PBXPerProjectTemplateStateSaveDate = 667860011;
+ PBXWorkspaceStateSaveDate = 667860011;
};
perUserProjectItems = {
- 8B40EFE32535361C00DEA623 /* XCBuildMessageTextBookmark */ = 8B40EFE32535361C00DEA623 /* XCBuildMessageTextBookmark */;
8B40EFE42535361C00DEA623 /* PBXTextBookmark */ = 8B40EFE42535361C00DEA623 /* PBXTextBookmark */;
+ 8BDC9F0327CEBC3100A07B67 /* PBXTextBookmark */ = 8BDC9F0327CEBC3100A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -78,9 +78,9 @@
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {838, 19747}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1074, 27486}}";
sepNavSelRange = "{10616, 0}";
- sepNavVisRange = "{10459, 399}";
+ sepNavVisRange = "{10579, 157}";
sepNavWindowFrame = "{{15, 42}, {895, 831}}";
};
};
@@ -106,15 +106,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B40EFE32535361C00DEA623 /* XCBuildMessageTextBookmark */ = {
- isa = PBXTextBookmark;
- comments = "Deprecated conversion from string constant to 'char*'";
- fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
- fallbackIsa = XCBuildMessageTextBookmark;
- rLen = 1;
- rLoc = 306;
- rType = 1;
- };
8B40EFE42535361C00DEA623 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
@@ -125,6 +116,16 @@
vrLen = 399;
vrLoc = 10459;
};
+ 8BDC9F0327CEBC3100A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
+ name = "audioeffectx.cpp: 307";
+ rLen = 0;
+ rLoc = 10616;
+ rType = 0;
+ vrLen = 114;
+ vrLoc = 10579;
+ };
8D01CCC60486CAD60068D4B7 /* Nikola */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/Nikola/Nikola.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Nikola/Nikola.xcodeproj/christopherjohnson.perspectivev3
index 1e5745572..06aaf2414 100755
--- a/plugins/MacVST/Nikola/Nikola.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Nikola/Nikola.xcodeproj/christopherjohnson.perspectivev3
@@ -256,6 +256,8 @@
Layout
+ BecomeActive
+
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -321,7 +323,7 @@
185
RubberWindowFrame
- 28 312 810 487 0 0 1440 878
+ 21 174 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -349,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B40EFE42535361C00DEA623
+ 8BDC9F0327CEBC3100A07B67
history
- 8B40EFE32535361C00DEA623
+ 8B40EFE42535361C00DEA623
SplitCount
@@ -366,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 132}}
+ {{0, 0}, {603, 117}}
RubberWindowFrame
- 28 312 810 487 0 0 1440 878
+ 21 174 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 132pt
+ 117pt
Proportion
- 309pt
+ 324pt
Tabs
@@ -391,7 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 414}}
+ {{10, 27}, {603, 297}}
+ RubberWindowFrame
+ 21 174 810 487 0 0 1280 698
Module
XCDetailModule
@@ -446,8 +450,6 @@
Frame
{{10, 27}, {603, 282}}
- RubberWindowFrame
- 28 312 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -475,11 +477,11 @@
TableOfContents
- 8B40EFE52535361C00DEA623
+ 8BDC9F0427CEBC3100A07B67
1CA23ED40692098700951B8B
- 8B40EFE62535361C00DEA623
+ 8BDC9F0527CEBC3100A07B67
8B0237581D42B1C400E1E8C8
- 8B40EFE72535361C00DEA623
+ 8BDC9F0627CEBC3100A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -632,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 624244252.75458896
+ 667860017.79452503
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -649,11 +651,10 @@
5
WindowOrderList
- 8B40EFE82535361C00DEA623
- /Users/christopherjohnson/Desktop/Nikola/Nikola.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Nikola/Nikola.xcodeproj
WindowString
- 28 312 810 487 0 0 1440 878
+ 21 174 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/NodeDither/NodeDither.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/NodeDither/NodeDither.xcodeproj/christopherjohnson.pbxuser
index e760c0f1f..a61a1e41c 100755
--- a/plugins/MacVST/NodeDither/NodeDither.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/NodeDither/NodeDither.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 528461186;
- PBXWorkspaceStateSaveDate = 528461186;
+ PBXPerProjectTemplateStateSaveDate = 667860023;
+ PBXWorkspaceStateSaveDate = 667860023;
};
perUserProjectItems = {
- 8B9D6E4C1F7EF36D007AB60F /* PBXTextBookmark */ = 8B9D6E4C1F7EF36D007AB60F /* PBXTextBookmark */;
- 8B9D7C361F7FADAF007AB60F /* PBXTextBookmark */ = 8B9D7C361F7FADAF007AB60F /* PBXTextBookmark */;
+ 8BDC9F3127CEBC7600A07B67 /* PBXTextBookmark */ = 8BDC9F3127CEBC7600A07B67 /* PBXTextBookmark */;
+ 8BDC9F3227CEBC7600A07B67 /* PBXTextBookmark */ = 8BDC9F3227CEBC7600A07B67 /* PBXTextBookmark */;
+ 8BDC9F3327CEBC7600A07B67 /* PBXTextBookmark */ = 8BDC9F3327CEBC7600A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -62,18 +63,18 @@
};
2407DEB6089929BA00EB68BF /* NodeDither.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {554, 1781}}";
+ sepNavIntBoundsRect = "{{0, 0}, {554, 2466}}";
sepNavSelRange = "{1194, 0}";
- sepNavVisRange = "{0, 0}";
+ sepNavVisRange = "{44, 228}";
sepNavWindowFrame = "{{65, 47}, {895, 831}}";
};
};
245463B80991757100464AD3 /* NodeDither.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {866, 858}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1101, 1062}}";
sepNavSelRange = "{2438, 0}";
- sepNavVisRange = "{0, 2410}";
- sepNavWindowFrame = "{{20, 47}, {895, 831}}";
+ sepNavVisRange = "{2162, 248}";
+ sepNavWindowFrame = "{{20, 4}, {895, 694}}";
};
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
@@ -86,10 +87,10 @@
};
24D8286F09A914000093AEF8 /* NodeDitherProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {848, 3510}}";
- sepNavSelRange = "{1139, 0}";
- sepNavVisRange = "{754, 2292}";
- sepNavWindowFrame = "{{419, 42}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {894, 2952}}";
+ sepNavSelRange = "{3253, 0}";
+ sepNavVisRange = "{2595, 867}";
+ sepNavWindowFrame = "{{385, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -106,25 +107,35 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B9D6E4C1F7EF36D007AB60F /* PBXTextBookmark */ = {
+ 8BDC9F3127CEBC7600A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2407DEB6089929BA00EB68BF /* NodeDither.cpp */;
name = "NodeDither.cpp: 33";
rLen = 0;
rLoc = 1194;
rType = 0;
- vrLen = 0;
- vrLoc = 0;
+ vrLen = 228;
+ vrLoc = 44;
};
- 8B9D7C361F7FADAF007AB60F /* PBXTextBookmark */ = {
+ 8BDC9F3227CEBC7600A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
- fRef = 2407DEB6089929BA00EB68BF /* NodeDither.cpp */;
- name = "NodeDither.cpp: 33";
+ fRef = 245463B80991757100464AD3 /* NodeDither.h */;
+ name = "NodeDither.h: 57";
rLen = 0;
- rLoc = 1194;
+ rLoc = 2438;
rType = 0;
- vrLen = 0;
- vrLoc = 0;
+ vrLen = 248;
+ vrLoc = 2162;
+ };
+ 8BDC9F3327CEBC7600A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 245463B80991757100464AD3 /* NodeDither.h */;
+ name = "NodeDither.h: 57";
+ rLen = 0;
+ rLoc = 2438;
+ rType = 0;
+ vrLen = 248;
+ vrLoc = 2162;
};
8D01CCC60486CAD60068D4B7 /* NodeDither */ = {
activeExec = 0;
diff --git a/plugins/MacVST/NodeDither/NodeDither.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/NodeDither/NodeDither.xcodeproj/christopherjohnson.perspectivev3
index 24e2471ab..9ed888137 100755
--- a/plugins/MacVST/NodeDither/NodeDither.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/NodeDither/NodeDither.xcodeproj/christopherjohnson.perspectivev3
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -300,7 +298,7 @@
PBXSmartGroupTreeModuleOutlineStateSelectionKey
- 6
+ 7
4
0
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 400 338 810 487 0 0 1440 878
+ 298 186 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -339,7 +337,7 @@
PBXProjectModuleGUID
8B0237581D42B1C400E1E8C8
PBXProjectModuleLabel
- NodeDither.cpp
+ NodeDither.h
PBXSplitModuleInNavigatorKey
Split0
@@ -347,14 +345,15 @@
PBXProjectModuleGUID
8B0237591D42B1C400E1E8C8
PBXProjectModuleLabel
- NodeDither.cpp
+ NodeDither.h
_historyCapacity
0
bookmark
- 8B9D7C361F7FADAF007AB60F
+ 8BDC9F3327CEBC7600A07B67
history
- 8B9D6E4C1F7EF36D007AB60F
+ 8BDC9F3127CEBC7600A07B67
+ 8BDC9F3227CEBC7600A07B67
SplitCount
@@ -368,18 +367,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 0}}
+ {{0, 0}, {603, 132}}
RubberWindowFrame
- 400 338 810 487 0 0 1440 878
+ 298 186 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 0pt
+ 132pt
Proportion
- 441pt
+ 309pt
Tabs
@@ -394,8 +393,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 400 338 810 487 0 0 1440 878
Module
XCDetailModule
@@ -449,7 +446,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 401}}
+ {{10, 27}, {603, 282}}
+ RubberWindowFrame
+ 298 186 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -477,11 +476,11 @@
TableOfContents
- 8B9D7C371F7FADAF007AB60F
+ 8BDC9F3427CEBC7600A07B67
1CA23ED40692098700951B8B
- 8B9D7C381F7FADAF007AB60F
+ 8BDC9F3527CEBC7600A07B67
8B0237581D42B1C400E1E8C8
- 8B9D7C391F7FADAF007AB60F
+ 8BDC9F3627CEBC7600A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +633,7 @@
StatusbarIsVisible
TimeStamp
- 528461231.96811002
+ 667860086.58094895
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,11 +650,11 @@
5
WindowOrderList
- 8B9D7C3A1F7FADAF007AB60F
- /Users/christopherjohnson/Desktop/MacVST/NodeDither/NodeDither.xcodeproj
+ 8BDC9F3727CEBC7600A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/NodeDither/NodeDither.xcodeproj
WindowString
- 400 338 810 487 0 0 1440 878
+ 298 186 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/NodeDither/source/NodeDither.h b/plugins/MacVST/NodeDither/source/NodeDither.h
index 240a8d961..bfd641309 100755
--- a/plugins/MacVST/NodeDither/source/NodeDither.h
+++ b/plugins/MacVST/NodeDither/source/NodeDither.h
@@ -57,6 +57,8 @@ private:
double dR[5000];
int gcount;
//default stuff
+ uint32_t fpdL;
+ uint32_t fpdR;
float A;
float B;
diff --git a/plugins/MacVST/NodeDither/source/NodeDitherProc.cpp b/plugins/MacVST/NodeDither/source/NodeDitherProc.cpp
index cf4d3c51d..3dc70a685 100755
--- a/plugins/MacVST/NodeDither/source/NodeDitherProc.cpp
+++ b/plugins/MacVST/NodeDither/source/NodeDitherProc.cpp
@@ -43,10 +43,10 @@ void NodeDither::processReplacing(float **inputs, float **outputs, VstInt32 samp
if (gcount < 0 || gcount > 2450) {gcount = 2450;}
- currentDitherL = (double(fpd)/UINT32_MAX);
+ currentDitherL = (double(fpdL)/UINT32_MAX);
inputSampleL += currentDitherL;
- currentDitherR = (double(fpd)/UINT32_MAX);
+ currentDitherR = (double(fpdR)/UINT32_MAX);
inputSampleR += currentDitherR;
if (phase == 1) {
@@ -121,10 +121,10 @@ void NodeDither::processDoubleReplacing(double **inputs, double **outputs, VstIn
if (gcount < 0 || gcount > 2450) {gcount = 2450;}
- currentDitherL = (double(fpd)/UINT32_MAX);
+ currentDitherL = (double(fpdL)/UINT32_MAX);
inputSampleL += currentDitherL;
- currentDitherR = (double(fpd)/UINT32_MAX);
+ currentDitherR = (double(fpdR)/UINT32_MAX);
inputSampleR += currentDitherR;
if (phase == 1) {
diff --git a/plugins/MacVST/Noise/Noise.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Noise/Noise.xcodeproj/christopherjohnson.pbxuser
index 637023637..743d03510 100755
--- a/plugins/MacVST/Noise/Noise.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Noise/Noise.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569770541;
- PBXWorkspaceStateSaveDate = 569770541;
+ PBXPerProjectTemplateStateSaveDate = 667860091;
+ PBXWorkspaceStateSaveDate = 667860091;
};
perUserProjectItems = {
- 8B4E5870201C0C8B00B5DC2A /* PBXTextBookmark */ = 8B4E5870201C0C8B00B5DC2A /* PBXTextBookmark */;
8B793D1A21F60235006E9731 /* PBXTextBookmark */ = 8B793D1A21F60235006E9731 /* PBXTextBookmark */;
+ 8BDC9F5527CEBDA400A07B67 /* PBXTextBookmark */ = 8BDC9F5527CEBDA400A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -70,7 +70,7 @@
};
245463B80991757100464AD3 /* Noise.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {523, 1300}}";
+ sepNavIntBoundsRect = "{{0, 0}, {405, 1818}}";
sepNavSelRange = "{2962, 0}";
sepNavVisRange = "{0, 0}";
sepNavWindowFrame = "{{895, 11}, {895, 831}}";
@@ -86,10 +86,10 @@
};
24D8286F09A914000093AEF8 /* NoiseProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {848, 8411}}";
- sepNavSelRange = "{7335, 730}";
- sepNavVisRange = "{7134, 1693}";
- sepNavWindowFrame = "{{545, 46}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {848, 10278}}";
+ sepNavSelRange = "{5258, 0}";
+ sepNavVisRange = "{4655, 1116}";
+ sepNavWindowFrame = "{{385, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -106,16 +106,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B4E5870201C0C8B00B5DC2A /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 245463B80991757100464AD3 /* Noise.h */;
- name = "Noise.h: 95";
- rLen = 0;
- rLoc = 2962;
- rType = 0;
- vrLen = 0;
- vrLoc = 0;
- };
8B793D1A21F60235006E9731 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 245463B80991757100464AD3 /* Noise.h */;
@@ -126,6 +116,16 @@
vrLen = 0;
vrLoc = 0;
};
+ 8BDC9F5527CEBDA400A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 245463B80991757100464AD3 /* Noise.h */;
+ name = "Noise.h: 97";
+ rLen = 0;
+ rLoc = 2962;
+ rType = 0;
+ vrLen = 0;
+ vrLoc = 0;
+ };
8D01CCC60486CAD60068D4B7 /* Noise */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/Noise/Noise.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Noise/Noise.xcodeproj/christopherjohnson.perspectivev3
index 9dc310ce7..ae77957a8 100755
--- a/plugins/MacVST/Noise/Noise.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Noise/Noise.xcodeproj/christopherjohnson.perspectivev3
@@ -225,8 +225,8 @@
PerspectiveWidths
- 810
- 810
+ 661
+ 661
Perspectives
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 26 91 661 394 0 0 1440 878
+ 351 250 661 394 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +349,10 @@
_historyCapacity
0
bookmark
- 8B793D1A21F60235006E9731
+ 8BDC9F5527CEBDA400A07B67
history
- 8B4E5870201C0C8B00B5DC2A
+ 8B793D1A21F60235006E9731
SplitCount
@@ -370,7 +368,7 @@
Frame
{{0, 0}, {454, 0}}
RubberWindowFrame
- 26 91 661 394 0 0 1440 878
+ 351 250 661 394 0 0 1280 698
Module
PBXNavigatorGroup
@@ -394,8 +392,6 @@
Frame
{{10, 27}, {454, 321}}
- RubberWindowFrame
- 26 91 661 394 0 0 1440 878
Module
XCDetailModule
@@ -449,7 +445,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {454, 321}}
+ RubberWindowFrame
+ 351 250 661 394 0 0 1280 698
Module
PBXBuildResultsModule
@@ -477,11 +475,11 @@
TableOfContents
- 8B793D1B21F60235006E9731
+ 8BDC9F5627CEBDA400A07B67
1CA23ED40692098700951B8B
- 8B793D1C21F60235006E9731
+ 8BDC9F5727CEBDA400A07B67
8B0237581D42B1C400E1E8C8
- 8B793D1D21F60235006E9731
+ 8BDC9F5827CEBDA400A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +632,7 @@
StatusbarIsVisible
TimeStamp
- 569770549.64791
+ 667860388.91928303
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +649,11 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/Noise/Noise.xcodeproj
+ 8BDC9F5927CEBDA400A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Noise/Noise.xcodeproj
WindowString
- 26 91 661 394 0 0 1440 878
+ 351 250 661 394 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Noise/source/NoiseProc.cpp b/plugins/MacVST/Noise/source/NoiseProc.cpp
index bc268c0ff..0dbe5c6d2 100755
--- a/plugins/MacVST/Noise/source/NoiseProc.cpp
+++ b/plugins/MacVST/Noise/source/NoiseProc.cpp
@@ -118,12 +118,12 @@ void Noise::processReplacing(float **inputs, float **outputs, VstInt32 sampleFra
if (surgeL 1.0) surgeL = 1.0;
}
else
{
- surgeL -= ((double(fpd)/UINT32_MAX)*(surgeL-fabs(inputSampleL))*decay);
+ surgeL -= ((double(fpdL)/UINT32_MAX)*(surgeL-fabs(inputSampleL))*decay);
if (surgeL < 0.0) surgeL = 0.0;
}
@@ -134,12 +134,12 @@ void Noise::processReplacing(float **inputs, float **outputs, VstInt32 sampleFra
if (surgeR 1.0) surgeR = 1.0;
}
else
{
- surgeR -= ((double(fpd)/UINT32_MAX)*(surgeR-fabs(inputSampleR))*decay);
+ surgeR -= ((double(fpdR)/UINT32_MAX)*(surgeR-fabs(inputSampleR))*decay);
if (surgeR < 0.0) surgeR = 0.0;
}
@@ -172,11 +172,13 @@ void Noise::processReplacing(float **inputs, float **outputs, VstInt32 sampleFra
else {flipR = false;}
}
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
- if (flipL) noiseAL += (double(fpd)/UINT32_MAX);
- else noiseAL -= (double(fpd)/UINT32_MAX);
- if (flipR) noiseAR += (double(fpd)/UINT32_MAX);
- else noiseAR -= (double(fpd)/UINT32_MAX);
+ if (flipL) noiseAL += (double(fpdL)/UINT32_MAX);
+ else noiseAL -= (double(fpdL)/UINT32_MAX);
+ if (flipR) noiseAR += (double(fpdR)/UINT32_MAX);
+ else noiseAR -= (double(fpdR)/UINT32_MAX);
if (filterflip)
{
@@ -388,12 +390,12 @@ void Noise::processDoubleReplacing(double **inputs, double **outputs, VstInt32 s
if (surgeL 1.0) surgeL = 1.0;
}
else
{
- surgeL -= ((double(fpd)/UINT32_MAX)*(surgeL-fabs(inputSampleL))*decay);
+ surgeL -= ((double(fpdL)/UINT32_MAX)*(surgeL-fabs(inputSampleL))*decay);
if (surgeL < 0.0) surgeL = 0.0;
}
@@ -404,12 +406,12 @@ void Noise::processDoubleReplacing(double **inputs, double **outputs, VstInt32 s
if (surgeR 1.0) surgeR = 1.0;
}
else
{
- surgeR -= ((double(fpd)/UINT32_MAX)*(surgeR-fabs(inputSampleR))*decay);
+ surgeR -= ((double(fpdR)/UINT32_MAX)*(surgeR-fabs(inputSampleR))*decay);
if (surgeR < 0.0) surgeR = 0.0;
}
@@ -442,11 +444,13 @@ void Noise::processDoubleReplacing(double **inputs, double **outputs, VstInt32 s
else {flipR = false;}
}
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
- if (flipL) noiseAL += (double(fpd)/UINT32_MAX);
- else noiseAL -= (double(fpd)/UINT32_MAX);
- if (flipR) noiseAR += (double(fpd)/UINT32_MAX);
- else noiseAR -= (double(fpd)/UINT32_MAX);
+ if (flipL) noiseAL += (double(fpdL)/UINT32_MAX);
+ else noiseAL -= (double(fpdL)/UINT32_MAX);
+ if (flipR) noiseAR += (double(fpdR)/UINT32_MAX);
+ else noiseAR -= (double(fpdR)/UINT32_MAX);
if (filterflip)
{
diff --git a/plugins/MacVST/NonlinearSpace/NonlinearSpace.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/NonlinearSpace/NonlinearSpace.xcodeproj/christopherjohnson.pbxuser
index b0c63eaf9..5aab01618 100755
--- a/plugins/MacVST/NonlinearSpace/NonlinearSpace.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/NonlinearSpace/NonlinearSpace.xcodeproj/christopherjohnson.pbxuser
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569770570;
- PBXWorkspaceStateSaveDate = 569770570;
+ PBXPerProjectTemplateStateSaveDate = 667860394;
+ PBXWorkspaceStateSaveDate = 667860394;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
diff --git a/plugins/MacVST/NonlinearSpace/NonlinearSpace.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/NonlinearSpace/NonlinearSpace.xcodeproj/christopherjohnson.perspectivev3
index 6658511d2..bbb914323 100755
--- a/plugins/MacVST/NonlinearSpace/NonlinearSpace.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/NonlinearSpace/NonlinearSpace.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 27 377 810 487 0 0 1440 878
+ 20 204 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 27 377 810 487 0 0 1440 878
+ 20 204 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 27 377 810 487 0 0 1440 878
+ 20 204 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B793D3A21F60255006E9731
+ 8BDC9F6A27CEBDB100A07B67
1CA23ED40692098700951B8B
- 8B793D3B21F60255006E9731
+ 8BDC9F6B27CEBDB100A07B67
8B0237581D42B1C400E1E8C8
- 8B793D3C21F60255006E9731
+ 8BDC9F6C27CEBDB100A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 569770581.31031001
+ 667860401.43262196
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +643,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/NonlinearSpace/NonlinearSpace.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/NonlinearSpace/NonlinearSpace.xcodeproj
WindowString
- 27 377 810 487 0 0 1440 878
+ 20 204 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/NotJustAnotherCD/NotJustAnotherCD.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/NotJustAnotherCD/NotJustAnotherCD.xcodeproj/christopherjohnson.pbxuser
index 6bbe77cd5..20742eff6 100755
--- a/plugins/MacVST/NotJustAnotherCD/NotJustAnotherCD.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/NotJustAnotherCD/NotJustAnotherCD.xcodeproj/christopherjohnson.pbxuser
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 528461244;
- PBXWorkspaceStateSaveDate = 528461244;
+ PBXPerProjectTemplateStateSaveDate = 667860405;
+ PBXWorkspaceStateSaveDate = 667860405;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -66,10 +66,10 @@
};
245463B80991757100464AD3 /* NotJustAnotherCD.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {866, 806}}";
- sepNavSelRange = "{2516, 0}";
- sepNavVisRange = "{229, 2300}";
- sepNavWindowFrame = "{{468, 22}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1110, 1152}}";
+ sepNavSelRange = "{2537, 0}";
+ sepNavVisRange = "{661, 1883}";
+ sepNavWindowFrame = "{{385, 4}, {895, 694}}";
};
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
@@ -82,10 +82,10 @@
};
24D8286F09A914000093AEF8 /* NotJustAnotherCDProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {848, 7098}}";
+ sepNavIntBoundsRect = "{{0, 0}, {2694, 7866}}";
sepNavSelRange = "{2693, 0}";
- sepNavVisRange = "{8090, 2211}";
- sepNavWindowFrame = "{{443, 47}, {895, 831}}";
+ sepNavVisRange = "{6270, 596}";
+ sepNavWindowFrame = "{{385, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
diff --git a/plugins/MacVST/NotJustAnotherCD/NotJustAnotherCD.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/NotJustAnotherCD/NotJustAnotherCD.xcodeproj/christopherjohnson.perspectivev3
index dadefdc1e..874cb8c88 100755
--- a/plugins/MacVST/NotJustAnotherCD/NotJustAnotherCD.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/NotJustAnotherCD/NotJustAnotherCD.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 249 293 810 487 0 0 1440 878
+ 333 172 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -360,18 +360,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 13}}
+ {{0, 0}, {603, 0}}
RubberWindowFrame
- 249 293 810 487 0 0 1440 878
+ 333 172 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 13pt
+ 0pt
Proportion
- 428pt
+ 441pt
Tabs
@@ -385,9 +385,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 401}}
- RubberWindowFrame
- 249 293 810 487 0 0 1440 878
+ {{10, 27}, {603, 414}}
Module
XCDetailModule
@@ -441,7 +439,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 333 172 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B9D7C561F7FAE37007AB60F
+ 8BDC9F9727CEBE0F00A07B67
1CA23ED40692098700951B8B
- 8B9D7C571F7FAE37007AB60F
+ 8BDC9F9827CEBE0F00A07B67
8B0237581D42B1C400E1E8C8
- 8B9D7C581F7FAE37007AB60F
+ 8BDC9F9927CEBE0F00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 528461367.65213001
+ 667860495.34559703
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +643,11 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/NotJustAnotherCD/NotJustAnotherCD.xcodeproj
+ 8BDC9F9A27CEBE0F00A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/NotJustAnotherCD/NotJustAnotherCD.xcodeproj
WindowString
- 249 293 810 487 0 0 1440 878
+ 333 172 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/NotJustAnotherCD/source/NotJustAnotherCD.h b/plugins/MacVST/NotJustAnotherCD/source/NotJustAnotherCD.h
index d27f0cc5c..81fe49f8d 100755
--- a/plugins/MacVST/NotJustAnotherCD/source/NotJustAnotherCD.h
+++ b/plugins/MacVST/NotJustAnotherCD/source/NotJustAnotherCD.h
@@ -55,6 +55,8 @@ private:
double bynR[13];
double noiseShapingL;
double noiseShapingR;
+ uint32_t fpdL;
+ uint32_t fpdR;
};
diff --git a/plugins/MacVST/NotJustAnotherDither/NotJustAnotherDither.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/NotJustAnotherDither/NotJustAnotherDither.xcodeproj/christopherjohnson.pbxuser
index 0c7cd53bc..af5b79a7a 100755
--- a/plugins/MacVST/NotJustAnotherDither/NotJustAnotherDither.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/NotJustAnotherDither/NotJustAnotherDither.xcodeproj/christopherjohnson.pbxuser
@@ -49,13 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 615684254;
- PBXWorkspaceStateSaveDate = 615684254;
+ PBXPerProjectTemplateStateSaveDate = 667860500;
+ PBXWorkspaceStateSaveDate = 667860500;
};
perUserProjectItems = {
8BB9A42324B28A6700CD76A8 /* PBXTextBookmark */ = 8BB9A42324B28A6700CD76A8 /* PBXTextBookmark */;
- 8BB9A50B24B2963800CD76A8 /* PBXTextBookmark */ = 8BB9A50B24B2963800CD76A8 /* PBXTextBookmark */;
8BB9A5D724B298B700CD76A8 /* PBXTextBookmark */ = 8BB9A5D724B298B700CD76A8 /* PBXTextBookmark */;
+ 8BDC9FAB27CEBE1F00A07B67 /* PBXTextBookmark */ = 8BDC9FAB27CEBE1F00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -87,9 +87,9 @@
};
24D8286F09A914000093AEF8 /* NotJustAnotherDitherProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {768, 4147}}";
+ sepNavIntBoundsRect = "{{0, 0}, {481, 5724}}";
sepNavSelRange = "{6513, 0}";
- sepNavVisRange = "{6511, 68}";
+ sepNavVisRange = "{6487, 66}";
sepNavWindowFrame = "{{24, 57}, {895, 821}}";
};
};
@@ -117,16 +117,6 @@
vrLen = 237;
vrLoc = 0;
};
- 8BB9A50B24B2963800CD76A8 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* NotJustAnotherDitherProc.cpp */;
- name = "NotJustAnotherDitherProc.cpp: 171";
- rLen = 0;
- rLoc = 6513;
- rType = 0;
- vrLen = 130;
- vrLoc = 6449;
- };
8BB9A5D724B298B700CD76A8 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* NotJustAnotherDitherProc.cpp */;
@@ -137,6 +127,16 @@
vrLen = 68;
vrLoc = 6511;
};
+ 8BDC9FAB27CEBE1F00A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* NotJustAnotherDitherProc.cpp */;
+ name = "NotJustAnotherDitherProc.cpp: 171";
+ rLen = 0;
+ rLoc = 6513;
+ rType = 0;
+ vrLen = 66;
+ vrLoc = 6487;
+ };
8D01CCC60486CAD60068D4B7 /* NotJustAnotherDither */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/NotJustAnotherDither/NotJustAnotherDither.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/NotJustAnotherDither/NotJustAnotherDither.xcodeproj/christopherjohnson.perspectivev3
index 42e71148a..be6b0eb8b 100755
--- a/plugins/MacVST/NotJustAnotherDither/NotJustAnotherDither.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/NotJustAnotherDither/NotJustAnotherDither.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
258
RubberWindowFrame
- 17 360 810 487 0 0 1440 878
+ 13 196 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,11 +351,11 @@
_historyCapacity
0
bookmark
- 8BB9A5D724B298B700CD76A8
+ 8BDC9FAB27CEBE1F00A07B67
history
8BB9A42324B28A6700CD76A8
- 8BB9A50B24B2963800CD76A8
+ 8BB9A5D724B298B700CD76A8
SplitCount
@@ -369,18 +369,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {530, 69}}
+ {{0, 0}, {530, 51}}
RubberWindowFrame
- 17 360 810 487 0 0 1440 878
+ 13 196 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 69pt
+ 51pt
Proportion
- 372pt
+ 390pt
Tabs
@@ -394,9 +394,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {530, 345}}
+ {{10, 27}, {530, 363}}
RubberWindowFrame
- 17 360 810 487 0 0 1440 878
+ 13 196 810 487 0 0 1280 698
Module
XCDetailModule
@@ -478,11 +478,11 @@
TableOfContents
- 8BB9A5D824B298B700CD76A8
+ 8BDC9FAC27CEBE1F00A07B67
1CA23ED40692098700951B8B
- 8BB9A5D924B298B700CD76A8
+ 8BDC9FAD27CEBE1F00A07B67
8B0237581D42B1C400E1E8C8
- 8BB9A5DA24B298B700CD76A8
+ 8BDC9FAE27CEBE1F00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -635,7 +635,7 @@
StatusbarIsVisible
TimeStamp
- 615684279.64847696
+ 667860511.51767802
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -652,11 +652,10 @@
5
WindowOrderList
- 8BB9A5DB24B298B700CD76A8
- /Users/christopherjohnson/Desktop/NotJustAnotherDither/NotJustAnotherDither.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/NotJustAnotherDither/NotJustAnotherDither.xcodeproj
WindowString
- 17 360 810 487 0 0 1440 878
+ 13 196 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/NotJustAnotherDither/source/NotJustAnotherDitherProc.cpp b/plugins/MacVST/NotJustAnotherDither/source/NotJustAnotherDitherProc.cpp
index 7e38de75c..f9721a726 100755
--- a/plugins/MacVST/NotJustAnotherDither/source/NotJustAnotherDitherProc.cpp
+++ b/plugins/MacVST/NotJustAnotherDither/source/NotJustAnotherDitherProc.cpp
@@ -31,10 +31,10 @@ void NotJustAnotherDither::processReplacing(float **inputs, float **outputs, Vst
{
double inputSampleL = *in1;
double inputSampleR = *in2;
- if (fabs(inputSampleL)<1.18e-37) inputSampleL = fpd * 1.18e-37;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
- if (fabs(inputSampleR)<1.18e-37) inputSampleR = fpd * 1.18e-37;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
+ if (fabs(inputSampleL)<1.18e-23) inputSampleL = fpdL * 1.18e-17;
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ if (fabs(inputSampleR)<1.18e-23) inputSampleR = fpdR * 1.18e-17;
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
inputSampleL *= scaleFactor;
inputSampleR *= scaleFactor;
@@ -185,10 +185,10 @@ void NotJustAnotherDither::processDoubleReplacing(double **inputs, double **outp
{
double inputSampleL = *in1;
double inputSampleR = *in2;
- if (fabs(inputSampleL)<1.18e-43) inputSampleL = fpd * 1.18e-43;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
- if (fabs(inputSampleR)<1.18e-43) inputSampleR = fpd * 1.18e-43;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
+ if (fabs(inputSampleL)<1.18e-23) inputSampleL = fpdL * 1.18e-17;
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ if (fabs(inputSampleR)<1.18e-23) inputSampleR = fpdR * 1.18e-17;
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
inputSampleL *= scaleFactor;
inputSampleR *= scaleFactor;
diff --git a/plugins/MacVST/OneCornerClip/OneCornerClip.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/OneCornerClip/OneCornerClip.xcodeproj/christopherjohnson.pbxuser
index 1f3a7c94e..a82dd656d 100755
--- a/plugins/MacVST/OneCornerClip/OneCornerClip.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/OneCornerClip/OneCornerClip.xcodeproj/christopherjohnson.pbxuser
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569770606;
- PBXWorkspaceStateSaveDate = 569770606;
+ PBXPerProjectTemplateStateSaveDate = 667860517;
+ PBXWorkspaceStateSaveDate = 667860517;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
diff --git a/plugins/MacVST/OneCornerClip/OneCornerClip.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/OneCornerClip/OneCornerClip.xcodeproj/christopherjohnson.perspectivev3
index 07b0810b7..46a74027b 100755
--- a/plugins/MacVST/OneCornerClip/OneCornerClip.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/OneCornerClip/OneCornerClip.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 19 372 810 487 0 0 1440 878
+ 14 202 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 19 372 810 487 0 0 1440 878
+ 14 202 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 19 372 810 487 0 0 1440 878
+ 14 202 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B793D5921F60278006E9731
+ 8BDC9FC927CEBE2900A07B67
1CA23ED40692098700951B8B
- 8B793D5A21F60278006E9731
+ 8BDC9FCA27CEBE2900A07B67
8B0237581D42B1C400E1E8C8
- 8B793D5B21F60278006E9731
+ 8BDC9FCB27CEBE2900A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 569770616.13496995
+ 667860521.42082
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +643,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/OneCornerClip/OneCornerClip.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/OneCornerClip/OneCornerClip.xcodeproj
WindowString
- 19 372 810 487 0 0 1440 878
+ 14 202 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/PDBuss/PDBuss.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/PDBuss/PDBuss.xcodeproj/christopherjohnson.pbxuser
index 37b5241dd..894e05098 100755
--- a/plugins/MacVST/PDBuss/PDBuss.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/PDBuss/PDBuss.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569770752;
- PBXWorkspaceStateSaveDate = 569770752;
+ PBXPerProjectTemplateStateSaveDate = 667860734;
+ PBXWorkspaceStateSaveDate = 667860734;
};
perUserProjectItems = {
- 8B4E574B201BE1E100B5DC2A /* PBXTextBookmark */ = 8B4E574B201BE1E100B5DC2A /* PBXTextBookmark */;
8B793D7821F60308006E9731 /* PBXTextBookmark */ = 8B793D7821F60308006E9731 /* PBXTextBookmark */;
+ 8BDCA04C27CEBF0200A07B67 /* PBXTextBookmark */ = 8BDCA04C27CEBF0200A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -62,9 +62,9 @@
};
2407DEB6089929BA00EB68BF /* PDBuss.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {554, 1820}}";
+ sepNavIntBoundsRect = "{{0, 0}, {624, 2484}}";
sepNavSelRange = "{2794, 0}";
- sepNavVisRange = "{2688, 198}";
+ sepNavVisRange = "{2694, 222}";
sepNavWindowFrame = "{{337, 47}, {895, 831}}";
};
};
@@ -106,16 +106,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B4E574B201BE1E100B5DC2A /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 2407DEB6089929BA00EB68BF /* PDBuss.cpp */;
- name = "PDBuss.cpp: 85";
- rLen = 0;
- rLoc = 2794;
- rType = 0;
- vrLen = 272;
- vrLoc = 2616;
- };
8B793D7821F60308006E9731 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2407DEB6089929BA00EB68BF /* PDBuss.cpp */;
@@ -126,6 +116,16 @@
vrLen = 198;
vrLoc = 2688;
};
+ 8BDCA04C27CEBF0200A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 2407DEB6089929BA00EB68BF /* PDBuss.cpp */;
+ name = "PDBuss.cpp: 81";
+ rLen = 0;
+ rLoc = 2794;
+ rType = 0;
+ vrLen = 222;
+ vrLoc = 2694;
+ };
8D01CCC60486CAD60068D4B7 /* PDBuss */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/PDBuss/PDBuss.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/PDBuss/PDBuss.xcodeproj/christopherjohnson.perspectivev3
index 2dcefe9bf..b3c3d48b3 100755
--- a/plugins/MacVST/PDBuss/PDBuss.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/PDBuss/PDBuss.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 27 370 810 487 0 0 1440 878
+ 20 201 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B793D7821F60308006E9731
+ 8BDCA04C27CEBF0200A07B67
history
- 8B4E574B201BE1E100B5DC2A
+ 8B793D7821F60308006E9731
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 117}}
+ {{0, 0}, {603, 102}}
RubberWindowFrame
- 27 370 810 487 0 0 1440 878
+ 20 201 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 117pt
+ 102pt
Proportion
- 324pt
+ 339pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
+ {{10, 27}, {603, 312}}
RubberWindowFrame
- 27 370 810 487 0 0 1440 878
+ 20 201 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B793D7921F60308006E9731
+ 8BDCA04D27CEBF0200A07B67
1CA23ED40692098700951B8B
- 8B793D7A21F60308006E9731
+ 8BDCA04E27CEBF0200A07B67
8B0237581D42B1C400E1E8C8
- 8B793D7B21F60308006E9731
+ 8BDCA04F27CEBF0200A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 569770760.80971301
+ 667860738.79030204
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +651,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/PDBuss/PDBuss.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/PDBuss/PDBuss.xcodeproj
WindowString
- 27 370 810 487 0 0 1440 878
+ 20 201 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/PDChannel/PDChannel.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/PDChannel/PDChannel.xcodeproj/christopherjohnson.pbxuser
index 80f815ac7..bf45cf58c 100755
--- a/plugins/MacVST/PDChannel/PDChannel.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/PDChannel/PDChannel.xcodeproj/christopherjohnson.pbxuser
@@ -49,13 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569770782;
- PBXWorkspaceStateSaveDate = 569770782;
+ PBXPerProjectTemplateStateSaveDate = 667860742;
+ PBXWorkspaceStateSaveDate = 667860742;
};
perUserProjectItems = {
8B4E574F201BE1E300B5DC2A /* PBXTextBookmark */ = 8B4E574F201BE1E300B5DC2A /* PBXTextBookmark */;
- 8B4E5751201BE1E300B5DC2A /* PBXTextBookmark */ = 8B4E5751201BE1E300B5DC2A /* PBXTextBookmark */;
8B793D9821F60328006E9731 /* PBXTextBookmark */ = 8B793D9821F60328006E9731 /* PBXTextBookmark */;
+ 8BDCA06A27CEBF1000A07B67 /* PBXTextBookmark */ = 8BDCA06A27CEBF1000A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -87,9 +87,9 @@
};
24D8286F09A914000093AEF8 /* PDChannelProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {614, 3341}}";
+ sepNavIntBoundsRect = "{{0, 0}, {687, 3312}}";
sepNavSelRange = "{3644, 0}";
- sepNavVisRange = "{3529, 442}";
+ sepNavVisRange = "{3562, 183}";
sepNavWindowFrame = "{{42, 47}, {895, 831}}";
};
};
@@ -117,16 +117,6 @@
vrLen = 244;
vrLoc = 227;
};
- 8B4E5751201BE1E300B5DC2A /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* PDChannelProc.cpp */;
- name = "PDChannelProc.cpp: 106";
- rLen = 0;
- rLoc = 3644;
- rType = 0;
- vrLen = 467;
- vrLoc = 3544;
- };
8B793D9821F60328006E9731 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* PDChannelProc.cpp */;
@@ -137,6 +127,16 @@
vrLen = 442;
vrLoc = 3529;
};
+ 8BDCA06A27CEBF1000A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* PDChannelProc.cpp */;
+ name = "PDChannelProc.cpp: 127";
+ rLen = 0;
+ rLoc = 3644;
+ rType = 0;
+ vrLen = 183;
+ vrLoc = 3562;
+ };
8D01CCC60486CAD60068D4B7 /* PDChannel */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/PDChannel/PDChannel.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/PDChannel/PDChannel.xcodeproj/christopherjohnson.perspectivev3
index 4ed825637..3e04a3273 100755
--- a/plugins/MacVST/PDChannel/PDChannel.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/PDChannel/PDChannel.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 24 89 810 487 0 0 1440 878
+ 18 68 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,11 +351,11 @@
_historyCapacity
0
bookmark
- 8B793D9821F60328006E9731
+ 8BDCA06A27CEBF1000A07B67
history
8B4E574F201BE1E300B5DC2A
- 8B4E5751201BE1E300B5DC2A
+ 8B793D9821F60328006E9731
SplitCount
@@ -369,18 +369,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 117}}
+ {{0, 0}, {603, 102}}
RubberWindowFrame
- 24 89 810 487 0 0 1440 878
+ 18 68 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 117pt
+ 102pt
Proportion
- 324pt
+ 339pt
Tabs
@@ -394,9 +394,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
+ {{10, 27}, {603, 312}}
RubberWindowFrame
- 24 89 810 487 0 0 1440 878
+ 18 68 810 487 0 0 1280 698
Module
XCDetailModule
@@ -478,11 +478,11 @@
TableOfContents
- 8B793D9921F60328006E9731
+ 8BDCA06B27CEBF1000A07B67
1CA23ED40692098700951B8B
- 8B793D9A21F60328006E9731
+ 8BDCA06C27CEBF1000A07B67
8B0237581D42B1C400E1E8C8
- 8B793D9B21F60328006E9731
+ 8BDCA06D27CEBF1000A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -635,7 +635,7 @@
StatusbarIsVisible
TimeStamp
- 569770792.98222196
+ 667860752.94717705
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -652,10 +652,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/PDChannel/PDChannel.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/PDChannel/PDChannel.xcodeproj
WindowString
- 24 89 810 487 0 0 1440 878
+ 18 68 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Pafnuty/Pafnuty.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Pafnuty/Pafnuty.xcodeproj/christopherjohnson.pbxuser
index bbcb67308..b1d7818e3 100755
--- a/plugins/MacVST/Pafnuty/Pafnuty.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Pafnuty/Pafnuty.xcodeproj/christopherjohnson.pbxuser
@@ -49,13 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 570163620;
- PBXWorkspaceStateSaveDate = 570163620;
+ PBXPerProjectTemplateStateSaveDate = 667860525;
+ PBXWorkspaceStateSaveDate = 667860525;
};
perUserProjectItems = {
8B1662EF21FC01C400D64CD6 /* PBXTextBookmark */ = 8B1662EF21FC01C400D64CD6 /* PBXTextBookmark */;
8B825E0521FBFFDF00EEF740 /* PBXTextBookmark */ = 8B825E0521FBFFDF00EEF740 /* PBXTextBookmark */;
- 8B825E0721FBFFDF00EEF740 /* PBXTextBookmark */ = 8B825E0721FBFFDF00EEF740 /* PBXTextBookmark */;
+ 8BDC9FE627CEBE3200A07B67 /* PBXTextBookmark */ = 8BDC9FE627CEBE3200A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -87,9 +87,9 @@
};
24D8286F09A914000093AEF8 /* PafnutyProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {554, 7189}}";
+ sepNavIntBoundsRect = "{{0, 0}, {768, 8694}}";
sepNavSelRange = "{10172, 0}";
- sepNavVisRange = "{10104, 122}";
+ sepNavVisRange = "{10152, 102}";
sepNavWindowFrame = "{{0, 44}, {946, 833}}";
};
};
@@ -127,15 +127,15 @@
vrLen = 312;
vrLoc = 5699;
};
- 8B825E0721FBFFDF00EEF740 /* PBXTextBookmark */ = {
+ 8BDC9FE627CEBE3200A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* PafnutyProc.cpp */;
- name = "PafnutyProc.cpp: 327";
+ name = "PafnutyProc.cpp: 348";
rLen = 0;
rLoc = 10172;
rType = 0;
- vrLen = 167;
- vrLoc = 10059;
+ vrLen = 102;
+ vrLoc = 10152;
};
8D01CCC60486CAD60068D4B7 /* Pafnuty */ = {
activeExec = 0;
diff --git a/plugins/MacVST/Pafnuty/Pafnuty.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Pafnuty/Pafnuty.xcodeproj/christopherjohnson.perspectivev3
index 4c9e6746c..13a8a10c3 100755
--- a/plugins/MacVST/Pafnuty/Pafnuty.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Pafnuty/Pafnuty.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 56 336 810 487 0 0 1440 878
+ 42 185 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,11 +351,11 @@
_historyCapacity
0
bookmark
- 8B1662EF21FC01C400D64CD6
+ 8BDC9FE627CEBE3200A07B67
history
8B825E0521FBFFDF00EEF740
- 8B825E0721FBFFDF00EEF740
+ 8B1662EF21FC01C400D64CD6
SplitCount
@@ -369,18 +369,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 102}}
+ {{0, 0}, {603, 86}}
RubberWindowFrame
- 56 336 810 487 0 0 1440 878
+ 42 185 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 102pt
+ 86pt
Proportion
- 339pt
+ 355pt
Tabs
@@ -394,9 +394,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 312}}
+ {{10, 27}, {603, 328}}
RubberWindowFrame
- 56 336 810 487 0 0 1440 878
+ 42 185 810 487 0 0 1280 698
Module
XCDetailModule
@@ -478,11 +478,11 @@
TableOfContents
- 8B1662F021FC01C400D64CD6
+ 8BDC9FE727CEBE3200A07B67
1CA23ED40692098700951B8B
- 8B1662F121FC01C400D64CD6
+ 8BDC9FE827CEBE3200A07B67
8B0237581D42B1C400E1E8C8
- 8B1662F221FC01C400D64CD6
+ 8BDC9FE927CEBE3200A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -635,7 +635,7 @@
StatusbarIsVisible
TimeStamp
- 570163652.30565596
+ 667860530.00896502
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -652,11 +652,10 @@
5
WindowOrderList
- 8B1662F321FC01C400D64CD6
- /Users/christopherjohnson/Desktop/MacVST/Pafnuty/Pafnuty.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Pafnuty/Pafnuty.xcodeproj
WindowString
- 56 336 810 487 0 0 1440 878
+ 42 185 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/PaulDither/PaulDither.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/PaulDither/PaulDither.xcodeproj/christopherjohnson.pbxuser
index 9f32a6916..76bf07497 100755
--- a/plugins/MacVST/PaulDither/PaulDither.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/PaulDither/PaulDither.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 615684533;
- PBXWorkspaceStateSaveDate = 615684533;
+ PBXPerProjectTemplateStateSaveDate = 667860534;
+ PBXWorkspaceStateSaveDate = 667860534;
};
perUserProjectItems = {
- 8BB0801224B1620B000F894A /* PBXTextBookmark */ = 8BB0801224B1620B000F894A /* PBXTextBookmark */;
8BB9A6A924B29A0E00CD76A8 /* PBXTextBookmark */ = 8BB9A6A924B29A0E00CD76A8 /* PBXTextBookmark */;
+ 8BDCA00727CEBE5900A07B67 /* PBXTextBookmark */ = 8BDCA00727CEBE5900A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -78,7 +78,7 @@
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {747, 19864}}";
+ sepNavIntBoundsRect = "{{0, 0}, {957, 27522}}";
sepNavSelRange = "{10616, 0}";
sepNavVisRange = "{0, 0}";
sepNavWindowFrame = "{{15, 42}, {895, 831}}";
@@ -86,10 +86,10 @@
};
24D8286F09A914000093AEF8 /* PaulDitherProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {848, 1976}}";
- sepNavSelRange = "{4378, 0}";
- sepNavVisRange = "{2835, 1646}";
- sepNavWindowFrame = "{{13, 57}, {895, 821}}";
+ sepNavIntBoundsRect = "{{0, 0}, {894, 2736}}";
+ sepNavSelRange = "{3546, 0}";
+ sepNavVisRange = "{2792, 995}";
+ sepNavWindowFrame = "{{13, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -106,7 +106,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8BB0801224B1620B000F894A /* PBXTextBookmark */ = {
+ 8BB9A6A924B29A0E00CD76A8 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
name = "audioeffectx.cpp: 307";
@@ -116,7 +116,7 @@
vrLen = 0;
vrLoc = 0;
};
- 8BB9A6A924B29A0E00CD76A8 /* PBXTextBookmark */ = {
+ 8BDCA00727CEBE5900A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
name = "audioeffectx.cpp: 307";
diff --git a/plugins/MacVST/PaulDither/PaulDither.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/PaulDither/PaulDither.xcodeproj/christopherjohnson.perspectivev3
index 446e88e14..a81802040 100755
--- a/plugins/MacVST/PaulDither/PaulDither.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/PaulDither/PaulDither.xcodeproj/christopherjohnson.perspectivev3
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 38 359 810 487 0 0 1440 878
+ 329 207 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +349,10 @@
_historyCapacity
0
bookmark
- 8BB9A6A924B29A0E00CD76A8
+ 8BDCA00727CEBE5900A07B67
history
- 8BB0801224B1620B000F894A
+ 8BB9A6A924B29A0E00CD76A8
SplitCount
@@ -370,7 +368,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 38 359 810 487 0 0 1440 878
+ 329 207 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -394,8 +392,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 38 359 810 487 0 0 1440 878
Module
XCDetailModule
@@ -449,7 +445,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 363}}
+ {{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 329 207 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -477,11 +475,11 @@
TableOfContents
- 8BB9A6AA24B29A0E00CD76A8
+ 8BDCA00827CEBE5900A07B67
1CA23ED40692098700951B8B
- 8BB9A6AB24B29A0E00CD76A8
+ 8BDCA00927CEBE5900A07B67
8B0237581D42B1C400E1E8C8
- 8BB9A6AC24B29A0E00CD76A8
+ 8BDCA00A27CEBE5900A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +632,7 @@
StatusbarIsVisible
TimeStamp
- 615684622.30507696
+ 667860569.021662
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,11 +649,11 @@
5
WindowOrderList
- 8BB9A6AD24B29A0E00CD76A8
- /Users/christopherjohnson/Desktop/PaulDither/PaulDither.xcodeproj
+ 8BDCA00B27CEBE5900A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/PaulDither/PaulDither.xcodeproj
WindowString
- 38 359 810 487 0 0 1440 878
+ 329 207 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/PaulDither/source/PaulDitherProc.cpp b/plugins/MacVST/PaulDither/source/PaulDitherProc.cpp
index b7e2b2fb9..366455123 100755
--- a/plugins/MacVST/PaulDither/source/PaulDitherProc.cpp
+++ b/plugins/MacVST/PaulDither/source/PaulDitherProc.cpp
@@ -33,17 +33,17 @@ void PaulDither::processReplacing(float **inputs, float **outputs, VstInt32 samp
{
double inputSampleL = *in1;
double inputSampleR = *in2;
- if (fabs(inputSampleL)<1.18e-37) inputSampleL = fpd * 1.18e-37;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
- if (fabs(inputSampleR)<1.18e-37) inputSampleR = fpd * 1.18e-37;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
+ if (fabs(inputSampleL)<1.18e-23) inputSampleL = fpdL * 1.18e-17;
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ if (fabs(inputSampleR)<1.18e-23) inputSampleR = fpdR * 1.18e-17;
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
inputSampleL *= scaleFactor;
inputSampleR *= scaleFactor;
//0-1 is now one bit, now we dither
- currentDitherL = (double(fpd)/UINT32_MAX);
- currentDitherR = (double(fpd)/UINT32_MAX);
+ currentDitherL = (double(fpdL)/UINT32_MAX);
+ currentDitherR = (double(fpdR)/UINT32_MAX);
inputSampleL += currentDitherL;
inputSampleR += currentDitherR;
@@ -105,17 +105,17 @@ void PaulDither::processDoubleReplacing(double **inputs, double **outputs, VstIn
{
double inputSampleL = *in1;
double inputSampleR = *in2;
- if (fabs(inputSampleL)<1.18e-43) inputSampleL = fpd * 1.18e-43;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
- if (fabs(inputSampleR)<1.18e-43) inputSampleR = fpd * 1.18e-43;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
+ if (fabs(inputSampleL)<1.18e-23) inputSampleL = fpdL * 1.18e-17;
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ if (fabs(inputSampleR)<1.18e-23) inputSampleR = fpdR * 1.18e-17;
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
inputSampleL *= scaleFactor;
inputSampleR *= scaleFactor;
//0-1 is now one bit, now we dither
- currentDitherL = (double(fpd)/UINT32_MAX);
- currentDitherR = (double(fpd)/UINT32_MAX);
+ currentDitherL = (double(fpdL)/UINT32_MAX);
+ currentDitherR = (double(fpdR)/UINT32_MAX);
inputSampleL += currentDitherL;
inputSampleR += currentDitherR;
diff --git a/plugins/MacVST/PaulWide/PaulWide.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/PaulWide/PaulWide.xcodeproj/christopherjohnson.pbxuser
index 3ac6eda98..aaf1abc87 100644
--- a/plugins/MacVST/PaulWide/PaulWide.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/PaulWide/PaulWide.xcodeproj/christopherjohnson.pbxuser
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 658442526;
- PBXWorkspaceStateSaveDate = 658442526;
+ PBXPerProjectTemplateStateSaveDate = 667860574;
+ PBXWorkspaceStateSaveDate = 667860574;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -82,10 +82,10 @@
};
24D8286F09A914000093AEF8 /* PaulWideProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {876, 3564}}";
- sepNavSelRange = "{5561, 0}";
- sepNavVisRange = "{4444, 1117}";
- sepNavWindowFrame = "{{24, 47}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {876, 3582}}";
+ sepNavSelRange = "{5492, 0}";
+ sepNavVisRange = "{4967, 1015}";
+ sepNavWindowFrame = "{{24, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
diff --git a/plugins/MacVST/PaulWide/PaulWide.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/PaulWide/PaulWide.xcodeproj/christopherjohnson.perspectivev3
index ec51399d9..b1bba8b77 100644
--- a/plugins/MacVST/PaulWide/PaulWide.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/PaulWide/PaulWide.xcodeproj/christopherjohnson.perspectivev3
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 304 211 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +360,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 304 211 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -386,8 +384,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 34 365 810 487 0 0 1440 878
Module
XCDetailModule
@@ -441,7 +437,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 304 211 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -469,11 +467,11 @@
TableOfContents
- 8B61C38B273F09B700F23585
+ 8BDCA03827CEBEF900A07B67
1CA23ED40692098700951B8B
- 8B61C38C273F09B700F23585
+ 8BDCA03927CEBEF900A07B67
8B0237581D42B1C400E1E8C8
- 8B61C38D273F09B700F23585
+ 8BDCA03A27CEBEF900A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +624,7 @@
StatusbarIsVisible
TimeStamp
- 658442679.14423895
+ 667860729.25389898
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +641,11 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/PaulWide/PaulWide.xcodeproj
+ 8BDCA03B27CEBEF900A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/PaulWide/PaulWide.xcodeproj
WindowString
- 34 365 810 487 0 0 1440 878
+ 304 211 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/PaulWide/source/PaulWideProc.cpp b/plugins/MacVST/PaulWide/source/PaulWideProc.cpp
index ecdae8a30..0f165a3c5 100755
--- a/plugins/MacVST/PaulWide/source/PaulWideProc.cpp
+++ b/plugins/MacVST/PaulWide/source/PaulWideProc.cpp
@@ -46,34 +46,37 @@ void PaulWide::processReplacing(float **inputs, float **outputs, VstInt32 sample
//away from the previous one - this gives you the triangular PDF and the
//filtering in one go :-)
- double currentDither = (double(fpd)/UINT32_MAX);
+ double currentDither = (double(fpdL)/UINT32_MAX);
double ditherL = currentDither;
ditherL -= previousDitherL;
previousDitherL = currentDither;
//TPDF: two 0-1 random noises
- currentDither = (double(fpd)/UINT32_MAX);
+ currentDither = (double(fpdR)/UINT32_MAX);
double ditherR = currentDither;
ditherR -= previousDitherR;
previousDitherR = currentDither;
//TPDF: two 0-1 random noises
if (fabs(ditherL-ditherR) < 0.5) {
- currentDither = (double(fpd)/UINT32_MAX);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ currentDither = (double(fpdL)/UINT32_MAX);
ditherL = currentDither;
ditherL -= previousDitherL;
previousDitherL = currentDither;
}
if (fabs(ditherL-ditherR) < 0.5) {
- currentDither = (double(fpd)/UINT32_MAX);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ currentDither = (double(fpdR)/UINT32_MAX);
ditherR = currentDither;
ditherR -= previousDitherR;
previousDitherR = currentDither;
}
if (fabs(ditherL-ditherR) < 0.5) {
- currentDither = (double(fpd)/UINT32_MAX);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ currentDither = (double(fpdL)/UINT32_MAX);
ditherL = currentDither;
ditherL -= previousDitherL;
previousDitherL = currentDither;
@@ -138,34 +141,37 @@ void PaulWide::processDoubleReplacing(double **inputs, double **outputs, VstInt3
//away from the previous one - this gives you the triangular PDF and the
//filtering in one go :-)
- double currentDither = (double(fpd)/UINT32_MAX);
+ double currentDither = (double(fpdL)/UINT32_MAX);
double ditherL = currentDither;
ditherL -= previousDitherL;
previousDitherL = currentDither;
//TPDF: two 0-1 random noises
- currentDither = (double(fpd)/UINT32_MAX);
+ currentDither = (double(fpdR)/UINT32_MAX);
double ditherR = currentDither;
ditherR -= previousDitherR;
previousDitherR = currentDither;
//TPDF: two 0-1 random noises
if (fabs(ditherL-ditherR) < 0.5) {
- currentDither = (double(fpd)/UINT32_MAX);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ currentDither = (double(fpdL)/UINT32_MAX);
ditherL = currentDither;
ditherL -= previousDitherL;
previousDitherL = currentDither;
}
if (fabs(ditherL-ditherR) < 0.5) {
- currentDither = (double(fpd)/UINT32_MAX);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ currentDither = (double(fpdR)/UINT32_MAX);
ditherR = currentDither;
ditherR -= previousDitherR;
previousDitherR = currentDither;
}
if (fabs(ditherL-ditherR) < 0.5) {
- currentDither = (double(fpd)/UINT32_MAX);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ currentDither = (double(fpdL)/UINT32_MAX);
ditherL = currentDither;
ditherL -= previousDitherL;
previousDitherL = currentDither;
diff --git a/plugins/MacVST/PeaksOnly/PeaksOnly.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/PeaksOnly/PeaksOnly.xcodeproj/christopherjohnson.pbxuser
index 70ec8f502..b7663e9c4 100755
--- a/plugins/MacVST/PeaksOnly/PeaksOnly.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/PeaksOnly/PeaksOnly.xcodeproj/christopherjohnson.pbxuser
@@ -49,13 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 589082160;
- PBXWorkspaceStateSaveDate = 589082160;
+ PBXPerProjectTemplateStateSaveDate = 667860758;
+ PBXWorkspaceStateSaveDate = 667860758;
};
perUserProjectItems = {
8B78A96E231CAF4200AF332E /* PBXTextBookmark */ = 8B78A96E231CAF4200AF332E /* PBXTextBookmark */;
- 8B78A96F231CAF4200AF332E /* PBXBookmark */ = 8B78A96F231CAF4200AF332E /* PBXBookmark */;
8B78A970231CAF4200AF332E /* PBXTextBookmark */ = 8B78A970231CAF4200AF332E /* PBXTextBookmark */;
+ 8BDCA08827CEBF1A00A07B67 /* PBXTextBookmark */ = 8BDCA08827CEBF1A00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -71,9 +71,9 @@
};
245463B80991757100464AD3 /* PeaksOnly.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {866, 715}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1047, 1350}}";
sepNavSelRange = "{2443, 0}";
- sepNavVisRange = "{1904, 339}";
+ sepNavVisRange = "{2146, 97}";
sepNavWindowFrame = "{{543, 57}, {895, 821}}";
};
};
@@ -117,10 +117,6 @@
vrLen = 138;
vrLoc = 1988;
};
- 8B78A96F231CAF4200AF332E /* PBXBookmark */ = {
- isa = PBXBookmark;
- fRef = 245463B80991757100464AD3 /* PeaksOnly.h */;
- };
8B78A970231CAF4200AF332E /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 245463B80991757100464AD3 /* PeaksOnly.h */;
@@ -131,6 +127,16 @@
vrLen = 339;
vrLoc = 1904;
};
+ 8BDCA08827CEBF1A00A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 245463B80991757100464AD3 /* PeaksOnly.h */;
+ name = "PeaksOnly.h: 66";
+ rLen = 0;
+ rLoc = 2443;
+ rType = 0;
+ vrLen = 97;
+ vrLoc = 2146;
+ };
8D01CCC60486CAD60068D4B7 /* PeaksOnly */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/PeaksOnly/PeaksOnly.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/PeaksOnly/PeaksOnly.xcodeproj/christopherjohnson.perspectivev3
index e1b52079e..4fe5ec65a 100755
--- a/plugins/MacVST/PeaksOnly/PeaksOnly.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/PeaksOnly/PeaksOnly.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 290 199 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,11 +351,11 @@
_historyCapacity
0
bookmark
- 8B78A970231CAF4200AF332E
+ 8BDCA08827CEBF1A00A07B67
history
8B78A96E231CAF4200AF332E
- 8B78A96F231CAF4200AF332E
+ 8B78A970231CAF4200AF332E
SplitCount
@@ -369,18 +369,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 117}}
+ {{0, 0}, {603, 102}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 290 199 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 117pt
+ 102pt
Proportion
- 324pt
+ 339pt
Tabs
@@ -394,7 +394,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
+ {{10, 27}, {603, 312}}
+ RubberWindowFrame
+ 290 199 810 487 0 0 1280 698
Module
XCDetailModule
@@ -449,8 +451,6 @@
Frame
{{10, 27}, {603, 297}}
- RubberWindowFrame
- 34 365 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -478,11 +478,11 @@
TableOfContents
- 8B78A962231CAF1300AF332E
+ 8BDCA08927CEBF1A00A07B67
1CA23ED40692098700951B8B
- 8B78A963231CAF1300AF332E
+ 8BDCA08A27CEBF1A00A07B67
8B0237581D42B1C400E1E8C8
- 8B78A964231CAF1300AF332E
+ 8BDCA08B27CEBF1A00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -635,7 +635,7 @@
StatusbarIsVisible
TimeStamp
- 589082434.11021698
+ 667860762.99833095
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -652,10 +652,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/Plugins/MacVST/PeaksOnly/PeaksOnly.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/PeaksOnly/PeaksOnly.xcodeproj
WindowString
- 34 365 810 487 0 0 1440 878
+ 290 199 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/PhaseNudge/PhaseNudge.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/PhaseNudge/PhaseNudge.xcodeproj/christopherjohnson.pbxuser
index 5bc2f162a..c3a00f17d 100755
--- a/plugins/MacVST/PhaseNudge/PhaseNudge.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/PhaseNudge/PhaseNudge.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569770816;
- PBXWorkspaceStateSaveDate = 569770816;
+ PBXPerProjectTemplateStateSaveDate = 667860767;
+ PBXWorkspaceStateSaveDate = 667860767;
};
perUserProjectItems = {
8B793DB821F60356006E9731 /* PBXTextBookmark */ = 8B793DB821F60356006E9731 /* PBXTextBookmark */;
- 8B9D7CAA1F7FAEC4007AB60F /* PBXTextBookmark */ = 8B9D7CAA1F7FAEC4007AB60F /* PBXTextBookmark */;
+ 8BDCA0B327CEBF6200A07B67 /* PBXTextBookmark */ = 8BDCA0B327CEBF6200A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -62,7 +62,7 @@
};
2407DEB6089929BA00EB68BF /* PhaseNudge.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {554, 1703}}";
+ sepNavIntBoundsRect = "{{0, 0}, {554, 2394}}";
sepNavSelRange = "{565, 0}";
sepNavVisRange = "{0, 0}";
sepNavWindowFrame = "{{12, 47}, {895, 831}}";
@@ -86,10 +86,10 @@
};
24D8286F09A914000093AEF8 /* PhaseNudgeProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {848, 4095}}";
- sepNavSelRange = "{6331, 1892}";
- sepNavVisRange = "{960, 2313}";
- sepNavWindowFrame = "{{352, 39}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {885, 4086}}";
+ sepNavSelRange = "{6133, 0}";
+ sepNavVisRange = "{129, 925}";
+ sepNavWindowFrame = "{{352, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -116,7 +116,7 @@
vrLen = 0;
vrLoc = 0;
};
- 8B9D7CAA1F7FAEC4007AB60F /* PBXTextBookmark */ = {
+ 8BDCA0B327CEBF6200A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2407DEB6089929BA00EB68BF /* PhaseNudge.cpp */;
name = "PhaseNudge.cpp: 18";
diff --git a/plugins/MacVST/PhaseNudge/PhaseNudge.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/PhaseNudge/PhaseNudge.xcodeproj/christopherjohnson.perspectivev3
index 0540e81c7..73c61dabf 100755
--- a/plugins/MacVST/PhaseNudge/PhaseNudge.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/PhaseNudge/PhaseNudge.xcodeproj/christopherjohnson.perspectivev3
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 324 321 810 487 0 0 1440 878
+ 242 178 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +349,10 @@
_historyCapacity
0
bookmark
- 8B793DB821F60356006E9731
+ 8BDCA0B327CEBF6200A07B67
history
- 8B9D7CAA1F7FAEC4007AB60F
+ 8B793DB821F60356006E9731
SplitCount
@@ -370,7 +368,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 324 321 810 487 0 0 1440 878
+ 242 178 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -394,8 +392,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 324 321 810 487 0 0 1440 878
Module
XCDetailModule
@@ -449,7 +445,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 242 178 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -477,11 +475,11 @@
TableOfContents
- 8B793DB921F60356006E9731
+ 8BDCA0B427CEBF6200A07B67
1CA23ED40692098700951B8B
- 8B793DBA21F60356006E9731
+ 8BDCA0B527CEBF6200A07B67
8B0237581D42B1C400E1E8C8
- 8B793DBB21F60356006E9731
+ 8BDCA0B627CEBF6200A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +632,7 @@
StatusbarIsVisible
TimeStamp
- 569770838.654899
+ 667860834.10441899
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +649,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/PhaseNudge/PhaseNudge.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/PhaseNudge/PhaseNudge.xcodeproj
WindowString
- 324 321 810 487 0 0 1440 878
+ 242 178 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/PhaseNudge/source/PhaseNudgeProc.cpp b/plugins/MacVST/PhaseNudge/source/PhaseNudgeProc.cpp
index 7288502cb..73e9b1254 100755
--- a/plugins/MacVST/PhaseNudge/source/PhaseNudgeProc.cpp
+++ b/plugins/MacVST/PhaseNudge/source/PhaseNudgeProc.cpp
@@ -93,8 +93,8 @@ void PhaseNudge::processReplacing(float **inputs, float **outputs, VstInt32 samp
inputSampleR *= 4.0;
if (wet < 1.0) {
- inputSampleL = (drySampleL * dry)+(inputSampleL * wet);
- inputSampleR = (drySampleR * dry)+(inputSampleR * wet);
+ inputSampleL = (drySampleL * (1.0-wet))+(inputSampleL * wet);
+ inputSampleR = (drySampleR * (1.0-wet))+(inputSampleR * wet);
}
//begin 32 bit stereo floating point dither
@@ -201,8 +201,8 @@ void PhaseNudge::processDoubleReplacing(double **inputs, double **outputs, VstIn
inputSampleR *= 4.0;
if (wet < 1.0) {
- inputSampleL = (drySampleL * dry)+(inputSampleL * wet);
- inputSampleR = (drySampleR * dry)+(inputSampleR * wet);
+ inputSampleL = (drySampleL * (1.0-wet))+(inputSampleL * wet);
+ inputSampleR = (drySampleR * (1.0-wet))+(inputSampleR * wet);
}
//begin 64 bit stereo floating point dither
diff --git a/plugins/MacVST/PitchDelay/PitchDelay.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/PitchDelay/PitchDelay.xcodeproj/christopherjohnson.pbxuser
index dcd5bd7ff..3ba989b70 100644
--- a/plugins/MacVST/PitchDelay/PitchDelay.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/PitchDelay/PitchDelay.xcodeproj/christopherjohnson.pbxuser
@@ -49,11 +49,11 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 649658050;
- PBXWorkspaceStateSaveDate = 649658050;
+ PBXPerProjectTemplateStateSaveDate = 667860838;
+ PBXWorkspaceStateSaveDate = 667860838;
};
perUserProjectItems = {
- 8BFEA06126B8FF26005C823D /* PBXTextBookmark */ = 8BFEA06126B8FF26005C823D /* PBXTextBookmark */;
+ 8BDCA0C727CEBF6C00A07B67 /* PBXTextBookmark */ = 8BDCA0C727CEBF6C00A07B67 /* PBXTextBookmark */;
8BFEA06226B8FF26005C823D /* PBXTextBookmark */ = 8BFEA06226B8FF26005C823D /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
@@ -62,9 +62,9 @@
};
2407DEB6089929BA00EB68BF /* PitchDelay.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {840, 3042}}";
+ sepNavIntBoundsRect = "{{0, 0}, {840, 2970}}";
sepNavSelRange = "{5286, 0}";
- sepNavVisRange = "{1105, 289}";
+ sepNavVisRange = "{1198, 196}";
sepNavWindowFrame = "{{545, 47}, {895, 831}}";
};
};
@@ -106,15 +106,15 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8BFEA06126B8FF26005C823D /* PBXTextBookmark */ = {
+ 8BDCA0C727CEBF6C00A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2407DEB6089929BA00EB68BF /* PitchDelay.cpp */;
name = "PitchDelay.cpp: 138";
rLen = 0;
rLoc = 5286;
rType = 0;
- vrLen = 289;
- vrLoc = 1105;
+ vrLen = 196;
+ vrLoc = 1198;
};
8BFEA06226B8FF26005C823D /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
diff --git a/plugins/MacVST/PitchDelay/PitchDelay.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/PitchDelay/PitchDelay.xcodeproj/christopherjohnson.perspectivev3
index 14b98699b..9bf3e189c 100644
--- a/plugins/MacVST/PitchDelay/PitchDelay.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/PitchDelay/PitchDelay.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 589 327 810 487 0 0 1440 878
+ 439 181 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8BFEA06226B8FF26005C823D
+ 8BDCA0C727CEBF6C00A07B67
history
- 8BFEA06126B8FF26005C823D
+ 8BFEA06226B8FF26005C823D
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 132}}
+ {{0, 0}, {603, 117}}
RubberWindowFrame
- 589 327 810 487 0 0 1440 878
+ 439 181 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 132pt
+ 117pt
Proportion
- 309pt
+ 324pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 297}}
RubberWindowFrame
- 589 327 810 487 0 0 1440 878
+ 439 181 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8BFEA06326B8FF26005C823D
+ 8BDCA0C827CEBF6C00A07B67
1CA23ED40692098700951B8B
- 8BFEA06426B8FF26005C823D
+ 8BDCA0C927CEBF6C00A07B67
8B0237581D42B1C400E1E8C8
- 8BFEA06526B8FF26005C823D
+ 8BDCA0CA27CEBF6C00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 649658150.26899195
+ 667860844.10977101
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -654,7 +654,7 @@
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/PitchDelay/PitchDelay.xcodeproj
WindowString
- 589 327 810 487 0 0 1440 878
+ 439 181 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/PocketVerbs/PocketVerbs.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/PocketVerbs/PocketVerbs.xcodeproj/christopherjohnson.pbxuser
index e737620b1..07fe4cf55 100755
--- a/plugins/MacVST/PocketVerbs/PocketVerbs.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/PocketVerbs/PocketVerbs.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 595640489;
- PBXWorkspaceStateSaveDate = 595640489;
+ PBXPerProjectTemplateStateSaveDate = 667860851;
+ PBXWorkspaceStateSaveDate = 667860851;
};
perUserProjectItems = {
- 8B063A4B2380C14D00606DBC /* PBXTextBookmark */ = 8B063A4B2380C14D00606DBC /* PBXTextBookmark */;
8B063A4C2380C14D00606DBC /* PBXTextBookmark */ = 8B063A4C2380C14D00606DBC /* PBXTextBookmark */;
+ 8BDCA0F427CEBFE500A07B67 /* PBXTextBookmark */ = 8BDCA0F427CEBFE500A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -86,10 +86,10 @@
};
24D8286F09A914000093AEF8 /* PocketVerbsProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {600, 239694}}";
+ sepNavIntBoundsRect = "{{0, 0}, {849, 331920}}";
sepNavSelRange = "{626758, 0}";
- sepNavVisRange = "{553439, 143}";
- sepNavWindowFrame = "{{496, 57}, {895, 821}}";
+ sepNavVisRange = "{553495, 138}";
+ sepNavWindowFrame = "{{272, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -106,16 +106,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B063A4B2380C14D00606DBC /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* PocketVerbsProc.cpp */;
- name = "PocketVerbsProc.cpp: 18359";
- rLen = 0;
- rLoc = 626758;
- rType = 0;
- vrLen = 143;
- vrLoc = 553435;
- };
8B063A4C2380C14D00606DBC /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* PocketVerbsProc.cpp */;
@@ -126,6 +116,16 @@
vrLen = 143;
vrLoc = 553439;
};
+ 8BDCA0F427CEBFE500A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* PocketVerbsProc.cpp */;
+ name = "PocketVerbsProc.cpp: 18359";
+ rLen = 0;
+ rLoc = 626758;
+ rType = 0;
+ vrLen = 138;
+ vrLoc = 553495;
+ };
8D01CCC60486CAD60068D4B7 /* PocketVerbs */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/PocketVerbs/PocketVerbs.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/PocketVerbs/PocketVerbs.xcodeproj/christopherjohnson.perspectivev3
index 3c65e1f40..0862215fc 100755
--- a/plugins/MacVST/PocketVerbs/PocketVerbs.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/PocketVerbs/PocketVerbs.xcodeproj/christopherjohnson.perspectivev3
@@ -321,7 +321,7 @@
185
RubberWindowFrame
- 31 381 810 487 0 0 1440 878
+ 353 199 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -349,10 +349,10 @@
_historyCapacity
0
bookmark
- 8B063A4C2380C14D00606DBC
+ 8BDCA0F427CEBFE500A07B67
history
- 8B063A4B2380C14D00606DBC
+ 8B063A4C2380C14D00606DBC
SplitCount
@@ -366,21 +366,23 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 117}}
+ {{0, 0}, {603, 102}}
RubberWindowFrame
- 31 381 810 487 0 0 1440 878
+ 353 199 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 117pt
+ 102pt
Proportion
- 324pt
+ 339pt
Tabs
+ BecomeActive
+
ContentConfiguration
PBXProjectModuleGUID
@@ -391,7 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
+ {{10, 27}, {603, 312}}
+ RubberWindowFrame
+ 353 199 810 487 0 0 1280 698
Module
XCDetailModule
@@ -446,8 +450,6 @@
Frame
{{10, 27}, {603, 297}}
- RubberWindowFrame
- 31 381 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -475,11 +477,11 @@
TableOfContents
- 8B063A4D2380C14D00606DBC
+ 8BDCA0F527CEBFE500A07B67
1CA23ED40692098700951B8B
- 8B063A4E2380C14D00606DBC
+ 8BDCA0F627CEBFE500A07B67
8B0237581D42B1C400E1E8C8
- 8B063A4F2380C14D00606DBC
+ 8BDCA0F727CEBFE500A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -652,7 +654,7 @@
StatusbarIsVisible
TimeStamp
- 595640653.28914702
+ 667860965.98267901
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -669,10 +671,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/Plugins/MacVST/PocketVerbs/PocketVerbs.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/PocketVerbs/PocketVerbs.xcodeproj
WindowString
- 31 381 810 487 0 0 1440 878
+ 353 199 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Podcast/Podcast.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Podcast/Podcast.xcodeproj/christopherjohnson.pbxuser
index b9268d8a9..48dad159f 100755
--- a/plugins/MacVST/Podcast/Podcast.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Podcast/Podcast.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* Podcast */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 581159459;
- PBXWorkspaceStateSaveDate = 581159459;
+ PBXPerProjectTemplateStateSaveDate = 667860971;
+ PBXWorkspaceStateSaveDate = 667860971;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* Podcast */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/Podcast/Podcast.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Podcast/Podcast.xcodeproj/christopherjohnson.perspectivev3
index 535e8562a..8b7e11c3e 100755
--- a/plugins/MacVST/Podcast/Podcast.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Podcast/Podcast.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 615 279 810 487 0 0 1440 878
+ 459 158 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 615 279 810 487 0 0 1440 878
+ 459 158 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 615 279 810 487 0 0 1440 878
+ 459 158 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B105FBC22A3CA8500DC1451
+ 8BDCA10827CEBFF000A07B67
1CA23ED40692098700951B8B
- 8B105FBD22A3CA8500DC1451
+ 8BDCA10927CEBFF000A07B67
8B0237581D42B1C400E1E8C8
- 8B105FBE22A3CA8500DC1451
+ 8BDCA10A27CEBFF000A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 581159557.35161102
+ 667860976.18617797
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,11 +643,10 @@
5
WindowOrderList
- 8B105FBF22A3CA8500DC1451
- /Users/christopherjohnson/Desktop/Plugins/MacVST/Podcast/Podcast.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Podcast/Podcast.xcodeproj
WindowString
- 615 279 810 487 0 0 1440 878
+ 459 158 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Podcast/Podcast.xcodeproj/project.pbxproj b/plugins/MacVST/Podcast/Podcast.xcodeproj/project.pbxproj
index e2de9552a..77c07ee67 100755
--- a/plugins/MacVST/Podcast/Podcast.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/Podcast/Podcast.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* Podcast */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "Podcast" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* Podcast */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/PodcastDeluxe/PodcastDeluxe.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/PodcastDeluxe/PodcastDeluxe.xcodeproj/christopherjohnson.pbxuser
index 0e68743a3..9cbf41bd7 100755
--- a/plugins/MacVST/PodcastDeluxe/PodcastDeluxe.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/PodcastDeluxe/PodcastDeluxe.xcodeproj/christopherjohnson.pbxuser
@@ -49,13 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 639859603;
- PBXWorkspaceStateSaveDate = 639859603;
+ PBXPerProjectTemplateStateSaveDate = 667860980;
+ PBXWorkspaceStateSaveDate = 667860980;
};
perUserProjectItems = {
8B2C11C9229CBEEE0051C68A /* PBXTextBookmark */ = 8B2C11C9229CBEEE0051C68A /* PBXTextBookmark */;
- 8BA62A0C2623791000483AAF /* PBXTextBookmark */ = 8BA62A0C2623791000483AAF /* PBXTextBookmark */;
8BA62A5126237BA000483AAF /* PBXTextBookmark */ = 8BA62A5126237BA000483AAF /* PBXTextBookmark */;
+ 8BDCA12527CEBFFF00A07B67 /* PBXTextBookmark */ = 8BDCA12527CEBFFF00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -73,7 +73,7 @@
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {840, 1836}}";
sepNavSelRange = "{2876, 0}";
- sepNavVisRange = "{2786, 113}";
+ sepNavVisRange = "{2805, 111}";
sepNavWindowFrame = "{{20, 57}, {895, 821}}";
};
};
@@ -117,16 +117,6 @@
vrLen = 175;
vrLoc = 551;
};
- 8BA62A0C2623791000483AAF /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 245463B80991757100464AD3 /* PodcastDeluxe.h */;
- name = "PodcastDeluxe.h: 81";
- rLen = 0;
- rLoc = 2876;
- rType = 0;
- vrLen = 115;
- vrLoc = 2786;
- };
8BA62A5126237BA000483AAF /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 245463B80991757100464AD3 /* PodcastDeluxe.h */;
@@ -137,6 +127,16 @@
vrLen = 113;
vrLoc = 2786;
};
+ 8BDCA12527CEBFFF00A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 245463B80991757100464AD3 /* PodcastDeluxe.h */;
+ name = "PodcastDeluxe.h: 82";
+ rLen = 0;
+ rLoc = 2876;
+ rType = 0;
+ vrLen = 111;
+ vrLoc = 2805;
+ };
8D01CCC60486CAD60068D4B7 /* PodcastDeluxe */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/PodcastDeluxe/PodcastDeluxe.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/PodcastDeluxe/PodcastDeluxe.xcodeproj/christopherjohnson.perspectivev3
index caf48d20f..e44705fa5 100755
--- a/plugins/MacVST/PodcastDeluxe/PodcastDeluxe.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/PodcastDeluxe/PodcastDeluxe.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 630 240 810 487 0 0 1440 878
+ 470 140 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,11 +351,11 @@
_historyCapacity
0
bookmark
- 8BA62A5126237BA000483AAF
+ 8BDCA12527CEBFFF00A07B67
history
8B2C11C9229CBEEE0051C68A
- 8BA62A0C2623791000483AAF
+ 8BA62A5126237BA000483AAF
SplitCount
@@ -369,18 +369,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 69}}
+ {{0, 0}, {603, 51}}
RubberWindowFrame
- 630 240 810 487 0 0 1440 878
+ 470 140 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 69pt
+ 51pt
Proportion
- 372pt
+ 390pt
Tabs
@@ -394,9 +394,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 345}}
+ {{10, 27}, {603, 363}}
RubberWindowFrame
- 630 240 810 487 0 0 1440 878
+ 470 140 810 487 0 0 1280 698
Module
XCDetailModule
@@ -478,11 +478,11 @@
TableOfContents
- 8BA62A5226237BA000483AAF
+ 8BDCA12627CEBFFF00A07B67
1CA23ED40692098700951B8B
- 8BA62A5326237BA000483AAF
+ 8BDCA12727CEBFFF00A07B67
8B0237581D42B1C400E1E8C8
- 8BA62A5426237BA000483AAF
+ 8BDCA12827CEBFFF00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -635,7 +635,7 @@
StatusbarIsVisible
TimeStamp
- 639859616.85262001
+ 667860991.338498
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -652,11 +652,10 @@
5
WindowOrderList
- 8BA62A5526237BA000483AAF
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/PodcastDeluxe/PodcastDeluxe.xcodeproj
WindowString
- 630 240 810 487 0 0 1440 878
+ 470 140 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Point/Point.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Point/Point.xcodeproj/christopherjohnson.pbxuser
index 5dc407078..11088a45e 100755
--- a/plugins/MacVST/Point/Point.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Point/Point.xcodeproj/christopherjohnson.pbxuser
@@ -51,12 +51,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569770893;
- PBXWorkspaceStateSaveDate = 569770893;
+ PBXPerProjectTemplateStateSaveDate = 667860996;
+ PBXWorkspaceStateSaveDate = 667860996;
};
perUserProjectItems = {
8B793DE421F603B1006E9731 /* PBXTextBookmark */ = 8B793DE421F603B1006E9731 /* PBXTextBookmark */;
- 8B9D7CCC1F7FAEE4007AB60F /* PBXTextBookmark */ = 8B9D7CCC1F7FAEE4007AB60F /* PBXTextBookmark */;
+ 8BDCA14327CEC00900A07B67 /* PBXTextBookmark */ = 8BDCA14327CEC00900A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -88,8 +88,8 @@
};
24D8286F09A914000093AEF8 /* PointProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {670, 3783}}";
- sepNavSelRange = "{5732, 0}";
+ sepNavIntBoundsRect = "{{0, 0}, {554, 3816}}";
+ sepNavSelRange = "{5507, 0}";
sepNavVisRange = "{0, 0}";
sepNavWindowFrame = "{{458, 47}, {895, 831}}";
};
@@ -113,17 +113,17 @@
fRef = 24D8286F09A914000093AEF8 /* PointProc.cpp */;
name = "PointProc.cpp: 181";
rLen = 0;
- rLoc = 5732;
+ rLoc = 5507;
rType = 0;
vrLen = 0;
vrLoc = 0;
};
- 8B9D7CCC1F7FAEE4007AB60F /* PBXTextBookmark */ = {
+ 8BDCA14327CEC00900A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* PointProc.cpp */;
- name = "PointProc.cpp: 187";
+ name = "PointProc.cpp: 214";
rLen = 0;
- rLoc = 5732;
+ rLoc = 5507;
rType = 0;
vrLen = 0;
vrLoc = 0;
diff --git a/plugins/MacVST/Point/Point.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Point/Point.xcodeproj/christopherjohnson.perspectivev3
index 384a575d1..be2ab6d03 100755
--- a/plugins/MacVST/Point/Point.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Point/Point.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 304 344 810 487 0 0 1440 878
+ 227 189 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B793DE421F603B1006E9731
+ 8BDCA14327CEC00900A07B67
history
- 8B9D7CCC1F7FAEE4007AB60F
+ 8B793DE421F603B1006E9731
SplitCount
@@ -370,7 +370,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 304 344 810 487 0 0 1440 878
+ 227 189 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -394,6 +394,8 @@
Frame
{{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 227 189 810 487 0 0 1280 698
Module
XCDetailModule
@@ -448,8 +450,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 304 344 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B793DE521F603B1006E9731
+ 8BDCA14427CEC00900A07B67
1CA23ED40692098700951B8B
- 8B793DE621F603B1006E9731
+ 8BDCA14527CEC00900A07B67
8B0237581D42B1C400E1E8C8
- 8B793DE721F603B1006E9731
+ 8BDCA14627CEC00900A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -654,7 +654,7 @@
StatusbarIsVisible
TimeStamp
- 569770929.49119902
+ 667861001.79197705
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -671,10 +671,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/Point/Point.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Point/Point.xcodeproj
WindowString
- 304 344 810 487 0 0 1440 878
+ 227 189 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Pop/Pop.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Pop/Pop.xcodeproj/christopherjohnson.pbxuser
index 0af84ad63..de3eb8b2f 100755
--- a/plugins/MacVST/Pop/Pop.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Pop/Pop.xcodeproj/christopherjohnson.pbxuser
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 631581140;
- PBXWorkspaceStateSaveDate = 631581140;
+ PBXPerProjectTemplateStateSaveDate = 667861006;
+ PBXWorkspaceStateSaveDate = 667861006;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
diff --git a/plugins/MacVST/Pop/Pop.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Pop/Pop.xcodeproj/christopherjohnson.perspectivev3
index 55b074e7b..c110da0bb 100755
--- a/plugins/MacVST/Pop/Pop.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Pop/Pop.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 181 239 810 487 0 0 1440 878
+ 135 139 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 181 239 810 487 0 0 1440 878
+ 135 139 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 181 239 810 487 0 0 1440 878
+ 135 139 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B2E7B6C25A529E100485B86
+ 8BDCA16127CEC01400A07B67
1CA23ED40692098700951B8B
- 8B2E7B6D25A529E100485B86
+ 8BDCA16227CEC01400A07B67
8B0237581D42B1C400E1E8C8
- 8B2E7B6E25A529E100485B86
+ 8BDCA16327CEC01400A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 631581153.05703795
+ 667861012.32063401
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +643,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/Plugins/MacVST/Pop/Pop.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Pop/Pop.xcodeproj
WindowString
- 181 239 810 487 0 0 1440 878
+ 135 139 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/PowerSag/PowerSag.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/PowerSag/PowerSag.xcodeproj/christopherjohnson.pbxuser
index f09d1b96b..f83b1d7f4 100755
--- a/plugins/MacVST/PowerSag/PowerSag.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/PowerSag/PowerSag.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569771002;
- PBXWorkspaceStateSaveDate = 569771002;
+ PBXPerProjectTemplateStateSaveDate = 667861017;
+ PBXWorkspaceStateSaveDate = 667861017;
};
perUserProjectItems = {
8B793E1921F60406006E9731 /* PBXTextBookmark */ = 8B793E1921F60406006E9731 /* PBXTextBookmark */;
- 8B9D7CF61F7FAF1B007AB60F /* PBXTextBookmark */ = 8B9D7CF61F7FAF1B007AB60F /* PBXTextBookmark */;
+ 8BDCA17E27CEC01D00A07B67 /* PBXTextBookmark */ = 8BDCA17E27CEC01D00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -94,8 +94,8 @@
};
24D8286F09A914000093AEF8 /* PowerSagProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {677, 3497}}";
- sepNavSelRange = "{6117, 1892}";
+ sepNavIntBoundsRect = "{{0, 0}, {554, 3582}}";
+ sepNavSelRange = "{6117, 438}";
sepNavVisRange = "{0, 0}";
sepNavWindowFrame = "{{373, 47}, {895, 831}}";
};
@@ -118,17 +118,17 @@
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* PowerSagProc.cpp */;
name = "PowerSagProc.cpp: 171";
- rLen = 1892;
+ rLen = 438;
rLoc = 6117;
rType = 0;
vrLen = 0;
vrLoc = 0;
};
- 8B9D7CF61F7FAF1B007AB60F /* PBXTextBookmark */ = {
+ 8BDCA17E27CEC01D00A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* PowerSagProc.cpp */;
- name = "PowerSagProc.cpp: 182";
- rLen = 1892;
+ name = "PowerSagProc.cpp: 185";
+ rLen = 438;
rLoc = 6117;
rType = 0;
vrLen = 0;
diff --git a/plugins/MacVST/PowerSag/PowerSag.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/PowerSag/PowerSag.xcodeproj/christopherjohnson.perspectivev3
index bfea37c08..fc69a91b4 100755
--- a/plugins/MacVST/PowerSag/PowerSag.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/PowerSag/PowerSag.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 260 312 810 487 0 0 1440 878
+ 194 174 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B793E1921F60406006E9731
+ 8BDCA17E27CEC01D00A07B67
history
- 8B9D7CF61F7FAF1B007AB60F
+ 8B793E1921F60406006E9731
SplitCount
@@ -370,7 +370,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 260 312 810 487 0 0 1440 878
+ 194 174 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -395,7 +395,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 260 312 810 487 0 0 1440 878
+ 194 174 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B793E1A21F60406006E9731
+ 8BDCA17F27CEC01D00A07B67
1CA23ED40692098700951B8B
- 8B793E1B21F60406006E9731
+ 8BDCA18027CEC01D00A07B67
8B0237581D42B1C400E1E8C8
- 8B793E1C21F60406006E9731
+ 8BDCA18127CEC01D00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 569771014.65125096
+ 667861021.79948103
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +651,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/PowerSag/PowerSag.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/PowerSag/PowerSag.xcodeproj
WindowString
- 260 312 810 487 0 0 1440 878
+ 194 174 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/PowerSag2/PowerSag2.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/PowerSag2/PowerSag2.xcodeproj/christopherjohnson.pbxuser
index fb082f39f..d2f290cb6 100755
--- a/plugins/MacVST/PowerSag2/PowerSag2.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/PowerSag2/PowerSag2.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* PowerSag2 */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 595852719;
- PBXWorkspaceStateSaveDate = 595852719;
+ PBXPerProjectTemplateStateSaveDate = 667861026;
+ PBXWorkspaceStateSaveDate = 667861026;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* PowerSag2 */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/PowerSag2/PowerSag2.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/PowerSag2/PowerSag2.xcodeproj/christopherjohnson.perspectivev3
index 4a1f7b5f3..f5040643b 100755
--- a/plugins/MacVST/PowerSag2/PowerSag2.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/PowerSag2/PowerSag2.xcodeproj/christopherjohnson.perspectivev3
@@ -256,6 +256,8 @@
Layout
+ BecomeActive
+
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -321,7 +323,7 @@
185
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 284 210 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -360,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 284 210 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -384,6 +386,8 @@
Frame
{{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 284 210 810 487 0 0 1280 698
Module
XCDetailModule
@@ -438,8 +442,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 34 365 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -467,11 +469,11 @@
TableOfContents
- 8B0FEE4A23840D7B00200DE0
+ 8BDCA19C27CEC02800A07B67
1CA23ED40692098700951B8B
- 8B0FEE4B23840D7B00200DE0
+ 8BDCA19D27CEC02800A07B67
8B0237581D42B1C400E1E8C8
- 8B0FEE4C23840D7B00200DE0
+ 8BDCA19E27CEC02800A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -624,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 595856763.17575395
+ 667861032.78556705
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -641,11 +643,10 @@
5
WindowOrderList
- 8B0FEE4D23840D7B00200DE0
- /Users/christopherjohnson/Desktop/PowerSag2/PowerSag2.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/PowerSag2/PowerSag2.xcodeproj
WindowString
- 34 365 810 487 0 0 1440 878
+ 284 210 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/PowerSag2/PowerSag2.xcodeproj/project.pbxproj b/plugins/MacVST/PowerSag2/PowerSag2.xcodeproj/project.pbxproj
index ad076dea9..9b31e20b8 100755
--- a/plugins/MacVST/PowerSag2/PowerSag2.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/PowerSag2/PowerSag2.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* PowerSag2 */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "PowerSag2" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* PowerSag2 */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/Precious/Precious.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Precious/Precious.xcodeproj/christopherjohnson.pbxuser
index 7053cc0a0..b7c102b03 100755
--- a/plugins/MacVST/Precious/Precious.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Precious/Precious.xcodeproj/christopherjohnson.pbxuser
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 604018885;
- PBXWorkspaceStateSaveDate = 604018885;
+ PBXPerProjectTemplateStateSaveDate = 667861042;
+ PBXWorkspaceStateSaveDate = 667861042;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -82,10 +82,10 @@
};
24D8286F09A914000093AEF8 /* PreciousProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1048, 6149}}";
- sepNavSelRange = "{21306, 0}";
- sepNavVisRange = "{17062, 3814}";
- sepNavWindowFrame = "{{31, 57}, {895, 821}}";
+ sepNavIntBoundsRect = "{{0, 0}, {966, 6678}}";
+ sepNavSelRange = "{21170, 0}";
+ sepNavVisRange = "{20604, 1264}";
+ sepNavWindowFrame = "{{31, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
diff --git a/plugins/MacVST/Precious/Precious.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Precious/Precious.xcodeproj/christopherjohnson.perspectivev3
index 7a2026776..c16ea7336 100755
--- a/plugins/MacVST/Precious/Precious.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Precious/Precious.xcodeproj/christopherjohnson.perspectivev3
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 325 172 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +360,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 325 172 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -386,8 +384,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 34 365 810 487 0 0 1440 878
Module
XCDetailModule
@@ -441,7 +437,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 325 172 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -469,11 +467,11 @@
TableOfContents
- 8B88B74E24009C4D0032C1CD
+ 8BDCA1C627CEC05E00A07B67
1CA23ED40692098700951B8B
- 8B88B74F24009C4D0032C1CD
+ 8BDCA1C727CEC05E00A07B67
8B0237581D42B1C400E1E8C8
- 8B88B75024009C4D0032C1CD
+ 8BDCA1C827CEC05E00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +624,7 @@
StatusbarIsVisible
TimeStamp
- 604019789.95408595
+ 667861086.87270999
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +641,11 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/Precious/Precious.xcodeproj
+ 8BDCA1C927CEC05E00A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Precious/Precious.xcodeproj
WindowString
- 34 365 810 487 0 0 1440 878
+ 325 172 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Precious/source/PreciousProc.cpp b/plugins/MacVST/Precious/source/PreciousProc.cpp
index e06ba2f3a..ed37b906a 100755
--- a/plugins/MacVST/Precious/source/PreciousProc.cpp
+++ b/plugins/MacVST/Precious/source/PreciousProc.cpp
@@ -158,11 +158,11 @@ void Precious::processReplacing(float **inputs, float **outputs, VstInt32 sample
}
//otherwise we leave it untouched by the overdrive stuff
- randy = ((double(fpd)/UINT32_MAX)*0.017);
+ randy = ((double(fpdL)/UINT32_MAX)*0.017);
inputSampleL = ((inputSampleL*(1-randy))+(lastSampleL*randy)) * outlevel;
lastSampleL = inputSampleL;
- randy = ((double(fpd)/UINT32_MAX)*0.017);
+ randy = ((double(fpdR)/UINT32_MAX)*0.017);
inputSampleR = ((inputSampleR*(1-randy))+(lastSampleR*randy)) * outlevel;
lastSampleR = inputSampleR;
@@ -337,11 +337,11 @@ void Precious::processDoubleReplacing(double **inputs, double **outputs, VstInt3
}
//otherwise we leave it untouched by the overdrive stuff
- randy = ((double(fpd)/UINT32_MAX)*0.017);
+ randy = ((double(fpdL)/UINT32_MAX)*0.017);
inputSampleL = ((inputSampleL*(1-randy))+(lastSampleL*randy)) * outlevel;
lastSampleL = inputSampleL;
- randy = ((double(fpd)/UINT32_MAX)*0.017);
+ randy = ((double(fpdR)/UINT32_MAX)*0.017);
inputSampleR = ((inputSampleR*(1-randy))+(lastSampleR*randy)) * outlevel;
lastSampleR = inputSampleR;
diff --git a/plugins/MacVST/Preponderant/Preponderant.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Preponderant/Preponderant.xcodeproj/christopherjohnson.pbxuser
index 77d73988c..704b8839f 100755
--- a/plugins/MacVST/Preponderant/Preponderant.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Preponderant/Preponderant.xcodeproj/christopherjohnson.pbxuser
@@ -49,14 +49,14 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 633827579;
- PBXWorkspaceStateSaveDate = 633827579;
+ PBXPerProjectTemplateStateSaveDate = 667861092;
+ PBXWorkspaceStateSaveDate = 667861092;
};
perUserProjectItems = {
- 8B0A95E525C4E8CB00119366 /* PBXTextBookmark */ = 8B0A95E525C4E8CB00119366 /* PBXTextBookmark */;
- 8B8E0CE525C770FE0025BE98 /* PBXBookmark */ = 8B8E0CE525C770FE0025BE98 /* PBXBookmark */;
8B8E0CFD25C771BC0025BE98 /* PBXTextBookmark */ = 8B8E0CFD25C771BC0025BE98 /* PBXTextBookmark */;
8B8E0CFE25C771BC0025BE98 /* PBXTextBookmark */ = 8B8E0CFE25C771BC0025BE98 /* PBXTextBookmark */;
+ 8BDCA1DA27CEC06800A07B67 /* PBXTextBookmark */ = 8BDCA1DA27CEC06800A07B67 /* PBXTextBookmark */;
+ 8BDCA1DE27CEC06800A07B67 /* PBXTextBookmark */ = 8BDCA1DE27CEC06800A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -64,9 +64,9 @@
};
2407DEB6089929BA00EB68BF /* Preponderant.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {966, 2952}}";
+ sepNavIntBoundsRect = "{{0, 0}, {966, 2934}}";
sepNavSelRange = "{886, 0}";
- sepNavVisRange = "{483, 127}";
+ sepNavVisRange = "{493, 117}";
sepNavWindowFrame = "{{12, 47}, {895, 831}}";
};
};
@@ -88,10 +88,10 @@
};
24D8286F09A914000093AEF8 /* PreponderantProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1241, 7398}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1233, 7200}}";
sepNavSelRange = "{13449, 0}";
- sepNavVisRange = "{2951, 1795}";
- sepNavWindowFrame = "{{93, 42}, {1288, 836}}";
+ sepNavVisRange = "{3477, 1269}";
+ sepNavWindowFrame = "{{0, 4}, {1280, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -108,20 +108,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B0A95E525C4E8CB00119366 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 2407DEB6089929BA00EB68BF /* Preponderant.cpp */;
- name = "Preponderant.cpp: 28";
- rLen = 0;
- rLoc = 886;
- rType = 0;
- vrLen = 140;
- vrLoc = 470;
- };
- 8B8E0CE525C770FE0025BE98 /* PBXBookmark */ = {
- isa = PBXBookmark;
- fRef = 24D8286F09A914000093AEF8 /* PreponderantProc.cpp */;
- };
8B8E0CFD25C771BC0025BE98 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2407DEB6089929BA00EB68BF /* Preponderant.cpp */;
@@ -142,6 +128,26 @@
vrLen = 1795;
vrLoc = 2951;
};
+ 8BDCA1DA27CEC06800A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 2407DEB6089929BA00EB68BF /* Preponderant.cpp */;
+ name = "Preponderant.cpp: 28";
+ rLen = 0;
+ rLoc = 886;
+ rType = 0;
+ vrLen = 117;
+ vrLoc = 493;
+ };
+ 8BDCA1DE27CEC06800A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* PreponderantProc.cpp */;
+ name = "PreponderantProc.cpp: 320";
+ rLen = 0;
+ rLoc = 13449;
+ rType = 0;
+ vrLen = 1269;
+ vrLoc = 3477;
+ };
8D01CCC60486CAD60068D4B7 /* Preponderant */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/Preponderant/Preponderant.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Preponderant/Preponderant.xcodeproj/christopherjohnson.perspectivev3
index c7f3805c1..45f9b3523 100755
--- a/plugins/MacVST/Preponderant/Preponderant.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Preponderant/Preponderant.xcodeproj/christopherjohnson.perspectivev3
@@ -241,10 +241,10 @@
_historyCapacity
0
bookmark
- 8B8E0CFE25C771BC0025BE98
+ 8BDCA1DE27CEC06800A07B67
history
- 8B8E0CE525C770FE0025BE98
+ 8B8E0CFE25C771BC0025BE98
SplitCount
@@ -256,11 +256,11 @@
Geometry
Frame
- {{0, 20}, {1288, 739}}
+ {{0, 20}, {1280, 597}}
PBXModuleWindowStatusBarHidden2
RubberWindowFrame
- 93 98 1288 780 0 0 1440 878
+ 0 60 1280 638 0 0 1280 698
@@ -364,7 +364,7 @@
185
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -392,10 +392,10 @@
_historyCapacity
0
bookmark
- 8B8E0CFD25C771BC0025BE98
+ 8BDCA1DA27CEC06800A07B67
history
- 8B0A95E525C4E8CB00119366
+ 8B8E0CFD25C771BC0025BE98
SplitCount
@@ -409,18 +409,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 117}}
+ {{0, 0}, {603, 102}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 117pt
+ 102pt
Proportion
- 324pt
+ 339pt
Tabs
@@ -434,9 +434,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
+ {{10, 27}, {603, 312}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
XCDetailModule
@@ -518,11 +518,11 @@
TableOfContents
- 8B8E0CE725C771100025BE98
+ 8BDCA1DB27CEC06800A07B67
1CA23ED40692098700951B8B
- 8B8E0CE825C771100025BE98
+ 8BDCA1DC27CEC06800A07B67
8B0237581D42B1C400E1E8C8
- 8B8E0CE925C771100025BE98
+ 8BDCA1DD27CEC06800A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -675,7 +675,7 @@
StatusbarIsVisible
TimeStamp
- 633827772.66382003
+ 667861096.82611096
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -692,11 +692,11 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/Plugins/MacVST/Preponderant/Preponderant.xcodeproj
8B8E0CEA25C771100025BE98
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Preponderant/Preponderant.xcodeproj
WindowString
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Pressure4/Pressure4.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Pressure4/Pressure4.xcodeproj/christopherjohnson.pbxuser
index 37f6135af..b70071300 100755
--- a/plugins/MacVST/Pressure4/Pressure4.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Pressure4/Pressure4.xcodeproj/christopherjohnson.pbxuser
@@ -49,13 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569771037;
- PBXWorkspaceStateSaveDate = 569771037;
+ PBXPerProjectTemplateStateSaveDate = 667861101;
+ PBXWorkspaceStateSaveDate = 667861101;
};
perUserProjectItems = {
8B2E04191D8381D1001B9E01 /* PBXTextBookmark */ = 8B2E04191D8381D1001B9E01 /* PBXTextBookmark */;
- 8B793E3721F60423006E9731 /* PBXTextBookmark */ = 8B793E3721F60423006E9731 /* PBXTextBookmark */;
8B793E3C21F60454006E9731 /* PBXTextBookmark */ = 8B793E3C21F60454006E9731 /* PBXTextBookmark */;
+ 8BDCA1F927CEC07100A07B67 /* PBXTextBookmark */ = 8BDCA1F927CEC07100A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -71,9 +71,9 @@
};
245463B80991757100464AD3 /* Pressure4.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {600, 1105}}";
+ sepNavIntBoundsRect = "{{0, 0}, {554, 1458}}";
sepNavSelRange = "{453, 0}";
- sepNavVisRange = "{419, 41}";
+ sepNavVisRange = "{0, 0}";
sepNavWindowFrame = "{{530, 47}, {895, 831}}";
};
};
@@ -117,16 +117,6 @@
vrLen = 312;
vrLoc = 44;
};
- 8B793E3721F60423006E9731 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 245463B80991757100464AD3 /* Pressure4.h */;
- name = "Pressure4.h: 23";
- rLen = 0;
- rLoc = 453;
- rType = 0;
- vrLen = 41;
- vrLoc = 419;
- };
8B793E3C21F60454006E9731 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 245463B80991757100464AD3 /* Pressure4.h */;
@@ -137,6 +127,16 @@
vrLen = 41;
vrLoc = 419;
};
+ 8BDCA1F927CEC07100A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 245463B80991757100464AD3 /* Pressure4.h */;
+ name = "Pressure4.h: 23";
+ rLen = 0;
+ rLoc = 453;
+ rType = 0;
+ vrLen = 0;
+ vrLoc = 0;
+ };
8D01CCC60486CAD60068D4B7 /* Pressure4 */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/Pressure4/Pressure4.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Pressure4/Pressure4.xcodeproj/christopherjohnson.perspectivev3
index a83121ab3..f0fcc0125 100755
--- a/plugins/MacVST/Pressure4/Pressure4.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Pressure4/Pressure4.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 630 371 810 487 0 0 1440 878
+ 470 202 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,11 +351,11 @@
_historyCapacity
0
bookmark
- 8B793E3C21F60454006E9731
+ 8BDCA1F927CEC07100A07B67
history
8B2E04191D8381D1001B9E01
- 8B793E3721F60423006E9731
+ 8B793E3C21F60454006E9731
SplitCount
@@ -369,18 +369,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 51}}
+ {{0, 0}, {603, 32}}
RubberWindowFrame
- 630 371 810 487 0 0 1440 878
+ 470 202 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 51pt
+ 32pt
Proportion
- 390pt
+ 409pt
Tabs
@@ -394,7 +394,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 363}}
+ {{10, 27}, {603, 382}}
+ RubberWindowFrame
+ 470 202 810 487 0 0 1280 698
Module
XCDetailModule
@@ -449,8 +451,6 @@
Frame
{{10, 27}, {603, 363}}
- RubberWindowFrame
- 630 371 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -478,11 +478,11 @@
TableOfContents
- 8B793E3D21F60454006E9731
+ 8BDCA1FA27CEC07100A07B67
1CA23ED40692098700951B8B
- 8B793E3E21F60454006E9731
+ 8BDCA1FB27CEC07100A07B67
8B0237581D42B1C400E1E8C8
- 8B793E3F21F60454006E9731
+ 8BDCA1FC27CEC07100A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -635,7 +635,7 @@
StatusbarIsVisible
TimeStamp
- 569771092.74144006
+ 667861105.61138701
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -652,10 +652,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/Pressure4/Pressure4.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Pressure4/Pressure4.xcodeproj
WindowString
- 630 371 810 487 0 0 1440 878
+ 470 202 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Pressure5/Pressure5.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Pressure5/Pressure5.xcodeproj/christopherjohnson.pbxuser
index f1e9409d0..45085e9a1 100644
--- a/plugins/MacVST/Pressure5/Pressure5.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Pressure5/Pressure5.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* Pressure5 */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 656392291;
- PBXWorkspaceStateSaveDate = 656392291;
+ PBXPerProjectTemplateStateSaveDate = 667861110;
+ PBXWorkspaceStateSaveDate = 667861110;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* Pressure5 */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/Pressure5/Pressure5.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Pressure5/Pressure5.xcodeproj/christopherjohnson.perspectivev3
index dbbd84cdf..d1956db88 100644
--- a/plugins/MacVST/Pressure5/Pressure5.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Pressure5/Pressure5.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 39 231 810 487 0 0 1440 878
+ 298 172 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 39 231 810 487 0 0 1440 878
+ 298 172 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 39 231 810 487 0 0 1440 878
+ 298 172 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B5F8EC7271FC14900A9D8DA
+ 8BDCA21727CEC07B00A07B67
1CA23ED40692098700951B8B
- 8B5F8EC8271FC14900A9D8DA
+ 8BDCA21827CEC07B00A07B67
8B0237581D42B1C400E1E8C8
- 8B5F8EC9271FC14900A9D8DA
+ 8BDCA21927CEC07B00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 656392521.58462095
+ 667861115.21214497
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -646,7 +646,7 @@
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Pressure5/Pressure5.xcodeproj
WindowString
- 39 231 810 487 0 0 1440 878
+ 298 172 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Pressure5/Pressure5.xcodeproj/project.pbxproj b/plugins/MacVST/Pressure5/Pressure5.xcodeproj/project.pbxproj
index 04b0a9b23..268b577b6 100755
--- a/plugins/MacVST/Pressure5/Pressure5.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/Pressure5/Pressure5.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* Pressure5 */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "Pressure5" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* Pressure5 */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/PurestAir/PurestAir.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/PurestAir/PurestAir.xcodeproj/christopherjohnson.pbxuser
index bb7c01ddf..133185062 100755
--- a/plugins/MacVST/PurestAir/PurestAir.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/PurestAir/PurestAir.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* PurestAir */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 589071714;
- PBXWorkspaceStateSaveDate = 589071714;
+ PBXPerProjectTemplateStateSaveDate = 667861119;
+ PBXWorkspaceStateSaveDate = 667861119;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* PurestAir */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/PurestAir/PurestAir.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/PurestAir/PurestAir.xcodeproj/christopherjohnson.perspectivev3
index 62d9efbc4..62850602d 100755
--- a/plugins/MacVST/PurestAir/PurestAir.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/PurestAir/PurestAir.xcodeproj/christopherjohnson.perspectivev3
@@ -256,6 +256,8 @@
Layout
+ BecomeActive
+
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -321,7 +323,7 @@
185
RubberWindowFrame
- 15 219 810 487 0 0 1440 878
+ 11 130 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -360,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 15 219 810 487 0 0 1440 878
+ 11 130 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -384,6 +386,8 @@
Frame
{{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 11 130 810 487 0 0 1280 698
Module
XCDetailModule
@@ -438,8 +442,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 15 219 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -467,11 +469,11 @@
TableOfContents
- 8B78A709231C8D2F00AF332E
+ 8BDCA23427CEC08300A07B67
1CA23ED40692098700951B8B
- 8B78A70A231C8D2F00AF332E
+ 8BDCA23527CEC08300A07B67
8B0237581D42B1C400E1E8C8
- 8B78A70B231C8D2F00AF332E
+ 8BDCA23627CEC08300A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -624,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 589073711.87388504
+ 667861123.95061195
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -641,11 +643,10 @@
5
WindowOrderList
- 8B78A70C231C8D2F00AF332E
- /Users/christopherjohnson/Desktop/PurestAir/PurestAir.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/PurestAir/PurestAir.xcodeproj
WindowString
- 15 219 810 487 0 0 1440 878
+ 11 130 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/PurestAir/PurestAir.xcodeproj/project.pbxproj b/plugins/MacVST/PurestAir/PurestAir.xcodeproj/project.pbxproj
index 3cab85425..097d3ac16 100755
--- a/plugins/MacVST/PurestAir/PurestAir.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/PurestAir/PurestAir.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* PurestAir */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "PurestAir" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* PurestAir */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/PurestConsole2Buss/PurestConsole2Buss.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/PurestConsole2Buss/PurestConsole2Buss.xcodeproj/christopherjohnson.pbxuser
index eb3be4669..d504360d5 100755
--- a/plugins/MacVST/PurestConsole2Buss/PurestConsole2Buss.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/PurestConsole2Buss/PurestConsole2Buss.xcodeproj/christopherjohnson.pbxuser
@@ -49,14 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 635574972;
- PBXWorkspaceStateSaveDate = 635574972;
+ PBXPerProjectTemplateStateSaveDate = 667861134;
+ PBXWorkspaceStateSaveDate = 667861134;
};
perUserProjectItems = {
- 8B2A6CF925E2218B00D1F136 /* PBXBookmark */ = 8B2A6CF925E2218B00D1F136 /* PBXBookmark */;
- 8B2A6D0925E221E200D1F136 /* XCBuildMessageTextBookmark */ = 8B2A6D0925E221E200D1F136 /* XCBuildMessageTextBookmark */;
8B2A6D0A25E221E200D1F136 /* PBXTextBookmark */ = 8B2A6D0A25E221E200D1F136 /* PBXTextBookmark */;
- 8B2A6D1025E221E200D1F136 /* PBXTextBookmark */ = 8B2A6D1025E221E200D1F136 /* PBXTextBookmark */;
+ 8BDCA25327CEC09600A07B67 /* PBXTextBookmark */ = 8BDCA25327CEC09600A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -64,9 +62,9 @@
};
2407DEB6089929BA00EB68BF /* PurestConsole2Buss.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {975, 1764}}";
+ sepNavIntBoundsRect = "{{0, 0}, {939, 1854}}";
sepNavSelRange = "{2134, 0}";
- sepNavVisRange = "{2046, 192}";
+ sepNavVisRange = "{2046, 102}";
sepNavWindowFrame = "{{12, 47}, {895, 831}}";
};
};
@@ -88,10 +86,10 @@
};
24D8286F09A914000093AEF8 /* PurestConsole2BussProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1362, 2340}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1317, 2340}}";
sepNavSelRange = "{2939, 0}";
- sepNavVisRange = "{2676, 1659}";
- sepNavWindowFrame = "{{27, 47}, {895, 831}}";
+ sepNavVisRange = "{2664, 1444}";
+ sepNavWindowFrame = "{{19, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -108,19 +106,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B2A6CF925E2218B00D1F136 /* PBXBookmark */ = {
- isa = PBXBookmark;
- fRef = 24D8286F09A914000093AEF8 /* PurestConsole2BussProc.cpp */;
- };
- 8B2A6D0925E221E200D1F136 /* XCBuildMessageTextBookmark */ = {
- isa = PBXTextBookmark;
- comments = "Unused variable 'chunkData'";
- fRef = 2407DEB6089929BA00EB68BF /* PurestConsole2Buss.cpp */;
- fallbackIsa = XCBuildMessageTextBookmark;
- rLen = 1;
- rLoc = 47;
- rType = 1;
- };
8B2A6D0A25E221E200D1F136 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2407DEB6089929BA00EB68BF /* PurestConsole2Buss.cpp */;
@@ -131,15 +116,15 @@
vrLen = 192;
vrLoc = 2046;
};
- 8B2A6D1025E221E200D1F136 /* PBXTextBookmark */ = {
+ 8BDCA25327CEC09600A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* PurestConsole2BussProc.cpp */;
- name = "PurestConsole2BussProc.cpp: 80";
+ fRef = 2407DEB6089929BA00EB68BF /* PurestConsole2Buss.cpp */;
+ name = "PurestConsole2Buss.cpp: 48";
rLen = 0;
- rLoc = 2939;
+ rLoc = 2134;
rType = 0;
- vrLen = 1659;
- vrLoc = 2676;
+ vrLen = 102;
+ vrLoc = 2046;
};
8D01CCC60486CAD60068D4B7 /* PurestConsole2Buss */ = {
activeExec = 0;
diff --git a/plugins/MacVST/PurestConsole2Buss/PurestConsole2Buss.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/PurestConsole2Buss/PurestConsole2Buss.xcodeproj/christopherjohnson.perspectivev3
index 435238b82..60557328a 100755
--- a/plugins/MacVST/PurestConsole2Buss/PurestConsole2Buss.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/PurestConsole2Buss/PurestConsole2Buss.xcodeproj/christopherjohnson.perspectivev3
@@ -222,48 +222,7 @@
OpenEditors
-
-
- Content
-
- PBXProjectModuleGUID
- 8B2A6D0E25E221E200D1F136
- PBXProjectModuleLabel
- PurestConsole2BussProc.cpp
- PBXSplitModuleInNavigatorKey
-
- Split0
-
- PBXProjectModuleGUID
- 8B2A6D0F25E221E200D1F136
- PBXProjectModuleLabel
- PurestConsole2BussProc.cpp
- _historyCapacity
- 0
- bookmark
- 8B2A6D1025E221E200D1F136
- history
-
- 8B2A6CF925E2218B00D1F136
-
-
- SplitCount
- 1
-
- StatusBarVisibility
-
-
- Geometry
-
- Frame
- {{0, 20}, {895, 734}}
- PBXModuleWindowStatusBarHidden2
-
- RubberWindowFrame
- 27 103 895 775 0 0 1440 878
-
-
-
+
PerspectiveWidths
810
@@ -297,6 +256,8 @@
Layout
+ BecomeActive
+
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -362,7 +323,7 @@
185
RubberWindowFrame
- 55 85 810 487 0 0 1440 878
+ 313 171 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -390,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B2A6D0A25E221E200D1F136
+ 8BDCA25327CEC09600A07B67
history
- 8B2A6D0925E221E200D1F136
+ 8B2A6D0A25E221E200D1F136
SplitCount
@@ -407,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 132}}
+ {{0, 0}, {603, 117}}
RubberWindowFrame
- 55 85 810 487 0 0 1440 878
+ 313 171 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 132pt
+ 117pt
Proportion
- 309pt
+ 324pt
Tabs
@@ -432,7 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 297}}
+ RubberWindowFrame
+ 313 171 810 487 0 0 1280 698
Module
XCDetailModule
@@ -487,8 +450,6 @@
Frame
{{10, 27}, {603, 282}}
- RubberWindowFrame
- 55 85 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -516,11 +477,11 @@
TableOfContents
- 8B2A6D0B25E221E200D1F136
+ 8BDCA25427CEC09600A07B67
1CA23ED40692098700951B8B
- 8B2A6D0C25E221E200D1F136
+ 8BDCA25527CEC09600A07B67
8B0237581D42B1C400E1E8C8
- 8B2A6D0D25E221E200D1F136
+ 8BDCA25627CEC09600A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -673,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 635576802.37828398
+ 667861142.95464206
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -690,12 +651,11 @@
5
WindowOrderList
- 8B2A6D1125E221E200D1F136
8B2A6D0E25E221E200D1F136
- /Users/christopherjohnson/Desktop/PurestConsole2Buss/PurestConsole2Buss.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/PurestConsole2Buss/PurestConsole2Buss.xcodeproj
WindowString
- 55 85 810 487 0 0 1440 878
+ 313 171 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/PurestConsole2Channel/PurestConsole2Channel.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/PurestConsole2Channel/PurestConsole2Channel.xcodeproj/christopherjohnson.pbxuser
index 399df3c32..8aa026334 100755
--- a/plugins/MacVST/PurestConsole2Channel/PurestConsole2Channel.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/PurestConsole2Channel/PurestConsole2Channel.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* PurestConsole2Channel */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 635575395;
- PBXWorkspaceStateSaveDate = 635575395;
+ PBXPerProjectTemplateStateSaveDate = 667861148;
+ PBXWorkspaceStateSaveDate = 667861148;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* PurestConsole2Channel */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/PurestConsole2Channel/PurestConsole2Channel.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/PurestConsole2Channel/PurestConsole2Channel.xcodeproj/christopherjohnson.perspectivev3
index 87b76b0a0..4ae615fd6 100755
--- a/plugins/MacVST/PurestConsole2Channel/PurestConsole2Channel.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/PurestConsole2Channel/PurestConsole2Channel.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 51 391 810 487 0 0 1440 878
+ 38 211 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 51 391 810 487 0 0 1440 878
+ 38 211 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -386,6 +386,8 @@
Frame
{{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 38 211 810 487 0 0 1280 698
Module
XCDetailModule
@@ -440,8 +442,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 51 391 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B2A6D1725E221F700D1F136
+ 8BDCA27127CEC09F00A07B67
1CA23ED40692098700951B8B
- 8B2A6D1825E221F700D1F136
+ 8BDCA27227CEC09F00A07B67
8B0237581D42B1C400E1E8C8
- 8B2A6D1925E221F700D1F136
+ 8BDCA27327CEC09F00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 635576823.618734
+ 667861151.87334597
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,11 +643,10 @@
5
WindowOrderList
- 8B2A6D1A25E221F700D1F136
- /Users/christopherjohnson/Desktop/PurestConsole2Channel/PurestConsole2Channel.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/PurestConsole2Channel/PurestConsole2Channel.xcodeproj
WindowString
- 51 391 810 487 0 0 1440 878
+ 38 211 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/PurestConsole2Channel/PurestConsole2Channel.xcodeproj/project.pbxproj b/plugins/MacVST/PurestConsole2Channel/PurestConsole2Channel.xcodeproj/project.pbxproj
index 2554ba6cf..456f37f28 100755
--- a/plugins/MacVST/PurestConsole2Channel/PurestConsole2Channel.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/PurestConsole2Channel/PurestConsole2Channel.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* PurestConsole2Channel */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "PurestConsole2Channel" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* PurestConsole2Channel */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/PurestConsoleBuss/PurestConsoleBuss.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/PurestConsoleBuss/PurestConsoleBuss.xcodeproj/christopherjohnson.pbxuser
index 05bbaee2f..539915421 100755
--- a/plugins/MacVST/PurestConsoleBuss/PurestConsoleBuss.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/PurestConsoleBuss/PurestConsoleBuss.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569771116;
- PBXWorkspaceStateSaveDate = 569771116;
+ PBXPerProjectTemplateStateSaveDate = 667861158;
+ PBXWorkspaceStateSaveDate = 667861158;
};
perUserProjectItems = {
8B793E5C21F60475006E9731 /* PBXTextBookmark */ = 8B793E5C21F60475006E9731 /* PBXTextBookmark */;
- 8BBE45601FE5F4550022E6F7 /* PBXTextBookmark */ = 8BBE45601FE5F4550022E6F7 /* PBXTextBookmark */;
+ 8BDCA29B27CEC0D200A07B67 /* PBXTextBookmark */ = 8BDCA29B27CEC0D200A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -62,9 +62,9 @@
};
2407DEB6089929BA00EB68BF /* PurestConsoleBuss.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {663, 1391}}";
+ sepNavIntBoundsRect = "{{0, 0}, {849, 1890}}";
sepNavSelRange = "{2244, 0}";
- sepNavVisRange = "{2188, 173}";
+ sepNavVisRange = "{2185, 100}";
sepNavWindowFrame = "{{12, 47}, {895, 831}}";
};
};
@@ -86,10 +86,10 @@
};
24D8286F09A914000093AEF8 /* PurestConsoleBussProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {848, 2691}}";
- sepNavSelRange = "{6507, 0}";
- sepNavVisRange = "{5144, 2042}";
- sepNavWindowFrame = "{{22, 47}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {957, 1836}}";
+ sepNavSelRange = "{750, 382}";
+ sepNavVisRange = "{1963, 1166}";
+ sepNavWindowFrame = "{{22, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -116,15 +116,15 @@
vrLen = 173;
vrLoc = 2188;
};
- 8BBE45601FE5F4550022E6F7 /* PBXTextBookmark */ = {
+ 8BDCA29B27CEC0D200A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2407DEB6089929BA00EB68BF /* PurestConsoleBuss.cpp */;
- name = "PurestConsoleBuss.cpp: 54";
+ name = "PurestConsoleBuss.cpp: 49";
rLen = 0;
rLoc = 2244;
rType = 0;
- vrLen = 260;
- vrLoc = 2157;
+ vrLen = 100;
+ vrLoc = 2185;
};
8D01CCC60486CAD60068D4B7 /* PurestConsoleBuss */ = {
activeExec = 0;
diff --git a/plugins/MacVST/PurestConsoleBuss/PurestConsoleBuss.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/PurestConsoleBuss/PurestConsoleBuss.xcodeproj/christopherjohnson.perspectivev3
index a64a099af..f71bd786b 100755
--- a/plugins/MacVST/PurestConsoleBuss/PurestConsoleBuss.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/PurestConsoleBuss/PurestConsoleBuss.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 10 385 810 487 0 0 1440 878
+ 313 211 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B793E5C21F60475006E9731
+ 8BDCA29B27CEC0D200A07B67
history
- 8BBE45601FE5F4550022E6F7
+ 8B793E5C21F60475006E9731
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 117}}
+ {{0, 0}, {603, 102}}
RubberWindowFrame
- 10 385 810 487 0 0 1440 878
+ 313 211 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 117pt
+ 102pt
Proportion
- 324pt
+ 339pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
+ {{10, 27}, {603, 312}}
RubberWindowFrame
- 10 385 810 487 0 0 1440 878
+ 313 211 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B793E5D21F60475006E9731
+ 8BDCA29C27CEC0D200A07B67
1CA23ED40692098700951B8B
- 8B793E5E21F60475006E9731
+ 8BDCA29D27CEC0D200A07B67
8B0237581D42B1C400E1E8C8
- 8B793E5F21F60475006E9731
+ 8BDCA29E27CEC0D200A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 569771125.16991305
+ 667861202.75135696
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +651,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/PurestConsoleBuss/PurestConsoleBuss.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/PurestConsoleBuss/PurestConsoleBuss.xcodeproj
WindowString
- 10 385 810 487 0 0 1440 878
+ 313 211 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/PurestConsoleChannel/PurestConsoleChannel.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/PurestConsoleChannel/PurestConsoleChannel.xcodeproj/christopherjohnson.pbxuser
index 9f0edd030..667eb6a9c 100755
--- a/plugins/MacVST/PurestConsoleChannel/PurestConsoleChannel.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/PurestConsoleChannel/PurestConsoleChannel.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569771151;
- PBXWorkspaceStateSaveDate = 569771151;
+ PBXPerProjectTemplateStateSaveDate = 667861209;
+ PBXWorkspaceStateSaveDate = 667861209;
};
perUserProjectItems = {
- 8B793E7C21F604AB006E9731 /* XCBuildMessageTextBookmark */ = 8B793E7C21F604AB006E9731 /* XCBuildMessageTextBookmark */;
8B793E7D21F604AB006E9731 /* PBXTextBookmark */ = 8B793E7D21F604AB006E9731 /* PBXTextBookmark */;
+ 8BDCA2B127CEC0DF00A07B67 /* PBXTextBookmark */ = 8BDCA2B127CEC0DF00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -62,9 +62,9 @@
};
2407DEB6089929BA00EB68BF /* PurestConsoleChannel.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {663, 1417}}";
+ sepNavIntBoundsRect = "{{0, 0}, {849, 1944}}";
sepNavSelRange = "{2230, 0}";
- sepNavVisRange = "{2139, 260}";
+ sepNavVisRange = "{2221, 128}";
sepNavWindowFrame = "{{12, 47}, {895, 831}}";
};
};
@@ -106,15 +106,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B793E7C21F604AB006E9731 /* XCBuildMessageTextBookmark */ = {
- isa = PBXTextBookmark;
- comments = "Unused variable 'chunkData'";
- fRef = 2407DEB6089929BA00EB68BF /* PurestConsoleChannel.cpp */;
- fallbackIsa = XCBuildMessageTextBookmark;
- rLen = 1;
- rLoc = 50;
- rType = 1;
- };
8B793E7D21F604AB006E9731 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2407DEB6089929BA00EB68BF /* PurestConsoleChannel.cpp */;
@@ -125,6 +116,16 @@
vrLen = 260;
vrLoc = 2139;
};
+ 8BDCA2B127CEC0DF00A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 2407DEB6089929BA00EB68BF /* PurestConsoleChannel.cpp */;
+ name = "PurestConsoleChannel.cpp: 49";
+ rLen = 0;
+ rLoc = 2230;
+ rType = 0;
+ vrLen = 128;
+ vrLoc = 2221;
+ };
8D01CCC60486CAD60068D4B7 /* PurestConsoleChannel */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/PurestConsoleChannel/PurestConsoleChannel.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/PurestConsoleChannel/PurestConsoleChannel.xcodeproj/christopherjohnson.perspectivev3
index 948cc4ac1..9ea871f33 100755
--- a/plugins/MacVST/PurestConsoleChannel/PurestConsoleChannel.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/PurestConsoleChannel/PurestConsoleChannel.xcodeproj/christopherjohnson.perspectivev3
@@ -256,6 +256,8 @@
Layout
+ BecomeActive
+
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -321,7 +323,7 @@
236
RubberWindowFrame
- 406 301 810 487 0 0 1440 878
+ 303 169 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -349,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B793E7D21F604AB006E9731
+ 8BDCA2B127CEC0DF00A07B67
history
- 8B793E7C21F604AB006E9731
+ 8B793E7D21F604AB006E9731
SplitCount
@@ -366,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {552, 117}}
+ {{0, 0}, {552, 102}}
RubberWindowFrame
- 406 301 810 487 0 0 1440 878
+ 303 169 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 117pt
+ 102pt
Proportion
- 324pt
+ 339pt
Tabs
@@ -391,7 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {552, 297}}
+ {{10, 27}, {552, 312}}
+ RubberWindowFrame
+ 303 169 810 487 0 0 1280 698
Module
XCDetailModule
@@ -446,8 +450,6 @@
Frame
{{10, 27}, {552, 297}}
- RubberWindowFrame
- 406 301 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -475,11 +477,11 @@
TableOfContents
- 8B793E7E21F604AB006E9731
+ 8BDCA2B227CEC0DF00A07B67
1CA23ED40692098700951B8B
- 8B793E7F21F604AB006E9731
+ 8BDCA2B327CEC0DF00A07B67
8B0237581D42B1C400E1E8C8
- 8B793E8021F604AB006E9731
+ 8BDCA2B427CEC0DF00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -632,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 569771179.00788903
+ 667861215.81198502
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -649,11 +651,10 @@
5
WindowOrderList
- 8BBE45271FE5F2760022E6F7
- /Users/christopherjohnson/Desktop/MacVST/PurestConsoleChannel/PurestConsoleChannel.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/PurestConsoleChannel/PurestConsoleChannel.xcodeproj
WindowString
- 406 301 810 487 0 0 1440 878
+ 303 169 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/PurestDrive/PurestDrive.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/PurestDrive/PurestDrive.xcodeproj/christopherjohnson.pbxuser
index d8eeda2a6..369a148ba 100755
--- a/plugins/MacVST/PurestDrive/PurestDrive.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/PurestDrive/PurestDrive.xcodeproj/christopherjohnson.pbxuser
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569771199;
- PBXWorkspaceStateSaveDate = 569771199;
+ PBXPerProjectTemplateStateSaveDate = 667861220;
+ PBXWorkspaceStateSaveDate = 667861220;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
diff --git a/plugins/MacVST/PurestDrive/PurestDrive.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/PurestDrive/PurestDrive.xcodeproj/christopherjohnson.perspectivev3
index 461e4df28..dbc169e7d 100755
--- a/plugins/MacVST/PurestDrive/PurestDrive.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/PurestDrive/PurestDrive.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 9 381 810 487 0 0 1440 878
+ 7 206 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 9 381 810 487 0 0 1440 878
+ 7 206 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 9 381 810 487 0 0 1440 878
+ 7 206 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B793E9D21F604DA006E9731
+ 8BDCA2CF27CEC0E900A07B67
1CA23ED40692098700951B8B
- 8B793E9E21F604DA006E9731
+ 8BDCA2D027CEC0E900A07B67
8B0237581D42B1C400E1E8C8
- 8B793E9F21F604DA006E9731
+ 8BDCA2D127CEC0E900A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 569771226.28827202
+ 667861225.11868203
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +643,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/PurestDrive/PurestDrive.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/PurestDrive/PurestDrive.xcodeproj
WindowString
- 9 381 810 487 0 0 1440 878
+ 7 206 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/PurestEcho/PurestEcho.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/PurestEcho/PurestEcho.xcodeproj/christopherjohnson.pbxuser
index 87fae1288..87f1eb1bd 100755
--- a/plugins/MacVST/PurestEcho/PurestEcho.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/PurestEcho/PurestEcho.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* PurestEcho */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569771267;
- PBXWorkspaceStateSaveDate = 569771267;
+ PBXPerProjectTemplateStateSaveDate = 667861230;
+ PBXWorkspaceStateSaveDate = 667861230;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -82,10 +82,10 @@
};
24D8286F09A914000093AEF8 /* PurestEchoProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {880, 5278}}";
- sepNavSelRange = "{12452, 1892}";
- sepNavVisRange = "{3265, 2263}";
- sepNavWindowFrame = "{{457, 47}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1128, 5670}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{2517, 1128}";
+ sepNavWindowFrame = "{{385, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* PurestEcho */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/PurestEcho/PurestEcho.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/PurestEcho/PurestEcho.xcodeproj/christopherjohnson.perspectivev3
index a80a47565..df3672bde 100755
--- a/plugins/MacVST/PurestEcho/PurestEcho.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/PurestEcho/PurestEcho.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 612 265 810 487 0 0 1440 878
+ 457 152 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 612 265 810 487 0 0 1440 878
+ 457 152 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 612 265 810 487 0 0 1440 878
+ 457 152 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B793EC621F6054B006E9731
+ 8BDCA2EF27CEC10300A07B67
1CA23ED40692098700951B8B
- 8B793EC721F6054B006E9731
+ 8BDCA2F027CEC10300A07B67
8B0237581D42B1C400E1E8C8
- 8B793EC821F6054B006E9731
+ 8BDCA2F127CEC10300A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 569771339.31522799
+ 667861251.70777297
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +643,11 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/PurestEcho/PurestEcho.xcodeproj
+ 8BDCA2F227CEC10300A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/PurestEcho/PurestEcho.xcodeproj
WindowString
- 612 265 810 487 0 0 1440 878
+ 457 152 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/PurestEcho/PurestEcho.xcodeproj/project.pbxproj b/plugins/MacVST/PurestEcho/PurestEcho.xcodeproj/project.pbxproj
index 43171c9db..02231e489 100755
--- a/plugins/MacVST/PurestEcho/PurestEcho.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/PurestEcho/PurestEcho.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* PurestEcho */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "PurestEcho" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* PurestEcho */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/PurestFade/PurestFade.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/PurestFade/PurestFade.xcodeproj/christopherjohnson.pbxuser
index b1ee61b82..49f35f715 100755
--- a/plugins/MacVST/PurestFade/PurestFade.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/PurestFade/PurestFade.xcodeproj/christopherjohnson.pbxuser
@@ -49,14 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 610236470;
- PBXWorkspaceStateSaveDate = 610236470;
+ PBXPerProjectTemplateStateSaveDate = 667861411;
+ PBXWorkspaceStateSaveDate = 667861411;
};
perUserProjectItems = {
- 8BFF8E89245F783800BDA794 /* PBXBookmark */ = 8BFF8E89245F783800BDA794 /* PBXBookmark */;
- 8BFF8EA5245F787000BDA794 /* PBXTextBookmark */ = 8BFF8EA5245F787000BDA794 /* PBXTextBookmark */;
- 8BFF8EA6245F787000BDA794 /* PBXTextBookmark */ = 8BFF8EA6245F787000BDA794 /* PBXTextBookmark */;
- 8BFF8EAC245F787000BDA794 /* PBXTextBookmark */ = 8BFF8EAC245F787000BDA794 /* PBXTextBookmark */;
+ 8BDCA35627CEC20A00A07B67 /* PBXTextBookmark */ = 8BDCA35627CEC20A00A07B67 /* PBXTextBookmark */;
+ 8BDCA35727CEC20A00A07B67 /* PBXTextBookmark */ = 8BDCA35727CEC20A00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -88,10 +86,10 @@
};
24D8286F09A914000093AEF8 /* PurestFadeProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {670, 2470}}";
- sepNavSelRange = "{6006, 0}";
- sepNavVisRange = "{5933, 76}";
- sepNavWindowFrame = "{{31, 57}, {895, 821}}";
+ sepNavIntBoundsRect = "{{0, 0}, {885, 3474}}";
+ sepNavSelRange = "{5989, 0}";
+ sepNavVisRange = "{5962, 27}";
+ sepNavWindowFrame = "{{243, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -108,39 +106,25 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8BFF8E89245F783800BDA794 /* PBXBookmark */ = {
- isa = PBXBookmark;
- fRef = 24D8286F09A914000093AEF8 /* PurestFadeProc.cpp */;
- };
- 8BFF8EA5245F787000BDA794 /* PBXTextBookmark */ = {
+ 8BDCA35627CEC20A00A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* PurestFadeProc.cpp */;
- name = "PurestFadeProc.cpp: 184";
+ name = "PurestFadeProc.cpp: 186";
rLen = 0;
- rLoc = 6006;
+ rLoc = 5989;
rType = 0;
- vrLen = 76;
- vrLoc = 5933;
+ vrLen = 27;
+ vrLoc = 5954;
};
- 8BFF8EA6245F787000BDA794 /* PBXTextBookmark */ = {
+ 8BDCA35727CEC20A00A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* PurestFadeProc.cpp */;
- name = "PurestFadeProc.cpp: 184";
+ name = "PurestFadeProc.cpp: 186";
rLen = 0;
- rLoc = 6006;
+ rLoc = 5989;
rType = 0;
- vrLen = 76;
- vrLoc = 5933;
- };
- 8BFF8EAC245F787000BDA794 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* PurestFadeProc.cpp */;
- name = "PurestFadeProc.cpp: 131";
- rLen = 0;
- rLoc = 4275;
- rType = 0;
- vrLen = 1683;
- vrLoc = 3084;
+ vrLen = 27;
+ vrLoc = 5962;
};
8D01CCC60486CAD60068D4B7 /* PurestFade */ = {
activeExec = 0;
diff --git a/plugins/MacVST/PurestFade/PurestFade.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/PurestFade/PurestFade.xcodeproj/christopherjohnson.perspectivev3
index 71e694479..bad38f27b 100755
--- a/plugins/MacVST/PurestFade/PurestFade.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/PurestFade/PurestFade.xcodeproj/christopherjohnson.perspectivev3
@@ -222,48 +222,7 @@
OpenEditors
-
-
- Content
-
- PBXProjectModuleGUID
- 8BFF8EAA245F787000BDA794
- PBXProjectModuleLabel
- PurestFadeProc.cpp
- PBXSplitModuleInNavigatorKey
-
- Split0
-
- PBXProjectModuleGUID
- 8BFF8EAB245F787000BDA794
- PBXProjectModuleLabel
- PurestFadeProc.cpp
- _historyCapacity
- 0
- bookmark
- 8BFF8EAC245F787000BDA794
- history
-
- 8BFF8E89245F783800BDA794
-
-
- SplitCount
- 1
-
- StatusBarVisibility
-
-
- Geometry
-
- Frame
- {{0, 20}, {895, 724}}
- PBXModuleWindowStatusBarHidden2
-
- RubberWindowFrame
- 31 113 895 765 0 0 1440 878
-
-
-
+
PerspectiveWidths
810
@@ -364,7 +323,7 @@
185
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 20 176 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -392,10 +351,10 @@
_historyCapacity
0
bookmark
- 8BFF8EA6245F787000BDA794
+ 8BDCA35727CEC20A00A07B67
history
- 8BFF8EA5245F787000BDA794
+ 8BDCA35627CEC20A00A07B67
SplitCount
@@ -409,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 132}}
+ {{0, 0}, {603, 102}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 20 176 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 132pt
+ 102pt
Proportion
- 309pt
+ 339pt
Tabs
@@ -434,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 312}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 20 176 810 487 0 0 1280 698
Module
XCDetailModule
@@ -490,7 +449,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 414}}
+ {{10, 27}, {603, 297}}
Module
PBXBuildResultsModule
@@ -518,11 +477,11 @@
TableOfContents
- 8BFF8EA7245F787000BDA794
+ 8BDCA35827CEC20A00A07B67
1CA23ED40692098700951B8B
- 8BFF8EA8245F787000BDA794
+ 8BDCA35927CEC20A00A07B67
8B0237581D42B1C400E1E8C8
- 8BFF8EA9245F787000BDA794
+ 8BDCA35A27CEC20A00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -675,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 610236528.28858697
+ 667861514.32653797
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -692,11 +651,11 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/Plugins/MacVST/PurestFade/PurestFade.xcodeproj
- 8BFF8EAA245F787000BDA794
+ 8BDCA35B27CEC20A00A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/PurestFade/PurestFade.xcodeproj
WindowString
- 34 365 810 487 0 0 1440 878
+ 20 176 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/PurestFade/source/PurestFadeProc.cpp b/plugins/MacVST/PurestFade/source/PurestFadeProc.cpp
index 8dcd957fd..eca9d83ce 100755
--- a/plugins/MacVST/PurestFade/source/PurestFadeProc.cpp
+++ b/plugins/MacVST/PurestFade/source/PurestFadeProc.cpp
@@ -79,11 +79,11 @@ void PurestFade::processReplacing(float **inputs, float **outputs, VstInt32 samp
//begin 32 bit stereo floating point dither
int expon; frexpf((float)inputSampleL, &expon);
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
- inputSampleL += ((double(fpd)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62));
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62));
frexpf((float)inputSampleR, &expon);
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
- inputSampleR += ((double(fpd)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62));
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62));
//end 32 bit stereo floating point dither
*out1 = inputSampleL;
*out2 = inputSampleR;
@@ -166,12 +166,12 @@ void PurestFade::processDoubleReplacing(double **inputs, double **outputs, VstIn
inputSampleR *= outputgain;
//begin 64 bit stereo floating point dither
- int expon; frexp((double)inputSampleL, &expon);
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
- inputSampleL += ((double(fpd)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62));
- frexp((double)inputSampleR, &expon);
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
- inputSampleR += ((double(fpd)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62));
+ //int expon; frexp((double)inputSampleL, &expon);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ //inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62));
+ //frexp((double)inputSampleR, &expon);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ //inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62));
//end 64 bit stereo floating point dither
*out1 = inputSampleL;
diff --git a/plugins/MacVST/PurestGain/PurestGain.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/PurestGain/PurestGain.xcodeproj/christopherjohnson.pbxuser
index 60f46c3de..5c2c379be 100755
--- a/plugins/MacVST/PurestGain/PurestGain.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/PurestGain/PurestGain.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* PurestGain */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569771364;
- PBXWorkspaceStateSaveDate = 569771364;
+ PBXPerProjectTemplateStateSaveDate = 667861591;
+ PBXWorkspaceStateSaveDate = 667861591;
+ };
+ perUserProjectItems = {
+ 8BDCA3B327CEC2AE00A07B67 /* PBXTextBookmark */ = 8BDCA3B327CEC2AE00A07B67 /* PBXTextBookmark */;
+ 8BDCA3B427CEC2AE00A07B67 /* PBXTextBookmark */ = 8BDCA3B427CEC2AE00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -82,10 +86,10 @@
};
24D8286F09A914000093AEF8 /* PurestGainProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {848, 3484}}";
- sepNavSelRange = "{0, 0}";
- sepNavVisRange = "{7696, 2006}";
- sepNavWindowFrame = "{{488, 47}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {894, 3528}}";
+ sepNavSelRange = "{6036, 0}";
+ sepNavVisRange = "{3336, 50}";
+ sepNavWindowFrame = "{{176, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -102,7 +106,27 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
+ 8BDCA3B327CEC2AE00A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* PurestGainProc.cpp */;
+ name = "PurestGainProc.cpp: 185";
+ rLen = 0;
+ rLoc = 6036;
+ rType = 0;
+ vrLen = 50;
+ vrLoc = 3336;
+ };
+ 8BDCA3B427CEC2AE00A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* PurestGainProc.cpp */;
+ name = "PurestGainProc.cpp: 185";
+ rLen = 0;
+ rLoc = 6036;
+ rType = 0;
+ vrLen = 50;
+ vrLoc = 3336;
+ };
+ 8D01CCC60486CAD60068D4B7 /* PurestGain */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/PurestGain/PurestGain.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/PurestGain/PurestGain.xcodeproj/christopherjohnson.perspectivev3
index 3986363e8..b4f3f97e9 100755
--- a/plugins/MacVST/PurestGain/PurestGain.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/PurestGain/PurestGain.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 630 333 810 487 0 0 1440 878
+ 266 179 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -339,7 +339,7 @@
PBXProjectModuleGUID
8B0237581D42B1C400E1E8C8
PBXProjectModuleLabel
- Gain.h
+ PurestGainProc.cpp
PBXSplitModuleInNavigatorKey
Split0
@@ -347,7 +347,15 @@
PBXProjectModuleGUID
8B0237591D42B1C400E1E8C8
PBXProjectModuleLabel
- Gain.h
+ PurestGainProc.cpp
+ _historyCapacity
+ 0
+ bookmark
+ 8BDCA3B427CEC2AE00A07B67
+ history
+
+ 8BDCA3B327CEC2AE00A07B67
+
SplitCount
1
@@ -360,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 0}}
+ {{0, 0}, {603, 132}}
RubberWindowFrame
- 630 333 810 487 0 0 1440 878
+ 266 179 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 0pt
+ 132pt
Proportion
- 441pt
+ 309pt
Tabs
@@ -385,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 414}}
+ {{10, 27}, {603, 282}}
RubberWindowFrame
- 630 333 810 487 0 0 1440 878
+ 266 179 810 487 0 0 1280 698
Module
XCDetailModule
@@ -441,7 +449,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 414}}
Module
PBXBuildResultsModule
@@ -469,11 +477,11 @@
TableOfContents
- 8B793EDC21F6057A006E9731
+ 8BDCA3B527CEC2AE00A07B67
1CA23ED40692098700951B8B
- 8B793EDD21F6057A006E9731
+ 8BDCA3B627CEC2AE00A07B67
8B0237581D42B1C400E1E8C8
- 8B793EDE21F6057A006E9731
+ 8BDCA3B727CEC2AE00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 569771386.05235398
+ 667861678.61604798
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +651,11 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/PurestGain/PurestGain.xcodeproj
+ 8BDCA3B827CEC2AE00A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/PurestGain/PurestGain.xcodeproj
WindowString
- 630 333 810 487 0 0 1440 878
+ 266 179 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/PurestGain/PurestGain.xcodeproj/project.pbxproj b/plugins/MacVST/PurestGain/PurestGain.xcodeproj/project.pbxproj
index 511f09f63..b89fc2032 100755
--- a/plugins/MacVST/PurestGain/PurestGain.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/PurestGain/PurestGain.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
+ 8D01CCC60486CAD60068D4B7 /* PurestGain */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "PurestGain" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
+ 8D01CCC60486CAD60068D4B7 /* PurestGain */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/PurestGain/source/PurestGainProc.cpp b/plugins/MacVST/PurestGain/source/PurestGainProc.cpp
index 2ca5b8478..1bb58d727 100755
--- a/plugins/MacVST/PurestGain/source/PurestGainProc.cpp
+++ b/plugins/MacVST/PurestGain/source/PurestGainProc.cpp
@@ -84,14 +84,14 @@ void PurestGain::processReplacing(float **inputs, float **outputs, VstInt32 samp
} else {
inputSampleL *= outputgain;
inputSampleR *= outputgain;
- //stereo 32 bit dither, made small and tidy.
+ //begin 32 bit stereo floating point dither
int expon; frexpf((float)inputSampleL, &expon);
- double dither = (rand()/(RAND_MAX*7.737125245533627e+25))*pow(2,expon+62);
- inputSampleL += (dither-fpNShapeL); fpNShapeL = dither;
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62));
frexpf((float)inputSampleR, &expon);
- dither = (rand()/(RAND_MAX*7.737125245533627e+25))*pow(2,expon+62);
- inputSampleR += (dither-fpNShapeR); fpNShapeR = dither;
- //end 32 bit dither
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62));
+ //end 32 bit stereo floating point dither
*out1 = inputSampleL;
*out2 = inputSampleR;
}
@@ -174,16 +174,14 @@ void PurestGain::processDoubleReplacing(double **inputs, double **outputs, VstIn
} else {
inputSampleL *= outputgain;
inputSampleR *= outputgain;
- //stereo 64 bit dither, made small and tidy.
- int expon; frexp((double)inputSampleL, &expon);
- double dither = (rand()/(RAND_MAX*7.737125245533627e+25))*pow(2,expon+62);
- dither /= 536870912.0; //needs this to scale to 64 bit zone
- inputSampleL += (dither-fpNShapeL); fpNShapeL = dither;
- frexp((double)inputSampleR, &expon);
- dither = (rand()/(RAND_MAX*7.737125245533627e+25))*pow(2,expon+62);
- dither /= 536870912.0; //needs this to scale to 64 bit zone
- inputSampleR += (dither-fpNShapeR); fpNShapeR = dither;
- //end 64 bit dither
+ //begin 64 bit stereo floating point dither
+ //int expon; frexp((double)inputSampleL, &expon);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ //inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62));
+ //frexp((double)inputSampleR, &expon);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ //inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62));
+ //end 64 bit stereo floating point dither
*out1 = inputSampleL;
*out2 = inputSampleR;
}
diff --git a/plugins/MacVST/PurestSquish/PurestSquish.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/PurestSquish/PurestSquish.xcodeproj/christopherjohnson.pbxuser
index e4a355093..6d307ae78 100755
--- a/plugins/MacVST/PurestSquish/PurestSquish.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/PurestSquish/PurestSquish.xcodeproj/christopherjohnson.pbxuser
@@ -49,13 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 572654148;
- PBXWorkspaceStateSaveDate = 572654148;
+ PBXPerProjectTemplateStateSaveDate = 667861540;
+ PBXWorkspaceStateSaveDate = 667861540;
};
perUserProjectItems = {
- 8B6F20F22219EE860084A947 /* PBXTextBookmark */ = 8B6F20F22219EE860084A947 /* PBXTextBookmark */;
8B9F82BB2219E6100082B2CC /* PBXTextBookmark */ = 8B9F82BB2219E6100082B2CC /* PBXTextBookmark */;
8BB521B722220249000C92BC /* PBXTextBookmark */ = 8BB521B722220249000C92BC /* PBXTextBookmark */;
+ 8BDCA37027CEC22900A07B67 /* PBXTextBookmark */ = 8BDCA37027CEC22900A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -87,9 +87,9 @@
};
24D8286F09A914000093AEF8 /* PurestSquishProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {712, 13208}}";
+ sepNavIntBoundsRect = "{{0, 0}, {554, 17334}}";
sepNavSelRange = "{17480, 0}";
- sepNavVisRange = "{17389, 122}";
+ sepNavVisRange = "{17449, 111}";
sepNavWindowFrame = "{{211, 47}, {895, 831}}";
};
};
@@ -107,16 +107,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B6F20F22219EE860084A947 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* PurestSquishProc.cpp */;
- name = "PurestSquishProc.cpp: 525";
- rLen = 0;
- rLoc = 17480;
- rType = 0;
- vrLen = 184;
- vrLoc = 17410;
- };
8B9F82BB2219E6100082B2CC /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2407DEB6089929BA00EB68BF /* PurestSquish.cpp */;
@@ -137,6 +127,16 @@
vrLen = 122;
vrLoc = 17389;
};
+ 8BDCA37027CEC22900A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* PurestSquishProc.cpp */;
+ name = "PurestSquishProc.cpp: 528";
+ rLen = 0;
+ rLoc = 17480;
+ rType = 0;
+ vrLen = 111;
+ vrLoc = 17449;
+ };
8D01CCC60486CAD60068D4B7 /* PurestSquish */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/PurestSquish/PurestSquish.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/PurestSquish/PurestSquish.xcodeproj/christopherjohnson.perspectivev3
index 662211624..0b0b923ae 100755
--- a/plugins/MacVST/PurestSquish/PurestSquish.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/PurestSquish/PurestSquish.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 10 336 810 487 0 0 1440 878
+ 7 185 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,11 +351,11 @@
_historyCapacity
0
bookmark
- 8BB521B722220249000C92BC
+ 8BDCA37027CEC22900A07B67
history
8B9F82BB2219E6100082B2CC
- 8B6F20F22219EE860084A947
+ 8BB521B722220249000C92BC
SplitCount
@@ -369,18 +369,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 102}}
+ {{0, 0}, {603, 86}}
RubberWindowFrame
- 10 336 810 487 0 0 1440 878
+ 7 185 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 102pt
+ 86pt
Proportion
- 339pt
+ 355pt
Tabs
@@ -394,9 +394,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 312}}
+ {{10, 27}, {603, 328}}
RubberWindowFrame
- 10 336 810 487 0 0 1440 878
+ 7 185 810 487 0 0 1280 698
Module
XCDetailModule
@@ -478,11 +478,11 @@
TableOfContents
- 8BB521B822220249000C92BC
+ 8BDCA37127CEC22900A07B67
1CA23ED40692098700951B8B
- 8BB521B922220249000C92BC
+ 8BDCA37227CEC22900A07B67
8B0237581D42B1C400E1E8C8
- 8BB521BA22220249000C92BC
+ 8BDCA37327CEC22900A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -635,7 +635,7 @@
StatusbarIsVisible
TimeStamp
- 572654153.76183796
+ 667861545.53757203
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -652,10 +652,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/Plugins/MacVST/PurestSquish/PurestSquish.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/PurestSquish/PurestSquish.xcodeproj
WindowString
- 10 336 810 487 0 0 1440 878
+ 7 185 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/PurestWarm/PurestWarm.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/PurestWarm/PurestWarm.xcodeproj/christopherjohnson.pbxuser
index f6f660782..3f236fd72 100755
--- a/plugins/MacVST/PurestWarm/PurestWarm.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/PurestWarm/PurestWarm.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569771412;
- PBXWorkspaceStateSaveDate = 569771412;
+ PBXPerProjectTemplateStateSaveDate = 667861549;
+ PBXWorkspaceStateSaveDate = 667861549;
};
perUserProjectItems = {
- 8B2C4C221FC246470023028A /* PBXTextBookmark */ = 8B2C4C221FC246470023028A /* PBXTextBookmark */;
- 8B793EFC21F605B1006E9731 /* PBXTextBookmark */ = 8B793EFC21F605B1006E9731 /* PBXTextBookmark */;
+ 8BDCA3BB27CEC2D900A07B67 /* PBXTextBookmark */ = 8BDCA3BB27CEC2D900A07B67 /* PBXTextBookmark */;
+ 8BDCA3BC27CEC2D900A07B67 /* PBXTextBookmark */ = 8BDCA3BC27CEC2D900A07B67 /* PBXTextBookmark */;
+ 8BDCA3BD27CEC2D900A07B67 /* PBXTextBookmark */ = 8BDCA3BD27CEC2D900A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -62,18 +63,18 @@
};
2407DEB6089929BA00EB68BF /* PurestWarm.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {848, 1664}}";
+ sepNavIntBoundsRect = "{{0, 0}, {948, 2250}}";
sepNavSelRange = "{3422, 13}";
- sepNavVisRange = "{1862, 2031}";
- sepNavWindowFrame = "{{12, 47}, {895, 831}}";
+ sepNavVisRange = "{0, 1244}";
+ sepNavWindowFrame = "{{12, 4}, {895, 694}}";
};
};
245463B80991757100464AD3 /* PurestWarm.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {866, 832}}";
- sepNavSelRange = "{2541, 0}";
- sepNavVisRange = "{74, 2397}";
- sepNavWindowFrame = "{{20, 47}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {561, 1170}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 169}";
+ sepNavWindowFrame = "{{20, 4}, {895, 694}}";
};
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
@@ -86,10 +87,10 @@
};
24D8286F09A914000093AEF8 /* PurestWarmProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {677, 3367}}";
- sepNavSelRange = "{8348, 0}";
- sepNavVisRange = "{1663, 324}";
- sepNavWindowFrame = "{{40, 47}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {921, 3258}}";
+ sepNavSelRange = "{6295, 0}";
+ sepNavVisRange = "{5253, 1246}";
+ sepNavWindowFrame = "{{336, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -106,25 +107,35 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B2C4C221FC246470023028A /* PBXTextBookmark */ = {
+ 8BDCA3BB27CEC2D900A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* PurestWarmProc.cpp */;
- name = "PurestWarmProc.cpp: 246";
+ name = "PurestWarmProc.cpp: 186";
rLen = 0;
- rLoc = 8348;
+ rLoc = 6499;
rType = 0;
- vrLen = 322;
- vrLoc = 1656;
+ vrLen = 173;
+ vrLoc = 1654;
};
- 8B793EFC21F605B1006E9731 /* PBXTextBookmark */ = {
+ 8BDCA3BC27CEC2D900A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* PurestWarmProc.cpp */;
- name = "PurestWarmProc.cpp: 212";
+ fRef = 245463B80991757100464AD3 /* PurestWarm.h */;
+ name = "PurestWarm.h: 1";
rLen = 0;
- rLoc = 8348;
+ rLoc = 0;
rType = 0;
- vrLen = 324;
- vrLoc = 1663;
+ vrLen = 169;
+ vrLoc = 0;
+ };
+ 8BDCA3BD27CEC2D900A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 245463B80991757100464AD3 /* PurestWarm.h */;
+ name = "PurestWarm.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 169;
+ vrLoc = 0;
};
8D01CCC60486CAD60068D4B7 /* PurestWarm */ = {
activeExec = 0;
diff --git a/plugins/MacVST/PurestWarm/PurestWarm.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/PurestWarm/PurestWarm.xcodeproj/christopherjohnson.perspectivev3
index c7c8a8286..4786b82af 100755
--- a/plugins/MacVST/PurestWarm/PurestWarm.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/PurestWarm/PurestWarm.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 168 216 810 487 0 0 1440 878
+ 368 145 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -339,7 +339,7 @@
PBXProjectModuleGUID
8B0237581D42B1C400E1E8C8
PBXProjectModuleLabel
- PurestWarmProc.cpp
+ PurestWarm.h
PBXSplitModuleInNavigatorKey
Split0
@@ -347,14 +347,15 @@
PBXProjectModuleGUID
8B0237591D42B1C400E1E8C8
PBXProjectModuleLabel
- PurestWarmProc.cpp
+ PurestWarm.h
_historyCapacity
0
bookmark
- 8B793EFC21F605B1006E9731
+ 8BDCA3BD27CEC2D900A07B67
history
- 8B2C4C221FC246470023028A
+ 8BDCA3BB27CEC2D900A07B67
+ 8BDCA3BC27CEC2D900A07B67
SplitCount
@@ -368,18 +369,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 117}}
+ {{0, 0}, {603, 102}}
RubberWindowFrame
- 168 216 810 487 0 0 1440 878
+ 368 145 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 117pt
+ 102pt
Proportion
- 324pt
+ 339pt
Tabs
@@ -393,9 +394,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
- RubberWindowFrame
- 168 216 810 487 0 0 1440 878
+ {{10, 27}, {603, 312}}
Module
XCDetailModule
@@ -449,7 +448,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 312}}
+ RubberWindowFrame
+ 368 145 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -477,11 +478,11 @@
TableOfContents
- 8B793EFD21F605B1006E9731
+ 8BDCA3BE27CEC2D900A07B67
1CA23ED40692098700951B8B
- 8B793EFE21F605B1006E9731
+ 8BDCA3BF27CEC2D900A07B67
8B0237581D42B1C400E1E8C8
- 8B793EFF21F605B1006E9731
+ 8BDCA3C027CEC2D900A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +635,7 @@
StatusbarIsVisible
TimeStamp
- 569771441.44578099
+ 667861721.75777602
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +652,11 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/PurestWarm/PurestWarm.xcodeproj
+ 8BDCA3C127CEC2D900A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/PurestWarm/PurestWarm.xcodeproj
WindowString
- 168 216 810 487 0 0 1440 878
+ 368 145 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/PurestWarm/source/PurestWarmProc.cpp b/plugins/MacVST/PurestWarm/source/PurestWarmProc.cpp
index b34bfb596..9039bbcca 100755
--- a/plugins/MacVST/PurestWarm/source/PurestWarmProc.cpp
+++ b/plugins/MacVST/PurestWarm/source/PurestWarmProc.cpp
@@ -32,52 +32,52 @@ void PurestWarm::processReplacing(float **inputs, float **outputs, VstInt32 samp
if (inputSampleL < 0)
{
inputSampleL = -(sin(-inputSampleL*1.57079634)/1.57079634);
- //stereo 32 bit dither, made small and tidy.
+ //begin 32 bit stereo floating point dither
int expon; frexpf((float)inputSampleL, &expon);
- double dither = (rand()/(RAND_MAX*7.737125245533627e+25))*pow(2,expon+62);
- inputSampleL += (dither-fpNShapeL); fpNShapeL = dither;
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62));
frexpf((float)inputSampleR, &expon);
- dither = (rand()/(RAND_MAX*7.737125245533627e+25))*pow(2,expon+62);
- inputSampleR += (dither-fpNShapeR); fpNShapeR = dither;
- //end 32 bit dither
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62));
+ //end 32 bit stereo floating point dither
}
if (inputSampleR < 0)
{
inputSampleR = -(sin(-inputSampleR*1.57079634)/1.57079634);
- //stereo 32 bit dither, made small and tidy.
+ //begin 32 bit stereo floating point dither
int expon; frexpf((float)inputSampleL, &expon);
- double dither = (rand()/(RAND_MAX*7.737125245533627e+25))*pow(2,expon+62);
- inputSampleL += (dither-fpNShapeL); fpNShapeL = dither;
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62));
frexpf((float)inputSampleR, &expon);
- dither = (rand()/(RAND_MAX*7.737125245533627e+25))*pow(2,expon+62);
- inputSampleR += (dither-fpNShapeR); fpNShapeR = dither;
- //end 32 bit dither
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62));
+ //end 32 bit stereo floating point dither
}
} else {
if (inputSampleL > 0)
{
inputSampleL = sin(inputSampleL*1.57079634)/1.57079634;
- //stereo 32 bit dither, made small and tidy.
+ //begin 32 bit stereo floating point dither
int expon; frexpf((float)inputSampleL, &expon);
- double dither = (rand()/(RAND_MAX*7.737125245533627e+25))*pow(2,expon+62);
- inputSampleL += (dither-fpNShapeL); fpNShapeL = dither;
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62));
frexpf((float)inputSampleR, &expon);
- dither = (rand()/(RAND_MAX*7.737125245533627e+25))*pow(2,expon+62);
- inputSampleR += (dither-fpNShapeR); fpNShapeR = dither;
- //end 32 bit dither
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62));
+ //end 32 bit stereo floating point dither
}
if (inputSampleR > 0)
{
inputSampleR = sin(inputSampleR*1.57079634)/1.57079634;
- //stereo 32 bit dither, made small and tidy.
+ //begin 32 bit stereo floating point dither
int expon; frexpf((float)inputSampleL, &expon);
- double dither = (rand()/(RAND_MAX*7.737125245533627e+25))*pow(2,expon+62);
- inputSampleL += (dither-fpNShapeL); fpNShapeL = dither;
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62));
frexpf((float)inputSampleR, &expon);
- dither = (rand()/(RAND_MAX*7.737125245533627e+25))*pow(2,expon+62);
- inputSampleR += (dither-fpNShapeR); fpNShapeR = dither;
- //end 32 bit dither
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62));
+ //end 32 bit stereo floating point dither
}
}
//that's it. Only applies on one half of the waveform, other half is passthrough untouched.
@@ -117,60 +117,52 @@ void PurestWarm::processDoubleReplacing(double **inputs, double **outputs, VstIn
if (inputSampleL < 0)
{
inputSampleL = -(sin(-inputSampleL*1.57079634)/1.57079634);
- //stereo 64 bit dither, made small and tidy.
- int expon; frexp((double)inputSampleL, &expon);
- double dither = (rand()/(RAND_MAX*7.737125245533627e+25))*pow(2,expon+62);
- dither /= 536870912.0; //needs this to scale to 64 bit zone
- inputSampleL += (dither-fpNShapeL); fpNShapeL = dither;
- frexp((double)inputSampleR, &expon);
- dither = (rand()/(RAND_MAX*7.737125245533627e+25))*pow(2,expon+62);
- dither /= 536870912.0; //needs this to scale to 64 bit zone
- inputSampleR += (dither-fpNShapeR); fpNShapeR = dither;
- //end 64 bit dither
+ //begin 64 bit stereo floating point dither
+ //int expon; frexp((double)inputSampleL, &expon);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ //inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62));
+ //frexp((double)inputSampleR, &expon);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ //inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62));
+ //end 64 bit stereo floating point dither
}
if (inputSampleR < 0)
{
inputSampleR = -(sin(-inputSampleR*1.57079634)/1.57079634);
- //stereo 64 bit dither, made small and tidy.
- int expon; frexp((double)inputSampleL, &expon);
- double dither = (rand()/(RAND_MAX*7.737125245533627e+25))*pow(2,expon+62);
- dither /= 536870912.0; //needs this to scale to 64 bit zone
- inputSampleL += (dither-fpNShapeL); fpNShapeL = dither;
- frexp((double)inputSampleR, &expon);
- dither = (rand()/(RAND_MAX*7.737125245533627e+25))*pow(2,expon+62);
- dither /= 536870912.0; //needs this to scale to 64 bit zone
- inputSampleR += (dither-fpNShapeR); fpNShapeR = dither;
- //end 64 bit dither
+ //begin 64 bit stereo floating point dither
+ //int expon; frexp((double)inputSampleL, &expon);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ //inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62));
+ //frexp((double)inputSampleR, &expon);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ //inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62));
+ //end 64 bit stereo floating point dither
}
} else {
if (inputSampleL > 0)
{
inputSampleL = sin(inputSampleL*1.57079634)/1.57079634;
- //stereo 64 bit dither, made small and tidy.
- int expon; frexp((double)inputSampleL, &expon);
- double dither = (rand()/(RAND_MAX*7.737125245533627e+25))*pow(2,expon+62);
- dither /= 536870912.0; //needs this to scale to 64 bit zone
- inputSampleL += (dither-fpNShapeL); fpNShapeL = dither;
- frexp((double)inputSampleR, &expon);
- dither = (rand()/(RAND_MAX*7.737125245533627e+25))*pow(2,expon+62);
- dither /= 536870912.0; //needs this to scale to 64 bit zone
- inputSampleR += (dither-fpNShapeR); fpNShapeR = dither;
- //end 64 bit dither
+ //begin 64 bit stereo floating point dither
+ //int expon; frexp((double)inputSampleL, &expon);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ //inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62));
+ //frexp((double)inputSampleR, &expon);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ //inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62));
+ //end 64 bit stereo floating point dither
}
if (inputSampleR > 0)
{
inputSampleR = sin(inputSampleR*1.57079634)/1.57079634;
- //stereo 64 bit dither, made small and tidy.
- int expon; frexp((double)inputSampleL, &expon);
- double dither = (rand()/(RAND_MAX*7.737125245533627e+25))*pow(2,expon+62);
- dither /= 536870912.0; //needs this to scale to 64 bit zone
- inputSampleL += (dither-fpNShapeL); fpNShapeL = dither;
- frexp((double)inputSampleR, &expon);
- dither = (rand()/(RAND_MAX*7.737125245533627e+25))*pow(2,expon+62);
- dither /= 536870912.0; //needs this to scale to 64 bit zone
- inputSampleR += (dither-fpNShapeR); fpNShapeR = dither;
- //end 64 bit dither
+ //begin 64 bit stereo floating point dither
+ //int expon; frexp((double)inputSampleL, &expon);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ //inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62));
+ //frexp((double)inputSampleR, &expon);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ //inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62));
+ //end 64 bit stereo floating point dither
}
}
//that's it. Only applies on one half of the waveform, other half is passthrough untouched.
diff --git a/plugins/MacVST/Pyewacket/Pyewacket.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Pyewacket/Pyewacket.xcodeproj/christopherjohnson.pbxuser
index 378f89f37..0f0013eef 100755
--- a/plugins/MacVST/Pyewacket/Pyewacket.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Pyewacket/Pyewacket.xcodeproj/christopherjohnson.pbxuser
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569771462;
- PBXWorkspaceStateSaveDate = 569771462;
+ PBXPerProjectTemplateStateSaveDate = 667861732;
+ PBXWorkspaceStateSaveDate = 667861732;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
diff --git a/plugins/MacVST/Pyewacket/Pyewacket.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Pyewacket/Pyewacket.xcodeproj/christopherjohnson.perspectivev3
index 6841380c5..a9a053d6f 100755
--- a/plugins/MacVST/Pyewacket/Pyewacket.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Pyewacket/Pyewacket.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 498 357 810 487 0 0 1440 878
+ 372 195 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -360,18 +360,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 13}}
+ {{0, 0}, {603, 0}}
RubberWindowFrame
- 498 357 810 487 0 0 1440 878
+ 372 195 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 13pt
+ 0pt
Proportion
- 428pt
+ 441pt
Tabs
@@ -385,9 +385,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 401}}
+ {{10, 27}, {603, 414}}
RubberWindowFrame
- 498 357 810 487 0 0 1440 878
+ 372 195 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B793F1C21F605CE006E9731
+ 8BDCA3D227CEC2E800A07B67
1CA23ED40692098700951B8B
- 8B793F1D21F605CE006E9731
+ 8BDCA3D327CEC2E800A07B67
8B0237581D42B1C400E1E8C8
- 8B793F1E21F605CE006E9731
+ 8BDCA3D427CEC2E800A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 569771470.99615598
+ 667861736.87846994
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +643,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/Pyewacket/Pyewacket.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Pyewacket/Pyewacket.xcodeproj
WindowString
- 498 357 810 487 0 0 1440 878
+ 372 195 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/RawGlitters/RawGlitters.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/RawGlitters/RawGlitters.xcodeproj/christopherjohnson.pbxuser
index 180fbdb6e..68b08e270 100755
--- a/plugins/MacVST/RawGlitters/RawGlitters.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/RawGlitters/RawGlitters.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* RawGlitters */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 615684485;
- PBXWorkspaceStateSaveDate = 615684485;
+ PBXPerProjectTemplateStateSaveDate = 667861740;
+ PBXWorkspaceStateSaveDate = 667861740;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -82,10 +82,10 @@
};
24D8286F09A914000093AEF8 /* RawGlittersProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {848, 1599}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1029, 2196}}";
sepNavSelRange = "{3950, 0}";
- sepNavVisRange = "{2248, 1757}";
- sepNavWindowFrame = "{{4, 57}, {895, 821}}";
+ sepNavVisRange = "{3018, 995}";
+ sepNavWindowFrame = "{{4, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* RawGlitters */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/RawGlitters/RawGlitters.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/RawGlitters/RawGlitters.xcodeproj/christopherjohnson.perspectivev3
index 18439cf3e..9ed283c2e 100755
--- a/plugins/MacVST/RawGlitters/RawGlitters.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/RawGlitters/RawGlitters.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 16 381 810 487 0 0 1440 878
+ 12 206 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 16 381 810 487 0 0 1440 878
+ 12 206 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 16 381 810 487 0 0 1440 878
+ 12 206 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8BB9A68824B299B000CD76A8
+ 8BDCA3F227CEC2FF00A07B67
1CA23ED40692098700951B8B
- 8BB9A68924B299B000CD76A8
+ 8BDCA3F327CEC2FF00A07B67
8B0237581D42B1C400E1E8C8
- 8BB9A68A24B299B000CD76A8
+ 8BDCA3F427CEC2FF00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 615684528.19873798
+ 667861759.47093594
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,11 +643,10 @@
5
WindowOrderList
- 8BB9A68B24B299B000CD76A8
- /Users/christopherjohnson/Desktop/RawGlitters/RawGlitters.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/RawGlitters/RawGlitters.xcodeproj
WindowString
- 16 381 810 487 0 0 1440 878
+ 12 206 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/RawGlitters/RawGlitters.xcodeproj/project.pbxproj b/plugins/MacVST/RawGlitters/RawGlitters.xcodeproj/project.pbxproj
index 034284112..203525f90 100755
--- a/plugins/MacVST/RawGlitters/RawGlitters.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/RawGlitters/RawGlitters.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* RawGlitters */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "RawGlitters" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* RawGlitters */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/RawGlitters/source/RawGlittersProc.cpp b/plugins/MacVST/RawGlitters/source/RawGlittersProc.cpp
index a4414634e..c98e0f6cb 100755
--- a/plugins/MacVST/RawGlitters/source/RawGlittersProc.cpp
+++ b/plugins/MacVST/RawGlitters/source/RawGlittersProc.cpp
@@ -29,10 +29,10 @@ void RawGlitters::processReplacing(float **inputs, float **outputs, VstInt32 sam
{
double inputSampleL = *in1;
double inputSampleR = *in2;
- if (fabs(inputSampleL)<1.18e-37) inputSampleL = fpd * 1.18e-37;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
- if (fabs(inputSampleR)<1.18e-37) inputSampleR = fpd * 1.18e-37;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
+ if (fabs(inputSampleL)<1.18e-23) inputSampleL = fpdL * 1.18e-17;
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ if (fabs(inputSampleR)<1.18e-23) inputSampleR = fpdR * 1.18e-17;
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
inputSampleL *= scaleFactor;
inputSampleR *= scaleFactor;
@@ -86,10 +86,10 @@ void RawGlitters::processDoubleReplacing(double **inputs, double **outputs, VstI
{
double inputSampleL = *in1;
double inputSampleR = *in2;
- if (fabs(inputSampleL)<1.18e-43) inputSampleL = fpd * 1.18e-43;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
- if (fabs(inputSampleR)<1.18e-43) inputSampleR = fpd * 1.18e-43;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
+ if (fabs(inputSampleL)<1.18e-23) inputSampleL = fpdL * 1.18e-17;
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ if (fabs(inputSampleR)<1.18e-23) inputSampleR = fpdR * 1.18e-17;
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
inputSampleL *= scaleFactor;
inputSampleR *= scaleFactor;
diff --git a/plugins/MacVST/RawTimbers/RawTimbers.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/RawTimbers/RawTimbers.xcodeproj/christopherjohnson.pbxuser
index aa15e8fb6..f88b6863f 100755
--- a/plugins/MacVST/RawTimbers/RawTimbers.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/RawTimbers/RawTimbers.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* RawTimbers */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 615684415;
- PBXWorkspaceStateSaveDate = 615684415;
+ PBXPerProjectTemplateStateSaveDate = 667861764;
+ PBXWorkspaceStateSaveDate = 667861764;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* RawTimbers */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/RawTimbers/RawTimbers.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/RawTimbers/RawTimbers.xcodeproj/christopherjohnson.perspectivev3
index d8cbe64be..fc22f9c8c 100755
--- a/plugins/MacVST/RawTimbers/RawTimbers.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/RawTimbers/RawTimbers.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 46 305 810 487 0 0 1440 878
+ 34 170 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 46 305 810 487 0 0 1440 878
+ 34 170 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 46 305 810 487 0 0 1440 878
+ 34 170 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8BB9A66724B2998000CD76A8
+ 8BDCA40F27CEC30800A07B67
1CA23ED40692098700951B8B
- 8BB9A66824B2998000CD76A8
+ 8BDCA41027CEC30800A07B67
8B0237581D42B1C400E1E8C8
- 8BB9A66924B2998000CD76A8
+ 8BDCA41127CEC30800A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 615684480.34935999
+ 667861768.05859601
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,11 +643,10 @@
5
WindowOrderList
- 8BB9A66A24B2998000CD76A8
- /Users/christopherjohnson/Desktop/RawTimbers/RawTimbers.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/RawTimbers/RawTimbers.xcodeproj
WindowString
- 46 305 810 487 0 0 1440 878
+ 34 170 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/RawTimbers/RawTimbers.xcodeproj/project.pbxproj b/plugins/MacVST/RawTimbers/RawTimbers.xcodeproj/project.pbxproj
index 01b15ed4a..426658b4a 100755
--- a/plugins/MacVST/RawTimbers/RawTimbers.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/RawTimbers/RawTimbers.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* RawTimbers */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "RawTimbers" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* RawTimbers */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/RawTimbers/source/RawTimbersProc.cpp b/plugins/MacVST/RawTimbers/source/RawTimbersProc.cpp
index 0a1b401c3..626a3c84a 100755
--- a/plugins/MacVST/RawTimbers/source/RawTimbersProc.cpp
+++ b/plugins/MacVST/RawTimbers/source/RawTimbersProc.cpp
@@ -30,10 +30,10 @@ void RawTimbers::processReplacing(float **inputs, float **outputs, VstInt32 samp
{
double inputSampleL = *in1;
double inputSampleR = *in2;
- if (fabs(inputSampleL)<1.18e-37) inputSampleL = fpd * 1.18e-37;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
- if (fabs(inputSampleR)<1.18e-37) inputSampleR = fpd * 1.18e-37;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
+ if (fabs(inputSampleL)<1.18e-23) inputSampleL = fpdL * 1.18e-17;
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ if (fabs(inputSampleR)<1.18e-23) inputSampleR = fpdR * 1.18e-17;
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
inputSampleL *= scaleFactor;
@@ -89,10 +89,10 @@ void RawTimbers::processDoubleReplacing(double **inputs, double **outputs, VstIn
{
double inputSampleL = *in1;
double inputSampleR = *in2;
- if (fabs(inputSampleL)<1.18e-43) inputSampleL = fpd * 1.18e-43;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
- if (fabs(inputSampleR)<1.18e-43) inputSampleR = fpd * 1.18e-43;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
+ if (fabs(inputSampleL)<1.18e-23) inputSampleL = fpdL * 1.18e-17;
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ if (fabs(inputSampleR)<1.18e-23) inputSampleR = fpdR * 1.18e-17;
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
inputSampleL *= scaleFactor;
inputSampleR *= scaleFactor;
diff --git a/plugins/MacVST/Recurve/Recurve.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Recurve/Recurve.xcodeproj/christopherjohnson.pbxuser
index 3b8f1834f..f96d15510 100755
--- a/plugins/MacVST/Recurve/Recurve.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Recurve/Recurve.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 577499864;
- PBXWorkspaceStateSaveDate = 577499864;
+ PBXPerProjectTemplateStateSaveDate = 667861772;
+ PBXWorkspaceStateSaveDate = 667861772;
};
perUserProjectItems = {
- 8B77A855226BF49300F3F6E3 /* XCBuildMessageTextBookmark */ = 8B77A855226BF49300F3F6E3 /* XCBuildMessageTextBookmark */;
8B77A856226BF49300F3F6E3 /* PBXTextBookmark */ = 8B77A856226BF49300F3F6E3 /* PBXTextBookmark */;
+ 8BDCA42C27CEC31100A07B67 /* PBXTextBookmark */ = 8BDCA42C27CEC31100A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -62,9 +62,9 @@
};
2407DEB6089929BA00EB68BF /* Recurve.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {733, 1352}}";
+ sepNavIntBoundsRect = "{{0, 0}, {948, 1746}}";
sepNavSelRange = "{1835, 0}";
- sepNavVisRange = "{1848, 220}";
+ sepNavVisRange = "{1824, 120}";
sepNavWindowFrame = "{{12, 47}, {895, 831}}";
};
};
@@ -106,15 +106,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B77A855226BF49300F3F6E3 /* XCBuildMessageTextBookmark */ = {
- isa = PBXTextBookmark;
- comments = "Unused variable 'chunkData'";
- fRef = 2407DEB6089929BA00EB68BF /* Recurve.cpp */;
- fallbackIsa = XCBuildMessageTextBookmark;
- rLen = 1;
- rLoc = 47;
- rType = 1;
- };
8B77A856226BF49300F3F6E3 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2407DEB6089929BA00EB68BF /* Recurve.cpp */;
@@ -125,6 +116,16 @@
vrLen = 220;
vrLoc = 1848;
};
+ 8BDCA42C27CEC31100A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 2407DEB6089929BA00EB68BF /* Recurve.cpp */;
+ name = "Recurve.cpp: 44";
+ rLen = 0;
+ rLoc = 1835;
+ rType = 0;
+ vrLen = 120;
+ vrLoc = 1824;
+ };
8D01CCC60486CAD60068D4B7 /* Recurve */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/Recurve/Recurve.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Recurve/Recurve.xcodeproj/christopherjohnson.perspectivev3
index 657964ded..fe367dccb 100755
--- a/plugins/MacVST/Recurve/Recurve.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Recurve/Recurve.xcodeproj/christopherjohnson.perspectivev3
@@ -256,6 +256,8 @@
Layout
+ BecomeActive
+
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -321,7 +323,7 @@
185
RubberWindowFrame
- 33 335 810 487 0 0 1440 878
+ 281 200 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -349,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B77A856226BF49300F3F6E3
+ 8BDCA42C27CEC31100A07B67
history
- 8B77A855226BF49300F3F6E3
+ 8B77A856226BF49300F3F6E3
SplitCount
@@ -366,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 132}}
+ {{0, 0}, {603, 117}}
RubberWindowFrame
- 33 335 810 487 0 0 1440 878
+ 281 200 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 132pt
+ 117pt
Proportion
- 309pt
+ 324pt
Tabs
@@ -391,7 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 414}}
+ {{10, 27}, {603, 297}}
+ RubberWindowFrame
+ 281 200 810 487 0 0 1280 698
Module
XCDetailModule
@@ -446,8 +450,6 @@
Frame
{{10, 27}, {603, 282}}
- RubberWindowFrame
- 33 335 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -475,11 +477,11 @@
TableOfContents
- 8B77A857226BF49300F3F6E3
+ 8BDCA42D27CEC31100A07B67
1CA23ED40692098700951B8B
- 8B77A858226BF49300F3F6E3
+ 8BDCA42E27CEC31100A07B67
8B0237581D42B1C400E1E8C8
- 8B77A859226BF49300F3F6E3
+ 8BDCA42F27CEC31100A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -632,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 577500307.78738105
+ 667861777.34535205
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -649,11 +651,10 @@
5
WindowOrderList
- 8B77A85A226BF49300F3F6E3
- /Users/christopherjohnson/Desktop/Recurve/Recurve.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Recurve/Recurve.xcodeproj
WindowString
- 33 335 810 487 0 0 1440 878
+ 281 200 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Remap/Remap.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Remap/Remap.xcodeproj/christopherjohnson.pbxuser
index 22d05606a..d3c3d35c3 100755
--- a/plugins/MacVST/Remap/Remap.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Remap/Remap.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* Remap */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 581777481;
- PBXWorkspaceStateSaveDate = 581777481;
+ PBXPerProjectTemplateStateSaveDate = 667861781;
+ PBXWorkspaceStateSaveDate = 667861781;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* Remap */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/Remap/Remap.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Remap/Remap.xcodeproj/christopherjohnson.perspectivev3
index 4341f9c72..8da13e6be 100755
--- a/plugins/MacVST/Remap/Remap.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Remap/Remap.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 30 333 810 487 0 0 1440 878
+ 22 184 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 30 333 810 487 0 0 1440 878
+ 22 184 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 30 333 810 487 0 0 1440 878
+ 22 184 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B61EBE522AD3D6A00EF7FE2
+ 8BDCA44A27CEC31A00A07B67
1CA23ED40692098700951B8B
- 8B61EBE622AD3D6A00EF7FE2
+ 8BDCA44B27CEC31A00A07B67
8B0237581D42B1C400E1E8C8
- 8B61EBE722AD3D6A00EF7FE2
+ 8BDCA44C27CEC31A00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 581778794.11092305
+ 667861786.08539295
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +643,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/Remap/Remap.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Remap/Remap.xcodeproj
WindowString
- 30 333 810 487 0 0 1440 878
+ 22 184 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Remap/Remap.xcodeproj/project.pbxproj b/plugins/MacVST/Remap/Remap.xcodeproj/project.pbxproj
index 4c3344121..4b68d67d3 100755
--- a/plugins/MacVST/Remap/Remap.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/Remap/Remap.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* Remap */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "Remap" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* Remap */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/ResEQ/ResEQ.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/ResEQ/ResEQ.xcodeproj/christopherjohnson.pbxuser
index 9d245e823..94f5db673 100755
--- a/plugins/MacVST/ResEQ/ResEQ.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/ResEQ/ResEQ.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 639859758;
- PBXWorkspaceStateSaveDate = 639859758;
+ PBXPerProjectTemplateStateSaveDate = 667861790;
+ PBXWorkspaceStateSaveDate = 667861790;
};
perUserProjectItems = {
- 8BA62A9D26237D0100483AAF /* PBXTextBookmark */ = 8BA62A9D26237D0100483AAF /* PBXTextBookmark */;
8BA62AA426237D2600483AAF /* PBXTextBookmark */ = 8BA62AA426237D2600483AAF /* PBXTextBookmark */;
+ 8BDCA46727CEC32300A07B67 /* PBXTextBookmark */ = 8BDCA46727CEC32300A07B67 /* PBXTextBookmark */;
8BE26000226E6CC8007959A0 /* PBXTextBookmark */ = 8BE26000226E6CC8007959A0 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
@@ -79,9 +79,9 @@
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1074, 27486}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1074, 27504}}";
sepNavSelRange = "{10616, 0}";
- sepNavVisRange = "{10579, 157}";
+ sepNavVisRange = "{10579, 114}";
sepNavWindowFrame = "{{15, 42}, {895, 831}}";
};
};
@@ -107,17 +107,17 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8BA62A9D26237D0100483AAF /* PBXTextBookmark */ = {
+ 8BA62AA426237D2600483AAF /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
name = "audioeffectx.cpp: 307";
rLen = 0;
rLoc = 10616;
rType = 0;
- vrLen = 157;
+ vrLen = 114;
vrLoc = 10579;
};
- 8BA62AA426237D2600483AAF /* PBXTextBookmark */ = {
+ 8BDCA46727CEC32300A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
name = "audioeffectx.cpp: 307";
diff --git a/plugins/MacVST/ResEQ/ResEQ.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/ResEQ/ResEQ.xcodeproj/christopherjohnson.perspectivev3
index 142288f22..789794d83 100755
--- a/plugins/MacVST/ResEQ/ResEQ.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/ResEQ/ResEQ.xcodeproj/christopherjohnson.perspectivev3
@@ -256,6 +256,8 @@
Layout
+ BecomeActive
+
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -321,7 +323,7 @@
185
RubberWindowFrame
- 269 287 810 487 0 0 1440 878
+ 201 162 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -349,11 +351,11 @@
_historyCapacity
0
bookmark
- 8BA62AA426237D2600483AAF
+ 8BDCA46727CEC32300A07B67
history
8BE26000226E6CC8007959A0
- 8BA62A9D26237D0100483AAF
+ 8BA62AA426237D2600483AAF
SplitCount
@@ -367,18 +369,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 117}}
+ {{0, 0}, {603, 102}}
RubberWindowFrame
- 269 287 810 487 0 0 1440 878
+ 201 162 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 117pt
+ 102pt
Proportion
- 324pt
+ 339pt
Tabs
@@ -392,7 +394,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
+ {{10, 27}, {603, 312}}
+ RubberWindowFrame
+ 201 162 810 487 0 0 1280 698
Module
XCDetailModule
@@ -447,8 +451,6 @@
Frame
{{10, 27}, {603, 297}}
- RubberWindowFrame
- 269 287 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -476,11 +478,11 @@
TableOfContents
- 8BA62AA526237D2600483AAF
+ 8BDCA46827CEC32300A07B67
1CA23ED40692098700951B8B
- 8BA62AA626237D2600483AAF
+ 8BDCA46927CEC32300A07B67
8B0237581D42B1C400E1E8C8
- 8BA62AA726237D2600483AAF
+ 8BDCA46A27CEC32300A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -633,7 +635,7 @@
StatusbarIsVisible
TimeStamp
- 639860006.99040103
+ 667861795.33479798
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -650,11 +652,10 @@
5
WindowOrderList
- 8BA62AA826237D2600483AAF
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/ResEQ/ResEQ.xcodeproj
WindowString
- 269 287 810 487 0 0 1440 878
+ 201 162 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Reverb/Reverb.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Reverb/Reverb.xcodeproj/christopherjohnson.pbxuser
index c2eb9afdc..8a29c223b 100755
--- a/plugins/MacVST/Reverb/Reverb.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Reverb/Reverb.xcodeproj/christopherjohnson.pbxuser
@@ -49,11 +49,11 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 631157694;
- PBXWorkspaceStateSaveDate = 631157694;
+ PBXPerProjectTemplateStateSaveDate = 667861799;
+ PBXWorkspaceStateSaveDate = 667861799;
};
perUserProjectItems = {
- 8BE20B78259EB6BB00009ECB /* PBXBookmark */ = 8BE20B78259EB6BB00009ECB /* PBXBookmark */;
+ 8BDCA48727CEC33000A07B67 /* PBXTextBookmark */ = 8BDCA48727CEC33000A07B67 /* PBXTextBookmark */;
8BE20B79259EB6BB00009ECB /* PBXTextBookmark */ = 8BE20B79259EB6BB00009ECB /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
@@ -86,9 +86,9 @@
};
24D8286F09A914000093AEF8 /* ReverbProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {831, 13842}}";
+ sepNavIntBoundsRect = "{{0, 0}, {849, 13824}}";
sepNavSelRange = "{16691, 0}";
- sepNavVisRange = "{34241, 52}";
+ sepNavVisRange = "{34203, 8}";
sepNavWindowFrame = "{{151, 42}, {991, 836}}";
};
};
@@ -106,9 +106,15 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8BE20B78259EB6BB00009ECB /* PBXBookmark */ = {
- isa = PBXBookmark;
+ 8BDCA48727CEC33000A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* ReverbProc.cpp */;
+ name = "ReverbProc.cpp: 370";
+ rLen = 0;
+ rLoc = 16691;
+ rType = 0;
+ vrLen = 8;
+ vrLoc = 34203;
};
8BE20B79259EB6BB00009ECB /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
@@ -117,8 +123,8 @@
rLen = 0;
rLoc = 16691;
rType = 0;
- vrLen = 52;
- vrLoc = 34241;
+ vrLen = 0;
+ vrLoc = 34211;
};
8D01CCC60486CAD60068D4B7 /* Reverb */ = {
activeExec = 0;
diff --git a/plugins/MacVST/Reverb/Reverb.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Reverb/Reverb.xcodeproj/christopherjohnson.perspectivev3
index 89e6293ef..6d94fc4ef 100755
--- a/plugins/MacVST/Reverb/Reverb.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Reverb/Reverb.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 585 373 810 487 0 0 1440 878
+ 436 203 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8BE20B79259EB6BB00009ECB
+ 8BDCA48727CEC33000A07B67
history
- 8BE20B78259EB6BB00009ECB
+ 8BE20B79259EB6BB00009ECB
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 102}}
+ {{0, 0}, {603, 86}}
RubberWindowFrame
- 585 373 810 487 0 0 1440 878
+ 436 203 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 102pt
+ 86pt
Proportion
- 339pt
+ 355pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 312}}
+ {{10, 27}, {603, 328}}
RubberWindowFrame
- 585 373 810 487 0 0 1440 878
+ 436 203 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8BE20B7A259EB6BB00009ECB
+ 8BDCA48827CEC33000A07B67
1CA23ED40692098700951B8B
- 8BE20B7B259EB6BB00009ECB
+ 8BDCA48927CEC33000A07B67
8B0237581D42B1C400E1E8C8
- 8BE20B7C259EB6BB00009ECB
+ 8BDCA48A27CEC33000A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 631158459.35971296
+ 667861808.48873997
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +651,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/Plugins/MacVST/Reverb/Reverb.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Reverb/Reverb.xcodeproj
WindowString
- 585 373 810 487 0 0 1440 878
+ 436 203 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Righteous4/Righteous4.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Righteous4/Righteous4.xcodeproj/christopherjohnson.pbxuser
index 8c45194d2..f1d96672c 100755
--- a/plugins/MacVST/Righteous4/Righteous4.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Righteous4/Righteous4.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569771492;
- PBXWorkspaceStateSaveDate = 569771492;
+ PBXPerProjectTemplateStateSaveDate = 667861814;
+ PBXWorkspaceStateSaveDate = 667861814;
};
perUserProjectItems = {
8B793F3B21F605EC006E9731 /* PBXTextBookmark */ = 8B793F3B21F605EC006E9731 /* PBXTextBookmark */;
- 8BBFF86220AD84A2005650EF /* PBXTextBookmark */ = 8BBFF86220AD84A2005650EF /* PBXTextBookmark */;
+ 8BDCA4A527CEC33C00A07B67 /* PBXTextBookmark */ = 8BDCA4A527CEC33C00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -62,9 +62,9 @@
};
2407DEB6089929BA00EB68BF /* Righteous4.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {554, 3081}}";
+ sepNavIntBoundsRect = "{{0, 0}, {554, 4212}}";
sepNavSelRange = "{1957, 0}";
- sepNavVisRange = "{1892, 108}";
+ sepNavVisRange = "{1907, 75}";
sepNavWindowFrame = "{{9, 39}, {895, 831}}";
};
};
@@ -116,15 +116,15 @@
vrLen = 108;
vrLoc = 1892;
};
- 8BBFF86220AD84A2005650EF /* PBXTextBookmark */ = {
+ 8BDCA4A527CEC33C00A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2407DEB6089929BA00EB68BF /* Righteous4.cpp */;
name = "Righteous4.cpp: 98";
rLen = 0;
rLoc = 1957;
rType = 0;
- vrLen = 150;
- vrLoc = 1892;
+ vrLen = 75;
+ vrLoc = 1907;
};
8D01CCC60486CAD60068D4B7 /* Righteous */ = {
activeExec = 0;
diff --git a/plugins/MacVST/Righteous4/Righteous4.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Righteous4/Righteous4.xcodeproj/christopherjohnson.perspectivev3
index 8e2d8300b..01cfc6a91 100755
--- a/plugins/MacVST/Righteous4/Righteous4.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Righteous4/Righteous4.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 595 333 810 487 0 0 1440 878
+ 444 184 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B793F3B21F605EC006E9731
+ 8BDCA4A527CEC33C00A07B67
history
- 8BBFF86220AD84A2005650EF
+ 8B793F3B21F605EC006E9731
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 117}}
+ {{0, 0}, {603, 102}}
RubberWindowFrame
- 595 333 810 487 0 0 1440 878
+ 444 184 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 117pt
+ 102pt
Proportion
- 324pt
+ 339pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
+ {{10, 27}, {603, 312}}
RubberWindowFrame
- 595 333 810 487 0 0 1440 878
+ 444 184 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B793F3C21F605EC006E9731
+ 8BDCA4A627CEC33C00A07B67
1CA23ED40692098700951B8B
- 8B793F3D21F605EC006E9731
+ 8BDCA4A727CEC33C00A07B67
8B0237581D42B1C400E1E8C8
- 8B793F3E21F605EC006E9731
+ 8BDCA4A827CEC33C00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 569771500.34394598
+ 667861820.00636196
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +651,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/Righteous4/Righteous4.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Righteous4/Righteous4.xcodeproj
WindowString
- 595 333 810 487 0 0 1440 878
+ 444 184 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/RightoMono/RightoMono.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/RightoMono/RightoMono.xcodeproj/christopherjohnson.pbxuser
index d873aa076..85c06713c 100755
--- a/plugins/MacVST/RightoMono/RightoMono.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/RightoMono/RightoMono.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* RightoMono */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 593260081;
- PBXWorkspaceStateSaveDate = 593260081;
+ PBXPerProjectTemplateStateSaveDate = 667861825;
+ PBXWorkspaceStateSaveDate = 667861825;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* RightoMono */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/RightoMono/RightoMono.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/RightoMono/RightoMono.xcodeproj/christopherjohnson.perspectivev3
index 9ac70182c..1bafe931c 100755
--- a/plugins/MacVST/RightoMono/RightoMono.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/RightoMono/RightoMono.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 290 196 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 290 196 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 290 196 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B3573B6235C70C800CD33C1
+ 8BDCA4C327CEC34500A07B67
1CA23ED40692098700951B8B
- 8B3573B7235C70C800CD33C1
+ 8BDCA4C427CEC34500A07B67
8B0237581D42B1C400E1E8C8
- 8B3573B8235C70C800CD33C1
+ 8BDCA4C527CEC34500A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 593260744.13764596
+ 667861829.85831702
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +643,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/RightoMono/RightoMono.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/RightoMono/RightoMono.xcodeproj
WindowString
- 34 365 810 487 0 0 1440 878
+ 290 196 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/RightoMono/RightoMono.xcodeproj/project.pbxproj b/plugins/MacVST/RightoMono/RightoMono.xcodeproj/project.pbxproj
index 6cbb4733f..45389ce16 100755
--- a/plugins/MacVST/RightoMono/RightoMono.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/RightoMono/RightoMono.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* RightoMono */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "RightoMono" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* RightoMono */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/SideDull/SideDull.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/SideDull/SideDull.xcodeproj/christopherjohnson.pbxuser
index 4d8e56b5a..cb3f59c30 100755
--- a/plugins/MacVST/SideDull/SideDull.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/SideDull/SideDull.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* SideDull */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569771557;
- PBXWorkspaceStateSaveDate = 569771557;
+ PBXPerProjectTemplateStateSaveDate = 667861834;
+ PBXWorkspaceStateSaveDate = 667861834;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* SideDull */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/SideDull/SideDull.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/SideDull/SideDull.xcodeproj/christopherjohnson.perspectivev3
index d35103af4..e062fd1a0 100755
--- a/plugins/MacVST/SideDull/SideDull.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/SideDull/SideDull.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 428 317 810 487 0 0 1440 878
+ 319 176 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 428 317 810 487 0 0 1440 878
+ 319 176 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -386,6 +386,8 @@
Frame
{{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 319 176 810 487 0 0 1280 698
Module
XCDetailModule
@@ -440,8 +442,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 428 317 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B793F6821F60667006E9731
+ 8BDCA4E027CEC34E00A07B67
1CA23ED40692098700951B8B
- 8B793F6921F60667006E9731
+ 8BDCA4E127CEC34E00A07B67
8B0237581D42B1C400E1E8C8
- 8B793F6A21F60667006E9731
+ 8BDCA4E227CEC34E00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 569771623.27479804
+ 667861838.08015299
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +643,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/SideDull/SideDull.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/SideDull/SideDull.xcodeproj
WindowString
- 428 317 810 487 0 0 1440 878
+ 319 176 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/SideDull/SideDull.xcodeproj/project.pbxproj b/plugins/MacVST/SideDull/SideDull.xcodeproj/project.pbxproj
index 7e357317b..ba99bc01b 100755
--- a/plugins/MacVST/SideDull/SideDull.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/SideDull/SideDull.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* SideDull */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "SideDull" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* SideDull */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/Sidepass/Sidepass.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Sidepass/Sidepass.xcodeproj/christopherjohnson.pbxuser
index 92e6c8181..53be1fea5 100755
--- a/plugins/MacVST/Sidepass/Sidepass.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Sidepass/Sidepass.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569771653;
- PBXWorkspaceStateSaveDate = 569771653;
+ PBXPerProjectTemplateStateSaveDate = 667861843;
+ PBXWorkspaceStateSaveDate = 667861843;
};
perUserProjectItems = {
8B793F8921F606AF006E9731 /* PBXTextBookmark */ = 8B793F8921F606AF006E9731 /* PBXTextBookmark */;
- 8B9D7DB21F7FB00A007AB60F /* PBXTextBookmark */ = 8B9D7DB21F7FB00A007AB60F /* PBXTextBookmark */;
+ 8BDCA4FD27CEC35700A07B67 /* PBXTextBookmark */ = 8BDCA4FD27CEC35700A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -86,8 +86,8 @@
};
24D8286F09A914000093AEF8 /* SidepassProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {554, 2613}}";
- sepNavSelRange = "{6779, 0}";
+ sepNavIntBoundsRect = "{{0, 0}, {554, 2286}}";
+ sepNavSelRange = "{3439, 0}";
sepNavVisRange = "{0, 0}";
sepNavWindowFrame = "{{425, 47}, {895, 831}}";
};
@@ -111,17 +111,17 @@
fRef = 24D8286F09A914000093AEF8 /* SidepassProc.cpp */;
name = "SidepassProc.cpp: 190";
rLen = 0;
- rLoc = 6779;
+ rLoc = 3439;
rType = 0;
vrLen = 0;
vrLoc = 0;
};
- 8B9D7DB21F7FB00A007AB60F /* PBXTextBookmark */ = {
+ 8BDCA4FD27CEC35700A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* SidepassProc.cpp */;
- name = "SidepassProc.cpp: 199";
+ name = "SidepassProc.cpp: 128";
rLen = 0;
- rLoc = 6779;
+ rLoc = 3439;
rType = 0;
vrLen = 0;
vrLoc = 0;
diff --git a/plugins/MacVST/Sidepass/Sidepass.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Sidepass/Sidepass.xcodeproj/christopherjohnson.perspectivev3
index bc5c2b83f..31fd84461 100755
--- a/plugins/MacVST/Sidepass/Sidepass.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Sidepass/Sidepass.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 376 351 810 487 0 0 1440 878
+ 281 192 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B793F8921F606AF006E9731
+ 8BDCA4FD27CEC35700A07B67
history
- 8B9D7DB21F7FB00A007AB60F
+ 8B793F8921F606AF006E9731
SplitCount
@@ -370,7 +370,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 376 351 810 487 0 0 1440 878
+ 281 192 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -394,6 +394,8 @@
Frame
{{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 281 192 810 487 0 0 1280 698
Module
XCDetailModule
@@ -448,8 +450,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 376 351 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B793F8A21F606AF006E9731
+ 8BDCA4FE27CEC35700A07B67
1CA23ED40692098700951B8B
- 8B793F8B21F606AF006E9731
+ 8BDCA4FF27CEC35700A07B67
8B0237581D42B1C400E1E8C8
- 8B793F8C21F606AF006E9731
+ 8BDCA50027CEC35700A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 569771695.78669202
+ 667861847.80075204
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,12 +651,10 @@
5
WindowOrderList
- 8B793F8D21F606AF006E9731
- 8B793F8E21F606AF006E9731
- /Users/christopherjohnson/Desktop/MacVST/Sidepass/Sidepass.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Sidepass/Sidepass.xcodeproj
WindowString
- 376 351 810 487 0 0 1440 878
+ 281 192 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/SingleEndedTriode/SingleEndedTriode.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/SingleEndedTriode/SingleEndedTriode.xcodeproj/christopherjohnson.pbxuser
index 76b994a61..f87fa6a69 100755
--- a/plugins/MacVST/SingleEndedTriode/SingleEndedTriode.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/SingleEndedTriode/SingleEndedTriode.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569771858;
- PBXWorkspaceStateSaveDate = 569771858;
+ PBXPerProjectTemplateStateSaveDate = 667861852;
+ PBXWorkspaceStateSaveDate = 667861852;
};
perUserProjectItems = {
8B793FA121F60766006E9731 /* PBXTextBookmark */ = 8B793FA121F60766006E9731 /* PBXTextBookmark */;
- 8B7E3E8420A6930B00482CB5 /* PBXTextBookmark */ = 8B7E3E8420A6930B00482CB5 /* PBXTextBookmark */;
+ 8BDCA51B27CEC36000A07B67 /* PBXTextBookmark */ = 8BDCA51B27CEC36000A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -78,9 +78,9 @@
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {838, 19877}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1074, 27486}}";
sepNavSelRange = "{10616, 0}";
- sepNavVisRange = "{10459, 280}";
+ sepNavVisRange = "{10579, 157}";
sepNavWindowFrame = "{{15, 42}, {895, 831}}";
};
};
@@ -116,15 +116,15 @@
vrLen = 280;
vrLoc = 10459;
};
- 8B7E3E8420A6930B00482CB5 /* PBXTextBookmark */ = {
+ 8BDCA51B27CEC36000A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
name = "audioeffectx.cpp: 307";
rLen = 0;
rLoc = 10616;
rType = 0;
- vrLen = 399;
- vrLoc = 10459;
+ vrLen = 114;
+ vrLoc = 10579;
};
8D01CCC60486CAD60068D4B7 /* SingleEndedTriode */ = {
activeExec = 0;
diff --git a/plugins/MacVST/SingleEndedTriode/SingleEndedTriode.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/SingleEndedTriode/SingleEndedTriode.xcodeproj/christopherjohnson.perspectivev3
index 8ba46868b..e77e39e09 100755
--- a/plugins/MacVST/SingleEndedTriode/SingleEndedTriode.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/SingleEndedTriode/SingleEndedTriode.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 143 323 810 487 0 0 1440 878
+ 107 179 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B793FA121F60766006E9731
+ 8BDCA51B27CEC36000A07B67
history
- 8B7E3E8420A6930B00482CB5
+ 8B793FA121F60766006E9731
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 117}}
+ {{0, 0}, {603, 102}}
RubberWindowFrame
- 143 323 810 487 0 0 1440 878
+ 107 179 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 117pt
+ 102pt
Proportion
- 324pt
+ 339pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
+ {{10, 27}, {603, 312}}
RubberWindowFrame
- 143 323 810 487 0 0 1440 878
+ 107 179 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B793FA221F60766006E9731
+ 8BDCA51C27CEC36000A07B67
1CA23ED40692098700951B8B
- 8B793FA321F60766006E9731
+ 8BDCA51D27CEC36000A07B67
8B0237581D42B1C400E1E8C8
- 8B793FA421F60766006E9731
+ 8BDCA51E27CEC36000A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 569771878.44873595
+ 667861856.85264695
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,11 +651,10 @@
5
WindowOrderList
- 8B7E3E8520A6930B00482CB5
- /Users/christopherjohnson/Desktop/MacVST/SingleEndedTriode/SingleEndedTriode.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/SingleEndedTriode/SingleEndedTriode.xcodeproj
WindowString
- 143 323 810 487 0 0 1440 878
+ 107 179 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Slew/Slew.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Slew/Slew.xcodeproj/christopherjohnson.pbxuser
index 10c711f1a..eab57337e 100755
--- a/plugins/MacVST/Slew/Slew.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Slew/Slew.xcodeproj/christopherjohnson.pbxuser
@@ -49,13 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 639860249;
- PBXWorkspaceStateSaveDate = 639860249;
+ PBXPerProjectTemplateStateSaveDate = 667861861;
+ PBXWorkspaceStateSaveDate = 667861861;
};
perUserProjectItems = {
8B38EA6F1D5BFCFD003DFCC5 /* PBXTextBookmark */ = 8B38EA6F1D5BFCFD003DFCC5 /* PBXTextBookmark */;
- 8B793FC121F6088F006E9731 /* PBXTextBookmark */ = 8B793FC121F6088F006E9731 /* PBXTextBookmark */;
8BA62ADF26237E9E00483AAF /* PBXTextBookmark */ = 8BA62ADF26237E9E00483AAF /* PBXTextBookmark */;
+ 8BDCA54627CEC38F00A07B67 /* PBXTextBookmark */ = 8BDCA54627CEC38F00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -74,7 +74,7 @@
sepNavIntBoundsRect = "{{0, 0}, {554, 1494}}";
sepNavSelRange = "{2877, 0}";
sepNavVisRange = "{0, 0}";
- sepNavWindowFrame = "{{15, 42}, {895, 831}}";
+ sepNavWindowFrame = "{{15, 4}, {895, 694}}";
};
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
@@ -117,7 +117,7 @@
vrLen = 222;
vrLoc = 2891;
};
- 8B793FC121F6088F006E9731 /* PBXTextBookmark */ = {
+ 8BA62ADF26237E9E00483AAF /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 245463B80991757100464AD3 /* Slew.h */;
name = "Slew.h: 76";
@@ -127,7 +127,7 @@
vrLen = 0;
vrLoc = 0;
};
- 8BA62ADF26237E9E00483AAF /* PBXTextBookmark */ = {
+ 8BDCA54627CEC38F00A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 245463B80991757100464AD3 /* Slew.h */;
name = "Slew.h: 76";
diff --git a/plugins/MacVST/Slew/Slew.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Slew/Slew.xcodeproj/christopherjohnson.perspectivev3
index 7b3c7e7bc..80171eb77 100755
--- a/plugins/MacVST/Slew/Slew.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Slew/Slew.xcodeproj/christopherjohnson.perspectivev3
@@ -300,7 +300,7 @@
PBXSmartGroupTreeModuleOutlineStateSelectionKey
- 5
+ 7
4
0
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 490 362 810 487 0 0 1440 878
+ 366 197 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,11 +351,11 @@
_historyCapacity
0
bookmark
- 8BA62ADF26237E9E00483AAF
+ 8BDCA54627CEC38F00A07B67
history
8B38EA6F1D5BFCFD003DFCC5
- 8B793FC121F6088F006E9731
+ 8BA62ADF26237E9E00483AAF
SplitCount
@@ -369,18 +369,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 13}}
+ {{0, 0}, {603, 0}}
RubberWindowFrame
- 490 362 810 487 0 0 1440 878
+ 366 197 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 13pt
+ 0pt
Proportion
- 428pt
+ 441pt
Tabs
@@ -394,9 +394,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 401}}
- RubberWindowFrame
- 490 362 810 487 0 0 1440 878
+ {{10, 27}, {603, 414}}
Module
XCDetailModule
@@ -450,7 +448,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
+ {{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 366 197 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -478,11 +478,11 @@
TableOfContents
- 8BA62AE026237E9E00483AAF
+ 8BDCA54727CEC38F00A07B67
1CA23ED40692098700951B8B
- 8BA62AE126237E9E00483AAF
+ 8BDCA54827CEC38F00A07B67
8B0237581D42B1C400E1E8C8
- 8BA62AE226237E9E00483AAF
+ 8BDCA54927CEC38F00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -635,7 +635,7 @@
StatusbarIsVisible
TimeStamp
- 639860382.91087306
+ 667861903.10080504
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -652,11 +652,11 @@
5
WindowOrderList
- 8BA62AE326237E9E00483AAF
+ 8BDCA54A27CEC38F00A07B67
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Slew/Slew.xcodeproj
WindowString
- 490 362 810 487 0 0 1440 878
+ 366 197 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Slew/source/Slew.h b/plugins/MacVST/Slew/source/Slew.h
index 29d091639..c78cae48d 100755
--- a/plugins/MacVST/Slew/source/Slew.h
+++ b/plugins/MacVST/Slew/source/Slew.h
@@ -74,6 +74,8 @@ private:
float gain;
double lastSampleL;
double lastSampleR;
+ uint32_t fpdL;
+ uint32_t fpdR;
};
#endif
diff --git a/plugins/MacVST/Slew2/Slew2.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Slew2/Slew2.xcodeproj/christopherjohnson.pbxuser
index 418e2e48b..ba22cf943 100755
--- a/plugins/MacVST/Slew2/Slew2.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Slew2/Slew2.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* Slew2 */;
breakpoints = (
);
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
@@ -51,8 +51,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569772312;
- PBXWorkspaceStateSaveDate = 569772312;
+ PBXPerProjectTemplateStateSaveDate = 667861909;
+ PBXWorkspaceStateSaveDate = 667861909;
+ };
+ perUserProjectItems = {
+ 8BDCA56827CEC3B800A07B67 /* PBXTextBookmark */ = 8BDCA56827CEC3B800A07B67 /* PBXTextBookmark */;
+ 8BDCA56927CEC3B800A07B67 /* PBXTextBookmark */ = 8BDCA56927CEC3B800A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -68,10 +72,10 @@
};
245463B80991757100464AD3 /* Slew2.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {866, 1248}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1101, 1512}}";
sepNavSelRange = "{2361, 772}";
- sepNavVisRange = "{0, 2386}";
- sepNavWindowFrame = "{{500, 47}, {895, 831}}";
+ sepNavVisRange = "{2224, 162}";
+ sepNavWindowFrame = "{{385, 4}, {895, 694}}";
};
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
@@ -104,7 +108,27 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
+ 8BDCA56827CEC3B800A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 245463B80991757100464AD3 /* Slew2.h */;
+ name = "Slew2.h: 55";
+ rLen = 772;
+ rLoc = 2361;
+ rType = 0;
+ vrLen = 162;
+ vrLoc = 2224;
+ };
+ 8BDCA56927CEC3B800A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 245463B80991757100464AD3 /* Slew2.h */;
+ name = "Slew2.h: 55";
+ rLen = 772;
+ rLoc = 2361;
+ rType = 0;
+ vrLen = 162;
+ vrLoc = 2224;
+ };
+ 8D01CCC60486CAD60068D4B7 /* Slew2 */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/Slew2/Slew2.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Slew2/Slew2.xcodeproj/christopherjohnson.perspectivev3
index fb0096628..4409d9f81 100755
--- a/plugins/MacVST/Slew2/Slew2.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Slew2/Slew2.xcodeproj/christopherjohnson.perspectivev3
@@ -300,7 +300,7 @@
PBXSmartGroupTreeModuleOutlineStateSelectionKey
- 6
+ 7
4
0
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 622 273 810 487 0 0 1440 878
+ 464 155 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -339,7 +339,7 @@
PBXProjectModuleGUID
8B0237581D42B1C400E1E8C8
PBXProjectModuleLabel
-
+ Slew2.h
PBXSplitModuleInNavigatorKey
Split0
@@ -347,7 +347,15 @@
PBXProjectModuleGUID
8B0237591D42B1C400E1E8C8
PBXProjectModuleLabel
-
+ Slew2.h
+ _historyCapacity
+ 0
+ bookmark
+ 8BDCA56927CEC3B800A07B67
+ history
+
+ 8BDCA56827CEC3B800A07B67
+
SplitCount
1
@@ -360,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 0}}
+ {{0, 0}, {603, 132}}
RubberWindowFrame
- 622 273 810 487 0 0 1440 878
+ 464 155 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 0pt
+ 132pt
Proportion
- 441pt
+ 309pt
Tabs
@@ -386,8 +394,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 622 273 810 487 0 0 1440 878
Module
XCDetailModule
@@ -441,7 +447,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 345}}
+ {{10, 27}, {603, 282}}
+ RubberWindowFrame
+ 464 155 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -469,11 +477,11 @@
TableOfContents
- 8B793FE121F60920006E9731
+ 8BDCA56A27CEC3B800A07B67
1CA23ED40692098700951B8B
- 8B793FE221F60920006E9731
+ 8BDCA56B27CEC3B800A07B67
8B0237581D42B1C400E1E8C8
- 8B793FE321F60920006E9731
+ 8BDCA56C27CEC3B800A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -646,7 +654,7 @@
StatusbarIsVisible
TimeStamp
- 569772320.81251204
+ 667861944.76339698
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -663,10 +671,11 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/Slew2/Slew2.xcodeproj
+ 8BDCA56D27CEC3B800A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Slew2/Slew2.xcodeproj
WindowString
- 622 273 810 487 0 0 1440 878
+ 464 155 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Slew2/Slew2.xcodeproj/project.pbxproj b/plugins/MacVST/Slew2/Slew2.xcodeproj/project.pbxproj
index 16c36077c..354a56f84 100755
--- a/plugins/MacVST/Slew2/Slew2.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/Slew2/Slew2.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
+ 8D01CCC60486CAD60068D4B7 /* Slew2 */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "Slew2" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
+ 8D01CCC60486CAD60068D4B7 /* Slew2 */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/Slew2/source/Slew2.h b/plugins/MacVST/Slew2/source/Slew2.h
index c57161f5b..f2e323a84 100755
--- a/plugins/MacVST/Slew2/source/Slew2.h
+++ b/plugins/MacVST/Slew2/source/Slew2.h
@@ -88,6 +88,9 @@ private:
double lastSampleL;
double lastSampleR;
+ uint32_t fpdL;
+ uint32_t fpdR;
+
float A;
};
diff --git a/plugins/MacVST/Slew3/Slew3.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Slew3/Slew3.xcodeproj/christopherjohnson.pbxuser
index 0e33fc422..6e30d08d4 100755
--- a/plugins/MacVST/Slew3/Slew3.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Slew3/Slew3.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 619237038;
- PBXWorkspaceStateSaveDate = 619237038;
+ PBXPerProjectTemplateStateSaveDate = 667861949;
+ PBXWorkspaceStateSaveDate = 667861949;
};
perUserProjectItems = {
- 8B851AB224E8CEEF00B80DEC /* PBXBookmark */ = 8B851AB224E8CEEF00B80DEC /* PBXBookmark */;
8B851AB324E8CEEF00B80DEC /* PBXTextBookmark */ = 8B851AB324E8CEEF00B80DEC /* PBXTextBookmark */;
+ 8BDCA57E27CEC3C100A07B67 /* PBXTextBookmark */ = 8BDCA57E27CEC3C100A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -86,9 +86,9 @@
};
24D8286F09A914000093AEF8 /* Slew3Proc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1097, 1937}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1407, 2664}}";
sepNavSelRange = "{4613, 0}";
- sepNavVisRange = "{1464, 352}";
+ sepNavVisRange = "{1671, 165}";
sepNavWindowFrame = "{{653, 57}, {895, 821}}";
};
};
@@ -106,10 +106,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B851AB224E8CEEF00B80DEC /* PBXBookmark */ = {
- isa = PBXBookmark;
- fRef = 24D8286F09A914000093AEF8 /* Slew3Proc.cpp */;
- };
8B851AB324E8CEEF00B80DEC /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* Slew3Proc.cpp */;
@@ -120,6 +116,16 @@
vrLen = 352;
vrLoc = 1464;
};
+ 8BDCA57E27CEC3C100A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* Slew3Proc.cpp */;
+ name = "Slew3Proc.cpp: 137";
+ rLen = 0;
+ rLoc = 4613;
+ rType = 0;
+ vrLen = 165;
+ vrLoc = 1671;
+ };
8D01CCC60486CAD60068D4B7 /* Slew3 */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/Slew3/Slew3.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Slew3/Slew3.xcodeproj/christopherjohnson.perspectivev3
index 2c9402316..22587aa4e 100755
--- a/plugins/MacVST/Slew3/Slew3.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Slew3/Slew3.xcodeproj/christopherjohnson.perspectivev3
@@ -307,7 +307,7 @@
PBXSmartGroupTreeModuleOutlineStateVisibleRectKey
- {{0, 0}, {288, 595}}
+ {{0, 0}, {288, 585}}
PBXTopSmartGroupGIDs
@@ -317,14 +317,14 @@
GeometryConfiguration
Frame
- {{0, 0}, {305, 613}}
+ {{0, 0}, {305, 603}}
GroupTreeTableConfiguration
MainColumn
288
RubberWindowFrame
- 719 178 841 654 0 0 1440 878
+ 439 54 841 644 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -352,10 +352,10 @@
_historyCapacity
0
bookmark
- 8B851AB324E8CEEF00B80DEC
+ 8BDCA57E27CEC3C100A07B67
history
- 8B851AB224E8CEEF00B80DEC
+ 8B851AB324E8CEEF00B80DEC
SplitCount
@@ -369,18 +369,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {531, 142}}
+ {{0, 0}, {531, 140}}
RubberWindowFrame
- 719 178 841 654 0 0 1440 878
+ 439 54 841 644 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 142pt
+ 140pt
Proportion
- 466pt
+ 458pt
Tabs
@@ -394,9 +394,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {531, 439}}
+ {{10, 27}, {531, 431}}
RubberWindowFrame
- 719 178 841 654 0 0 1440 878
+ 439 54 841 644 0 0 1280 698
Module
XCDetailModule
@@ -478,11 +478,11 @@
TableOfContents
- 8B851AB424E8CEEF00B80DEC
+ 8BDCA57F27CEC3C100A07B67
1CA23ED40692098700951B8B
- 8B851AB524E8CEEF00B80DEC
+ 8BDCA58027CEC3C100A07B67
8BD7274A1D46E5A5000176F0
- 8B851AB624E8CEEF00B80DEC
+ 8BDCA58127CEC3C100A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -655,7 +655,7 @@
StatusbarIsVisible
TimeStamp
- 619237103.76050496
+ 667861953.80054498
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -672,10 +672,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/Slew3/Slew3.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Slew3/Slew3.xcodeproj
WindowString
- 719 178 841 654 0 0 1440 878
+ 439 54 841 644 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/SlewOnly/SlewOnly.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/SlewOnly/SlewOnly.xcodeproj/christopherjohnson.pbxuser
index edacd41fe..a5997a46e 100755
--- a/plugins/MacVST/SlewOnly/SlewOnly.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/SlewOnly/SlewOnly.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* SlewOnly */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569772340;
- PBXWorkspaceStateSaveDate = 569772340;
+ PBXPerProjectTemplateStateSaveDate = 667861958;
+ PBXWorkspaceStateSaveDate = 667861958;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -66,10 +66,10 @@
};
245463B80991757100464AD3 /* SlewOnly.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {866, 741}}";
- sepNavSelRange = "{2276, 0}";
- sepNavVisRange = "{44, 2245}";
- sepNavWindowFrame = "{{545, 47}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1110, 1062}}";
+ sepNavSelRange = "{2309, 0}";
+ sepNavVisRange = "{482, 1831}";
+ sepNavWindowFrame = "{{385, 4}, {895, 694}}";
};
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
+ 8D01CCC60486CAD60068D4B7 /* SlewOnly */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/SlewOnly/SlewOnly.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/SlewOnly/SlewOnly.xcodeproj/christopherjohnson.perspectivev3
index a8cc6e65e..c7abb8fc8 100755
--- a/plugins/MacVST/SlewOnly/SlewOnly.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/SlewOnly/SlewOnly.xcodeproj/christopherjohnson.perspectivev3
@@ -300,7 +300,7 @@
PBXSmartGroupTreeModuleOutlineStateSelectionKey
- 6
+ 7
4
0
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 471 286 810 487 0 0 1440 878
+ 351 161 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -360,18 +360,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 51}}
+ {{0, 0}, {603, 32}}
RubberWindowFrame
- 471 286 810 487 0 0 1440 878
+ 351 161 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 51pt
+ 32pt
Proportion
- 390pt
+ 409pt
Tabs
@@ -385,9 +385,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 363}}
- RubberWindowFrame
- 471 286 810 487 0 0 1440 878
+ {{10, 27}, {603, 382}}
Module
XCDetailModule
@@ -441,7 +439,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 382}}
+ RubberWindowFrame
+ 351 161 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B79400021F6093C006E9731
+ 8BDCA5A927CEC3EC00A07B67
1CA23ED40692098700951B8B
- 8B79400121F6093C006E9731
+ 8BDCA5AA27CEC3EC00A07B67
8B0237581D42B1C400E1E8C8
- 8B79400221F6093C006E9731
+ 8BDCA5AB27CEC3EC00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 569772348.11004496
+ 667861996.19712806
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +643,11 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/SlewOnly/SlewOnly.xcodeproj
+ 8BDCA5AC27CEC3EC00A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/SlewOnly/SlewOnly.xcodeproj
WindowString
- 471 286 810 487 0 0 1440 878
+ 351 161 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/SlewOnly/SlewOnly.xcodeproj/project.pbxproj b/plugins/MacVST/SlewOnly/SlewOnly.xcodeproj/project.pbxproj
index fc3c4020f..7da41091d 100755
--- a/plugins/MacVST/SlewOnly/SlewOnly.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/SlewOnly/SlewOnly.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
+ 8D01CCC60486CAD60068D4B7 /* SlewOnly */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "SlewOnly" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
+ 8D01CCC60486CAD60068D4B7 /* SlewOnly */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/SlewOnly/source/SlewOnly.h b/plugins/MacVST/SlewOnly/source/SlewOnly.h
index 0c2d666bc..f4ab7bb8a 100755
--- a/plugins/MacVST/SlewOnly/source/SlewOnly.h
+++ b/plugins/MacVST/SlewOnly/source/SlewOnly.h
@@ -51,6 +51,8 @@ private:
double lastSampleL;
double lastSampleR;
+ uint32_t fpdL;
+ uint32_t fpdR;
};
#endif
diff --git a/plugins/MacVST/Smooth/Smooth.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Smooth/Smooth.xcodeproj/christopherjohnson.pbxuser
index 7094b1125..2fcea49c6 100755
--- a/plugins/MacVST/Smooth/Smooth.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Smooth/Smooth.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* Smooth */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 575157928;
- PBXWorkspaceStateSaveDate = 575157928;
+ PBXPerProjectTemplateStateSaveDate = 667862002;
+ PBXWorkspaceStateSaveDate = 667862002;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* Smooth */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/Smooth/Smooth.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Smooth/Smooth.xcodeproj/christopherjohnson.perspectivev3
index 95ef1a49a..407e12f00 100755
--- a/plugins/MacVST/Smooth/Smooth.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Smooth/Smooth.xcodeproj/christopherjohnson.perspectivev3
@@ -256,6 +256,8 @@
Layout
+ BecomeActive
+
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -321,7 +323,7 @@
185
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -360,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -384,6 +386,8 @@
Frame
{{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 25 199 810 487 0 0 1280 698
Module
XCDetailModule
@@ -438,8 +442,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 34 365 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -467,11 +469,11 @@
TableOfContents
- 8B1FA0F52248409C00FF4203
+ 8BDCA5BD27CEC40E00A07B67
1CA23ED40692098700951B8B
- 8B1FA0F62248409C00FF4203
+ 8BDCA5BE27CEC40E00A07B67
8B0237581D42B1C400E1E8C8
- 8B1FA0F72248409C00FF4203
+ 8BDCA5BF27CEC40E00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -624,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 575160476.58971596
+ 667862030.27620399
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -641,10 +643,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/Smooth/Smooth.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Smooth/Smooth.xcodeproj
WindowString
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Smooth/Smooth.xcodeproj/project.pbxproj b/plugins/MacVST/Smooth/Smooth.xcodeproj/project.pbxproj
index 9b90b205a..76db219f1 100755
--- a/plugins/MacVST/Smooth/Smooth.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/Smooth/Smooth.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* Smooth */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "Smooth" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* Smooth */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/SoftGate/SoftGate.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/SoftGate/SoftGate.xcodeproj/christopherjohnson.pbxuser
index 7038e08bd..4f917849e 100755
--- a/plugins/MacVST/SoftGate/SoftGate.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/SoftGate/SoftGate.xcodeproj/christopherjohnson.pbxuser
@@ -49,14 +49,14 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 580960699;
- PBXWorkspaceStateSaveDate = 580960699;
+ PBXPerProjectTemplateStateSaveDate = 667862036;
+ PBXWorkspaceStateSaveDate = 667862036;
};
perUserProjectItems = {
- 8B2C122822A0C3200051C68A /* PBXBookmark */ = 8B2C122822A0C3200051C68A /* PBXBookmark */;
- 8B2C123922A0C4070051C68A /* XCBuildMessageTextBookmark */ = 8B2C123922A0C4070051C68A /* XCBuildMessageTextBookmark */;
8B2C123A22A0C4070051C68A /* PBXTextBookmark */ = 8B2C123A22A0C4070051C68A /* PBXTextBookmark */;
8B2C124022A0C4070051C68A /* PBXTextBookmark */ = 8B2C124022A0C4070051C68A /* PBXTextBookmark */;
+ 8BDCA5DA27CEC41800A07B67 /* PBXTextBookmark */ = 8BDCA5DA27CEC41800A07B67 /* PBXTextBookmark */;
+ 8BDCA5DE27CEC41800A07B67 /* PBXTextBookmark */ = 8BDCA5DE27CEC41800A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -80,18 +80,18 @@
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {838, 19747}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1074, 27486}}";
sepNavSelRange = "{10616, 0}";
- sepNavVisRange = "{10459, 399}";
+ sepNavVisRange = "{10579, 157}";
sepNavWindowFrame = "{{15, 42}, {895, 831}}";
};
};
24D8286F09A914000093AEF8 /* SoftGateProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1160, 1924}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1488, 2520}}";
sepNavSelRange = "{3009, 0}";
- sepNavVisRange = "{2520, 1805}";
- sepNavWindowFrame = "{{105, 57}, {895, 821}}";
+ sepNavVisRange = "{2526, 1019}";
+ sepNavWindowFrame = "{{74, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -108,19 +108,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B2C122822A0C3200051C68A /* PBXBookmark */ = {
- isa = PBXBookmark;
- fRef = 24D8286F09A914000093AEF8 /* SoftGateProc.cpp */;
- };
- 8B2C123922A0C4070051C68A /* XCBuildMessageTextBookmark */ = {
- isa = PBXTextBookmark;
- comments = "Deprecated conversion from string constant to 'char*'";
- fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
- fallbackIsa = XCBuildMessageTextBookmark;
- rLen = 1;
- rLoc = 306;
- rType = 1;
- };
8B2C123A22A0C4070051C68A /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
@@ -141,6 +128,26 @@
vrLen = 1805;
vrLoc = 2520;
};
+ 8BDCA5DA27CEC41800A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
+ name = "audioeffectx.cpp: 307";
+ rLen = 0;
+ rLoc = 10616;
+ rType = 0;
+ vrLen = 114;
+ vrLoc = 10579;
+ };
+ 8BDCA5DE27CEC41800A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* SoftGateProc.cpp */;
+ name = "SoftGateProc.cpp: 103";
+ rLen = 0;
+ rLoc = 3009;
+ rType = 0;
+ vrLen = 1019;
+ vrLoc = 2526;
+ };
8D01CCC60486CAD60068D4B7 /* SoftGate */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/SoftGate/SoftGate.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/SoftGate/SoftGate.xcodeproj/christopherjohnson.perspectivev3
index c6dabaa36..3d438769c 100755
--- a/plugins/MacVST/SoftGate/SoftGate.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/SoftGate/SoftGate.xcodeproj/christopherjohnson.perspectivev3
@@ -241,10 +241,10 @@
_historyCapacity
0
bookmark
- 8B2C124022A0C4070051C68A
+ 8BDCA5DE27CEC41800A07B67
history
- 8B2C122822A0C3200051C68A
+ 8B2C124022A0C4070051C68A
SplitCount
@@ -256,11 +256,11 @@
Geometry
Frame
- {{0, 20}, {895, 724}}
+ {{0, 20}, {895, 597}}
PBXModuleWindowStatusBarHidden2
RubberWindowFrame
- 105 113 895 765 0 0 1440 878
+ 74 60 895 638 0 0 1280 698
@@ -297,6 +297,8 @@
Layout
+ BecomeActive
+
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -362,7 +364,7 @@
185
RubberWindowFrame
- 19 325 810 487 0 0 1440 878
+ 14 180 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -390,10 +392,10 @@
_historyCapacity
0
bookmark
- 8B2C123A22A0C4070051C68A
+ 8BDCA5DA27CEC41800A07B67
history
- 8B2C123922A0C4070051C68A
+ 8B2C123A22A0C4070051C68A
SplitCount
@@ -407,18 +409,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 132}}
+ {{0, 0}, {603, 117}}
RubberWindowFrame
- 19 325 810 487 0 0 1440 878
+ 14 180 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 132pt
+ 117pt
Proportion
- 309pt
+ 324pt
Tabs
@@ -432,7 +434,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 414}}
+ {{10, 27}, {603, 297}}
+ RubberWindowFrame
+ 14 180 810 487 0 0 1280 698
Module
XCDetailModule
@@ -487,8 +491,6 @@
Frame
{{10, 27}, {603, 282}}
- RubberWindowFrame
- 19 325 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -516,11 +518,11 @@
TableOfContents
- 8B2C123B22A0C4070051C68A
+ 8BDCA5DB27CEC41800A07B67
1CA23ED40692098700951B8B
- 8B2C123C22A0C4070051C68A
+ 8BDCA5DC27CEC41800A07B67
8B0237581D42B1C400E1E8C8
- 8B2C123D22A0C4070051C68A
+ 8BDCA5DD27CEC41800A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -673,7 +675,7 @@
StatusbarIsVisible
TimeStamp
- 580961287.70047104
+ 667862040.96414101
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -691,10 +693,10 @@
WindowOrderList
8B2C123E22A0C4070051C68A
- /Users/christopherjohnson/Desktop/SoftGate/SoftGate.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/SoftGate/SoftGate.xcodeproj
WindowString
- 19 325 810 487 0 0 1440 878
+ 14 180 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/SpatializeDither/SpatializeDither.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/SpatializeDither/SpatializeDither.xcodeproj/christopherjohnson.pbxuser
index 372732c55..ccd214fe4 100755
--- a/plugins/MacVST/SpatializeDither/SpatializeDither.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/SpatializeDither/SpatializeDither.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* SpatializeDither */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 615684308;
- PBXWorkspaceStateSaveDate = 615684308;
+ PBXPerProjectTemplateStateSaveDate = 667862607;
+ PBXWorkspaceStateSaveDate = 667862607;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -82,10 +82,10 @@
};
24D8286F09A914000093AEF8 /* SpatializeDitherProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {901, 2405}}";
- sepNavSelRange = "{7585, 0}";
- sepNavVisRange = "{5287, 2401}";
- sepNavWindowFrame = "{{59, 57}, {895, 821}}";
+ sepNavIntBoundsRect = "{{0, 0}, {948, 3618}}";
+ sepNavSelRange = "{2828, 0}";
+ sepNavVisRange = "{5582, 1820}";
+ sepNavWindowFrame = "{{296, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* SpatializeDither */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/SpatializeDither/SpatializeDither.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/SpatializeDither/SpatializeDither.xcodeproj/christopherjohnson.perspectivev3
index 04f68f445..311b800d5 100755
--- a/plugins/MacVST/SpatializeDither/SpatializeDither.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/SpatializeDither/SpatializeDither.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 50 344 810 487 0 0 1440 878
+ 337 199 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 50 344 810 487 0 0 1440 878
+ 337 199 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 50 344 810 487 0 0 1440 878
+ 337 199 810 487 0 0 1280 698
Module
XCDetailModule
@@ -441,7 +441,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 414}}
Module
PBXBuildResultsModule
@@ -469,11 +469,11 @@
TableOfContents
- 8BB9A62524B2990100CD76A8
+ 8BDCA66627CEC66000A07B67
1CA23ED40692098700951B8B
- 8BB9A62624B2990100CD76A8
+ 8BDCA66727CEC66000A07B67
8B0237581D42B1C400E1E8C8
- 8BB9A62724B2990100CD76A8
+ 8BDCA66827CEC66000A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 615684353.746243
+ 667862624.14813805
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,11 +643,11 @@
5
WindowOrderList
- 8BB9A62824B2990100CD76A8
- /Users/christopherjohnson/Desktop/SpatializeDither/SpatializeDither.xcodeproj
+ 8BDCA66927CEC66000A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/SpatializeDither/SpatializeDither.xcodeproj
WindowString
- 50 344 810 487 0 0 1440 878
+ 337 199 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/SpatializeDither/SpatializeDither.xcodeproj/project.pbxproj b/plugins/MacVST/SpatializeDither/SpatializeDither.xcodeproj/project.pbxproj
index 96132882a..7236e4715 100755
--- a/plugins/MacVST/SpatializeDither/SpatializeDither.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/SpatializeDither/SpatializeDither.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* SpatializeDither */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "SpatializeDither" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* SpatializeDither */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/SpatializeDither/source/SpatializeDitherProc.cpp b/plugins/MacVST/SpatializeDither/source/SpatializeDitherProc.cpp
index d3e5723be..9b1e135f7 100755
--- a/plugins/MacVST/SpatializeDither/source/SpatializeDitherProc.cpp
+++ b/plugins/MacVST/SpatializeDither/source/SpatializeDitherProc.cpp
@@ -36,10 +36,8 @@ void SpatializeDither::processReplacing(float **inputs, float **outputs, VstInt3
{
double inputSampleL = *in1;
double inputSampleR = *in2;
- if (fabs(inputSampleL)<1.18e-37) inputSampleL = fpd * 1.18e-37;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
- if (fabs(inputSampleR)<1.18e-37) inputSampleR = fpd * 1.18e-37;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
+ if (fabs(inputSampleL)<1.18e-23) inputSampleL = fpdL * 1.18e-17;
+ if (fabs(inputSampleR)<1.18e-23) inputSampleR = fpdR * 1.18e-17;
inputSampleL *= scaleFactor;
inputSampleR *= scaleFactor;
@@ -51,7 +49,10 @@ void SpatializeDither::processReplacing(float **inputs, float **outputs, VstInt3
if (inputSampleR < 0) inputSampleR -= 0.383;
//adjusting to permit more information drug outta the noisefloor
- contingentRnd = (((double(fpd)/UINT32_MAX)+(double(fpd)/UINT32_MAX))-1.0) * randyConstant; //produce TPDF dist, scale
+ contingentRnd = (double(fpdL)/UINT32_MAX);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ contingentRnd += ((double(fpdL)/UINT32_MAX)-1.0);
+ contingentRnd *= randyConstant; //produce TPDF dist, scale
contingentRnd -= contingentErrL*omegaConstant; //include err
absSample = fabs(inputSampleL);
contingentErrL = absSample - floor(absSample); //get next err
@@ -65,7 +66,10 @@ void SpatializeDither::processReplacing(float **inputs, float **outputs, VstInt3
//Contingent Dither
inputSampleL = floor(inputSampleL);
- contingentRnd = (((double(fpd)/UINT32_MAX)+(double(fpd)/UINT32_MAX))-1.0) * randyConstant; //produce TPDF dist, scale
+ contingentRnd = (double(fpdR)/UINT32_MAX);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ contingentRnd += ((double(fpdR)/UINT32_MAX)-1.0);
+ contingentRnd *= randyConstant; //produce TPDF dist, scale
contingentRnd -= contingentErrR*omegaConstant; //include err
absSample = fabs(inputSampleR);
contingentErrR = absSample - floor(absSample); //get next err
@@ -131,10 +135,8 @@ void SpatializeDither::processDoubleReplacing(double **inputs, double **outputs,
{
double inputSampleL = *in1;
double inputSampleR = *in2;
- if (fabs(inputSampleL)<1.18e-43) inputSampleL = fpd * 1.18e-43;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
- if (fabs(inputSampleR)<1.18e-43) inputSampleR = fpd * 1.18e-43;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
+ if (fabs(inputSampleL)<1.18e-23) inputSampleL = fpdL * 1.18e-17;
+ if (fabs(inputSampleR)<1.18e-23) inputSampleR = fpdR * 1.18e-17;
inputSampleL *= scaleFactor;
inputSampleR *= scaleFactor;
@@ -146,7 +148,10 @@ void SpatializeDither::processDoubleReplacing(double **inputs, double **outputs,
if (inputSampleR < 0) inputSampleR -= 0.383;
//adjusting to permit more information drug outta the noisefloor
- contingentRnd = (((double(fpd)/UINT32_MAX)+(double(fpd)/UINT32_MAX))-1.0) * randyConstant; //produce TPDF dist, scale
+ contingentRnd = (double(fpdL)/UINT32_MAX);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ contingentRnd += ((double(fpdL)/UINT32_MAX)-1.0);
+ contingentRnd *= randyConstant; //produce TPDF dist, scale
contingentRnd -= contingentErrL*omegaConstant; //include err
absSample = fabs(inputSampleL);
contingentErrL = absSample - floor(absSample); //get next err
@@ -160,7 +165,10 @@ void SpatializeDither::processDoubleReplacing(double **inputs, double **outputs,
//Contingent Dither
inputSampleL = floor(inputSampleL);
- contingentRnd = (((double(fpd)/UINT32_MAX)+(double(fpd)/UINT32_MAX))-1.0) * randyConstant; //produce TPDF dist, scale
+ contingentRnd = (double(fpdR)/UINT32_MAX);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ contingentRnd += ((double(fpdR)/UINT32_MAX)-1.0);
+ contingentRnd *= randyConstant; //produce TPDF dist, scale
contingentRnd -= contingentErrR*omegaConstant; //include err
absSample = fabs(inputSampleR);
contingentErrR = absSample - floor(absSample); //get next err
diff --git a/plugins/MacVST/Spiral/Spiral.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Spiral/Spiral.xcodeproj/christopherjohnson.pbxuser
index fe7bb41e6..828983394 100755
--- a/plugins/MacVST/Spiral/Spiral.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Spiral/Spiral.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 631581176;
- PBXWorkspaceStateSaveDate = 631581176;
+ PBXPerProjectTemplateStateSaveDate = 667863160;
+ PBXWorkspaceStateSaveDate = 667863160;
};
perUserProjectItems = {
- 8B2E7B8F25A52A0A00485B86 /* XCBuildMessageTextBookmark */ = 8B2E7B8F25A52A0A00485B86 /* XCBuildMessageTextBookmark */;
- 8B2E7B9025A52A0A00485B86 /* PBXTextBookmark */ = 8B2E7B9025A52A0A00485B86 /* PBXTextBookmark */;
+ 8BDCA68427CEC88C00A07B67 /* XCBuildMessageTextBookmark */ = 8BDCA68427CEC88C00A07B67 /* XCBuildMessageTextBookmark */;
+ 8BDCA68527CEC88C00A07B67 /* PBXTextBookmark */ = 8BDCA68527CEC88C00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -62,9 +62,9 @@
};
2407DEB6089929BA00EB68BF /* Spiral.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {948, 1944}}";
- sepNavSelRange = "{2129, 0}";
- sepNavVisRange = "{2126, 104}";
+ sepNavIntBoundsRect = "{{0, 0}, {840, 2088}}";
+ sepNavSelRange = "{2238, 0}";
+ sepNavVisRange = "{2235, 104}";
sepNavWindowFrame = "{{12, 47}, {895, 831}}";
};
};
@@ -106,24 +106,24 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B2E7B8F25A52A0A00485B86 /* XCBuildMessageTextBookmark */ = {
+ 8BDCA68427CEC88C00A07B67 /* XCBuildMessageTextBookmark */ = {
isa = PBXTextBookmark;
comments = "Unused variable 'chunkData'";
fRef = 2407DEB6089929BA00EB68BF /* Spiral.cpp */;
fallbackIsa = XCBuildMessageTextBookmark;
rLen = 1;
- rLoc = 56;
+ rLoc = 57;
rType = 1;
};
- 8B2E7B9025A52A0A00485B86 /* PBXTextBookmark */ = {
+ 8BDCA68527CEC88C00A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2407DEB6089929BA00EB68BF /* Spiral.cpp */;
- name = "Spiral.cpp: 57";
+ name = "Spiral.cpp: 58";
rLen = 0;
- rLoc = 2129;
+ rLoc = 2238;
rType = 0;
vrLen = 104;
- vrLoc = 2126;
+ vrLoc = 2235;
};
8D01CCC60486CAD60068D4B7 /* Spiral */ = {
activeExec = 0;
diff --git a/plugins/MacVST/Spiral/Spiral.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Spiral/Spiral.xcodeproj/christopherjohnson.perspectivev3
index b2b11e73b..dfe8ce87f 100755
--- a/plugins/MacVST/Spiral/Spiral.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Spiral/Spiral.xcodeproj/christopherjohnson.perspectivev3
@@ -321,7 +321,7 @@
185
RubberWindowFrame
- 283 293 810 487 0 0 1440 878
+ 211 165 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -349,10 +349,10 @@
_historyCapacity
0
bookmark
- 8B2E7B9025A52A0A00485B86
+ 8BDCA68527CEC88C00A07B67
history
- 8B2E7B8F25A52A0A00485B86
+ 8BDCA68427CEC88C00A07B67
SplitCount
@@ -366,18 +366,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 86}}
+ {{0, 0}, {603, 69}}
RubberWindowFrame
- 283 293 810 487 0 0 1440 878
+ 211 165 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 86pt
+ 69pt
Proportion
- 355pt
+ 372pt
Tabs
@@ -391,7 +391,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 328}}
+ {{10, 27}, {603, 345}}
Module
XCDetailModule
@@ -445,9 +445,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 328}}
+ {{10, 27}, {603, 345}}
RubberWindowFrame
- 283 293 810 487 0 0 1440 878
+ 211 165 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -475,11 +475,11 @@
TableOfContents
- 8B2E7B9125A52A0A00485B86
+ 8BDCA68627CEC88C00A07B67
1CA23ED40692098700951B8B
- 8B2E7B9225A52A0A00485B86
+ 8BDCA68727CEC88C00A07B67
8B0237581D42B1C400E1E8C8
- 8B2E7B9325A52A0A00485B86
+ 8BDCA68827CEC88C00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -632,7 +632,7 @@
StatusbarIsVisible
TimeStamp
- 631581194.66620898
+ 667863180.84454095
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -649,10 +649,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/Plugins/MacVST/Spiral/Spiral.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Spiral/Spiral.xcodeproj
WindowString
- 283 293 810 487 0 0 1440 878
+ 211 165 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Spiral2/Spiral2.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Spiral2/Spiral2.xcodeproj/christopherjohnson.pbxuser
index 4b27461f8..293e45f65 100755
--- a/plugins/MacVST/Spiral2/Spiral2.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Spiral2/Spiral2.xcodeproj/christopherjohnson.pbxuser
@@ -49,14 +49,14 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 631581215;
- PBXWorkspaceStateSaveDate = 631581215;
+ PBXPerProjectTemplateStateSaveDate = 667863186;
+ PBXWorkspaceStateSaveDate = 667863186;
};
perUserProjectItems = {
8B2E7BB225A52A2900485B86 /* PBXTextBookmark */ = 8B2E7BB225A52A2900485B86 /* PBXTextBookmark */;
8BB5231622220358000C92BC /* PBXTextBookmark */ = 8BB5231622220358000C92BC /* PBXTextBookmark */;
8BB5231722220358000C92BC /* PBXTextBookmark */ = 8BB5231722220358000C92BC /* PBXTextBookmark */;
- 8BB5231922220358000C92BC /* PBXTextBookmark */ = 8BB5231922220358000C92BC /* PBXTextBookmark */;
+ 8BDCA6A327CEC89600A07B67 /* PBXTextBookmark */ = 8BDCA6A327CEC89600A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -88,9 +88,9 @@
};
24D8286F09A914000093AEF8 /* Spiral2Proc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {849, 3654}}";
- sepNavSelRange = "{6661, 0}";
- sepNavVisRange = "{6333, 328}";
+ sepNavIntBoundsRect = "{{0, 0}, {849, 3708}}";
+ sepNavSelRange = "{6629, 0}";
+ sepNavVisRange = "{6205, 424}";
sepNavWindowFrame = "{{18, 47}, {895, 831}}";
};
};
@@ -113,9 +113,9 @@
fRef = 24D8286F09A914000093AEF8 /* Spiral2Proc.cpp */;
name = "Spiral2Proc.cpp: 204";
rLen = 0;
- rLoc = 6661;
+ rLoc = 6629;
rType = 0;
- vrLen = 328;
+ vrLen = 296;
vrLoc = 6333;
};
8BB5231622220358000C92BC /* PBXTextBookmark */ = {
@@ -138,15 +138,15 @@
vrLen = 994;
vrLoc = 1639;
};
- 8BB5231922220358000C92BC /* PBXTextBookmark */ = {
+ 8BDCA6A327CEC89600A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* Spiral2Proc.cpp */;
- name = "Spiral2Proc.cpp: 259";
+ name = "Spiral2Proc.cpp: 204";
rLen = 0;
- rLoc = 6661;
+ rLoc = 6629;
rType = 0;
- vrLen = 0;
- vrLoc = 6661;
+ vrLen = 424;
+ vrLoc = 6205;
};
8D01CCC60486CAD60068D4B7 /* Spiral2 */ = {
activeExec = 0;
diff --git a/plugins/MacVST/Spiral2/Spiral2.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Spiral2/Spiral2.xcodeproj/christopherjohnson.perspectivev3
index c0a224099..3f6081b9a 100755
--- a/plugins/MacVST/Spiral2/Spiral2.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Spiral2/Spiral2.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 432 361 810 487 0 0 1440 878
+ 322 197 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,12 +351,12 @@
_historyCapacity
0
bookmark
- 8B2E7BB225A52A2900485B86
+ 8BDCA6A327CEC89600A07B67
history
8BB5231622220358000C92BC
8BB5231722220358000C92BC
- 8BB5231922220358000C92BC
+ 8B2E7BB225A52A2900485B86
SplitCount
@@ -370,18 +370,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 296}}
+ {{0, 0}, {603, 289}}
RubberWindowFrame
- 432 361 810 487 0 0 1440 878
+ 322 197 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 296pt
+ 289pt
Proportion
- 145pt
+ 152pt
Tabs
@@ -395,9 +395,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 118}}
+ {{10, 27}, {603, 125}}
RubberWindowFrame
- 432 361 810 487 0 0 1440 878
+ 322 197 810 487 0 0 1280 698
Module
XCDetailModule
@@ -479,11 +479,11 @@
TableOfContents
- 8B2E7BB325A52A2900485B86
+ 8BDCA6A427CEC89600A07B67
1CA23ED40692098700951B8B
- 8B2E7BB425A52A2900485B86
+ 8BDCA6A527CEC89600A07B67
8B0237581D42B1C400E1E8C8
- 8B2E7BB525A52A2900485B86
+ 8BDCA6A627CEC89600A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -636,7 +636,7 @@
StatusbarIsVisible
TimeStamp
- 631581225.43489301
+ 667863190.265239
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -653,10 +653,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/Plugins/MacVST/Spiral2/Spiral2.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Spiral2/Spiral2.xcodeproj
WindowString
- 432 361 810 487 0 0 1440 878
+ 322 197 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Srsly/Srsly.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Srsly/Srsly.xcodeproj/christopherjohnson.pbxuser
index 7feb962b8..23855e5ca 100755
--- a/plugins/MacVST/Srsly/Srsly.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Srsly/Srsly.xcodeproj/christopherjohnson.pbxuser
@@ -49,13 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 654480603;
- PBXWorkspaceStateSaveDate = 654480603;
+ PBXPerProjectTemplateStateSaveDate = 667863195;
+ PBXWorkspaceStateSaveDate = 667863195;
};
perUserProjectItems = {
8B5466DB270295C4000066C9 /* PBXTextBookmark */ = 8B5466DB270295C4000066C9 /* PBXTextBookmark */;
8BC3898223C0155C00879076 /* PBXTextBookmark */ = 8BC3898223C0155C00879076 /* PBXTextBookmark */;
- 8BC3898423C0155C00879076 /* PBXTextBookmark */ = 8BC3898423C0155C00879076 /* PBXTextBookmark */;
+ 8BDCA6C127CEC8A100A07B67 /* PBXTextBookmark */ = 8BDCA6C127CEC8A100A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -87,9 +87,9 @@
};
24D8286F09A914000093AEF8 /* SrslyProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {804, 8694}}";
+ sepNavIntBoundsRect = "{{0, 0}, {795, 8802}}";
sepNavSelRange = "{13390, 0}";
- sepNavVisRange = "{16109, 135}";
+ sepNavVisRange = "{16055, 203}";
sepNavWindowFrame = "{{537, 57}, {895, 821}}";
};
};
@@ -127,15 +127,15 @@
vrLen = 456;
vrLoc = 1873;
};
- 8BC3898423C0155C00879076 /* PBXTextBookmark */ = {
+ 8BDCA6C127CEC8A100A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* SrslyProc.cpp */;
- name = "SrslyProc.cpp: 351";
+ name = "SrslyProc.cpp: 355";
rLen = 0;
rLoc = 13390;
rType = 0;
- vrLen = 265;
- vrLoc = 16172;
+ vrLen = 203;
+ vrLoc = 16055;
};
8D01CCC60486CAD60068D4B7 /* Srsly */ = {
activeExec = 0;
diff --git a/plugins/MacVST/Srsly/Srsly.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Srsly/Srsly.xcodeproj/christopherjohnson.perspectivev3
index ddd770586..a23881cd9 100755
--- a/plugins/MacVST/Srsly/Srsly.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Srsly/Srsly.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 592 298 810 487 0 0 1440 878
+ 442 167 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,11 +351,11 @@
_historyCapacity
0
bookmark
- 8B5466DB270295C4000066C9
+ 8BDCA6C127CEC8A100A07B67
history
8BC3898223C0155C00879076
- 8BC3898423C0155C00879076
+ 8B5466DB270295C4000066C9
SplitCount
@@ -369,18 +369,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 86}}
+ {{0, 0}, {603, 69}}
RubberWindowFrame
- 592 298 810 487 0 0 1440 878
+ 442 167 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 86pt
+ 69pt
Proportion
- 355pt
+ 372pt
Tabs
@@ -394,9 +394,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 328}}
+ {{10, 27}, {603, 345}}
RubberWindowFrame
- 592 298 810 487 0 0 1440 878
+ 442 167 810 487 0 0 1280 698
Module
XCDetailModule
@@ -478,11 +478,11 @@
TableOfContents
- 8B5466DC270295C4000066C9
+ 8BDCA6C227CEC8A100A07B67
1CA23ED40692098700951B8B
- 8B5466DD270295C4000066C9
+ 8BDCA6C327CEC8A100A07B67
8B0237581D42B1C400E1E8C8
- 8B5466DE270295C4000066C9
+ 8BDCA6C427CEC8A100A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -635,7 +635,7 @@
StatusbarIsVisible
TimeStamp
- 654480836.82875204
+ 667863201.81856298
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -655,7 +655,7 @@
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Srsly/Srsly.xcodeproj
WindowString
- 592 298 810 487 0 0 1440 878
+ 442 167 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Srsly2/Srsly2.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Srsly2/Srsly2.xcodeproj/christopherjohnson.pbxuser
index b4f359d9b..4ece444c5 100755
--- a/plugins/MacVST/Srsly2/Srsly2.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Srsly2/Srsly2.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* Srsly2 */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 654480591;
- PBXWorkspaceStateSaveDate = 654480591;
+ PBXPerProjectTemplateStateSaveDate = 667863207;
+ PBXWorkspaceStateSaveDate = 667863207;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* Srsly2 */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/Srsly2/Srsly2.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Srsly2/Srsly2.xcodeproj/christopherjohnson.perspectivev3
index d1e012b80..8fba089fc 100755
--- a/plugins/MacVST/Srsly2/Srsly2.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Srsly2/Srsly2.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 16 295 810 487 0 0 1440 878
+ 12 166 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 16 295 810 487 0 0 1440 878
+ 12 166 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 16 295 810 487 0 0 1440 878
+ 12 166 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B5466AD270294D4000066C9
+ 8BDCA6DF27CEC8AC00A07B67
1CA23ED40692098700951B8B
- 8B5466AE270294D4000066C9
+ 8BDCA6E027CEC8AC00A07B67
8B0237581D42B1C400E1E8C8
- 8B5466AF270294D4000066C9
+ 8BDCA6E127CEC8AC00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 654480838.948439
+ 667863212.10760605
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -646,7 +646,7 @@
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Srsly2/Srsly2.xcodeproj
WindowString
- 16 295 810 487 0 0 1440 878
+ 12 166 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/StarChild/StarChild.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/StarChild/StarChild.xcodeproj/christopherjohnson.pbxuser
index 0aa09904f..677e29186 100755
--- a/plugins/MacVST/StarChild/StarChild.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/StarChild/StarChild.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 639860743;
- PBXWorkspaceStateSaveDate = 639860743;
+ PBXPerProjectTemplateStateSaveDate = 667863218;
+ PBXWorkspaceStateSaveDate = 667863218;
};
perUserProjectItems = {
- 8BA62B1826237F5A00483AAF /* PBXTextBookmark */ = 8BA62B1826237F5A00483AAF /* PBXTextBookmark */;
8BA62B4D2623802800483AAF /* PBXTextBookmark */ = 8BA62B4D2623802800483AAF /* PBXTextBookmark */;
+ 8BDCA6FD27CEC8C600A07B67 /* PBXTextBookmark */ = 8BDCA6FD27CEC8C600A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -86,10 +86,10 @@
};
24D8286F09A914000093AEF8 /* StarChildProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {848, 11817}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1038, 12888}}";
sepNavSelRange = "{31639, 0}";
- sepNavVisRange = "{2678, 2329}";
- sepNavWindowFrame = "{{442, 47}, {895, 831}}";
+ sepNavVisRange = "{23074, 1230}";
+ sepNavWindowFrame = "{{385, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -106,7 +106,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8BA62B1826237F5A00483AAF /* PBXTextBookmark */ = {
+ 8BA62B4D2623802800483AAF /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
name = "audioeffectx.cpp: 307";
@@ -116,7 +116,7 @@
vrLen = 0;
vrLoc = 0;
};
- 8BA62B4D2623802800483AAF /* PBXTextBookmark */ = {
+ 8BDCA6FD27CEC8C600A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
name = "audioeffectx.cpp: 307";
diff --git a/plugins/MacVST/StarChild/StarChild.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/StarChild/StarChild.xcodeproj/christopherjohnson.perspectivev3
index 3e94e4672..c6e133e6a 100755
--- a/plugins/MacVST/StarChild/StarChild.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/StarChild/StarChild.xcodeproj/christopherjohnson.perspectivev3
@@ -300,7 +300,7 @@
PBXSmartGroupTreeModuleOutlineStateSelectionKey
- 5
+ 6
4
0
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 423 305 810 487 0 0 1440 878
+ 316 170 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8BA62B4D2623802800483AAF
+ 8BDCA6FD27CEC8C600A07B67
history
- 8BA62B1826237F5A00483AAF
+ 8BA62B4D2623802800483AAF
SplitCount
@@ -370,7 +370,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 423 305 810 487 0 0 1440 878
+ 316 170 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -395,7 +395,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 423 305 810 487 0 0 1440 878
+ 316 170 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8BA62B4E2623802800483AAF
+ 8BDCA6FE27CEC8C600A07B67
1CA23ED40692098700951B8B
- 8BA62B4F2623802800483AAF
+ 8BDCA6FF27CEC8C600A07B67
8B0237581D42B1C400E1E8C8
- 8BA62B502623802800483AAF
+ 8BDCA70027CEC8C600A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 639860776.15215302
+ 667863238.84592903
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +651,11 @@
5
WindowOrderList
+ 8BDCA70127CEC8C600A07B67
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/StarChild/StarChild.xcodeproj
WindowString
- 423 305 810 487 0 0 1440 878
+ 316 170 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/StereoChorus/StereoChorus.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/StereoChorus/StereoChorus.xcodeproj/christopherjohnson.pbxuser
index ad1b7cf31..09c2d16d3 100644
--- a/plugins/MacVST/StereoChorus/StereoChorus.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/StereoChorus/StereoChorus.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 667083254;
- PBXWorkspaceStateSaveDate = 667083254;
+ PBXPerProjectTemplateStateSaveDate = 667863243;
+ PBXWorkspaceStateSaveDate = 667863243;
};
perUserProjectItems = {
- 8B8A174E27C2E23D006BFCCB /* PBXTextBookmark */ = 8B8A174E27C2E23D006BFCCB /* PBXTextBookmark */;
8B8A174F27C2E23D006BFCCB /* PBXTextBookmark */ = 8B8A174F27C2E23D006BFCCB /* PBXTextBookmark */;
+ 8BDCA71C27CEC8D000A07B67 /* PBXTextBookmark */ = 8BDCA71C27CEC8D000A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -86,9 +86,9 @@
};
24D8286F09A914000093AEF8 /* StereoChorusProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {912, 5562}}";
+ sepNavIntBoundsRect = "{{0, 0}, {750, 5490}}";
sepNavSelRange = "{6717, 0}";
- sepNavVisRange = "{6521, 255}";
+ sepNavVisRange = "{6601, 173}";
sepNavWindowFrame = "{{543, 41}, {895, 831}}";
};
};
@@ -106,16 +106,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B8A174E27C2E23D006BFCCB /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* StereoChorusProc.cpp */;
- name = "StereoChorusProc.cpp: 174";
- rLen = 0;
- rLoc = 6717;
- rType = 0;
- vrLen = 255;
- vrLoc = 6521;
- };
8B8A174F27C2E23D006BFCCB /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* StereoChorusProc.cpp */;
@@ -126,6 +116,16 @@
vrLen = 255;
vrLoc = 6521;
};
+ 8BDCA71C27CEC8D000A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* StereoChorusProc.cpp */;
+ name = "StereoChorusProc.cpp: 174";
+ rLen = 0;
+ rLoc = 6717;
+ rType = 0;
+ vrLen = 173;
+ vrLoc = 6601;
+ };
8D01CCC60486CAD60068D4B7 /* StereoChorus */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/StereoChorus/StereoChorus.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/StereoChorus/StereoChorus.xcodeproj/christopherjohnson.perspectivev3
index e76d7c93e..a31ebfda4 100644
--- a/plugins/MacVST/StereoChorus/StereoChorus.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/StereoChorus/StereoChorus.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 616 365 810 487 0 0 1440 878
+ 460 199 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B8A174F27C2E23D006BFCCB
+ 8BDCA71C27CEC8D000A07B67
history
- 8B8A174E27C2E23D006BFCCB
+ 8B8A174F27C2E23D006BFCCB
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 132}}
+ {{0, 0}, {603, 117}}
RubberWindowFrame
- 616 365 810 487 0 0 1440 878
+ 460 199 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 132pt
+ 117pt
Proportion
- 309pt
+ 324pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 297}}
RubberWindowFrame
- 616 365 810 487 0 0 1440 878
+ 460 199 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B8A175027C2E23D006BFCCB
+ 8BDCA71D27CEC8D000A07B67
1CA23ED40692098700951B8B
- 8B8A175127C2E23D006BFCCB
+ 8BDCA71E27CEC8D000A07B67
8B0237581D42B1C400E1E8C8
- 8B8A175227C2E23D006BFCCB
+ 8BDCA71F27CEC8D000A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 667083325.91170704
+ 667863248.06912601
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,11 +651,10 @@
5
WindowOrderList
- 8B8A175327C2E23D006BFCCB
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/StereoChorus/StereoChorus.xcodeproj
WindowString
- 616 365 810 487 0 0 1440 878
+ 460 199 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/StereoDoubler/StereoDoubler.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/StereoDoubler/StereoDoubler.xcodeproj/christopherjohnson.pbxuser
index b9f0ac6b3..ec6ad28e7 100644
--- a/plugins/MacVST/StereoDoubler/StereoDoubler.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/StereoDoubler/StereoDoubler.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 666669515;
- PBXWorkspaceStateSaveDate = 666669515;
+ PBXPerProjectTemplateStateSaveDate = 667863251;
+ PBXWorkspaceStateSaveDate = 667863251;
};
perUserProjectItems = {
- 8B5B370A27BC8CC100D9E4E1 /* PBXTextBookmark */ = 8B5B370A27BC8CC100D9E4E1 /* PBXTextBookmark */;
8B5B375F27BC91E700D9E4E1 /* PBXTextBookmark */ = 8B5B375F27BC91E700D9E4E1 /* PBXTextBookmark */;
+ 8BDCA73A27CEC8D800A07B67 /* PBXTextBookmark */ = 8BDCA73A27CEC8D800A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -78,9 +78,9 @@
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1074, 27486}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1074, 27504}}";
sepNavSelRange = "{10616, 0}";
- sepNavVisRange = "{10579, 157}";
+ sepNavVisRange = "{10579, 114}";
sepNavWindowFrame = "{{15, 42}, {895, 831}}";
};
};
@@ -106,17 +106,17 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B5B370A27BC8CC100D9E4E1 /* PBXTextBookmark */ = {
+ 8B5B375F27BC91E700D9E4E1 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
name = "audioeffectx.cpp: 307";
rLen = 0;
rLoc = 10616;
rType = 0;
- vrLen = 277;
- vrLoc = 10459;
+ vrLen = 114;
+ vrLoc = 10579;
};
- 8B5B375F27BC91E700D9E4E1 /* PBXTextBookmark */ = {
+ 8BDCA73A27CEC8D800A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
name = "audioeffectx.cpp: 307";
diff --git a/plugins/MacVST/StereoDoubler/StereoDoubler.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/StereoDoubler/StereoDoubler.xcodeproj/christopherjohnson.perspectivev3
index ce272a35d..51d30afa0 100644
--- a/plugins/MacVST/StereoDoubler/StereoDoubler.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/StereoDoubler/StereoDoubler.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 17 354 810 487 0 0 1440 878
+ 13 194 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B5B375F27BC91E700D9E4E1
+ 8BDCA73A27CEC8D800A07B67
history
- 8B5B370A27BC8CC100D9E4E1
+ 8B5B375F27BC91E700D9E4E1
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 117}}
+ {{0, 0}, {603, 102}}
RubberWindowFrame
- 17 354 810 487 0 0 1440 878
+ 13 194 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 117pt
+ 102pt
Proportion
- 324pt
+ 339pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
+ {{10, 27}, {603, 312}}
RubberWindowFrame
- 17 354 810 487 0 0 1440 878
+ 13 194 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B5B376027BC91E700D9E4E1
+ 8BDCA73B27CEC8D800A07B67
1CA23ED40692098700951B8B
- 8B5B376127BC91E700D9E4E1
+ 8BDCA73C27CEC8D800A07B67
8B0237581D42B1C400E1E8C8
- 8B5B376227BC91E700D9E4E1
+ 8BDCA73D27CEC8D800A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 666669543.17635
+ 667863256.41929901
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,11 +651,10 @@
5
WindowOrderList
- 8B5B376327BC91E700D9E4E1
- /Users/christopherjohnson/Desktop/StereoDoubler/StereoDoubler.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/StereoDoubler/StereoDoubler.xcodeproj
WindowString
- 17 354 810 487 0 0 1440 878
+ 13 194 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/StereoEnsemble/StereoEnsemble.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/StereoEnsemble/StereoEnsemble.xcodeproj/christopherjohnson.pbxuser
index 91f787ae7..7bc4d9090 100644
--- a/plugins/MacVST/StereoEnsemble/StereoEnsemble.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/StereoEnsemble/StereoEnsemble.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* StereoEnsemble */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 666668264;
- PBXWorkspaceStateSaveDate = 666668264;
+ PBXPerProjectTemplateStateSaveDate = 667863261;
+ PBXWorkspaceStateSaveDate = 667863261;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* StereoEnsemble */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/StereoEnsemble/StereoEnsemble.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/StereoEnsemble/StereoEnsemble.xcodeproj/christopherjohnson.perspectivev3
index 405f036fe..c8768f73d 100644
--- a/plugins/MacVST/StereoEnsemble/StereoEnsemble.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/StereoEnsemble/StereoEnsemble.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 34 366 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 34 366 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 34 366 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B5B371D27BC8CEB00D9E4E1
+ 8BDCA75827CEC8E100A07B67
1CA23ED40692098700951B8B
- 8B5B371E27BC8CEB00D9E4E1
+ 8BDCA75927CEC8E100A07B67
8B0237581D42B1C400E1E8C8
- 8B5B371F27BC8CEB00D9E4E1
+ 8BDCA75A27CEC8E100A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 666669493.92703199
+ 667863265.34131706
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,11 +643,10 @@
5
WindowOrderList
- 8B5B374F27BC91B500D9E4E1
- /Users/christopherjohnson/Desktop/StereoEnsemble/StereoEnsemble.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/StereoEnsemble/StereoEnsemble.xcodeproj
WindowString
- 34 366 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/StereoFX/StereoFX.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/StereoFX/StereoFX.xcodeproj/christopherjohnson.pbxuser
index 06f0165e0..3e95cd06b 100755
--- a/plugins/MacVST/StereoFX/StereoFX.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/StereoFX/StereoFX.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* StereoFX */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569772631;
- PBXWorkspaceStateSaveDate = 569772631;
+ PBXPerProjectTemplateStateSaveDate = 667863286;
+ PBXWorkspaceStateSaveDate = 667863286;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* StereoFX */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/StereoFX/StereoFX.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/StereoFX/StereoFX.xcodeproj/christopherjohnson.perspectivev3
index 1e8fb00e5..556fc2f22 100755
--- a/plugins/MacVST/StereoFX/StereoFX.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/StereoFX/StereoFX.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 326 318 810 487 0 0 1440 878
+ 243 177 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 326 318 810 487 0 0 1440 878
+ 243 177 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -386,6 +386,8 @@
Frame
{{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 243 177 810 487 0 0 1280 698
Module
XCDetailModule
@@ -440,8 +442,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 326 318 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B79408D21F60A83006E9731
+ 8BDCA77527CEC8FB00A07B67
1CA23ED40692098700951B8B
- 8B79408E21F60A83006E9731
+ 8BDCA77627CEC8FB00A07B67
8B0237581D42B1C400E1E8C8
- 8B79408F21F60A83006E9731
+ 8BDCA77727CEC8FB00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 569772675.65113199
+ 667863291.81535196
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,11 +643,10 @@
5
WindowOrderList
- 8B79409021F60A83006E9731
- /Users/christopherjohnson/Desktop/MacVST/StereoFX/StereoFX.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/StereoFX/StereoFX.xcodeproj
WindowString
- 326 318 810 487 0 0 1440 878
+ 243 177 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/StereoFX/StereoFX.xcodeproj/project.pbxproj b/plugins/MacVST/StereoFX/StereoFX.xcodeproj/project.pbxproj
index 078c92da5..a8a032ce6 100755
--- a/plugins/MacVST/StereoFX/StereoFX.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/StereoFX/StereoFX.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* StereoFX */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "StereoFX" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* StereoFX */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/StudioTan/StudioTan.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/StudioTan/StudioTan.xcodeproj/christopherjohnson.pbxuser
index ed1a9939e..d49c86376 100755
--- a/plugins/MacVST/StudioTan/StudioTan.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/StudioTan/StudioTan.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 568834298;
- PBXWorkspaceStateSaveDate = 568834298;
+ PBXPerProjectTemplateStateSaveDate = 667863297;
+ PBXWorkspaceStateSaveDate = 667863297;
};
perUserProjectItems = {
- 8BAF0A1721E7B97500C38394 /* PBXTextBookmark */ = 8BAF0A1721E7B97500C38394 /* PBXTextBookmark */;
8BAF0A3721E975FE00C38394 /* PBXTextBookmark */ = 8BAF0A3721E975FE00C38394 /* PBXTextBookmark */;
+ 8BDCA79527CEC91C00A07B67 /* PBXTextBookmark */ = 8BDCA79527CEC91C00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -86,10 +86,10 @@
};
24D8286F09A914000093AEF8 /* StudioTanProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {635, 7514}}";
+ sepNavIntBoundsRect = "{{0, 0}, {554, 10350}}";
sepNavSelRange = "{0, 0}";
- sepNavVisRange = "{0, 227}";
- sepNavWindowFrame = "{{394, 47}, {895, 831}}";
+ sepNavVisRange = "{0, 175}";
+ sepNavWindowFrame = "{{385, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -106,16 +106,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8BAF0A1721E7B97500C38394 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* StudioTanProc.cpp */;
- name = "StudioTanProc.cpp: 1";
- rLen = 0;
- rLoc = 0;
- rType = 0;
- vrLen = 227;
- vrLoc = 0;
- };
8BAF0A3721E975FE00C38394 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* StudioTanProc.cpp */;
@@ -126,6 +116,16 @@
vrLen = 227;
vrLoc = 0;
};
+ 8BDCA79527CEC91C00A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* StudioTanProc.cpp */;
+ name = "StudioTanProc.cpp: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 175;
+ vrLoc = 0;
+ };
8D01CCC60486CAD60068D4B7 /* StudioTan */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/StudioTan/StudioTan.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/StudioTan/StudioTan.xcodeproj/christopherjohnson.perspectivev3
index a5579d077..da0d10976 100755
--- a/plugins/MacVST/StudioTan/StudioTan.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/StudioTan/StudioTan.xcodeproj/christopherjohnson.perspectivev3
@@ -300,7 +300,7 @@
PBXSmartGroupTreeModuleOutlineStateSelectionKey
- 7
+ 6
4
0
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 41 321 810 487 0 0 1440 878
+ 31 178 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8BAF0A3721E975FE00C38394
+ 8BDCA79527CEC91C00A07B67
history
- 8BAF0A1721E7B97500C38394
+ 8BAF0A3721E975FE00C38394
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 132}}
+ {{0, 0}, {603, 117}}
RubberWindowFrame
- 41 321 810 487 0 0 1440 878
+ 31 178 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 132pt
+ 117pt
Proportion
- 309pt
+ 324pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 297}}
RubberWindowFrame
- 41 321 810 487 0 0 1440 878
+ 31 178 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8BAF0A1921E7B97500C38394
+ 8BDCA79627CEC91C00A07B67
1CA23ED40692098700951B8B
- 8BAF0A1A21E7B97500C38394
+ 8BDCA79727CEC91C00A07B67
8B0237581D42B1C400E1E8C8
- 8BAF0A1B21E7B97500C38394
+ 8BDCA79827CEC91C00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 568948222.27999997
+ 667863324.40712202
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +651,11 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/StudioTan/StudioTan.xcodeproj
+ 8BDCA79927CEC91C00A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/StudioTan/StudioTan.xcodeproj
WindowString
- 41 321 810 487 0 0 1440 878
+ 31 178 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/SubsOnly/SubsOnly.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/SubsOnly/SubsOnly.xcodeproj/christopherjohnson.pbxuser
index d59c2aaf8..8fcc03cd5 100755
--- a/plugins/MacVST/SubsOnly/SubsOnly.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/SubsOnly/SubsOnly.xcodeproj/christopherjohnson.pbxuser
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569772699;
- PBXWorkspaceStateSaveDate = 569772699;
+ PBXPerProjectTemplateStateSaveDate = 667863331;
+ PBXWorkspaceStateSaveDate = 667863331;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -66,10 +66,10 @@
};
245463B80991757100464AD3 /* SubsOnly.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {866, 1144}}";
- sepNavSelRange = "{3334, 0}";
- sepNavVisRange = "{0, 2320}";
- sepNavWindowFrame = "{{512, 47}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1110, 1836}}";
+ sepNavSelRange = "{3362, 0}";
+ sepNavVisRange = "{2782, 586}";
+ sepNavWindowFrame = "{{385, 4}, {895, 694}}";
};
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
diff --git a/plugins/MacVST/SubsOnly/SubsOnly.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/SubsOnly/SubsOnly.xcodeproj/christopherjohnson.perspectivev3
index 170870217..cc72161fd 100755
--- a/plugins/MacVST/SubsOnly/SubsOnly.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/SubsOnly/SubsOnly.xcodeproj/christopherjohnson.perspectivev3
@@ -300,7 +300,7 @@
PBXSmartGroupTreeModuleOutlineStateSelectionKey
- 6
+ 7
4
0
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 397 265 810 487 0 0 1440 878
+ 296 152 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -360,18 +360,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 13}}
+ {{0, 0}, {603, 0}}
RubberWindowFrame
- 397 265 810 487 0 0 1440 878
+ 296 152 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 13pt
+ 0pt
Proportion
- 428pt
+ 441pt
Tabs
@@ -385,9 +385,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 401}}
- RubberWindowFrame
- 397 265 810 487 0 0 1440 878
+ {{10, 27}, {603, 414}}
Module
XCDetailModule
@@ -441,7 +439,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 296 152 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B7940AD21F60AEF006E9731
+ 8BDCA7C127CEC94700A07B67
1CA23ED40692098700951B8B
- 8B7940AE21F60AEF006E9731
+ 8BDCA7C227CEC94700A07B67
8B0237581D42B1C400E1E8C8
- 8B7940AF21F60AEF006E9731
+ 8BDCA7C327CEC94700A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 569772783.81786597
+ 667863367.12180698
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +643,11 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/SubsOnly/SubsOnly.xcodeproj
+ 8BDCA7C427CEC94700A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/SubsOnly/SubsOnly.xcodeproj
WindowString
- 397 265 810 487 0 0 1440 878
+ 296 152 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/SubsOnly/source/SubsOnly.h b/plugins/MacVST/SubsOnly/source/SubsOnly.h
index 316a44686..f4bd2a51b 100755
--- a/plugins/MacVST/SubsOnly/source/SubsOnly.h
+++ b/plugins/MacVST/SubsOnly/source/SubsOnly.h
@@ -103,6 +103,9 @@ private:
double iirSampleYR;
double iirSampleZR;
+ uint32_t fpdL;
+ uint32_t fpdR;
+
};
#endif
diff --git a/plugins/MacVST/Surge/Surge.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Surge/Surge.xcodeproj/christopherjohnson.pbxuser
index 80718cb07..65b5cf9c9 100755
--- a/plugins/MacVST/Surge/Surge.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Surge/Surge.xcodeproj/christopherjohnson.pbxuser
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569772809;
- PBXWorkspaceStateSaveDate = 569772809;
+ PBXPerProjectTemplateStateSaveDate = 667863372;
+ PBXWorkspaceStateSaveDate = 667863372;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -82,10 +82,10 @@
};
24D8286F09A914000093AEF8 /* SurgeProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {848, 3731}}";
- sepNavSelRange = "{5849, 1892}";
- sepNavVisRange = "{755, 2312}";
- sepNavWindowFrame = "{{410, 43}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {849, 3474}}";
+ sepNavSelRange = "{5024, 0}";
+ sepNavVisRange = "{4584, 1053}";
+ sepNavWindowFrame = "{{385, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
diff --git a/plugins/MacVST/Surge/Surge.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Surge/Surge.xcodeproj/christopherjohnson.perspectivev3
index 149ac1691..182001e48 100755
--- a/plugins/MacVST/Surge/Surge.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Surge/Surge.xcodeproj/christopherjohnson.perspectivev3
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 456 253 810 487 0 0 1440 878
+ 340 146 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +360,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 456 253 810 487 0 0 1440 878
+ 340 146 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -441,7 +439,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 456 253 810 487 0 0 1440 878
+ 340 146 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -469,11 +467,11 @@
TableOfContents
- 8B7940CE21F60B33006E9731
+ 8BDCA7E227CEC98F00A07B67
1CA23ED40692098700951B8B
- 8B7940CF21F60B33006E9731
+ 8BDCA7E327CEC98F00A07B67
8B0237581D42B1C400E1E8C8
- 8B7940D021F60B33006E9731
+ 8BDCA7E427CEC98F00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +624,7 @@
StatusbarIsVisible
TimeStamp
- 569772851.163517
+ 667863439.58053303
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,11 +641,11 @@
5
WindowOrderList
- 8B7940D121F60B33006E9731
- /Users/christopherjohnson/Desktop/MacVST/Surge/Surge.xcodeproj
+ 8BDCA7E527CEC98F00A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Surge/Surge.xcodeproj
WindowString
- 456 253 810 487 0 0 1440 878
+ 340 146 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Surge/source/SurgeProc.cpp b/plugins/MacVST/Surge/source/SurgeProc.cpp
index b77e5a6e1..145e5237c 100755
--- a/plugins/MacVST/Surge/source/SurgeProc.cpp
+++ b/plugins/MacVST/Surge/source/SurgeProc.cpp
@@ -75,11 +75,11 @@ void Surge::processReplacing(float **inputs, float **outputs, VstInt32 sampleFra
inputSampleL *= chaseMax;
inputSampleL = drySampleL - (inputSampleL * intensity);
- inputSampleL = (drySampleL * dry) + (inputSampleL * wet);
+ inputSampleL = (drySampleL * (1.0-wet)) + (inputSampleL * wet);
inputSampleR *= chaseMax;
inputSampleR = drySampleR - (inputSampleR * intensity);
- inputSampleR = (drySampleR * dry) + (inputSampleR * wet);
+ inputSampleR = (drySampleR * (1.0-wet)) + (inputSampleR * wet);
//begin 32 bit stereo floating point dither
int expon; frexpf((float)inputSampleL, &expon);
@@ -167,11 +167,11 @@ void Surge::processDoubleReplacing(double **inputs, double **outputs, VstInt32 s
inputSampleL *= chaseMax;
inputSampleL = drySampleL - (inputSampleL * intensity);
- inputSampleL = (drySampleL * dry) + (inputSampleL * wet);
+ inputSampleL = (drySampleL * (1.0-wet)) + (inputSampleL * wet);
inputSampleR *= chaseMax;
inputSampleR = drySampleR - (inputSampleR * intensity);
- inputSampleR = (drySampleR * dry) + (inputSampleR * wet);
+ inputSampleR = (drySampleR * (1.0-wet)) + (inputSampleR * wet);
//begin 64 bit stereo floating point dither
//int expon; frexp((double)inputSampleL, &expon);
diff --git a/plugins/MacVST/SurgeTide/SurgeTide.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/SurgeTide/SurgeTide.xcodeproj/christopherjohnson.pbxuser
index 4f6f5f083..2cbd84407 100755
--- a/plugins/MacVST/SurgeTide/SurgeTide.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/SurgeTide/SurgeTide.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569772872;
- PBXWorkspaceStateSaveDate = 569772872;
+ PBXPerProjectTemplateStateSaveDate = 667863445;
+ PBXWorkspaceStateSaveDate = 667863445;
};
perUserProjectItems = {
8B7940F021F60B71006E9731 /* PBXTextBookmark */ = 8B7940F021F60B71006E9731 /* PBXTextBookmark */;
- 8B9D7EA31F7FB6EC007AB60F /* PBXTextBookmark */ = 8B9D7EA31F7FB6EC007AB60F /* PBXTextBookmark */;
+ 8BDCA7F927CEC9A800A07B67 /* PBXTextBookmark */ = 8BDCA7F927CEC9A800A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -78,7 +78,7 @@
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {747, 19877}}";
+ sepNavIntBoundsRect = "{{0, 0}, {957, 27522}}";
sepNavSelRange = "{10616, 0}";
sepNavVisRange = "{0, 0}";
sepNavWindowFrame = "{{15, 42}, {895, 831}}";
@@ -86,10 +86,10 @@
};
24D8286F09A914000093AEF8 /* SurgeTideProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {848, 3484}}";
- sepNavSelRange = "{5463, 1892}";
- sepNavVisRange = "{940, 2300}";
- sepNavWindowFrame = "{{398, 39}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {885, 3240}}";
+ sepNavSelRange = "{4357, 0}";
+ sepNavVisRange = "{3929, 1039}";
+ sepNavWindowFrame = "{{385, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -116,7 +116,7 @@
vrLen = 0;
vrLoc = 0;
};
- 8B9D7EA31F7FB6EC007AB60F /* PBXTextBookmark */ = {
+ 8BDCA7F927CEC9A800A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
name = "audioeffectx.cpp: 307";
diff --git a/plugins/MacVST/SurgeTide/SurgeTide.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/SurgeTide/SurgeTide.xcodeproj/christopherjohnson.perspectivev3
index ad29a23a1..855844f55 100755
--- a/plugins/MacVST/SurgeTide/SurgeTide.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/SurgeTide/SurgeTide.xcodeproj/christopherjohnson.perspectivev3
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 384 385 810 487 0 0 1440 878
+ 286 208 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +349,10 @@
_historyCapacity
0
bookmark
- 8B7940F021F60B71006E9731
+ 8BDCA7F927CEC9A800A07B67
history
- 8B9D7EA31F7FB6EC007AB60F
+ 8B7940F021F60B71006E9731
SplitCount
@@ -370,7 +368,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 384 385 810 487 0 0 1440 878
+ 286 208 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -449,7 +447,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 384 385 810 487 0 0 1440 878
+ 286 208 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -477,11 +475,11 @@
TableOfContents
- 8B7940F121F60B71006E9731
+ 8BDCA7FA27CEC9A800A07B67
1CA23ED40692098700951B8B
- 8B7940F221F60B71006E9731
+ 8BDCA7FB27CEC9A800A07B67
8B0237581D42B1C400E1E8C8
- 8B7940F321F60B71006E9731
+ 8BDCA7FC27CEC9A800A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +632,7 @@
StatusbarIsVisible
TimeStamp
- 569772913.08327401
+ 667863464.75290298
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,11 +649,11 @@
5
WindowOrderList
- 8B7940F421F60B71006E9731
- /Users/christopherjohnson/Desktop/MacVST/SurgeTide/SurgeTide.xcodeproj
+ 8BDCA7FD27CEC9A800A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/SurgeTide/SurgeTide.xcodeproj
WindowString
- 384 385 810 487 0 0 1440 878
+ 286 208 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/SurgeTide/source/SurgeTideProc.cpp b/plugins/MacVST/SurgeTide/source/SurgeTideProc.cpp
index e2331485a..0db02fc7c 100755
--- a/plugins/MacVST/SurgeTide/source/SurgeTideProc.cpp
+++ b/plugins/MacVST/SurgeTide/source/SurgeTideProc.cpp
@@ -65,11 +65,11 @@ void SurgeTide::processReplacing(float **inputs, float **outputs, VstInt32 sampl
inputSampleL *= chaseC;
inputSampleL = drySampleL - (inputSampleL * intensity);
- inputSampleL = (drySampleL * dry) + (inputSampleL * wet);
+ inputSampleL = (drySampleL * (1.0-wet)) + (inputSampleL * wet);
inputSampleR *= chaseC;
inputSampleR = drySampleR - (inputSampleR * intensity);
- inputSampleR = (drySampleR * dry) + (inputSampleR * wet);
+ inputSampleR = (drySampleR * (1.0-wet)) + (inputSampleR * wet);
//begin 32 bit stereo floating point dither
int expon; frexpf((float)inputSampleL, &expon);
@@ -148,11 +148,11 @@ void SurgeTide::processDoubleReplacing(double **inputs, double **outputs, VstInt
inputSampleL *= chaseC;
inputSampleL = drySampleL - (inputSampleL * intensity);
- inputSampleL = (drySampleL * dry) + (inputSampleL * wet);
+ inputSampleL = (drySampleL * (1.0-wet)) + (inputSampleL * wet);
inputSampleR *= chaseC;
inputSampleR = drySampleR - (inputSampleR * intensity);
- inputSampleR = (drySampleR * dry) + (inputSampleR * wet);
+ inputSampleR = (drySampleR * (1.0-wet)) + (inputSampleR * wet);
//begin 64 bit stereo floating point dither
//int expon; frexp((double)inputSampleL, &expon);
diff --git a/plugins/MacVST/Swell/Swell.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Swell/Swell.xcodeproj/christopherjohnson.pbxuser
index 6dbf17894..a7d183953 100755
--- a/plugins/MacVST/Swell/Swell.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Swell/Swell.xcodeproj/christopherjohnson.pbxuser
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569772934;
- PBXWorkspaceStateSaveDate = 569772934;
+ PBXPerProjectTemplateStateSaveDate = 667863469;
+ PBXWorkspaceStateSaveDate = 667863469;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
diff --git a/plugins/MacVST/Swell/Swell.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Swell/Swell.xcodeproj/christopherjohnson.perspectivev3
index 4bb2aa5b2..cbb1f573b 100755
--- a/plugins/MacVST/Swell/Swell.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Swell/Swell.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 21 352 810 487 0 0 1440 878
+ 16 193 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 21 352 810 487 0 0 1440 878
+ 16 193 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 21 352 810 487 0 0 1440 878
+ 16 193 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B79410721F60B8F006E9731
+ 8BDCA81827CEC9B200A07B67
1CA23ED40692098700951B8B
- 8B79410821F60B8F006E9731
+ 8BDCA81927CEC9B200A07B67
8B0237581D42B1C400E1E8C8
- 8B79410921F60B8F006E9731
+ 8BDCA81A27CEC9B200A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 569772943.08427894
+ 667863474.25829697
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +643,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/Swell/Swell.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Swell/Swell.xcodeproj
WindowString
- 21 352 810 487 0 0 1440 878
+ 16 193 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/TPDFDither/TPDFDither.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/TPDFDither/TPDFDither.xcodeproj/christopherjohnson.pbxuser
index cc84b8bc8..58bd3c6a1 100755
--- a/plugins/MacVST/TPDFDither/TPDFDither.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/TPDFDither/TPDFDither.xcodeproj/christopherjohnson.pbxuser
@@ -49,13 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 658441596;
- PBXWorkspaceStateSaveDate = 658441596;
+ PBXPerProjectTemplateStateSaveDate = 667863814;
+ PBXWorkspaceStateSaveDate = 667863814;
};
perUserProjectItems = {
- 8B18B585273C9BEA00B10877 /* PBXTextBookmark */ = 8B18B585273C9BEA00B10877 /* PBXTextBookmark */;
8B61C2FB273F086D00F23585 /* PBXTextBookmark */ = 8B61C2FB273F086D00F23585 /* PBXTextBookmark */;
- 8B61C2FC273F086D00F23585 /* PBXTextBookmark */ = 8B61C2FC273F086D00F23585 /* PBXTextBookmark */;
+ 8BDCA9AC27CECB0900A07B67 /* PBXTextBookmark */ = 8BDCA9AC27CECB0900A07B67 /* PBXTextBookmark */;
+ 8BDCA9BA27CECB4100A07B67 /* PBXTextBookmark */ = 8BDCA9BA27CECB4100A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -87,10 +87,10 @@
};
24D8286F09A914000093AEF8 /* TPDFDitherProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {822, 2214}}";
- sepNavSelRange = "{3245, 0}";
- sepNavVisRange = "{3080, 139}";
- sepNavWindowFrame = "{{545, 57}, {895, 821}}";
+ sepNavIntBoundsRect = "{{0, 0}, {606, 2484}}";
+ sepNavSelRange = "{3491, 0}";
+ sepNavVisRange = "{3150, 177}";
+ sepNavWindowFrame = "{{385, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -107,16 +107,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B18B585273C9BEA00B10877 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* TPDFDitherProc.cpp */;
- name = "TPDFDitherProc.cpp: 114";
- rLen = 0;
- rLoc = 3245;
- rType = 0;
- vrLen = 170;
- vrLoc = 3080;
- };
8B61C2FB273F086D00F23585 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 245463B80991757100464AD3 /* TPDFDither.h */;
@@ -127,15 +117,25 @@
vrLen = 48;
vrLoc = 2422;
};
- 8B61C2FC273F086D00F23585 /* PBXTextBookmark */ = {
+ 8BDCA9AC27CECB0900A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* TPDFDitherProc.cpp */;
- name = "TPDFDitherProc.cpp: 114";
+ name = "TPDFDitherProc.cpp: 113";
rLen = 0;
- rLoc = 3245;
+ rLoc = 3491;
rType = 0;
- vrLen = 139;
- vrLoc = 3080;
+ vrLen = 135;
+ vrLoc = 3097;
+ };
+ 8BDCA9BA27CECB4100A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* TPDFDitherProc.cpp */;
+ name = "TPDFDitherProc.cpp: 115";
+ rLen = 0;
+ rLoc = 3491;
+ rType = 0;
+ vrLen = 177;
+ vrLoc = 3150;
};
8D01CCC60486CAD60068D4B7 /* TPDFDither */ = {
activeExec = 0;
diff --git a/plugins/MacVST/TPDFDither/TPDFDither.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/TPDFDither/TPDFDither.xcodeproj/christopherjohnson.perspectivev3
index b70b515f2..fb877f1d5 100755
--- a/plugins/MacVST/TPDFDither/TPDFDither.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/TPDFDither/TPDFDither.xcodeproj/christopherjohnson.perspectivev3
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 625 177 810 487 0 0 1440 878
+ 466 110 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,11 +349,11 @@
_historyCapacity
0
bookmark
- 8B61C2FC273F086D00F23585
+ 8BDCA9BA27CECB4100A07B67
history
8B61C2FB273F086D00F23585
- 8B18B585273C9BEA00B10877
+ 8BDCA9AC27CECB0900A07B67
SplitCount
@@ -369,18 +367,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 117}}
+ {{0, 0}, {603, 102}}
RubberWindowFrame
- 625 177 810 487 0 0 1440 878
+ 466 110 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 117pt
+ 102pt
Proportion
- 324pt
+ 339pt
Tabs
@@ -394,9 +392,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
- RubberWindowFrame
- 625 177 810 487 0 0 1440 878
+ {{10, 27}, {603, 312}}
Module
XCDetailModule
@@ -450,7 +446,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 363}}
+ {{10, 27}, {603, 312}}
+ RubberWindowFrame
+ 466 110 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -478,11 +476,11 @@
TableOfContents
- 8B61C2FD273F086D00F23585
+ 8BDCA9BB27CECB4100A07B67
1CA23ED40692098700951B8B
- 8B61C2FE273F086D00F23585
+ 8BDCA9BC27CECB4100A07B67
8B0237581D42B1C400E1E8C8
- 8B61C2FF273F086D00F23585
+ 8BDCA9BD27CECB4100A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -635,7 +633,7 @@
StatusbarIsVisible
TimeStamp
- 658442349.24065602
+ 667863873.64354503
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -652,10 +650,11 @@
5
WindowOrderList
+ 8BDCA9BE27CECB4100A07B67
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/TPDFDither/TPDFDither.xcodeproj
WindowString
- 625 177 810 487 0 0 1440 878
+ 466 110 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/TPDFDither/source/TPDFDitherProc.cpp b/plugins/MacVST/TPDFDither/source/TPDFDitherProc.cpp
index f86345088..b5b7f15bc 100755
--- a/plugins/MacVST/TPDFDither/source/TPDFDitherProc.cpp
+++ b/plugins/MacVST/TPDFDither/source/TPDFDitherProc.cpp
@@ -30,10 +30,10 @@ void TPDFDither::processReplacing(float **inputs, float **outputs, VstInt32 samp
{
double inputSampleL = *in1;
double inputSampleR = *in2;
- if (fabs(inputSampleL)<1.18e-37) inputSampleL = fpd * 1.18e-37;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
- if (fabs(inputSampleR)<1.18e-37) inputSampleR = fpd * 1.18e-37;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
+ if (fabs(inputSampleL)<1.18e-23) inputSampleL = fpdL * 1.18e-17;
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ if (fabs(inputSampleR)<1.18e-23) inputSampleR = fpdR * 1.18e-17;
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
inputSampleL *= scaleFactor;
inputSampleR *= scaleFactor;
@@ -42,11 +42,12 @@ void TPDFDither::processReplacing(float **inputs, float **outputs, VstInt32 samp
inputSampleL -= 1.0;
inputSampleR -= 1.0;
- inputSampleL += (double(fpd)/UINT32_MAX);
- inputSampleR += (double(fpd)/UINT32_MAX);
-
- inputSampleL += (double(fpd)/UINT32_MAX);
- inputSampleR += (double(fpd)/UINT32_MAX);
+ inputSampleL += (double(fpdL)/UINT32_MAX);
+ inputSampleR += (double(fpdR)/UINT32_MAX);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ inputSampleL += (double(fpdL)/UINT32_MAX);
+ inputSampleR += (double(fpdR)/UINT32_MAX);
inputSampleL = floor(inputSampleL);
inputSampleR = floor(inputSampleR);
@@ -92,10 +93,10 @@ void TPDFDither::processDoubleReplacing(double **inputs, double **outputs, VstIn
{
double inputSampleL = *in1;
double inputSampleR = *in2;
- if (fabs(inputSampleL)<1.18e-43) inputSampleL = fpd * 1.18e-43;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
- if (fabs(inputSampleR)<1.18e-43) inputSampleR = fpd * 1.18e-43;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
+ if (fabs(inputSampleL)<1.18e-23) inputSampleL = fpdL * 1.18e-17;
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ if (fabs(inputSampleR)<1.18e-23) inputSampleR = fpdR * 1.18e-17;
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
inputSampleL *= scaleFactor;
inputSampleR *= scaleFactor;
@@ -104,11 +105,12 @@ void TPDFDither::processDoubleReplacing(double **inputs, double **outputs, VstIn
inputSampleL -= 1.0;
inputSampleR -= 1.0;
- inputSampleL += (double(fpd)/UINT32_MAX);
- inputSampleR += (double(fpd)/UINT32_MAX);
-
- inputSampleL += (double(fpd)/UINT32_MAX);
- inputSampleR += (double(fpd)/UINT32_MAX);
+ inputSampleL += (double(fpdL)/UINT32_MAX);
+ inputSampleR += (double(fpdR)/UINT32_MAX);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ inputSampleL += (double(fpdL)/UINT32_MAX);
+ inputSampleR += (double(fpdR)/UINT32_MAX);
inputSampleL = floor(inputSampleL);
inputSampleR = floor(inputSampleR);
diff --git a/plugins/MacVST/TPDFWide/TPDFWide.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/TPDFWide/TPDFWide.xcodeproj/christopherjohnson.pbxuser
index 4ff672c29..d903753c7 100644
--- a/plugins/MacVST/TPDFWide/TPDFWide.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/TPDFWide/TPDFWide.xcodeproj/christopherjohnson.pbxuser
@@ -49,8 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 658442419;
- PBXWorkspaceStateSaveDate = 658442419;
+ PBXPerProjectTemplateStateSaveDate = 667863879;
+ PBXWorkspaceStateSaveDate = 667863879;
+ };
+ perUserProjectItems = {
+ 8BDCA9DC27CECBE300A07B67 /* XCBuildMessageTextBookmark */ = 8BDCA9DC27CECBE300A07B67 /* XCBuildMessageTextBookmark */;
+ 8BDCA9DD27CECBE300A07B67 /* PBXTextBookmark */ = 8BDCA9DD27CECBE300A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -82,10 +86,10 @@
};
24D8286F09A914000093AEF8 /* TPDFWideProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {876, 2934}}";
- sepNavSelRange = "{4211, 0}";
- sepNavVisRange = "{3040, 1143}";
- sepNavWindowFrame = "{{31, 42}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {660, 3294}}";
+ sepNavSelRange = "{1178, 0}";
+ sepNavVisRange = "{1081, 238}";
+ sepNavWindowFrame = "{{244, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -102,6 +106,25 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
+ 8BDCA9DC27CECBE300A07B67 /* XCBuildMessageTextBookmark */ = {
+ isa = PBXTextBookmark;
+ comments = "'fpd' was not declared in this scope";
+ fRef = 24D8286F09A914000093AEF8 /* TPDFWideProc.cpp */;
+ fallbackIsa = XCBuildMessageTextBookmark;
+ rLen = 1;
+ rLoc = 41;
+ rType = 1;
+ };
+ 8BDCA9DD27CECBE300A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* TPDFWideProc.cpp */;
+ name = "TPDFWideProc.cpp: 41";
+ rLen = 0;
+ rLoc = 1178;
+ rType = 0;
+ vrLen = 238;
+ vrLoc = 1081;
+ };
8D01CCC60486CAD60068D4B7 /* TPDFWide */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/TPDFWide/TPDFWide.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/TPDFWide/TPDFWide.xcodeproj/christopherjohnson.perspectivev3
index af62298d1..c6ae001cf 100644
--- a/plugins/MacVST/TPDFWide/TPDFWide.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/TPDFWide/TPDFWide.xcodeproj/christopherjohnson.perspectivev3
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 17 358 810 487 0 0 1440 878
+ 309 190 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -339,7 +337,7 @@
PBXProjectModuleGUID
8B0237581D42B1C400E1E8C8
PBXProjectModuleLabel
- Gain.h
+ TPDFWideProc.cpp
PBXSplitModuleInNavigatorKey
Split0
@@ -347,7 +345,15 @@
PBXProjectModuleGUID
8B0237591D42B1C400E1E8C8
PBXProjectModuleLabel
- Gain.h
+ TPDFWideProc.cpp
+ _historyCapacity
+ 0
+ bookmark
+ 8BDCA9DD27CECBE300A07B67
+ history
+
+ 8BDCA9DC27CECBE300A07B67
+
SplitCount
1
@@ -360,18 +366,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 0}}
+ {{0, 0}, {603, 132}}
RubberWindowFrame
- 17 358 810 487 0 0 1440 878
+ 309 190 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 0pt
+ 132pt
Proportion
- 441pt
+ 309pt
Tabs
@@ -386,8 +392,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 17 358 810 487 0 0 1440 878
Module
XCDetailModule
@@ -442,6 +446,8 @@
Frame
{{10, 27}, {603, 282}}
+ RubberWindowFrame
+ 309 190 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -469,11 +475,11 @@
TableOfContents
- 8B61C35E273F091200F23585
+ 8BDCA9DE27CECBE300A07B67
1CA23ED40692098700951B8B
- 8B61C35F273F091200F23585
+ 8BDCA9DF27CECBE300A07B67
8B0237581D42B1C400E1E8C8
- 8B61C360273F091200F23585
+ 8BDCA9E027CECBE300A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +632,7 @@
StatusbarIsVisible
TimeStamp
- 658442514.55583894
+ 667864035.15952396
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,11 +649,11 @@
5
WindowOrderList
- 8B61C361273F091200F23585
- /Users/christopherjohnson/Desktop/TPDFWide/TPDFWide.xcodeproj
+ 8BDCA9E127CECBE300A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/TPDFWide/TPDFWide.xcodeproj
WindowString
- 17 358 810 487 0 0 1440 878
+ 309 190 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/TPDFWide/source/TPDFWideProc.cpp b/plugins/MacVST/TPDFWide/source/TPDFWideProc.cpp
index 2b9232bf0..150b4f39c 100755
--- a/plugins/MacVST/TPDFWide/source/TPDFWideProc.cpp
+++ b/plugins/MacVST/TPDFWide/source/TPDFWideProc.cpp
@@ -31,40 +31,43 @@ void TPDFWide::processReplacing(float **inputs, float **outputs, VstInt32 sample
double inputSampleL = *in1;
double inputSampleR = *in2;
if (fabs(inputSampleL)<1.18e-23) inputSampleL = fpdL * 1.18e-17;
- fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
if (fabs(inputSampleR)<1.18e-23) inputSampleR = fpdR * 1.18e-17;
- fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
inputSampleL *= scaleFactor;
inputSampleR *= scaleFactor;
//0-1 is now one bit, now we dither
double ditherL = -1.0;
- ditherL += (double(fpd)/UINT32_MAX);
- ditherL += (double(fpd)/UINT32_MAX);
+ ditherL += (double(fpdL)/UINT32_MAX);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ ditherL += (double(fpdL)/UINT32_MAX);
//TPDF: two 0-1 random noises
double ditherR = -1.0;
- ditherR += (double(fpd)/UINT32_MAX);
- ditherR += (double(fpd)/UINT32_MAX);
+ ditherR += (double(fpdR)/UINT32_MAX);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ ditherR += (double(fpdR)/UINT32_MAX);
//TPDF: two 0-1 random noises
if (fabs(ditherL-ditherR) < 0.5) {
ditherL = -1.0;
- ditherL += (double(fpd)/UINT32_MAX);
- ditherL += (double(fpd)/UINT32_MAX);
+ ditherL += (double(fpdL)/UINT32_MAX);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ ditherL += (double(fpdL)/UINT32_MAX);
}
if (fabs(ditherL-ditherR) < 0.5) {
ditherR = -1.0;
- ditherR += (double(fpd)/UINT32_MAX);
- ditherR += (double(fpd)/UINT32_MAX);
+ ditherR += (double(fpdR)/UINT32_MAX);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ ditherR += (double(fpdR)/UINT32_MAX);
}
if (fabs(ditherL-ditherR) < 0.5) {
ditherL = -1.0;
- ditherL += (double(fpd)/UINT32_MAX);
- ditherL += (double(fpd)/UINT32_MAX);
+ ditherL += (double(fpdL)/UINT32_MAX);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ ditherL += (double(fpdL)/UINT32_MAX);
}
inputSampleL = floor(inputSampleL+ditherL);
@@ -111,40 +114,43 @@ void TPDFWide::processDoubleReplacing(double **inputs, double **outputs, VstInt3
double inputSampleL = *in1;
double inputSampleR = *in2;
if (fabs(inputSampleL)<1.18e-23) inputSampleL = fpdL * 1.18e-17;
- fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
if (fabs(inputSampleR)<1.18e-23) inputSampleR = fpdR * 1.18e-17;
- fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
inputSampleL *= scaleFactor;
inputSampleR *= scaleFactor;
//0-1 is now one bit, now we dither
double ditherL = -1.0;
- ditherL += (double(fpd)/UINT32_MAX);
- ditherL += (double(fpd)/UINT32_MAX);
+ ditherL += (double(fpdL)/UINT32_MAX);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ ditherL += (double(fpdL)/UINT32_MAX);
//TPDF: two 0-1 random noises
double ditherR = -1.0;
- ditherR += (double(fpd)/UINT32_MAX);
- ditherR += (double(fpd)/UINT32_MAX);
+ ditherR += (double(fpdR)/UINT32_MAX);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ ditherR += (double(fpdR)/UINT32_MAX);
//TPDF: two 0-1 random noises
if (fabs(ditherL-ditherR) < 0.5) {
ditherL = -1.0;
- ditherL += (double(fpd)/UINT32_MAX);
- ditherL += (double(fpd)/UINT32_MAX);
+ ditherL += (double(fpdL)/UINT32_MAX);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ ditherL += (double(fpdL)/UINT32_MAX);
}
if (fabs(ditherL-ditherR) < 0.5) {
ditherR = -1.0;
- ditherR += (double(fpd)/UINT32_MAX);
- ditherR += (double(fpd)/UINT32_MAX);
+ ditherR += (double(fpdR)/UINT32_MAX);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ ditherR += (double(fpdR)/UINT32_MAX);
}
if (fabs(ditherL-ditherR) < 0.5) {
ditherL = -1.0;
- ditherL += (double(fpd)/UINT32_MAX);
- ditherL += (double(fpd)/UINT32_MAX);
+ ditherL += (double(fpdL)/UINT32_MAX);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ ditherL += (double(fpdL)/UINT32_MAX);
}
inputSampleL = floor(inputSampleL+ditherL);
diff --git a/plugins/MacVST/Tape/Tape.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Tape/Tape.xcodeproj/christopherjohnson.pbxuser
index 93aa0c11e..26decd02c 100755
--- a/plugins/MacVST/Tape/Tape.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Tape/Tape.xcodeproj/christopherjohnson.pbxuser
@@ -49,15 +49,15 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 631581244;
- PBXWorkspaceStateSaveDate = 631581244;
+ PBXPerProjectTemplateStateSaveDate = 667863479;
+ PBXWorkspaceStateSaveDate = 667863479;
};
perUserProjectItems = {
8B043CDA23DCE7AD00DF857C /* PBXTextBookmark */ = 8B043CDA23DCE7AD00DF857C /* PBXTextBookmark */;
8B043D1923DCFF6200DF857C /* PBXTextBookmark */ = 8B043D1923DCFF6200DF857C /* PBXTextBookmark */;
8B2E7BD425A52A4800485B86 /* PBXTextBookmark */ = 8B2E7BD425A52A4800485B86 /* PBXTextBookmark */;
- 8B7A75F32445042300014B55 /* PBXTextBookmark */ = 8B7A75F32445042300014B55 /* PBXTextBookmark */;
8BA0D9C023E37DB300721922 /* PBXTextBookmark */ = 8BA0D9C023E37DB300721922 /* PBXTextBookmark */;
+ 8BDCA83527CEC9BB00A07B67 /* PBXTextBookmark */ = 8BDCA83527CEC9BB00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -89,9 +89,9 @@
};
24D8286F09A914000093AEF8 /* TapeProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {554, 10476}}";
+ sepNavIntBoundsRect = "{{0, 0}, {606, 10422}}";
sepNavSelRange = "{23699, 0}";
- sepNavVisRange = "{23534, 117}";
+ sepNavVisRange = "{23618, 49}";
sepNavWindowFrame = "{{545, 57}, {895, 821}}";
};
};
@@ -139,16 +139,6 @@
vrLen = 117;
vrLoc = 23534;
};
- 8B7A75F32445042300014B55 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* TapeProc.cpp */;
- name = "TapeProc.cpp: 555";
- rLen = 0;
- rLoc = 23699;
- rType = 0;
- vrLen = 168;
- vrLoc = 23459;
- };
8BA0D9C023E37DB300721922 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
@@ -159,6 +149,16 @@
vrLen = 280;
vrLoc = 10459;
};
+ 8BDCA83527CEC9BB00A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* TapeProc.cpp */;
+ name = "TapeProc.cpp: 556";
+ rLen = 0;
+ rLoc = 23699;
+ rType = 0;
+ vrLen = 49;
+ vrLoc = 23618;
+ };
8D01CCC60486CAD60068D4B7 /* Tape */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/Tape/Tape.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Tape/Tape.xcodeproj/christopherjohnson.perspectivev3
index abf149e63..cc3e00df8 100755
--- a/plugins/MacVST/Tape/Tape.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Tape/Tape.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 530 344 810 487 0 0 1440 878
+ 395 189 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,13 +351,13 @@
_historyCapacity
0
bookmark
- 8B2E7BD425A52A4800485B86
+ 8BDCA83527CEC9BB00A07B67
history
8B043CDA23DCE7AD00DF857C
8B043D1923DCFF6200DF857C
8BA0D9C023E37DB300721922
- 8B7A75F32445042300014B55
+ 8B2E7BD425A52A4800485B86
SplitCount
@@ -371,18 +371,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 69}}
+ {{0, 0}, {603, 51}}
RubberWindowFrame
- 530 344 810 487 0 0 1440 878
+ 395 189 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 69pt
+ 51pt
Proportion
- 372pt
+ 390pt
Tabs
@@ -396,9 +396,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 345}}
+ {{10, 27}, {603, 363}}
RubberWindowFrame
- 530 344 810 487 0 0 1440 878
+ 395 189 810 487 0 0 1280 698
Module
XCDetailModule
@@ -480,11 +480,11 @@
TableOfContents
- 8B2E7BD525A52A4800485B86
+ 8BDCA83627CEC9BB00A07B67
1CA23ED40692098700951B8B
- 8B2E7BD625A52A4800485B86
+ 8BDCA83727CEC9BB00A07B67
8B0237581D42B1C400E1E8C8
- 8B2E7BD725A52A4800485B86
+ 8BDCA83827CEC9BB00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -637,7 +637,7 @@
StatusbarIsVisible
TimeStamp
- 631581256.08410501
+ 667863483.92805004
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -654,10 +654,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/Plugins/MacVST/Tape/Tape.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Tape/Tape.xcodeproj
WindowString
- 530 344 810 487 0 0 1440 878
+ 395 189 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/TapeDelay/TapeDelay.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/TapeDelay/TapeDelay.xcodeproj/christopherjohnson.pbxuser
index c3bc4aaf2..1573860dc 100755
--- a/plugins/MacVST/TapeDelay/TapeDelay.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/TapeDelay/TapeDelay.xcodeproj/christopherjohnson.pbxuser
@@ -51,12 +51,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569772961;
- PBXWorkspaceStateSaveDate = 569772961;
+ PBXPerProjectTemplateStateSaveDate = 667863488;
+ PBXWorkspaceStateSaveDate = 667863488;
};
perUserProjectItems = {
8B79412621F60BA9006E9731 /* PBXTextBookmark */ = 8B79412621F60BA9006E9731 /* PBXTextBookmark */;
- 8BBB337021C45BB700825986 /* PBXTextBookmark */ = 8BBB337021C45BB700825986 /* PBXTextBookmark */;
+ 8BDCA85327CEC9C800A07B67 /* PBXTextBookmark */ = 8BDCA85327CEC9C800A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -64,9 +64,9 @@
};
2407DEB6089929BA00EB68BF /* TapeDelay.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {789, 2054}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1011, 2826}}";
sepNavSelRange = "{5754, 0}";
- sepNavVisRange = "{4902, 355}";
+ sepNavVisRange = "{4986, 274}";
sepNavWindowFrame = "{{561, 47}, {895, 831}}";
};
};
@@ -118,15 +118,15 @@
vrLen = 355;
vrLoc = 4902;
};
- 8BBB337021C45BB700825986 /* PBXTextBookmark */ = {
+ 8BDCA85327CEC9C800A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 2407DEB6089929BA00EB68BF /* TapeDelay.cpp */;
- name = "TapeDelay.cpp: 147";
+ name = "TapeDelay.cpp: 146";
rLen = 0;
rLoc = 5754;
rType = 0;
- vrLen = 428;
- vrLoc = 4829;
+ vrLen = 274;
+ vrLoc = 4986;
};
8D01CCC60486CAD60068D4B7 /* TapeDelay */ = {
activeExec = 0;
diff --git a/plugins/MacVST/TapeDelay/TapeDelay.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/TapeDelay/TapeDelay.xcodeproj/christopherjohnson.perspectivev3
index 98c0fc3f7..b5044150f 100755
--- a/plugins/MacVST/TapeDelay/TapeDelay.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/TapeDelay/TapeDelay.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 574 298 810 487 0 0 1440 878
+ 428 167 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B79412621F60BA9006E9731
+ 8BDCA85327CEC9C800A07B67
history
- 8BBB337021C45BB700825986
+ 8B79412621F60BA9006E9731
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 86}}
+ {{0, 0}, {603, 69}}
RubberWindowFrame
- 574 298 810 487 0 0 1440 878
+ 428 167 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 86pt
+ 69pt
Proportion
- 355pt
+ 372pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 328}}
+ {{10, 27}, {603, 345}}
RubberWindowFrame
- 574 298 810 487 0 0 1440 878
+ 428 167 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B79412721F60BA9006E9731
+ 8BDCA85427CEC9C800A07B67
1CA23ED40692098700951B8B
- 8B79412821F60BA9006E9731
+ 8BDCA85527CEC9C800A07B67
8B0237581D42B1C400E1E8C8
- 8B79412921F60BA9006E9731
+ 8BDCA85627CEC9C800A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -654,7 +654,7 @@
StatusbarIsVisible
TimeStamp
- 569772969.46289504
+ 667863496.43149304
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -671,10 +671,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/TapeDelay/TapeDelay.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/TapeDelay/TapeDelay.xcodeproj
WindowString
- 574 298 810 487 0 0 1440 878
+ 428 167 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/TapeDelay2/TapeDelay2.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/TapeDelay2/TapeDelay2.xcodeproj/christopherjohnson.pbxuser
index c46099f00..cf223f34c 100644
--- a/plugins/MacVST/TapeDelay2/TapeDelay2.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/TapeDelay2/TapeDelay2.xcodeproj/christopherjohnson.pbxuser
@@ -49,11 +49,11 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 649655664;
- PBXWorkspaceStateSaveDate = 649655664;
+ PBXPerProjectTemplateStateSaveDate = 667863501;
+ PBXWorkspaceStateSaveDate = 667863501;
};
perUserProjectItems = {
- 8BFE9FF226B8F76F005C823D /* PBXTextBookmark */ = 8BFE9FF226B8F76F005C823D /* PBXTextBookmark */;
+ 8BDCA87127CEC9D100A07B67 /* PBXTextBookmark */ = 8BDCA87127CEC9D100A07B67 /* PBXTextBookmark */;
8BFE9FF326B8F76F005C823D /* PBXTextBookmark */ = 8BFE9FF326B8F76F005C823D /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
@@ -70,9 +70,9 @@
};
245463B80991757100464AD3 /* TapeDelay2.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1101, 1710}}";
+ sepNavIntBoundsRect = "{{0, 0}, {554, 1800}}";
sepNavSelRange = "{2621, 0}";
- sepNavVisRange = "{2524, 138}";
+ sepNavVisRange = "{2588, 80}";
sepNavWindowFrame = "{{7, 46}, {895, 831}}";
};
};
@@ -106,15 +106,15 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8BFE9FF226B8F76F005C823D /* PBXTextBookmark */ = {
+ 8BDCA87127CEC9D100A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 245463B80991757100464AD3 /* TapeDelay2.h */;
- name = "TapeDelay2.h: 68";
+ name = "TapeDelay2.h: 69";
rLen = 0;
rLoc = 2621;
rType = 0;
- vrLen = 138;
- vrLoc = 2524;
+ vrLen = 80;
+ vrLoc = 2588;
};
8BFE9FF326B8F76F005C823D /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
diff --git a/plugins/MacVST/TapeDelay2/TapeDelay2.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/TapeDelay2/TapeDelay2.xcodeproj/christopherjohnson.perspectivev3
index 021a01e19..00bb32dd2 100644
--- a/plugins/MacVST/TapeDelay2/TapeDelay2.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/TapeDelay2/TapeDelay2.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 15 318 810 487 0 0 1440 878
+ 311 191 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8BFE9FF326B8F76F005C823D
+ 8BDCA87127CEC9D100A07B67
history
- 8BFE9FF226B8F76F005C823D
+ 8BFE9FF326B8F76F005C823D
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 132}}
+ {{0, 0}, {603, 117}}
RubberWindowFrame
- 15 318 810 487 0 0 1440 878
+ 311 191 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 132pt
+ 117pt
Proportion
- 309pt
+ 324pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 297}}
RubberWindowFrame
- 15 318 810 487 0 0 1440 878
+ 311 191 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8BFE9FF426B8F76F005C823D
+ 8BDCA87227CEC9D100A07B67
1CA23ED40692098700951B8B
- 8BFE9FF526B8F76F005C823D
+ 8BDCA87327CEC9D100A07B67
8B0237581D42B1C400E1E8C8
- 8BFE9FF626B8F76F005C823D
+ 8BDCA87427CEC9D100A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 649656175.73304796
+ 667863505.98287702
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,11 +651,10 @@
5
WindowOrderList
- 8BFE9FF726B8F76F005C823D
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/TapeDelay2/TapeDelay2.xcodeproj
WindowString
- 15 318 810 487 0 0 1440 878
+ 311 191 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/TapeDither/TapeDither.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/TapeDither/TapeDither.xcodeproj/christopherjohnson.pbxuser
index 1c309fe2f..b34e0703d 100755
--- a/plugins/MacVST/TapeDither/TapeDither.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/TapeDither/TapeDither.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 615684628;
- PBXWorkspaceStateSaveDate = 615684628;
+ PBXPerProjectTemplateStateSaveDate = 667863511;
+ PBXWorkspaceStateSaveDate = 667863511;
};
perUserProjectItems = {
- 8BB07FEE24B1619E000F894A /* PBXTextBookmark */ = 8BB07FEE24B1619E000F894A /* PBXTextBookmark */;
8BB9A6CB24B29A5700CD76A8 /* PBXTextBookmark */ = 8BB9A6CB24B29A5700CD76A8 /* PBXTextBookmark */;
+ 8BDCA89227CEC9EF00A07B67 /* PBXTextBookmark */ = 8BDCA89227CEC9EF00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -86,10 +86,10 @@
};
24D8286F09A914000093AEF8 /* TapeDitherProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {554, 1885}}";
+ sepNavIntBoundsRect = "{{0, 0}, {606, 2790}}";
sepNavSelRange = "{1230, 0}";
sepNavVisRange = "{0, 0}";
- sepNavWindowFrame = "{{16, 57}, {895, 821}}";
+ sepNavWindowFrame = "{{16, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -106,16 +106,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8BB07FEE24B1619E000F894A /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* TapeDitherProc.cpp */;
- name = "TapeDitherProc.cpp: 37";
- rLen = 0;
- rLoc = 1230;
- rType = 0;
- vrLen = 0;
- vrLoc = 0;
- };
8BB9A6CB24B29A5700CD76A8 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* TapeDitherProc.cpp */;
@@ -126,6 +116,16 @@
vrLen = 0;
vrLoc = 0;
};
+ 8BDCA89227CEC9EF00A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* TapeDitherProc.cpp */;
+ name = "TapeDitherProc.cpp: 38";
+ rLen = 0;
+ rLoc = 1230;
+ rType = 0;
+ vrLen = 0;
+ vrLoc = 0;
+ };
8D01CCC60486CAD60068D4B7 /* TapeDither */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/TapeDither/TapeDither.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/TapeDither/TapeDither.xcodeproj/christopherjohnson.perspectivev3
index 284321ec6..f6eddb14c 100755
--- a/plugins/MacVST/TapeDither/TapeDither.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/TapeDither/TapeDither.xcodeproj/christopherjohnson.perspectivev3
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 30 364 810 487 0 0 1440 878
+ 339 206 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +349,10 @@
_historyCapacity
0
bookmark
- 8BB9A6CB24B29A5700CD76A8
+ 8BDCA89227CEC9EF00A07B67
history
- 8BB07FEE24B1619E000F894A
+ 8BB9A6CB24B29A5700CD76A8
SplitCount
@@ -370,7 +368,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 30 364 810 487 0 0 1440 878
+ 339 206 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -394,8 +392,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 30 364 810 487 0 0 1440 878
Module
XCDetailModule
@@ -449,7 +445,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 339 206 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -477,11 +475,11 @@
TableOfContents
- 8BB9A6CC24B29A5700CD76A8
+ 8BDCA89327CEC9EF00A07B67
1CA23ED40692098700951B8B
- 8BB9A6CD24B29A5700CD76A8
+ 8BDCA89427CEC9EF00A07B67
8B0237581D42B1C400E1E8C8
- 8BB9A6CE24B29A5700CD76A8
+ 8BDCA89527CEC9EF00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +632,7 @@
StatusbarIsVisible
TimeStamp
- 615684695.58669496
+ 667863535.72675705
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,11 +649,11 @@
5
WindowOrderList
- 8BB9A6CF24B29A5700CD76A8
- /Users/christopherjohnson/Desktop/TapeDither/TapeDither.xcodeproj
+ 8BDCA89627CEC9EF00A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/TapeDither/TapeDither.xcodeproj
WindowString
- 30 364 810 487 0 0 1440 878
+ 339 206 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/TapeDither/source/TapeDitherProc.cpp b/plugins/MacVST/TapeDither/source/TapeDitherProc.cpp
index f67b259b1..f43301489 100755
--- a/plugins/MacVST/TapeDither/source/TapeDitherProc.cpp
+++ b/plugins/MacVST/TapeDither/source/TapeDitherProc.cpp
@@ -32,17 +32,17 @@ void TapeDither::processReplacing(float **inputs, float **outputs, VstInt32 samp
{
double inputSampleL = *in1;
double inputSampleR = *in2;
- if (fabs(inputSampleL)<1.18e-37) inputSampleL = fpd * 1.18e-37;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
- if (fabs(inputSampleR)<1.18e-37) inputSampleR = fpd * 1.18e-37;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
+ if (fabs(inputSampleL)<1.18e-23) inputSampleL = fpdL * 1.18e-17;
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ if (fabs(inputSampleR)<1.18e-23) inputSampleR = fpdR * 1.18e-17;
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
inputSampleL *= scaleFactor;
inputSampleR *= scaleFactor;
//0-1 is now one bit, now we dither
- currentDitherL = (double(fpd)/UINT32_MAX);
- currentDitherR = (double(fpd)/UINT32_MAX);
+ currentDitherL = (double(fpdL)/UINT32_MAX);
+ currentDitherR = (double(fpdR)/UINT32_MAX);
inputSampleL += currentDitherL;
inputSampleR += currentDitherR;
@@ -105,17 +105,17 @@ void TapeDither::processDoubleReplacing(double **inputs, double **outputs, VstIn
{
double inputSampleL = *in1;
double inputSampleR = *in2;
- if (fabs(inputSampleL)<1.18e-43) inputSampleL = fpd * 1.18e-43;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
- if (fabs(inputSampleR)<1.18e-43) inputSampleR = fpd * 1.18e-43;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
+ if (fabs(inputSampleL)<1.18e-23) inputSampleL = fpdL * 1.18e-17;
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ if (fabs(inputSampleR)<1.18e-23) inputSampleR = fpdR * 1.18e-17;
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
inputSampleL *= scaleFactor;
inputSampleR *= scaleFactor;
//0-1 is now one bit, now we dither
- currentDitherL = (double(fpd)/UINT32_MAX);
- currentDitherR = (double(fpd)/UINT32_MAX);
+ currentDitherL = (double(fpdL)/UINT32_MAX);
+ currentDitherR = (double(fpdR)/UINT32_MAX);
inputSampleL += currentDitherL;
inputSampleR += currentDitherR;
diff --git a/plugins/MacVST/TapeDust/TapeDust.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/TapeDust/TapeDust.xcodeproj/christopherjohnson.pbxuser
index db5f0e919..a259ff39f 100755
--- a/plugins/MacVST/TapeDust/TapeDust.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/TapeDust/TapeDust.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* TapeDust */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569772990;
- PBXWorkspaceStateSaveDate = 569772990;
+ PBXPerProjectTemplateStateSaveDate = 667863540;
+ PBXWorkspaceStateSaveDate = 667863540;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* TapeDust */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/TapeDust/TapeDust.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/TapeDust/TapeDust.xcodeproj/christopherjohnson.perspectivev3
index 908494ea3..8ab6e037f 100755
--- a/plugins/MacVST/TapeDust/TapeDust.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/TapeDust/TapeDust.xcodeproj/christopherjohnson.perspectivev3
@@ -307,7 +307,7 @@
PBXSmartGroupTreeModuleOutlineStateVisibleRectKey
- {{0, 0}, {288, 595}}
+ {{0, 0}, {288, 585}}
PBXTopSmartGroupGIDs
@@ -317,14 +317,14 @@
GeometryConfiguration
Frame
- {{0, 0}, {305, 613}}
+ {{0, 0}, {305, 603}}
GroupTreeTableConfiguration
MainColumn
288
RubberWindowFrame
- 280 175 841 654 0 0 1440 878
+ 205 54 841 644 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -361,18 +361,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {531, 188}}
+ {{0, 0}, {531, 185}}
RubberWindowFrame
- 280 175 841 654 0 0 1440 878
+ 205 54 841 644 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 188pt
+ 185pt
Proportion
- 420pt
+ 413pt
Tabs
@@ -386,7 +386,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {531, 393}}
+ {{10, 27}, {531, 386}}
+ RubberWindowFrame
+ 205 54 841 644 0 0 1280 698
Module
XCDetailModule
@@ -441,8 +443,6 @@
Frame
{{10, 27}, {531, 393}}
- RubberWindowFrame
- 280 175 841 654 0 0 1440 878
Module
PBXBuildResultsModule
@@ -470,11 +470,11 @@
TableOfContents
- 8B79415321F60BEB006E9731
+ 8BDCA8B127CEC9F800A07B67
1CA23ED40692098700951B8B
- 8B79415421F60BEB006E9731
+ 8BDCA8B227CEC9F800A07B67
8BD7274A1D46E5A5000176F0
- 8B79415521F60BEB006E9731
+ 8BDCA8B327CEC9F800A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -647,7 +647,7 @@
StatusbarIsVisible
TimeStamp
- 569773035.93911803
+ 667863544.731722
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -664,10 +664,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/TapeDust/TapeDust.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/TapeDust/TapeDust.xcodeproj
WindowString
- 280 175 841 654 0 0 1440 878
+ 205 54 841 644 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/TapeDust/TapeDust.xcodeproj/project.pbxproj b/plugins/MacVST/TapeDust/TapeDust.xcodeproj/project.pbxproj
index 5d00f6e65..2a3380762 100755
--- a/plugins/MacVST/TapeDust/TapeDust.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/TapeDust/TapeDust.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* TapeDust */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "TapeDust" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* TapeDust */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/TapeFat/TapeFat.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/TapeFat/TapeFat.xcodeproj/christopherjohnson.pbxuser
index 6e56b6e55..3096e150e 100755
--- a/plugins/MacVST/TapeFat/TapeFat.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/TapeFat/TapeFat.xcodeproj/christopherjohnson.pbxuser
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569773058;
- PBXWorkspaceStateSaveDate = 569773058;
+ PBXPerProjectTemplateStateSaveDate = 667863548;
+ PBXWorkspaceStateSaveDate = 667863548;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
diff --git a/plugins/MacVST/TapeFat/TapeFat.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/TapeFat/TapeFat.xcodeproj/christopherjohnson.perspectivev3
index 2a918361b..2757c5f84 100755
--- a/plugins/MacVST/TapeFat/TapeFat.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/TapeFat/TapeFat.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 60 334 810 487 0 0 1440 878
+ 45 184 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 60 334 810 487 0 0 1440 878
+ 45 184 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 60 334 810 487 0 0 1440 878
+ 45 184 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B79416821F60C09006E9731
+ 8BDCA8CE27CECA0200A07B67
1CA23ED40692098700951B8B
- 8B79416921F60C09006E9731
+ 8BDCA8CF27CECA0200A07B67
8B0237581D42B1C400E1E8C8
- 8B79416A21F60C09006E9731
+ 8BDCA8D027CECA0200A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 569773065.92286897
+ 667863554.03178799
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +643,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/TapeFat/TapeFat.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/TapeFat/TapeFat.xcodeproj
WindowString
- 60 334 810 487 0 0 1440 878
+ 45 184 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Thunder/Thunder.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Thunder/Thunder.xcodeproj/christopherjohnson.pbxuser
index 15ab8ae5e..7fb5adb24 100755
--- a/plugins/MacVST/Thunder/Thunder.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Thunder/Thunder.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569773085;
- PBXWorkspaceStateSaveDate = 569773085;
+ PBXPerProjectTemplateStateSaveDate = 667863558;
+ PBXWorkspaceStateSaveDate = 667863558;
};
perUserProjectItems = {
8B79419321F60C4C006E9731 /* PBXTextBookmark */ = 8B79419321F60C4C006E9731 /* PBXTextBookmark */;
- 8B9D7F011F7FB742007AB60F /* PBXTextBookmark */ = 8B9D7F011F7FB742007AB60F /* PBXTextBookmark */;
+ 8BDCA8EB27CECA0A00A07B67 /* PBXTextBookmark */ = 8BDCA8EB27CECA0A00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -86,7 +86,7 @@
};
24D8286F09A914000093AEF8 /* ThunderProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {554, 6240}}";
+ sepNavIntBoundsRect = "{{0, 0}, {554, 7362}}";
sepNavSelRange = "{1105, 0}";
sepNavVisRange = "{0, 0}";
sepNavWindowFrame = "{{545, 47}, {895, 831}}";
@@ -116,10 +116,10 @@
vrLen = 0;
vrLoc = 0;
};
- 8B9D7F011F7FB742007AB60F /* PBXTextBookmark */ = {
+ 8BDCA8EB27CECA0A00A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* ThunderProc.cpp */;
- name = "ThunderProc.cpp: 44";
+ name = "ThunderProc.cpp: 43";
rLen = 0;
rLoc = 1105;
rType = 0;
diff --git a/plugins/MacVST/Thunder/Thunder.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Thunder/Thunder.xcodeproj/christopherjohnson.perspectivev3
index b395b329a..68a44312b 100755
--- a/plugins/MacVST/Thunder/Thunder.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Thunder/Thunder.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 459 303 810 487 0 0 1440 878
+ 342 169 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B79419321F60C4C006E9731
+ 8BDCA8EB27CECA0A00A07B67
history
- 8B9D7F011F7FB742007AB60F
+ 8B79419321F60C4C006E9731
SplitCount
@@ -370,7 +370,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 459 303 810 487 0 0 1440 878
+ 342 169 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -394,6 +394,8 @@
Frame
{{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 342 169 810 487 0 0 1280 698
Module
XCDetailModule
@@ -448,8 +450,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 459 303 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B79419421F60C4C006E9731
+ 8BDCA8EC27CECA0A00A07B67
1CA23ED40692098700951B8B
- 8B79419521F60C4C006E9731
+ 8BDCA8ED27CECA0A00A07B67
8B0237581D42B1C400E1E8C8
- 8B79419621F60C4C006E9731
+ 8BDCA8EE27CECA0A00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 569773132.16742396
+ 667863562.45348096
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +651,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/Thunder/Thunder.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Thunder/Thunder.xcodeproj
WindowString
- 459 303 810 487 0 0 1440 878
+ 342 169 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/ToTape5/ToTape5.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/ToTape5/ToTape5.xcodeproj/christopherjohnson.pbxuser
index 6f55ad451..ac29b3450 100755
--- a/plugins/MacVST/ToTape5/ToTape5.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/ToTape5/ToTape5.xcodeproj/christopherjohnson.pbxuser
@@ -49,15 +49,14 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569773171;
- PBXWorkspaceStateSaveDate = 569773171;
+ PBXPerProjectTemplateStateSaveDate = 667863734;
+ PBXWorkspaceStateSaveDate = 667863734;
};
perUserProjectItems = {
8B1A33851F16D336004DE6C5 /* PBXTextBookmark */ = 8B1A33851F16D336004DE6C5 /* PBXTextBookmark */;
- 8B1A33A71F16D5B5004DE6C5 /* PBXTextBookmark */ = 8B1A33A71F16D5B5004DE6C5 /* PBXTextBookmark */;
8B4846EC1F6D3E64007BD0D0 /* PBXTextBookmark */ = 8B4846EC1F6D3E64007BD0D0 /* PBXTextBookmark */;
- 8B7941D521F60C99006E9731 /* PBXTextBookmark */ = 8B7941D521F60C99006E9731 /* PBXTextBookmark */;
- 8B7941D921F60CC1006E9731 /* PBXTextBookmark */ = 8B7941D921F60CC1006E9731 /* PBXTextBookmark */;
+ 8BDCA97327CECAEF00A07B67 /* PBXTextBookmark */ = 8BDCA97327CECAEF00A07B67 /* PBXTextBookmark */;
+ 8BDCA97427CECAEF00A07B67 /* PBXTextBookmark */ = 8BDCA97427CECAEF00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -89,10 +88,10 @@
};
24D8286F09A914000093AEF8 /* ToTape5Proc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {554, 9685}}";
+ sepNavIntBoundsRect = "{{0, 0}, {795, 12096}}";
sepNavSelRange = "{584, 0}";
- sepNavVisRange = "{0, 0}";
- sepNavWindowFrame = "{{400, 39}, {1005, 839}}";
+ sepNavVisRange = "{44, 168}";
+ sepNavWindowFrame = "{{275, 4}, {1005, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -119,23 +118,6 @@
vrLen = 0;
vrLoc = 0;
};
- 8B1A338A1F16D336004DE6C5 /* FromTapeVersion.h */ = {
- isa = PBXFileReference;
- lastKnownFileType = sourcecode.c.h;
- name = FromTapeVersion.h;
- path = /Users/christopherjohnson/Desktop/MacAU/FromTape/FromTapeVersion.h;
- sourceTree = "";
- };
- 8B1A33A71F16D5B5004DE6C5 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 8B1A338A1F16D336004DE6C5 /* FromTapeVersion.h */;
- name = "FromTapeVersion.h: 1";
- rLen = 0;
- rLoc = 0;
- rType = 0;
- vrLen = 72;
- vrLoc = 0;
- };
8B4846EC1F6D3E64007BD0D0 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 245463B80991757100464AD3 /* ToTape5.h */;
@@ -146,25 +128,25 @@
vrLen = 135;
vrLoc = 3969;
};
- 8B7941D521F60C99006E9731 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* ToTape5Proc.cpp */;
- name = "ToTape5Proc.cpp: 20";
- rLen = 0;
- rLoc = 584;
- rType = 0;
- vrLen = 0;
- vrLoc = 0;
- };
- 8B7941D921F60CC1006E9731 /* PBXTextBookmark */ = {
+ 8BDCA97327CECAEF00A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* ToTape5Proc.cpp */;
name = "ToTape5Proc.cpp: 21";
rLen = 0;
rLoc = 584;
rType = 0;
- vrLen = 0;
- vrLoc = 0;
+ vrLen = 168;
+ vrLoc = 44;
+ };
+ 8BDCA97427CECAEF00A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* ToTape5Proc.cpp */;
+ name = "ToTape5Proc.cpp: 21";
+ rLen = 0;
+ rLoc = 584;
+ rType = 0;
+ vrLen = 168;
+ vrLoc = 44;
};
8D01CCC60486CAD60068D4B7 /* ToTape5 */ = {
activeExec = 0;
diff --git a/plugins/MacVST/ToTape5/ToTape5.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/ToTape5/ToTape5.xcodeproj/christopherjohnson.perspectivev3
index 9b9bafa06..c26f009fe 100755
--- a/plugins/MacVST/ToTape5/ToTape5.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/ToTape5/ToTape5.xcodeproj/christopherjohnson.perspectivev3
@@ -256,6 +256,8 @@
Layout
+ BecomeActive
+
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -321,7 +323,7 @@
185
RubberWindowFrame
- 575 295 810 487 0 0 1440 878
+ 147 159 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -349,13 +351,12 @@
_historyCapacity
0
bookmark
- 8B7941D921F60CC1006E9731
+ 8BDCA97427CECAEF00A07B67
history
8B1A33851F16D336004DE6C5
- 8B1A33A71F16D5B5004DE6C5
8B4846EC1F6D3E64007BD0D0
- 8B7941D521F60C99006E9731
+ 8BDCA97327CECAEF00A07B67
SplitCount
@@ -369,18 +370,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 32}}
+ {{0, 0}, {603, 132}}
RubberWindowFrame
- 575 295 810 487 0 0 1440 878
+ 147 159 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 32pt
+ 132pt
Proportion
- 409pt
+ 309pt
Tabs
@@ -394,7 +395,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 382}}
+ {{10, 27}, {603, 282}}
+ RubberWindowFrame
+ 147 159 810 487 0 0 1280 698
Module
XCDetailModule
@@ -448,9 +451,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 382}}
- RubberWindowFrame
- 575 295 810 487 0 0 1440 878
+ {{10, 27}, {603, 401}}
Module
PBXBuildResultsModule
@@ -478,11 +479,11 @@
TableOfContents
- 8B7941DA21F60CC1006E9731
+ 8BDCA97527CECAEF00A07B67
1CA23ED40692098700951B8B
- 8B7941DB21F60CC1006E9731
+ 8BDCA97627CECAEF00A07B67
8B0237581D42B1C400E1E8C8
- 8B7941DC21F60CC1006E9731
+ 8BDCA97727CECAEF00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -635,7 +636,7 @@
StatusbarIsVisible
TimeStamp
- 569773249.12750697
+ 667863791.464872
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -652,11 +653,10 @@
5
WindowOrderList
- 8B7941DD21F60CC1006E9731
- /Users/christopherjohnson/Desktop/MacVST/ToTape5/ToTape5.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/ToTape5/ToTape5.xcodeproj
WindowString
- 575 295 810 487 0 0 1440 878
+ 147 159 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/ToTape5/source/ToTape5Proc.cpp b/plugins/MacVST/ToTape5/source/ToTape5Proc.cpp
index 840dbd28c..f2ad65562 100755
--- a/plugins/MacVST/ToTape5/source/ToTape5Proc.cpp
+++ b/plugins/MacVST/ToTape5/source/ToTape5Proc.cpp
@@ -77,7 +77,7 @@ void ToTape5::processReplacing(float **inputs, float **outputs, VstInt32 sampleF
drySampleR = inputSampleR;
- flutterrandy = (double(fpd)/UINT32_MAX);
+ flutterrandy = (double(fpdL)/UINT32_MAX);
randy = flutterrandy * tempRandy; //for soften
invrandy = (1.0-randy);
randy /= 2.0;
@@ -406,7 +406,7 @@ void ToTape5::processDoubleReplacing(double **inputs, double **outputs, VstInt32
drySampleR = inputSampleR;
- flutterrandy = (double(fpd)/UINT32_MAX);
+ flutterrandy = (double(fpdL)/UINT32_MAX);
randy = flutterrandy * tempRandy; //for soften
invrandy = (1.0-randy);
randy /= 2.0;
diff --git a/plugins/MacVST/ToTape6/ToTape6.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/ToTape6/ToTape6.xcodeproj/christopherjohnson.pbxuser
index a33f08479..4b870db5f 100755
--- a/plugins/MacVST/ToTape6/ToTape6.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/ToTape6/ToTape6.xcodeproj/christopherjohnson.pbxuser
@@ -49,13 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 602111006;
- PBXWorkspaceStateSaveDate = 602111006;
+ PBXPerProjectTemplateStateSaveDate = 667863677;
+ PBXWorkspaceStateSaveDate = 667863677;
};
perUserProjectItems = {
8BA0D9C723E37DB500721922 /* PBXTextBookmark */ = 8BA0D9C723E37DB500721922 /* PBXTextBookmark */;
- 8BA0D9C823E37DB500721922 /* PBXBookmark */ = 8BA0D9C823E37DB500721922 /* PBXBookmark */;
- 8BA0D9C923E37DB500721922 /* PBXTextBookmark */ = 8BA0D9C923E37DB500721922 /* PBXTextBookmark */;
+ 8BDCA94E27CECA8000A07B67 /* PBXTextBookmark */ = 8BDCA94E27CECA8000A07B67 /* PBXTextBookmark */;
+ 8BDCA97A27CECAF400A07B67 /* PBXTextBookmark */ = 8BDCA97A27CECAF400A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -87,10 +87,10 @@
};
24D8286F09A914000093AEF8 /* ToTape6Proc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {789, 8892}}";
- sepNavSelRange = "{9145, 0}";
- sepNavVisRange = "{12581, 204}";
- sepNavWindowFrame = "{{80, 57}, {870, 813}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1011, 12222}}";
+ sepNavSelRange = "{9146, 0}";
+ sepNavVisRange = "{12538, 139}";
+ sepNavWindowFrame = "{{340, 4}, {870, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -117,19 +117,25 @@
vrLen = 150;
vrLoc = 866;
};
- 8BA0D9C823E37DB500721922 /* PBXBookmark */ = {
- isa = PBXBookmark;
- fRef = 24D8286F09A914000093AEF8 /* ToTape6Proc.cpp */;
- };
- 8BA0D9C923E37DB500721922 /* PBXTextBookmark */ = {
+ 8BDCA94E27CECA8000A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* ToTape6Proc.cpp */;
- name = "ToTape6Proc.cpp: 207";
+ name = "ToTape6Proc.cpp: 210";
rLen = 0;
- rLoc = 9145;
+ rLoc = 9146;
rType = 0;
- vrLen = 204;
- vrLoc = 12581;
+ vrLen = 139;
+ vrLoc = 12537;
+ };
+ 8BDCA97A27CECAF400A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* ToTape6Proc.cpp */;
+ name = "ToTape6Proc.cpp: 210";
+ rLen = 0;
+ rLoc = 9146;
+ rType = 0;
+ vrLen = 139;
+ vrLoc = 12538;
};
8D01CCC60486CAD60068D4B7 /* ToTape6 */ = {
activeExec = 0;
diff --git a/plugins/MacVST/ToTape6/ToTape6.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/ToTape6/ToTape6.xcodeproj/christopherjohnson.perspectivev3
index cb771bbeb..ee37067bc 100755
--- a/plugins/MacVST/ToTape6/ToTape6.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/ToTape6/ToTape6.xcodeproj/christopherjohnson.perspectivev3
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 547 205 810 487 0 0 1440 878
+ 408 123 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,11 +349,11 @@
_historyCapacity
0
bookmark
- 8BA0D9C923E37DB500721922
+ 8BDCA97A27CECAF400A07B67
history
8BA0D9C723E37DB500721922
- 8BA0D9C823E37DB500721922
+ 8BDCA94E27CECA8000A07B67
SplitCount
@@ -369,18 +367,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 117}}
+ {{0, 0}, {603, 102}}
RubberWindowFrame
- 547 205 810 487 0 0 1440 878
+ 408 123 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 117pt
+ 102pt
Proportion
- 324pt
+ 339pt
Tabs
@@ -394,9 +392,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
- RubberWindowFrame
- 547 205 810 487 0 0 1440 878
+ {{10, 27}, {603, 312}}
Module
XCDetailModule
@@ -450,7 +446,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 414}}
+ {{10, 27}, {603, 312}}
+ RubberWindowFrame
+ 408 123 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -478,11 +476,11 @@
TableOfContents
- 8BA0D9CA23E37DB500721922
+ 8BDCA97B27CECAF400A07B67
1CA23ED40692098700951B8B
- 8BA0D9CB23E37DB500721922
+ 8BDCA97C27CECAF400A07B67
8B0237581D42B1C400E1E8C8
- 8BA0D9CC23E37DB500721922
+ 8BDCA97D27CECAF400A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -635,7 +633,7 @@
StatusbarIsVisible
TimeStamp
- 602111413.25124705
+ 667863796.65880203
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -652,11 +650,10 @@
5
WindowOrderList
- 8BA0D9CD23E37DB500721922
- /Users/christopherjohnson/Desktop/Plugins/MacVST/ToTape6/ToTape6.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/ToTape6/ToTape6.xcodeproj
WindowString
- 547 205 810 487 0 0 1440 878
+ 408 123 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/ToTape6/source/ToTape6Proc.cpp b/plugins/MacVST/ToTape6/source/ToTape6Proc.cpp
index 47f1e541a..ea7353a5a 100755
--- a/plugins/MacVST/ToTape6/source/ToTape6Proc.cpp
+++ b/plugins/MacVST/ToTape6/source/ToTape6Proc.cpp
@@ -66,7 +66,7 @@ void ToTape6::processReplacing(float **inputs, float **outputs, VstInt32 sampleF
inputSampleR *= inputgain;
} //gain cut before plugin
- double flutterrandy = fpd / (double)UINT32_MAX;
+ double flutterrandy = (double(fpdL)/UINT32_MAX);
//now we've got a random flutter, so we're messing with the pitch before tape effects go on
if (gcount < 0 || gcount > 499) {gcount = 499;}
dL[gcount] = inputSampleL;
@@ -400,7 +400,7 @@ void ToTape6::processDoubleReplacing(double **inputs, double **outputs, VstInt32
inputSampleR *= inputgain;
} //gain cut before plugin
- double flutterrandy = fpd / (double)UINT32_MAX;
+ double flutterrandy = (double(fpdL)/UINT32_MAX);
//now we've got a random flutter, so we're messing with the pitch before tape effects go on
if (gcount < 0 || gcount > 499) {gcount = 499;}
dL[gcount] = inputSampleL;
diff --git a/plugins/MacVST/ToVinyl4/ToVinyl4.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/ToVinyl4/ToVinyl4.xcodeproj/christopherjohnson.pbxuser
index 7ffc1fca5..dcfe83046 100755
--- a/plugins/MacVST/ToVinyl4/ToVinyl4.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/ToVinyl4/ToVinyl4.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569773266;
- PBXWorkspaceStateSaveDate = 569773266;
+ PBXPerProjectTemplateStateSaveDate = 667863801;
+ PBXWorkspaceStateSaveDate = 667863801;
};
perUserProjectItems = {
- 8B7673412002CFD90068FDCE /* PBXTextBookmark */ = 8B7673412002CFD90068FDCE /* PBXTextBookmark */;
8B7941F021F60CDA006E9731 /* PBXTextBookmark */ = 8B7941F021F60CDA006E9731 /* PBXTextBookmark */;
+ 8BDCA98E27CECAFE00A07B67 /* PBXTextBookmark */ = 8BDCA98E27CECAFE00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -78,9 +78,9 @@
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {838, 19864}}";
+ sepNavIntBoundsRect = "{{0, 0}, {957, 27576}}";
sepNavSelRange = "{10616, 0}";
- sepNavVisRange = "{10613, 123}";
+ sepNavVisRange = "{10616, 120}";
sepNavWindowFrame = "{{15, 42}, {895, 831}}";
};
};
@@ -106,16 +106,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B7673412002CFD90068FDCE /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
- name = "audioeffectx.cpp: 307";
- rLen = 0;
- rLoc = 10616;
- rType = 0;
- vrLen = 157;
- vrLoc = 10579;
- };
8B7941F021F60CDA006E9731 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
@@ -126,6 +116,16 @@
vrLen = 123;
vrLoc = 10613;
};
+ 8BDCA98E27CECAFE00A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
+ name = "audioeffectx.cpp: 307";
+ rLen = 0;
+ rLoc = 10616;
+ rType = 0;
+ vrLen = 77;
+ vrLoc = 10616;
+ };
8D01CCC60486CAD60068D4B7 /* ToVinyl4 */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/ToVinyl4/ToVinyl4.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/ToVinyl4/ToVinyl4.xcodeproj/christopherjohnson.perspectivev3
index 19849f55a..18e477217 100755
--- a/plugins/MacVST/ToVinyl4/ToVinyl4.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/ToVinyl4/ToVinyl4.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 594 373 810 487 0 0 1440 878
+ 443 203 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B7941F021F60CDA006E9731
+ 8BDCA98E27CECAFE00A07B67
history
- 8B7673412002CFD90068FDCE
+ 8B7941F021F60CDA006E9731
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 69}}
+ {{0, 0}, {603, 51}}
RubberWindowFrame
- 594 373 810 487 0 0 1440 878
+ 443 203 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 69pt
+ 51pt
Proportion
- 372pt
+ 390pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 345}}
+ {{10, 27}, {603, 363}}
RubberWindowFrame
- 594 373 810 487 0 0 1440 878
+ 443 203 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B7941F121F60CDA006E9731
+ 8BDCA98F27CECAFE00A07B67
1CA23ED40692098700951B8B
- 8B7941F221F60CDA006E9731
+ 8BDCA99027CECAFE00A07B67
8B0237581D42B1C400E1E8C8
- 8B7941F321F60CDA006E9731
+ 8BDCA99127CECAFE00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 569773274.60291398
+ 667863806.45018804
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +651,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/ToVinyl4/ToVinyl4.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/ToVinyl4/ToVinyl4.xcodeproj
WindowString
- 594 373 810 487 0 0 1440 878
+ 443 203 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/ToneSlant/ToneSlant.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/ToneSlant/ToneSlant.xcodeproj/christopherjohnson.pbxuser
index ec1185684..a23f3b8b0 100755
--- a/plugins/MacVST/ToneSlant/ToneSlant.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/ToneSlant/ToneSlant.xcodeproj/christopherjohnson.pbxuser
@@ -49,13 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569773146;
- PBXWorkspaceStateSaveDate = 569773146;
+ PBXPerProjectTemplateStateSaveDate = 667863567;
+ PBXWorkspaceStateSaveDate = 667863567;
};
perUserProjectItems = {
8B42FB431DB15F0F0057B6AB /* PBXTextBookmark */ = 8B42FB431DB15F0F0057B6AB /* PBXTextBookmark */;
- 8B7941A921F60C62006E9731 /* PBXTextBookmark */ = 8B7941A921F60C62006E9731 /* PBXTextBookmark */;
- 8B9D7F211F7FB75D007AB60F /* PBXTextBookmark */ = 8B9D7F211F7FB75D007AB60F /* PBXTextBookmark */;
+ 8BDCA91627CECA5A00A07B67 /* PBXTextBookmark */ = 8BDCA91627CECA5A00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -63,9 +62,9 @@
};
2407DEB6089929BA00EB68BF /* ToneSlant.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {848, 1716}}";
+ sepNavIntBoundsRect = "{{0, 0}, {939, 2358}}";
sepNavSelRange = "{1846, 0}";
- sepNavVisRange = "{2638, 2121}";
+ sepNavVisRange = "{0, 0}";
sepNavWindowFrame = "{{517, 47}, {895, 831}}";
};
};
@@ -87,10 +86,10 @@
};
24D8286F09A914000093AEF8 /* ToneSlantProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {554, 3224}}";
+ sepNavIntBoundsRect = "{{0, 0}, {660, 3024}}";
sepNavSelRange = "{1408, 0}";
sepNavVisRange = "{0, 0}";
- sepNavWindowFrame = "{{428, 47}, {895, 831}}";
+ sepNavWindowFrame = "{{385, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -117,22 +116,12 @@
vrLen = 71;
vrLoc = 1774;
};
- 8B7941A921F60C62006E9731 /* PBXTextBookmark */ = {
+ 8BDCA91627CECA5A00A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* ToneSlantProc.cpp */;
- name = "ToneSlantProc.cpp: 51";
+ fRef = 2407DEB6089929BA00EB68BF /* ToneSlant.cpp */;
+ name = "ToneSlant.cpp: 43";
rLen = 0;
- rLoc = 1408;
- rType = 0;
- vrLen = 0;
- vrLoc = 0;
- };
- 8B9D7F211F7FB75D007AB60F /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* ToneSlantProc.cpp */;
- name = "ToneSlantProc.cpp: 49";
- rLen = 0;
- rLoc = 1408;
+ rLoc = 1846;
rType = 0;
vrLen = 0;
vrLoc = 0;
diff --git a/plugins/MacVST/ToneSlant/ToneSlant.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/ToneSlant/ToneSlant.xcodeproj/christopherjohnson.perspectivev3
index 20a16b42c..a608ca2eb 100755
--- a/plugins/MacVST/ToneSlant/ToneSlant.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/ToneSlant/ToneSlant.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 575 281 810 487 0 0 1440 878
+ 429 159 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -339,7 +339,7 @@
PBXProjectModuleGUID
8B0237581D42B1C400E1E8C8
PBXProjectModuleLabel
- ToneSlantProc.cpp
+ ToneSlant.cpp
PBXSplitModuleInNavigatorKey
Split0
@@ -347,15 +347,14 @@
PBXProjectModuleGUID
8B0237591D42B1C400E1E8C8
PBXProjectModuleLabel
- ToneSlantProc.cpp
+ ToneSlant.cpp
_historyCapacity
0
bookmark
- 8B7941A921F60C62006E9731
+ 8BDCA91627CECA5A00A07B67
history
8B42FB431DB15F0F0057B6AB
- 8B9D7F211F7FB75D007AB60F
SplitCount
@@ -371,7 +370,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 575 281 810 487 0 0 1440 878
+ 429 159 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -396,7 +395,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 575 281 810 487 0 0 1440 878
+ 429 159 810 487 0 0 1280 698
Module
XCDetailModule
@@ -478,11 +477,11 @@
TableOfContents
- 8B7941AA21F60C62006E9731
+ 8BDCA91727CECA5A00A07B67
1CA23ED40692098700951B8B
- 8B7941AB21F60C62006E9731
+ 8BDCA91827CECA5A00A07B67
8B0237581D42B1C400E1E8C8
- 8B7941AC21F60C62006E9731
+ 8BDCA91927CECA5A00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -635,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 569773154.60327995
+ 667863642.69597304
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -652,10 +651,11 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/ToneSlant/ToneSlant.xcodeproj
+ 8BDCA91A27CECA5A00A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/ToneSlant/ToneSlant.xcodeproj
WindowString
- 575 281 810 487 0 0 1440 878
+ 429 159 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/TransDesk/TransDesk.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/TransDesk/TransDesk.xcodeproj/christopherjohnson.pbxuser
index 4346de303..d48531cbf 100755
--- a/plugins/MacVST/TransDesk/TransDesk.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/TransDesk/TransDesk.xcodeproj/christopherjohnson.pbxuser
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569773315;
- PBXWorkspaceStateSaveDate = 569773315;
+ PBXPerProjectTemplateStateSaveDate = 667864045;
+ PBXWorkspaceStateSaveDate = 667864045;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
diff --git a/plugins/MacVST/TransDesk/TransDesk.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/TransDesk/TransDesk.xcodeproj/christopherjohnson.perspectivev3
index a08440805..7b67f04a2 100755
--- a/plugins/MacVST/TransDesk/TransDesk.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/TransDesk/TransDesk.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 458 315 810 487 0 0 1440 878
+ 342 175 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 458 315 810 487 0 0 1440 878
+ 342 175 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 458 315 810 487 0 0 1440 878
+ 342 175 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B79421021F60D0A006E9731
+ 8BDCA9F227CECBF200A07B67
1CA23ED40692098700951B8B
- 8B79421121F60D0A006E9731
+ 8BDCA9F327CECBF200A07B67
8B0237581D42B1C400E1E8C8
- 8B79421221F60D0A006E9731
+ 8BDCA9F427CECBF200A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 569773322.06946695
+ 667864050.21106601
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +643,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/TransDesk/TransDesk.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/TransDesk/TransDesk.xcodeproj
WindowString
- 458 315 810 487 0 0 1440 878
+ 342 175 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/TremoSquare/TremoSquare.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/TremoSquare/TremoSquare.xcodeproj/christopherjohnson.pbxuser
index 0b25c9232..08f07ae92 100755
--- a/plugins/MacVST/TremoSquare/TremoSquare.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/TremoSquare/TremoSquare.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* TremoSquare */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 624851338;
- PBXWorkspaceStateSaveDate = 624851338;
+ PBXPerProjectTemplateStateSaveDate = 667864063;
+ PBXWorkspaceStateSaveDate = 667864063;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* TremoSquare */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/TremoSquare/TremoSquare.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/TremoSquare/TremoSquare.xcodeproj/christopherjohnson.perspectivev3
index 4e90ff7c8..5b556f1b3 100755
--- a/plugins/MacVST/TremoSquare/TremoSquare.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/TremoSquare/TremoSquare.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -386,6 +386,8 @@
Frame
{{10, 27}, {603, 414}}
+ RubberWindowFrame
+ 25 199 810 487 0 0 1280 698
Module
XCDetailModule
@@ -440,8 +442,6 @@
Frame
{{10, 27}, {603, 414}}
- RubberWindowFrame
- 34 365 810 487 0 0 1440 878
Module
PBXBuildResultsModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B0067ED253E7F5600551C71
+ 8BDCAA2D27CECC0400A07B67
1CA23ED40692098700951B8B
- 8B0067EE253E7F5600551C71
+ 8BDCAA2E27CECC0400A07B67
8B0237581D42B1C400E1E8C8
- 8B0067EF253E7F5600551C71
+ 8BDCAA2F27CECC0400A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 624852822.52963197
+ 667864068.23395002
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,11 +643,10 @@
5
WindowOrderList
- 8B0067F0253E7F5600551C71
- /Users/christopherjohnson/Desktop/TremoSquare/TremoSquare.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/TremoSquare/TremoSquare.xcodeproj
WindowString
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/TremoSquare/TremoSquare.xcodeproj/project.pbxproj b/plugins/MacVST/TremoSquare/TremoSquare.xcodeproj/project.pbxproj
index 360f51ef2..132715c13 100755
--- a/plugins/MacVST/TremoSquare/TremoSquare.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/TremoSquare/TremoSquare.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* TremoSquare */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "TremoSquare" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* TremoSquare */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/Tremolo/Tremolo.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Tremolo/Tremolo.xcodeproj/christopherjohnson.pbxuser
index 170e53c8b..cb1db147e 100755
--- a/plugins/MacVST/Tremolo/Tremolo.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Tremolo/Tremolo.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569773339;
- PBXWorkspaceStateSaveDate = 569773339;
+ PBXPerProjectTemplateStateSaveDate = 667864054;
+ PBXWorkspaceStateSaveDate = 667864054;
};
perUserProjectItems = {
8B79422F21F60D22006E9731 /* PBXTextBookmark */ = 8B79422F21F60D22006E9731 /* PBXTextBookmark */;
- 8B9D7F9F1F7FB7DF007AB60F /* PBXTextBookmark */ = 8B9D7F9F1F7FB7DF007AB60F /* PBXTextBookmark */;
+ 8BDCAA0F27CECBFA00A07B67 /* PBXTextBookmark */ = 8BDCAA0F27CECBFA00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -78,7 +78,7 @@
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {747, 19864}}";
+ sepNavIntBoundsRect = "{{0, 0}, {957, 27504}}";
sepNavSelRange = "{10616, 0}";
sepNavVisRange = "{0, 0}";
sepNavWindowFrame = "{{15, 42}, {895, 831}}";
@@ -116,7 +116,7 @@
vrLen = 0;
vrLoc = 0;
};
- 8B9D7F9F1F7FB7DF007AB60F /* PBXTextBookmark */ = {
+ 8BDCAA0F27CECBFA00A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
name = "audioeffectx.cpp: 307";
diff --git a/plugins/MacVST/Tremolo/Tremolo.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Tremolo/Tremolo.xcodeproj/christopherjohnson.perspectivev3
index 2a3782ebc..fd99cf410 100755
--- a/plugins/MacVST/Tremolo/Tremolo.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Tremolo/Tremolo.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 604 328 810 487 0 0 1440 878
+ 451 181 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B79422F21F60D22006E9731
+ 8BDCAA0F27CECBFA00A07B67
history
- 8B9D7F9F1F7FB7DF007AB60F
+ 8B79422F21F60D22006E9731
SplitCount
@@ -370,7 +370,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 604 328 810 487 0 0 1440 878
+ 451 181 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -395,7 +395,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 604 328 810 487 0 0 1440 878
+ 451 181 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B79423021F60D22006E9731
+ 8BDCAA1027CECBFA00A07B67
1CA23ED40692098700951B8B
- 8B79423121F60D22006E9731
+ 8BDCAA1127CECBFA00A07B67
8B0237581D42B1C400E1E8C8
- 8B79423221F60D22006E9731
+ 8BDCAA1227CECBFA00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 569773346.55622005
+ 667864058.66286302
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +651,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/Tremolo/Tremolo.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Tremolo/Tremolo.xcodeproj
WindowString
- 604 328 810 487 0 0 1440 878
+ 451 181 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/TripleSpread/TripleSpread.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/TripleSpread/TripleSpread.xcodeproj/christopherjohnson.pbxuser
index 6c917957b..050096ccb 100755
--- a/plugins/MacVST/TripleSpread/TripleSpread.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/TripleSpread/TripleSpread.xcodeproj/christopherjohnson.pbxuser
@@ -49,11 +49,11 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 623470276;
- PBXWorkspaceStateSaveDate = 623470276;
+ PBXPerProjectTemplateStateSaveDate = 667864072;
+ PBXWorkspaceStateSaveDate = 667864072;
};
perUserProjectItems = {
- 8BF86FF82529665300B3F089 /* PBXTextBookmark */ = 8BF86FF82529665300B3F089 /* PBXTextBookmark */;
+ 8BDCAA4A27CECC0D00A07B67 /* PBXTextBookmark */ = 8BDCAA4A27CECC0D00A07B67 /* PBXTextBookmark */;
8BF870412529673300B3F089 /* PBXTextBookmark */ = 8BF870412529673300B3F089 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
@@ -86,9 +86,9 @@
};
24D8286F09A914000093AEF8 /* TripleSpreadProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {803, 8541}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1029, 11790}}";
sepNavSelRange = "{17021, 0}";
- sepNavVisRange = "{1785, 242}";
+ sepNavVisRange = "{1937, 98}";
sepNavWindowFrame = "{{35, 47}, {895, 831}}";
};
};
@@ -106,15 +106,15 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8BF86FF82529665300B3F089 /* PBXTextBookmark */ = {
+ 8BDCAA4A27CECC0D00A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* TripleSpreadProc.cpp */;
- name = "TripleSpreadProc.cpp: 389";
+ name = "TripleSpreadProc.cpp: 390";
rLen = 0;
rLoc = 17021;
rType = 0;
- vrLen = 245;
- vrLoc = 1770;
+ vrLen = 98;
+ vrLoc = 1937;
};
8BF870412529673300B3F089 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
diff --git a/plugins/MacVST/TripleSpread/TripleSpread.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/TripleSpread/TripleSpread.xcodeproj/christopherjohnson.perspectivev3
index 3ca303dd7..6d3ed7b15 100755
--- a/plugins/MacVST/TripleSpread/TripleSpread.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/TripleSpread/TripleSpread.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 22 338 810 487 0 0 1440 878
+ 16 186 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8BF870412529673300B3F089
+ 8BDCAA4A27CECC0D00A07B67
history
- 8BF86FF82529665300B3F089
+ 8BF870412529673300B3F089
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 102}}
+ {{0, 0}, {603, 86}}
RubberWindowFrame
- 22 338 810 487 0 0 1440 878
+ 16 186 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 102pt
+ 86pt
Proportion
- 339pt
+ 355pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 312}}
+ {{10, 27}, {603, 328}}
RubberWindowFrame
- 22 338 810 487 0 0 1440 878
+ 16 186 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8BF8700C252966C500B3F089
+ 8BDCAA4B27CECC0D00A07B67
1CA23ED40692098700951B8B
- 8BF8700D252966C500B3F089
+ 8BDCAA4C27CECC0D00A07B67
8B0237581D42B1C400E1E8C8
- 8BF8700E252966C500B3F089
+ 8BDCAA4D27CECC0D00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 623470387.84358203
+ 667864077.21938097
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +651,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/Plugins/MacVST/TripleSpread/TripleSpread.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/TripleSpread/TripleSpread.xcodeproj
WindowString
- 22 338 810 487 0 0 1440 878
+ 16 186 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Tube/Tube.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Tube/Tube.xcodeproj/christopherjohnson.pbxuser
index 55c19980c..809d2c7a7 100644
--- a/plugins/MacVST/Tube/Tube.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Tube/Tube.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 653967390;
- PBXWorkspaceStateSaveDate = 653967390;
+ PBXPerProjectTemplateStateSaveDate = 667864082;
+ PBXWorkspaceStateSaveDate = 667864082;
};
perUserProjectItems = {
- 8B0F2EEA26F3BE06001FF16D /* PBXTextBookmark */ = 8B0F2EEA26F3BE06001FF16D /* PBXTextBookmark */;
8B29789B26FAC085002101B3 /* PBXTextBookmark */ = 8B29789B26FAC085002101B3 /* PBXTextBookmark */;
+ 8BDCAA6827CECC1600A07B67 /* PBXTextBookmark */ = 8BDCAA6827CECC1600A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -86,9 +86,9 @@
};
24D8286F09A914000093AEF8 /* TubeProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {660, 4032}}";
+ sepNavIntBoundsRect = "{{0, 0}, {831, 3960}}";
sepNavSelRange = "{8051, 0}";
- sepNavVisRange = "{1406, 172}";
+ sepNavVisRange = "{1498, 98}";
sepNavWindowFrame = "{{15, 47}, {895, 831}}";
};
};
@@ -106,16 +106,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B0F2EEA26F3BE06001FF16D /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* TubeProc.cpp */;
- name = "TubeProc.cpp: 201";
- rLen = 0;
- rLoc = 8051;
- rType = 0;
- vrLen = 207;
- vrLoc = 1371;
- };
8B29789B26FAC085002101B3 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* TubeProc.cpp */;
@@ -126,6 +116,16 @@
vrLen = 172;
vrLoc = 1406;
};
+ 8BDCAA6827CECC1600A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* TubeProc.cpp */;
+ name = "TubeProc.cpp: 201";
+ rLen = 0;
+ rLoc = 8051;
+ rType = 0;
+ vrLen = 98;
+ vrLoc = 1498;
+ };
8D01CCC60486CAD60068D4B7 /* Tube */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/Tube/Tube.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Tube/Tube.xcodeproj/christopherjohnson.perspectivev3
index a294183df..b66f52ce6 100644
--- a/plugins/MacVST/Tube/Tube.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Tube/Tube.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 18 390 810 487 0 0 1440 878
+ 13 211 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B29789B26FAC085002101B3
+ 8BDCAA6827CECC1600A07B67
history
- 8B0F2EEA26F3BE06001FF16D
+ 8B29789B26FAC085002101B3
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 102}}
+ {{0, 0}, {603, 86}}
RubberWindowFrame
- 18 390 810 487 0 0 1440 878
+ 13 211 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 102pt
+ 86pt
Proportion
- 339pt
+ 355pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 312}}
+ {{10, 27}, {603, 328}}
RubberWindowFrame
- 18 390 810 487 0 0 1440 878
+ 13 211 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B29789C26FAC085002101B3
+ 8BDCAA6927CECC1600A07B67
1CA23ED40692098700951B8B
- 8B29789D26FAC085002101B3
+ 8BDCAA6A27CECC1600A07B67
8B0237581D42B1C400E1E8C8
- 8B29789E26FAC085002101B3
+ 8BDCAA6B27CECC1600A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 653967493.95405197
+ 667864086.704005
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,11 +651,10 @@
5
WindowOrderList
- 8B29789F26FAC085002101B3
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Tube/Tube.xcodeproj
WindowString
- 18 390 810 487 0 0 1440 878
+ 13 211 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Tube2/Tube2.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Tube2/Tube2.xcodeproj/christopherjohnson.pbxuser
index 4792b1d98..60991b8bc 100644
--- a/plugins/MacVST/Tube2/Tube2.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Tube2/Tube2.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* Tube2 */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 653967514;
- PBXWorkspaceStateSaveDate = 653967514;
+ PBXPerProjectTemplateStateSaveDate = 667864091;
+ PBXWorkspaceStateSaveDate = 667864091;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* Tube2 */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/Tube2/Tube2.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Tube2/Tube2.xcodeproj/christopherjohnson.perspectivev3
index 1a220ffda..de4b2bc02 100644
--- a/plugins/MacVST/Tube2/Tube2.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Tube2/Tube2.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 617 376 810 487 0 0 1440 878
+ 460 204 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 617 376 810 487 0 0 1440 878
+ 460 204 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 617 376 810 487 0 0 1440 878
+ 460 204 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B2978C126FAC10C002101B3
+ 8BDCAA8627CECC1F00A07B67
1CA23ED40692098700951B8B
- 8B2978C226FAC10C002101B3
+ 8BDCAA8727CECC1F00A07B67
8B0237581D42B1C400E1E8C8
- 8B2978C326FAC10C002101B3
+ 8BDCAA8827CECC1F00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 653967628.52520502
+ 667864095.59003401
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,11 +643,10 @@
5
WindowOrderList
- 8B2978C426FAC10C002101B3
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Tube2/Tube2.xcodeproj
WindowString
- 617 376 810 487 0 0 1440 878
+ 460 204 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Tube2/Tube2.xcodeproj/project.pbxproj b/plugins/MacVST/Tube2/Tube2.xcodeproj/project.pbxproj
index 299d54454..8557280e2 100755
--- a/plugins/MacVST/Tube2/Tube2.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/Tube2/Tube2.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* Tube2 */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "Tube2" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* Tube2 */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/TubeDesk/TubeDesk.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/TubeDesk/TubeDesk.xcodeproj/christopherjohnson.pbxuser
index f2588de92..6d6c7999a 100755
--- a/plugins/MacVST/TubeDesk/TubeDesk.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/TubeDesk/TubeDesk.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569773377;
- PBXWorkspaceStateSaveDate = 569773377;
+ PBXPerProjectTemplateStateSaveDate = 667864100;
+ PBXWorkspaceStateSaveDate = 667864100;
};
perUserProjectItems = {
8B79424F21F60D4A006E9731 /* PBXTextBookmark */ = 8B79424F21F60D4A006E9731 /* PBXTextBookmark */;
- 8B9D7FBF1F7FB7FA007AB60F /* PBXTextBookmark */ = 8B9D7FBF1F7FB7FA007AB60F /* PBXTextBookmark */;
+ 8BDCAAA327CECC2800A07B67 /* PBXTextBookmark */ = 8BDCAAA327CECC2800A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -78,7 +78,7 @@
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {747, 19864}}";
+ sepNavIntBoundsRect = "{{0, 0}, {957, 27504}}";
sepNavSelRange = "{10616, 0}";
sepNavVisRange = "{0, 0}";
sepNavWindowFrame = "{{15, 42}, {895, 831}}";
@@ -116,7 +116,7 @@
vrLen = 0;
vrLoc = 0;
};
- 8B9D7FBF1F7FB7FA007AB60F /* PBXTextBookmark */ = {
+ 8BDCAAA327CECC2800A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
name = "audioeffectx.cpp: 307";
diff --git a/plugins/MacVST/TubeDesk/TubeDesk.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/TubeDesk/TubeDesk.xcodeproj/christopherjohnson.perspectivev3
index a09ec6b83..b23b9eae6 100755
--- a/plugins/MacVST/TubeDesk/TubeDesk.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/TubeDesk/TubeDesk.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 422 271 810 487 0 0 1440 878
+ 315 154 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B79424F21F60D4A006E9731
+ 8BDCAAA327CECC2800A07B67
history
- 8B9D7FBF1F7FB7FA007AB60F
+ 8B79424F21F60D4A006E9731
SplitCount
@@ -370,7 +370,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 422 271 810 487 0 0 1440 878
+ 315 154 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -395,7 +395,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 422 271 810 487 0 0 1440 878
+ 315 154 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B79425021F60D4A006E9731
+ 8BDCAAA427CECC2800A07B67
1CA23ED40692098700951B8B
- 8B79425121F60D4A006E9731
+ 8BDCAAA527CECC2800A07B67
8B0237581D42B1C400E1E8C8
- 8B79425221F60D4A006E9731
+ 8BDCAAA627CECC2800A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 569773386.273072
+ 667864104.87632406
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +651,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/TubeDesk/TubeDesk.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/TubeDesk/TubeDesk.xcodeproj
WindowString
- 422 271 810 487 0 0 1440 878
+ 315 154 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/UltrasonX/UltrasonX.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/UltrasonX/UltrasonX.xcodeproj/christopherjohnson.pbxuser
index 15e7e0720..86d718347 100644
--- a/plugins/MacVST/UltrasonX/UltrasonX.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/UltrasonX/UltrasonX.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 665107210;
- PBXWorkspaceStateSaveDate = 665107210;
+ PBXPerProjectTemplateStateSaveDate = 667864174;
+ PBXWorkspaceStateSaveDate = 667864174;
};
perUserProjectItems = {
- 8BB92CFA27A4BCC900420832 /* PBXTextBookmark */ = 8BB92CFA27A4BCC900420832 /* PBXTextBookmark */;
8BB92CFB27A4BCC900420832 /* PBXTextBookmark */ = 8BB92CFB27A4BCC900420832 /* PBXTextBookmark */;
+ 8BDCAB7327CECC7300A07B67 /* PBXTextBookmark */ = 8BDCAB7327CECC7300A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -72,7 +72,7 @@
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {570, 1728}}";
sepNavSelRange = "{2798, 0}";
- sepNavVisRange = "{2695, 122}";
+ sepNavVisRange = "{2768, 45}";
sepNavWindowFrame = "{{543, 47}, {895, 831}}";
};
};
@@ -106,16 +106,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8BB92CFA27A4BCC900420832 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 245463B80991757100464AD3 /* UltrasonX.h */;
- name = "UltrasonX.h: 79";
- rLen = 0;
- rLoc = 2798;
- rType = 0;
- vrLen = 122;
- vrLoc = 2695;
- };
8BB92CFB27A4BCC900420832 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 245463B80991757100464AD3 /* UltrasonX.h */;
@@ -126,6 +116,16 @@
vrLen = 122;
vrLoc = 2695;
};
+ 8BDCAB7327CECC7300A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 245463B80991757100464AD3 /* UltrasonX.h */;
+ name = "UltrasonX.h: 81";
+ rLen = 0;
+ rLoc = 2798;
+ rType = 0;
+ vrLen = 45;
+ vrLoc = 2768;
+ };
8D01CCC60486CAD60068D4B7 /* UltrasonX */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/UltrasonX/UltrasonX.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/UltrasonX/UltrasonX.xcodeproj/christopherjohnson.perspectivev3
index 0797fcd06..6aa868c6d 100644
--- a/plugins/MacVST/UltrasonX/UltrasonX.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/UltrasonX/UltrasonX.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 596 293 810 487 0 0 1440 878
+ 445 165 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8BB92CFB27A4BCC900420832
+ 8BDCAB7327CECC7300A07B67
history
- 8BB92CFA27A4BCC900420832
+ 8BB92CFB27A4BCC900420832
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 132}}
+ {{0, 0}, {603, 117}}
RubberWindowFrame
- 596 293 810 487 0 0 1440 878
+ 445 165 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 132pt
+ 117pt
Proportion
- 309pt
+ 324pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 297}}
RubberWindowFrame
- 596 293 810 487 0 0 1440 878
+ 445 165 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8BB92CFC27A4BCC900420832
+ 8BDCAB7427CECC7300A07B67
1CA23ED40692098700951B8B
- 8BB92CFD27A4BCC900420832
+ 8BDCAB7527CECC7300A07B67
8B0237581D42B1C400E1E8C8
- 8BB92CFE27A4BCC900420832
+ 8BDCAB7627CECC7300A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 665107657.09046304
+ 667864179.55320597
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,11 +651,10 @@
5
WindowOrderList
- 8BB92CFF27A4BCC900420832
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/UltrasonX/UltrasonX.xcodeproj
WindowString
- 596 293 810 487 0 0 1440 878
+ 445 165 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Ultrasonic/Ultrasonic.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Ultrasonic/Ultrasonic.xcodeproj/christopherjohnson.pbxuser
index 8db5358ce..9a99e4287 100755
--- a/plugins/MacVST/Ultrasonic/Ultrasonic.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Ultrasonic/Ultrasonic.xcodeproj/christopherjohnson.pbxuser
@@ -49,14 +49,14 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 653970907;
- PBXWorkspaceStateSaveDate = 653970907;
+ PBXPerProjectTemplateStateSaveDate = 667864126;
+ PBXWorkspaceStateSaveDate = 667864126;
};
perUserProjectItems = {
8B29780026F963A5002101B3 /* PBXTextBookmark */ = 8B29780026F963A5002101B3 /* PBXTextBookmark */;
8B29794726FACE39002101B3 /* PBXTextBookmark */ = 8B29794726FACE39002101B3 /* PBXTextBookmark */;
- 8B29794826FACE39002101B3 /* PBXBookmark */ = 8B29794826FACE39002101B3 /* PBXBookmark */;
8B29794926FACE39002101B3 /* PBXTextBookmark */ = 8B29794926FACE39002101B3 /* PBXTextBookmark */;
+ 8BDCAAFB27CECC4200A07B67 /* PBXTextBookmark */ = 8BDCAAFB27CECC4200A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -88,9 +88,9 @@
};
24D8286F09A914000093AEF8 /* UltrasonicProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1416, 3708}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1416, 3654}}";
sepNavSelRange = "{2275, 2842}";
- sepNavVisRange = "{2275, 289}";
+ sepNavVisRange = "{2270, 284}";
sepNavWindowFrame = "{{6, 42}, {1006, 834}}";
};
};
@@ -128,10 +128,6 @@
vrLen = 28;
vrLoc = 2775;
};
- 8B29794826FACE39002101B3 /* PBXBookmark */ = {
- isa = PBXBookmark;
- fRef = 24D8286F09A914000093AEF8 /* UltrasonicProc.cpp */;
- };
8B29794926FACE39002101B3 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* UltrasonicProc.cpp */;
@@ -142,6 +138,16 @@
vrLen = 289;
vrLoc = 2275;
};
+ 8BDCAAFB27CECC4200A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* UltrasonicProc.cpp */;
+ name = "UltrasonicProc.cpp: 71";
+ rLen = 2842;
+ rLoc = 2275;
+ rType = 0;
+ vrLen = 284;
+ vrLoc = 2270;
+ };
8D01CCC60486CAD60068D4B7 /* Ultrasonic */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/Ultrasonic/Ultrasonic.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Ultrasonic/Ultrasonic.xcodeproj/christopherjohnson.perspectivev3
index 1e040c1e1..2b48aff50 100755
--- a/plugins/MacVST/Ultrasonic/Ultrasonic.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Ultrasonic/Ultrasonic.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 19 303 810 487 0 0 1440 878
+ 14 169 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,12 +351,12 @@
_historyCapacity
0
bookmark
- 8B29794926FACE39002101B3
+ 8BDCAAFB27CECC4200A07B67
history
8B29780026F963A5002101B3
8B29794726FACE39002101B3
- 8B29794826FACE39002101B3
+ 8B29794926FACE39002101B3
SplitCount
@@ -370,18 +370,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 86}}
+ {{0, 0}, {603, 69}}
RubberWindowFrame
- 19 303 810 487 0 0 1440 878
+ 14 169 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 86pt
+ 69pt
Proportion
- 355pt
+ 372pt
Tabs
@@ -395,9 +395,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 328}}
+ {{10, 27}, {603, 345}}
RubberWindowFrame
- 19 303 810 487 0 0 1440 878
+ 14 169 810 487 0 0 1280 698
Module
XCDetailModule
@@ -479,11 +479,11 @@
TableOfContents
- 8B29794A26FACE39002101B3
+ 8BDCAAFC27CECC4200A07B67
1CA23ED40692098700951B8B
- 8B29794B26FACE39002101B3
+ 8BDCAAFD27CECC4200A07B67
8B0237581D42B1C400E1E8C8
- 8B29794C26FACE39002101B3
+ 8BDCAAFE27CECC4200A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -636,7 +636,7 @@
StatusbarIsVisible
TimeStamp
- 653971001.59365499
+ 667864130.519436
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -653,11 +653,10 @@
5
WindowOrderList
- 8B29794D26FACE39002101B3
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Ultrasonic/Ultrasonic.xcodeproj
WindowString
- 19 303 810 487 0 0 1440 878
+ 14 169 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/UltrasonicLite/UltrasonicLite.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/UltrasonicLite/UltrasonicLite.xcodeproj/christopherjohnson.pbxuser
index be0e02d32..c267ae593 100644
--- a/plugins/MacVST/UltrasonicLite/UltrasonicLite.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/UltrasonicLite/UltrasonicLite.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* UltrasonicLite */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 653971098;
- PBXWorkspaceStateSaveDate = 653971098;
+ PBXPerProjectTemplateStateSaveDate = 667864142;
+ PBXWorkspaceStateSaveDate = 667864142;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -66,10 +66,10 @@
};
245463B80991757100464AD3 /* UltrasonicLite.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1110, 1098}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1110, 1116}}";
sepNavSelRange = "{2438, 0}";
- sepNavVisRange = "{425, 2055}";
- sepNavWindowFrame = "{{521, 47}, {895, 831}}";
+ sepNavVisRange = "{0, 727}";
+ sepNavWindowFrame = "{{385, 4}, {895, 694}}";
};
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* UltrasonicLite */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/UltrasonicLite/UltrasonicLite.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/UltrasonicLite/UltrasonicLite.xcodeproj/christopherjohnson.perspectivev3
index 21964f77a..08fbb1b2b 100644
--- a/plugins/MacVST/UltrasonicLite/UltrasonicLite.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/UltrasonicLite/UltrasonicLite.xcodeproj/christopherjohnson.perspectivev3
@@ -300,7 +300,7 @@
PBXSmartGroupTreeModuleOutlineStateSelectionKey
- 6
+ 7
4
0
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 627 388 810 487 0 0 1440 878
+ 468 210 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 627 388 810 487 0 0 1440 878
+ 468 210 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 627 388 810 487 0 0 1440 878
+ 468 210 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B29799826FACF9B002101B3
+ 8BDCAB3727CECC5A00A07B67
1CA23ED40692098700951B8B
- 8B29799926FACF9B002101B3
+ 8BDCAB3827CECC5A00A07B67
8B0237581D42B1C400E1E8C8
- 8B29799A26FACF9B002101B3
+ 8BDCAB3927CECC5A00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 653971355.67383301
+ 667864154.57663202
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +643,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/UltrasonicLite/UltrasonicLite.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/UltrasonicLite/UltrasonicLite.xcodeproj
WindowString
- 627 388 810 487 0 0 1440 878
+ 468 210 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/UltrasonicLite/UltrasonicLite.xcodeproj/project.pbxproj b/plugins/MacVST/UltrasonicLite/UltrasonicLite.xcodeproj/project.pbxproj
index 5ee6dd7ab..90cff8e39 100755
--- a/plugins/MacVST/UltrasonicLite/UltrasonicLite.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/UltrasonicLite/UltrasonicLite.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* UltrasonicLite */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "UltrasonicLite" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* UltrasonicLite */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/UltrasonicMed/UltrasonicMed.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/UltrasonicMed/UltrasonicMed.xcodeproj/christopherjohnson.pbxuser
index 83dfff69d..066486e65 100644
--- a/plugins/MacVST/UltrasonicMed/UltrasonicMed.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/UltrasonicMed/UltrasonicMed.xcodeproj/christopherjohnson.pbxuser
@@ -49,8 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 653967740;
- PBXWorkspaceStateSaveDate = 653967740;
+ PBXPerProjectTemplateStateSaveDate = 667864159;
+ PBXWorkspaceStateSaveDate = 667864159;
+ };
+ perUserProjectItems = {
+ 8BDCAB5427CECC6700A07B67 /* XCBuildMessageTextBookmark */ = 8BDCAB5427CECC6700A07B67 /* XCBuildMessageTextBookmark */;
+ 8BDCAB5527CECC6700A07B67 /* PBXTextBookmark */ = 8BDCAB5527CECC6700A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -58,9 +62,9 @@
};
2407DEB6089929BA00EB68BF /* UltrasonicMed.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {975, 1746}}";
- sepNavSelRange = "{534, 0}";
- sepNavVisRange = "{0, 1811}";
+ sepNavIntBoundsRect = "{{0, 0}, {975, 1836}}";
+ sepNavSelRange = "{2200, 0}";
+ sepNavVisRange = "{2117, 196}";
sepNavWindowFrame = "{{519, 47}, {895, 831}}";
};
};
@@ -102,6 +106,25 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
+ 8BDCAB5427CECC6700A07B67 /* XCBuildMessageTextBookmark */ = {
+ isa = PBXTextBookmark;
+ comments = "Unused variable 'chunkData'";
+ fRef = 2407DEB6089929BA00EB68BF /* UltrasonicMed.cpp */;
+ fallbackIsa = XCBuildMessageTextBookmark;
+ rLen = 1;
+ rLoc = 54;
+ rType = 1;
+ };
+ 8BDCAB5527CECC6700A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 2407DEB6089929BA00EB68BF /* UltrasonicMed.cpp */;
+ name = "UltrasonicMed.cpp: 55";
+ rLen = 0;
+ rLoc = 2200;
+ rType = 0;
+ vrLen = 196;
+ vrLoc = 2117;
+ };
8D01CCC60486CAD60068D4B7 /* UltrasonicMed */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/UltrasonicMed/UltrasonicMed.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/UltrasonicMed/UltrasonicMed.xcodeproj/christopherjohnson.perspectivev3
index e92812b2c..96df66723 100644
--- a/plugins/MacVST/UltrasonicMed/UltrasonicMed.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/UltrasonicMed/UltrasonicMed.xcodeproj/christopherjohnson.perspectivev3
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 575 145 810 487 0 0 1440 878
+ 429 95 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -339,7 +337,7 @@
PBXProjectModuleGUID
8B0237581D42B1C400E1E8C8
PBXProjectModuleLabel
- Gain.h
+ UltrasonicMed.cpp
PBXSplitModuleInNavigatorKey
Split0
@@ -347,7 +345,15 @@
PBXProjectModuleGUID
8B0237591D42B1C400E1E8C8
PBXProjectModuleLabel
- Gain.h
+ UltrasonicMed.cpp
+ _historyCapacity
+ 0
+ bookmark
+ 8BDCAB5527CECC6700A07B67
+ history
+
+ 8BDCAB5427CECC6700A07B67
+
SplitCount
1
@@ -360,18 +366,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 0}}
+ {{0, 0}, {603, 132}}
RubberWindowFrame
- 575 145 810 487 0 0 1440 878
+ 429 95 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 0pt
+ 132pt
Proportion
- 441pt
+ 309pt
Tabs
@@ -439,9 +445,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 414}}
+ {{10, 27}, {603, 282}}
RubberWindowFrame
- 575 145 810 487 0 0 1440 878
+ 429 95 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -469,11 +475,11 @@
TableOfContents
- 8B2979A426FACFEA002101B3
+ 8BDCAB5627CECC6700A07B67
1CA23ED40692098700951B8B
- 8B2979A526FACFEA002101B3
+ 8BDCAB5727CECC6700A07B67
8B0237581D42B1C400E1E8C8
- 8B2979A626FACFEA002101B3
+ 8BDCAB5827CECC6700A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +632,7 @@
StatusbarIsVisible
TimeStamp
- 653971434.443887
+ 667864167.96393502
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +649,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/UltrasonicMed/UltrasonicMed.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/UltrasonicMed/UltrasonicMed.xcodeproj
WindowString
- 575 145 810 487 0 0 1440 878
+ 429 95 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/UnBox/UnBox.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/UnBox/UnBox.xcodeproj/christopherjohnson.pbxuser
index fb55850b1..2d45b09b7 100755
--- a/plugins/MacVST/UnBox/UnBox.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/UnBox/UnBox.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 631581277;
- PBXWorkspaceStateSaveDate = 631581277;
+ PBXPerProjectTemplateStateSaveDate = 667864184;
+ PBXWorkspaceStateSaveDate = 667864184;
};
perUserProjectItems = {
8B2E7BF625A52A6800485B86 /* PBXTextBookmark */ = 8B2E7BF625A52A6800485B86 /* PBXTextBookmark */;
- 8BB525692222045A000C92BC /* PBXTextBookmark */ = 8BB525692222045A000C92BC /* PBXTextBookmark */;
+ 8BDCAB9127CECC7C00A07B67 /* PBXTextBookmark */ = 8BDCAB9127CECC7C00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -78,9 +78,9 @@
};
24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1074, 27522}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1074, 27450}}";
sepNavSelRange = "{10616, 0}";
- sepNavVisRange = "{10613, 126}";
+ sepNavVisRange = "{10613, 123}";
sepNavWindowFrame = "{{15, 42}, {895, 831}}";
};
};
@@ -116,15 +116,15 @@
vrLen = 80;
vrLoc = 10613;
};
- 8BB525692222045A000C92BC /* PBXTextBookmark */ = {
+ 8BDCAB9127CECC7C00A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
name = "audioeffectx.cpp: 307";
rLen = 0;
rLoc = 10616;
rType = 0;
- vrLen = 280;
- vrLoc = 10459;
+ vrLen = 80;
+ vrLoc = 10613;
};
8D01CCC60486CAD60068D4B7 /* UnBox */ = {
activeExec = 0;
diff --git a/plugins/MacVST/UnBox/UnBox.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/UnBox/UnBox.xcodeproj/christopherjohnson.perspectivev3
index aea7e010f..6a311bf90 100755
--- a/plugins/MacVST/UnBox/UnBox.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/UnBox/UnBox.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 64 284 810 487 0 0 1440 878
+ 48 160 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B2E7BF625A52A6800485B86
+ 8BDCAB9127CECC7C00A07B67
history
- 8BB525692222045A000C92BC
+ 8B2E7BF625A52A6800485B86
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 86}}
+ {{0, 0}, {603, 69}}
RubberWindowFrame
- 64 284 810 487 0 0 1440 878
+ 48 160 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 86pt
+ 69pt
Proportion
- 355pt
+ 372pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 328}}
+ {{10, 27}, {603, 345}}
RubberWindowFrame
- 64 284 810 487 0 0 1440 878
+ 48 160 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B2E7BF725A52A6800485B86
+ 8BDCAB9227CECC7C00A07B67
1CA23ED40692098700951B8B
- 8B2E7BF825A52A6800485B86
+ 8BDCAB9327CECC7C00A07B67
8B0237581D42B1C400E1E8C8
- 8B2E7BF925A52A6800485B86
+ 8BDCAB9427CECC7C00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 631581288.15676999
+ 667864188.53662097
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +651,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/Plugins/MacVST/UnBox/UnBox.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/UnBox/UnBox.xcodeproj
WindowString
- 64 284 810 487 0 0 1440 878
+ 48 160 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/VariMu/VariMu.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/VariMu/VariMu.xcodeproj/christopherjohnson.pbxuser
index 26171e997..c7b721186 100755
--- a/plugins/MacVST/VariMu/VariMu.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/VariMu/VariMu.xcodeproj/christopherjohnson.pbxuser
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569773498;
- PBXWorkspaceStateSaveDate = 569773498;
+ PBXPerProjectTemplateStateSaveDate = 667864198;
+ PBXWorkspaceStateSaveDate = 667864198;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
diff --git a/plugins/MacVST/VariMu/VariMu.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/VariMu/VariMu.xcodeproj/christopherjohnson.perspectivev3
index 1fd954d84..26357a141 100755
--- a/plugins/MacVST/VariMu/VariMu.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/VariMu/VariMu.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 398 267 810 487 0 0 1440 878
+ 297 152 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 398 267 810 487 0 0 1440 878
+ 297 152 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 398 267 810 487 0 0 1440 878
+ 297 152 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B7942CD21F60DC2006E9731
+ 8BDCABAF27CECC8B00A07B67
1CA23ED40692098700951B8B
- 8B7942CE21F60DC2006E9731
+ 8BDCABB027CECC8B00A07B67
8B0237581D42B1C400E1E8C8
- 8B7942CF21F60DC2006E9731
+ 8BDCABB127CECC8B00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 569773506.89082396
+ 667864203.00878203
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +643,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/VariMu/VariMu.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/VariMu/VariMu.xcodeproj
WindowString
- 398 267 810 487 0 0 1440 878
+ 297 152 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Verbity/Verbity.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Verbity/Verbity.xcodeproj/christopherjohnson.pbxuser
index d40d41752..99c4ce6eb 100755
--- a/plugins/MacVST/Verbity/Verbity.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Verbity/Verbity.xcodeproj/christopherjohnson.pbxuser
@@ -49,13 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 646345570;
- PBXWorkspaceStateSaveDate = 646345570;
+ PBXPerProjectTemplateStateSaveDate = 667864296;
+ PBXWorkspaceStateSaveDate = 667864296;
};
perUserProjectItems = {
- 8B60883026853FA50032D630 /* PBXTextBookmark */ = 8B60883026853FA50032D630 /* PBXTextBookmark */;
8B7FF461265A7CF400EA6425 /* PBXTextBookmark */ = 8B7FF461265A7CF400EA6425 /* PBXTextBookmark */;
- 8BDC4C392686738E0000E649 /* PBXTextBookmark */ = 8BDC4C392686738E0000E649 /* PBXTextBookmark */;
+ 8BDCAC3B27CECE9500A07B67 /* PBXTextBookmark */ = 8BDCAC3B27CECE9500A07B67 /* PBXTextBookmark */;
+ 8BDCAC3C27CECE9500A07B67 /* PBXTextBookmark */ = 8BDCAC3C27CECE9500A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -87,10 +87,10 @@
};
24D8286F09A914000093AEF8 /* VerbityProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {795, 8748}}";
+ sepNavIntBoundsRect = "{{0, 0}, {669, 8730}}";
sepNavSelRange = "{3554, 0}";
- sepNavVisRange = "{68, 144}";
- sepNavWindowFrame = "{{313, 42}, {1127, 836}}";
+ sepNavVisRange = "{170, 42}";
+ sepNavWindowFrame = "{{153, 4}, {1127, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -107,16 +107,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B60883026853FA50032D630 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* VerbityProc.cpp */;
- name = "VerbityProc.cpp: 90";
- rLen = 0;
- rLoc = 3554;
- rType = 0;
- vrLen = 168;
- vrLoc = 44;
- };
8B7FF461265A7CF400EA6425 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 245463B80991757100464AD3 /* Verbity.h */;
@@ -127,15 +117,25 @@
vrLen = 56;
vrLoc = 3013;
};
- 8BDC4C392686738E0000E649 /* PBXTextBookmark */ = {
+ 8BDCAC3B27CECE9500A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* VerbityProc.cpp */;
- name = "VerbityProc.cpp: 90";
+ name = "VerbityProc.cpp: 91";
rLen = 0;
rLoc = 3554;
rType = 0;
- vrLen = 144;
- vrLoc = 68;
+ vrLen = 42;
+ vrLoc = 170;
+ };
+ 8BDCAC3C27CECE9500A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* VerbityProc.cpp */;
+ name = "VerbityProc.cpp: 91";
+ rLen = 0;
+ rLoc = 3554;
+ rType = 0;
+ vrLen = 42;
+ vrLoc = 170;
};
8D01CCC60486CAD60068D4B7 /* Verbity */ = {
activeExec = 0;
diff --git a/plugins/MacVST/Verbity/Verbity.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Verbity/Verbity.xcodeproj/christopherjohnson.perspectivev3
index b4d082689..8f68fb564 100755
--- a/plugins/MacVST/Verbity/Verbity.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Verbity/Verbity.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 485 310 810 487 0 0 1440 878
+ 362 173 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,11 +351,11 @@
_historyCapacity
0
bookmark
- 8BDC4C392686738E0000E649
+ 8BDCAC3C27CECE9500A07B67
history
8B7FF461265A7CF400EA6425
- 8B60883026853FA50032D630
+ 8BDCAC3B27CECE9500A07B67
SplitCount
@@ -369,18 +369,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 117}}
+ {{0, 0}, {603, 86}}
RubberWindowFrame
- 485 310 810 487 0 0 1440 878
+ 362 173 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 117pt
+ 86pt
Proportion
- 324pt
+ 355pt
Tabs
@@ -394,9 +394,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
+ {{10, 27}, {603, 328}}
RubberWindowFrame
- 485 310 810 487 0 0 1440 878
+ 362 173 810 487 0 0 1280 698
Module
XCDetailModule
@@ -478,11 +478,11 @@
TableOfContents
- 8BDC4C3A2686738E0000E649
+ 8BDCAC3D27CECE9500A07B67
1CA23ED40692098700951B8B
- 8BDC4C3B2686738E0000E649
+ 8BDCAC3E27CECE9500A07B67
8B0237581D42B1C400E1E8C8
- 8BDC4C3C2686738E0000E649
+ 8BDCAC3F27CECE9500A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -635,7 +635,7 @@
StatusbarIsVisible
TimeStamp
- 646345614.85112798
+ 667864725.942186
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -652,11 +652,11 @@
5
WindowOrderList
- 8BDC4C3D2686738E0000E649
+ 8BDCAC4027CECE9500A07B67
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Verbity/Verbity.xcodeproj
WindowString
- 485 310 810 487 0 0 1440 878
+ 362 173 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Vibrato/Vibrato.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Vibrato/Vibrato.xcodeproj/christopherjohnson.pbxuser
index f4992fd25..058138087 100755
--- a/plugins/MacVST/Vibrato/Vibrato.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Vibrato/Vibrato.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* Vibrato */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 582760023;
- PBXWorkspaceStateSaveDate = 582760023;
+ PBXPerProjectTemplateStateSaveDate = 667864227;
+ PBXWorkspaceStateSaveDate = 667864227;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* Vibrato */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/Vibrato/Vibrato.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Vibrato/Vibrato.xcodeproj/christopherjohnson.perspectivev3
index fa914f9fa..e011114e5 100755
--- a/plugins/MacVST/Vibrato/Vibrato.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Vibrato/Vibrato.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 173 316 810 487 0 0 1440 878
+ 129 176 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 173 316 810 487 0 0 1440 878
+ 129 176 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 173 316 810 487 0 0 1440 878
+ 129 176 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B863C4722BC45E40060027F
+ 8BDCABEA27CECCA800A07B67
1CA23ED40692098700951B8B
- 8B863C4822BC45E40060027F
+ 8BDCABEB27CECCA800A07B67
8B0237581D42B1C400E1E8C8
- 8B863C4922BC45E40060027F
+ 8BDCABEC27CECCA800A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 582764004.88007998
+ 667864232.73641098
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,11 +643,10 @@
5
WindowOrderList
- 8B863C4A22BC45E40060027F
- /Users/christopherjohnson/Desktop/Vibrato/Vibrato.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Vibrato/Vibrato.xcodeproj
WindowString
- 173 316 810 487 0 0 1440 878
+ 129 176 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Vibrato/Vibrato.xcodeproj/project.pbxproj b/plugins/MacVST/Vibrato/Vibrato.xcodeproj/project.pbxproj
index 381243236..b872328f9 100755
--- a/plugins/MacVST/Vibrato/Vibrato.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/Vibrato/Vibrato.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* Vibrato */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "Vibrato" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* Vibrato */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/VinylDither/VinylDither.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/VinylDither/VinylDither.xcodeproj/christopherjohnson.pbxuser
index 9e652fc3a..21bf23be9 100755
--- a/plugins/MacVST/VinylDither/VinylDither.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/VinylDither/VinylDither.xcodeproj/christopherjohnson.pbxuser
@@ -51,12 +51,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 615684287;
- PBXWorkspaceStateSaveDate = 615684287;
+ PBXPerProjectTemplateStateSaveDate = 667864237;
+ PBXWorkspaceStateSaveDate = 667864237;
};
perUserProjectItems = {
- 8BB9A36F24B2817400CD76A8 /* PBXTextBookmark */ = 8BB9A36F24B2817400CD76A8 /* PBXTextBookmark */;
- 8BB9A5F924B298CE00CD76A8 /* PBXTextBookmark */ = 8BB9A5F924B298CE00CD76A8 /* PBXTextBookmark */;
+ 8BDCAC0727CECCB000A07B67 /* PBXTextBookmark */ = 8BDCAC0727CECCB000A07B67 /* PBXTextBookmark */;
+ 8BDCAC3327CECE8800A07B67 /* PBXTextBookmark */ = 8BDCAC3327CECE8800A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -88,10 +88,10 @@
};
24D8286F09A914000093AEF8 /* VinylDitherProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {554, 3809}}";
- sepNavSelRange = "{5856, 0}";
+ sepNavIntBoundsRect = "{{0, 0}, {554, 6984}}";
+ sepNavSelRange = "{7596, 0}";
sepNavVisRange = "{0, 0}";
- sepNavWindowFrame = "{{545, 57}, {895, 821}}";
+ sepNavWindowFrame = "{{302, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -108,22 +108,22 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8BB9A36F24B2817400CD76A8 /* PBXTextBookmark */ = {
+ 8BDCAC0727CECCB000A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* VinylDitherProc.cpp */;
- name = "VinylDitherProc.cpp: 158";
+ name = "VinylDitherProc.cpp: 155";
rLen = 0;
- rLoc = 5856;
+ rLoc = 7596;
rType = 0;
- vrLen = 20;
- vrLoc = 5835;
+ vrLen = 0;
+ vrLoc = 0;
};
- 8BB9A5F924B298CE00CD76A8 /* PBXTextBookmark */ = {
+ 8BDCAC3327CECE8800A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* VinylDitherProc.cpp */;
- name = "VinylDitherProc.cpp: 158";
+ name = "VinylDitherProc.cpp: 183";
rLen = 0;
- rLoc = 5856;
+ rLoc = 7596;
rType = 0;
vrLen = 0;
vrLoc = 0;
diff --git a/plugins/MacVST/VinylDither/VinylDither.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/VinylDither/VinylDither.xcodeproj/christopherjohnson.perspectivev3
index 037a035c0..380ea6ba4 100755
--- a/plugins/MacVST/VinylDither/VinylDither.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/VinylDither/VinylDither.xcodeproj/christopherjohnson.perspectivev3
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 627 289 810 487 0 0 1440 878
+ 468 163 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +349,10 @@
_historyCapacity
0
bookmark
- 8BB9A5F924B298CE00CD76A8
+ 8BDCAC3327CECE8800A07B67
history
- 8BB9A36F24B2817400CD76A8
+ 8BDCAC0727CECCB000A07B67
SplitCount
@@ -368,18 +366,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 32}}
+ {{0, 0}, {603, 13}}
RubberWindowFrame
- 627 289 810 487 0 0 1440 878
+ 468 163 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 32pt
+ 13pt
Proportion
- 409pt
+ 428pt
Tabs
@@ -393,9 +391,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 382}}
- RubberWindowFrame
- 627 289 810 487 0 0 1440 878
+ {{10, 27}, {603, 401}}
Module
XCDetailModule
@@ -449,7 +445,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 401}}
+ RubberWindowFrame
+ 468 163 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -477,11 +475,11 @@
TableOfContents
- 8BB9A5FA24B298CE00CD76A8
+ 8BDCAC3427CECE8800A07B67
1CA23ED40692098700951B8B
- 8BB9A5FB24B298CE00CD76A8
+ 8BDCAC3527CECE8800A07B67
8B0237581D42B1C400E1E8C8
- 8BB9A5FC24B298CE00CD76A8
+ 8BDCAC3627CECE8800A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -654,7 +652,7 @@
StatusbarIsVisible
TimeStamp
- 615684302.64082897
+ 667864712.68979502
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -671,11 +669,11 @@
5
WindowOrderList
- 8BB9A5FD24B298CE00CD76A8
- /Users/christopherjohnson/Desktop/VinylDither/VinylDither.xcodeproj
+ 8BDCAC3727CECE8800A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/VinylDither/VinylDither.xcodeproj
WindowString
- 627 289 810 487 0 0 1440 878
+ 468 163 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/VinylDither/source/VinylDitherProc.cpp b/plugins/MacVST/VinylDither/source/VinylDitherProc.cpp
index 018cea36a..1adede36a 100755
--- a/plugins/MacVST/VinylDither/source/VinylDitherProc.cpp
+++ b/plugins/MacVST/VinylDither/source/VinylDitherProc.cpp
@@ -32,46 +32,59 @@ void VinylDither::processReplacing(float **inputs, float **outputs, VstInt32 sam
{
double inputSampleL = *in1;
double inputSampleR = *in2;
- if (fabs(inputSampleL)<1.18e-37) inputSampleL = fpd * 1.18e-37;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
- if (fabs(inputSampleR)<1.18e-37) inputSampleR = fpd * 1.18e-37;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
+ if (fabs(inputSampleL)<1.18e-23) inputSampleL = fpdL * 1.18e-17;
+ if (fabs(inputSampleR)<1.18e-23) inputSampleR = fpdR * 1.18e-17;
inputSampleL *= scaleFactor;
inputSampleR *= scaleFactor;
//0-1 is now one bit, now we dither
- absSample = ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample = ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[0] += absSample; nsL[0] /= 2; absSample -= nsL[0];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[1] += absSample; nsL[1] /= 2; absSample -= nsL[1];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[2] += absSample; nsL[2] /= 2; absSample -= nsL[2];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[3] += absSample; nsL[3] /= 2; absSample -= nsL[3];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[4] += absSample; nsL[4] /= 2; absSample -= nsL[4];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[5] += absSample; nsL[5] /= 2; absSample -= nsL[5];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[6] += absSample; nsL[6] /= 2; absSample -= nsL[6];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[7] += absSample; nsL[7] /= 2; absSample -= nsL[7];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[8] += absSample; nsL[8] /= 2; absSample -= nsL[8];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[9] += absSample; nsL[9] /= 2; absSample -= nsL[9];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[10] += absSample; nsL[10] /= 2; absSample -= nsL[10];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[11] += absSample; nsL[11] /= 2; absSample -= nsL[11];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[12] += absSample; nsL[12] /= 2; absSample -= nsL[12];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[13] += absSample; nsL[13] /= 2; absSample -= nsL[13];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[14] += absSample; nsL[14] /= 2; absSample -= nsL[14];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[15] += absSample; nsL[15] /= 2; absSample -= nsL[15];
//install noise and then shape it
absSample += inputSampleL;
@@ -87,37 +100,52 @@ void VinylDither::processReplacing(float **inputs, float **outputs, VstInt32 sam
inputSampleL = floor(absSample);
//TenNines dither L
- absSample = ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample = ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[0] += absSample; nsR[0] /= 2; absSample -= nsR[0];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[1] += absSample; nsR[1] /= 2; absSample -= nsR[1];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[2] += absSample; nsR[2] /= 2; absSample -= nsR[2];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[3] += absSample; nsR[3] /= 2; absSample -= nsR[3];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[4] += absSample; nsR[4] /= 2; absSample -= nsR[4];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[5] += absSample; nsR[5] /= 2; absSample -= nsR[5];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[6] += absSample; nsR[6] /= 2; absSample -= nsR[6];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[7] += absSample; nsR[7] /= 2; absSample -= nsR[7];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[8] += absSample; nsR[8] /= 2; absSample -= nsR[8];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[9] += absSample; nsR[9] /= 2; absSample -= nsR[9];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[10] += absSample; nsR[10] /= 2; absSample -= nsR[10];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[11] += absSample; nsR[11] /= 2; absSample -= nsR[11];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[12] += absSample; nsR[12] /= 2; absSample -= nsR[12];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[13] += absSample; nsR[13] /= 2; absSample -= nsR[13];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[14] += absSample; nsR[14] /= 2; absSample -= nsR[14];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[15] += absSample; nsR[15] /= 2; absSample -= nsR[15];
//install noise and then shape it
absSample += inputSampleR;
@@ -175,46 +203,59 @@ void VinylDither::processDoubleReplacing(double **inputs, double **outputs, VstI
{
double inputSampleL = *in1;
double inputSampleR = *in2;
- if (fabs(inputSampleL)<1.18e-43) inputSampleL = fpd * 1.18e-43;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
- if (fabs(inputSampleR)<1.18e-43) inputSampleR = fpd * 1.18e-43;
- fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
+ if (fabs(inputSampleL)<1.18e-23) inputSampleL = fpdL * 1.18e-17;
+ if (fabs(inputSampleR)<1.18e-23) inputSampleR = fpdR * 1.18e-17;
inputSampleL *= scaleFactor;
inputSampleR *= scaleFactor;
//0-1 is now one bit, now we dither
- absSample = ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample = ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[0] += absSample; nsL[0] /= 2; absSample -= nsL[0];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[1] += absSample; nsL[1] /= 2; absSample -= nsL[1];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[2] += absSample; nsL[2] /= 2; absSample -= nsL[2];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[3] += absSample; nsL[3] /= 2; absSample -= nsL[3];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[4] += absSample; nsL[4] /= 2; absSample -= nsL[4];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[5] += absSample; nsL[5] /= 2; absSample -= nsL[5];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[6] += absSample; nsL[6] /= 2; absSample -= nsL[6];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[7] += absSample; nsL[7] /= 2; absSample -= nsL[7];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[8] += absSample; nsL[8] /= 2; absSample -= nsL[8];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[9] += absSample; nsL[9] /= 2; absSample -= nsL[9];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[10] += absSample; nsL[10] /= 2; absSample -= nsL[10];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[11] += absSample; nsL[11] /= 2; absSample -= nsL[11];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[12] += absSample; nsL[12] /= 2; absSample -= nsL[12];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[13] += absSample; nsL[13] /= 2; absSample -= nsL[13];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[14] += absSample; nsL[14] /= 2; absSample -= nsL[14];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5;
+ absSample += ((double(fpdL)/UINT32_MAX) - 0.5);
nsL[15] += absSample; nsL[15] /= 2; absSample -= nsL[15];
//install noise and then shape it
absSample += inputSampleL;
@@ -230,37 +271,52 @@ void VinylDither::processDoubleReplacing(double **inputs, double **outputs, VstI
inputSampleL = floor(absSample);
//TenNines dither L
- absSample = ((double(fpd)/UINT32_MAX) - 0.5);
+ absSample = ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[0] += absSample; nsR[0] /= 2; absSample -= nsR[0];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[1] += absSample; nsR[1] /= 2; absSample -= nsR[1];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[2] += absSample; nsR[2] /= 2; absSample -= nsR[2];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[3] += absSample; nsR[3] /= 2; absSample -= nsR[3];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[4] += absSample; nsR[4] /= 2; absSample -= nsR[4];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[5] += absSample; nsR[5] /= 2; absSample -= nsR[5];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[6] += absSample; nsR[6] /= 2; absSample -= nsR[6];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[7] += absSample; nsR[7] /= 2; absSample -= nsR[7];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[8] += absSample; nsR[8] /= 2; absSample -= nsR[8];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[9] += absSample; nsR[9] /= 2; absSample -= nsR[9];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[10] += absSample; nsR[10] /= 2; absSample -= nsR[10];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[11] += absSample; nsR[11] /= 2; absSample -= nsR[11];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[12] += absSample; nsR[12] /= 2; absSample -= nsR[12];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[13] += absSample; nsR[13] /= 2; absSample -= nsR[13];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[14] += absSample; nsR[14] /= 2; absSample -= nsR[14];
- absSample += ((double(fpd)/UINT32_MAX) - 0.5);
+ fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5;
+ absSample += ((double(fpdR)/UINT32_MAX) - 0.5);
nsR[15] += absSample; nsR[15] /= 2; absSample -= nsR[15];
//install noise and then shape it
absSample += inputSampleR;
diff --git a/plugins/MacVST/VoiceOfTheStarship/VoiceOfTheStarship.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/VoiceOfTheStarship/VoiceOfTheStarship.xcodeproj/christopherjohnson.pbxuser
index 2be57bfc9..abd02e92b 100755
--- a/plugins/MacVST/VoiceOfTheStarship/VoiceOfTheStarship.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/VoiceOfTheStarship/VoiceOfTheStarship.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* VoiceOfTheStarship */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569773528;
- PBXWorkspaceStateSaveDate = 569773528;
+ PBXPerProjectTemplateStateSaveDate = 667864786;
+ PBXWorkspaceStateSaveDate = 667864786;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -82,10 +82,10 @@
};
24D8286F09A914000093AEF8 /* VoiceOfTheStarshipProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {769, 5278}}";
- sepNavSelRange = "{12874, 0}";
- sepNavVisRange = "{9273, 1862}";
- sepNavWindowFrame = "{{49, 46}, {816, 832}}";
+ sepNavIntBoundsRect = "{{0, 0}, {966, 6948}}";
+ sepNavSelRange = "{10707, 0}";
+ sepNavVisRange = "{3052, 894}";
+ sepNavWindowFrame = "{{49, 4}, {816, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
+ 8D01CCC60486CAD60068D4B7 /* VoiceOfTheStarship */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/VoiceOfTheStarship/VoiceOfTheStarship.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/VoiceOfTheStarship/VoiceOfTheStarship.xcodeproj/christopherjohnson.perspectivev3
index 91123cf74..c959dee32 100755
--- a/plugins/MacVST/VoiceOfTheStarship/VoiceOfTheStarship.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/VoiceOfTheStarship/VoiceOfTheStarship.xcodeproj/christopherjohnson.perspectivev3
@@ -225,8 +225,8 @@
PerspectiveWidths
- 810
- 810
+ 688
+ 688
Perspectives
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 123 420 688 434 0 0 1440 878
+ 345 249 688 434 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +360,7 @@
Frame
{{0, 0}, {481, 0}}
RubberWindowFrame
- 123 420 688 434 0 0 1440 878
+ 345 249 688 434 0 0 1280 698
Module
PBXNavigatorGroup
@@ -386,8 +384,6 @@
Frame
{{10, 27}, {481, 361}}
- RubberWindowFrame
- 123 420 688 434 0 0 1440 878
Module
XCDetailModule
@@ -441,7 +437,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {481, 361}}
+ RubberWindowFrame
+ 345 249 688 434 0 0 1280 698
Module
PBXBuildResultsModule
@@ -469,11 +467,11 @@
TableOfContents
- 8B7942EC21F60DE2006E9731
+ 8BDCAC6C27CECF2600A07B67
1CA23ED40692098700951B8B
- 8B7942ED21F60DE2006E9731
+ 8BDCAC6D27CECF2600A07B67
8B0237581D42B1C400E1E8C8
- 8B7942EE21F60DE2006E9731
+ 8BDCAC6E27CECF2600A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +624,7 @@
StatusbarIsVisible
TimeStamp
- 569773538.74268901
+ 667864870.91462398
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +641,11 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/VoiceOfTheStarship/VoiceOfTheStarship.xcodeproj
+ 8BDCAC6F27CECF2600A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/VoiceOfTheStarship/VoiceOfTheStarship.xcodeproj
WindowString
- 123 420 688 434 0 0 1440 878
+ 345 249 688 434 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/VoiceOfTheStarship/VoiceOfTheStarship.xcodeproj/project.pbxproj b/plugins/MacVST/VoiceOfTheStarship/VoiceOfTheStarship.xcodeproj/project.pbxproj
index 1ae3b0fc5..6a80a7186 100755
--- a/plugins/MacVST/VoiceOfTheStarship/VoiceOfTheStarship.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/VoiceOfTheStarship/VoiceOfTheStarship.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
+ 8D01CCC60486CAD60068D4B7 /* VoiceOfTheStarship */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "VoiceOfTheStarship" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
+ 8D01CCC60486CAD60068D4B7 /* VoiceOfTheStarship */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/VoiceOfTheStarship/source/VoiceOfTheStarshipProc.cpp b/plugins/MacVST/VoiceOfTheStarship/source/VoiceOfTheStarshipProc.cpp
index fd6e5bdfa..8ea666d37 100755
--- a/plugins/MacVST/VoiceOfTheStarship/source/VoiceOfTheStarshipProc.cpp
+++ b/plugins/MacVST/VoiceOfTheStarship/source/VoiceOfTheStarshipProc.cpp
@@ -110,10 +110,10 @@ void VoiceOfTheStarship::processReplacing(float **inputs, float **outputs, VstIn
//it's a pure random walk that will generate DC.
}
- if (flipL) noiseAL += (double(fpd)/UINT32_MAX);
- else noiseAL -= (double(fpd)/UINT32_MAX);
- if (flipR) noiseAR += (double(fpd)/UINT32_MAX);
- else noiseAR -= (double(fpd)/UINT32_MAX);
+ if (flipL) noiseAL += (double(fpdL)/UINT32_MAX);
+ else noiseAL -= (double(fpdL)/UINT32_MAX);
+ if (flipR) noiseAR += (double(fpdR)/UINT32_MAX);
+ else noiseAR -= (double(fpdR)/UINT32_MAX);
//here's the guts of the random walk
if (filterflip)
@@ -300,10 +300,10 @@ void VoiceOfTheStarship::processDoubleReplacing(double **inputs, double **output
//it's a pure random walk that will generate DC.
}
- if (flipL) noiseAL += (double(fpd)/UINT32_MAX);
- else noiseAL -= (double(fpd)/UINT32_MAX);
- if (flipR) noiseAR += (double(fpd)/UINT32_MAX);
- else noiseAR -= (double(fpd)/UINT32_MAX);
+ if (flipL) noiseAL += (double(fpdL)/UINT32_MAX);
+ else noiseAL -= (double(fpdL)/UINT32_MAX);
+ if (flipR) noiseAR += (double(fpdR)/UINT32_MAX);
+ else noiseAR -= (double(fpdR)/UINT32_MAX);
//here's the guts of the random walk
if (filterflip)
diff --git a/plugins/MacVST/VoiceTrick/VoiceTrick.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/VoiceTrick/VoiceTrick.xcodeproj/christopherjohnson.pbxuser
index 1d55b16d2..e00ed207a 100755
--- a/plugins/MacVST/VoiceTrick/VoiceTrick.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/VoiceTrick/VoiceTrick.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 579146740;
- PBXWorkspaceStateSaveDate = 579146740;
+ PBXPerProjectTemplateStateSaveDate = 667864878;
+ PBXWorkspaceStateSaveDate = 667864878;
};
perUserProjectItems = {
- 8B88124C2285160000D24FED /* PBXBookmark */ = 8B88124C2285160000D24FED /* PBXBookmark */;
8B88124D2285160000D24FED /* PBXTextBookmark */ = 8B88124D2285160000D24FED /* PBXTextBookmark */;
+ 8BDCAC8027CECF3200A07B67 /* PBXTextBookmark */ = 8BDCAC8027CECF3200A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -70,9 +70,9 @@
};
245463B80991757100464AD3 /* VoiceTrick.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {554, 988}}";
+ sepNavIntBoundsRect = "{{0, 0}, {561, 1350}}";
sepNavSelRange = "{0, 0}";
- sepNavVisRange = "{0, 263}";
+ sepNavVisRange = "{0, 216}";
sepNavWindowFrame = "{{20, 57}, {895, 821}}";
};
};
@@ -106,10 +106,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B88124C2285160000D24FED /* PBXBookmark */ = {
- isa = PBXBookmark;
- fRef = 245463B80991757100464AD3 /* VoiceTrick.h */;
- };
8B88124D2285160000D24FED /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 245463B80991757100464AD3 /* VoiceTrick.h */;
@@ -120,6 +116,16 @@
vrLen = 263;
vrLoc = 0;
};
+ 8BDCAC8027CECF3200A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 245463B80991757100464AD3 /* VoiceTrick.h */;
+ name = "VoiceTrick.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 216;
+ vrLoc = 0;
+ };
8D01CCC60486CAD60068D4B7 /* VoiceTrick */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/VoiceTrick/VoiceTrick.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/VoiceTrick/VoiceTrick.xcodeproj/christopherjohnson.perspectivev3
index a69b6a39c..886c8b7bd 100755
--- a/plugins/MacVST/VoiceTrick/VoiceTrick.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/VoiceTrick/VoiceTrick.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B88124D2285160000D24FED
+ 8BDCAC8027CECF3200A07B67
history
- 8B88124C2285160000D24FED
+ 8B88124D2285160000D24FED
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 132}}
+ {{0, 0}, {603, 117}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 132pt
+ 117pt
Proportion
- 309pt
+ 324pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 297}}
RubberWindowFrame
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B88124E2285160000D24FED
+ 8BDCAC8127CECF3200A07B67
1CA23ED40692098700951B8B
- 8B88124F2285160000D24FED
+ 8BDCAC8227CECF3200A07B67
8B0237581D42B1C400E1E8C8
- 8B8812502285160000D24FED
+ 8BDCAC8327CECF3200A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 579147264.61409295
+ 667864882.72759402
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,10 +651,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/VoiceTrick/VoiceTrick.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/VoiceTrick/VoiceTrick.xcodeproj
WindowString
- 34 365 810 487 0 0 1440 878
+ 25 199 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Wider/Wider.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Wider/Wider.xcodeproj/christopherjohnson.pbxuser
index 5391b9ea0..d509f90db 100755
--- a/plugins/MacVST/Wider/Wider.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/Wider/Wider.xcodeproj/christopherjohnson.pbxuser
@@ -49,13 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569773559;
- PBXWorkspaceStateSaveDate = 569773559;
+ PBXPerProjectTemplateStateSaveDate = 667864888;
+ PBXWorkspaceStateSaveDate = 667864888;
};
perUserProjectItems = {
- 8B79430B21F60E03006E9731 /* PBXTextBookmark */ = 8B79430B21F60E03006E9731 /* PBXTextBookmark */;
8BC5D04620940E2D0058B257 /* PBXTextBookmark */ = 8BC5D04620940E2D0058B257 /* PBXTextBookmark */;
- 8BC5D07E20940F320058B257 /* PBXTextBookmark */ = 8BC5D07E20940F320058B257 /* PBXTextBookmark */;
+ 8BDCAC9E27CECF3B00A07B67 /* PBXTextBookmark */ = 8BDCAC9E27CECF3B00A07B67 /* PBXTextBookmark */;
+ 8BDCACA227CECF5C00A07B67 /* PBXTextBookmark */ = 8BDCACA227CECF5C00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -87,10 +87,10 @@
};
24D8286F09A914000093AEF8 /* WiderProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {691, 3926}}";
- sepNavSelRange = "{7057, 0}";
- sepNavVisRange = "{6846, 405}";
- sepNavWindowFrame = "{{11, 47}, {895, 831}}";
+ sepNavIntBoundsRect = "{{0, 0}, {849, 4122}}";
+ sepNavSelRange = "{7081, 0}";
+ sepNavVisRange = "{6925, 201}";
+ sepNavWindowFrame = "{{11, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -107,16 +107,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B79430B21F60E03006E9731 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* WiderProc.cpp */;
- name = "WiderProc.cpp: 203";
- rLen = 0;
- rLoc = 7057;
- rType = 0;
- vrLen = 405;
- vrLoc = 6846;
- };
8BC5D04620940E2D0058B257 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */;
@@ -127,16 +117,26 @@
vrLen = 280;
vrLoc = 10459;
};
- 8BC5D07E20940F320058B257 /* PBXTextBookmark */ = {
+ 8BDCAC9E27CECF3B00A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* WiderProc.cpp */;
- name = "WiderProc.cpp: 209";
+ name = "WiderProc.cpp: 222";
rLen = 0;
- rLoc = 7057;
+ rLoc = 7081;
rType = 0;
- vrLen = 155;
+ vrLen = 190;
vrLoc = 6953;
};
+ 8BDCACA227CECF5C00A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* WiderProc.cpp */;
+ name = "WiderProc.cpp: 222";
+ rLen = 0;
+ rLoc = 7081;
+ rType = 0;
+ vrLen = 201;
+ vrLoc = 6925;
+ };
8D01CCC60486CAD60068D4B7 /* Wider */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/Wider/Wider.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Wider/Wider.xcodeproj/christopherjohnson.perspectivev3
index f44db5ac8..d378b0933 100755
--- a/plugins/MacVST/Wider/Wider.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/Wider/Wider.xcodeproj/christopherjohnson.perspectivev3
@@ -256,8 +256,6 @@
Layout
- BecomeActive
-
ContentConfiguration
PBXBottomSmartGroupGIDs
@@ -323,7 +321,7 @@
185
RubberWindowFrame
- 29 317 810 487 0 0 1440 878
+ 22 176 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,11 +349,11 @@
_historyCapacity
0
bookmark
- 8B79430B21F60E03006E9731
+ 8BDCACA227CECF5C00A07B67
history
8BC5D04620940E2D0058B257
- 8BC5D07E20940F320058B257
+ 8BDCAC9E27CECF3B00A07B67
SplitCount
@@ -369,18 +367,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 86}}
+ {{0, 0}, {603, 69}}
RubberWindowFrame
- 29 317 810 487 0 0 1440 878
+ 22 176 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 86pt
+ 69pt
Proportion
- 355pt
+ 372pt
Tabs
@@ -394,9 +392,7 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 328}}
- RubberWindowFrame
- 29 317 810 487 0 0 1440 878
+ {{10, 27}, {603, 345}}
Module
XCDetailModule
@@ -450,7 +446,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 345}}
+ RubberWindowFrame
+ 22 176 810 487 0 0 1280 698
Module
PBXBuildResultsModule
@@ -478,11 +476,11 @@
TableOfContents
- 8B79430C21F60E03006E9731
+ 8BDCACA327CECF5C00A07B67
1CA23ED40692098700951B8B
- 8B79430D21F60E03006E9731
+ 8BDCACA427CECF5C00A07B67
8B0237581D42B1C400E1E8C8
- 8B79430E21F60E03006E9731
+ 8BDCACA527CECF5C00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -635,7 +633,7 @@
StatusbarIsVisible
TimeStamp
- 569773571.22399402
+ 667864924.235286
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -652,10 +650,11 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/Wider/Wider.xcodeproj
+ 8BDCACA627CECF5C00A07B67
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Wider/Wider.xcodeproj
WindowString
- 29 317 810 487 0 0 1440 878
+ 22 176 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/Wider/source/WiderProc.cpp b/plugins/MacVST/Wider/source/WiderProc.cpp
index 8abd00908..fc9f5241a 100755
--- a/plugins/MacVST/Wider/source/WiderProc.cpp
+++ b/plugins/MacVST/Wider/source/WiderProc.cpp
@@ -99,8 +99,8 @@ void Wider::processReplacing(float **inputs, float **outputs, VstInt32 sampleFra
}
count -= 1;
- inputSampleL = (drySampleL * dry) + ((mid+side) * wet);
- inputSampleR = (drySampleR * dry) + ((mid-side) * wet);
+ inputSampleL = (drySampleL * (1.0-wet)) + ((mid+side) * wet);
+ inputSampleR = (drySampleR * (1.0-wet)) + ((mid-side) * wet);
//begin 32 bit stereo floating point dither
int expon; frexpf((float)inputSampleL, &expon);
@@ -213,8 +213,8 @@ void Wider::processDoubleReplacing(double **inputs, double **outputs, VstInt32 s
}
count -= 1;
- inputSampleL = (drySampleL * dry) + ((mid+side) * wet);
- inputSampleR = (drySampleR * dry) + ((mid-side) * wet);
+ inputSampleL = (drySampleL * (1.0-wet)) + ((mid+side) * wet);
+ inputSampleR = (drySampleR * (1.0-wet)) + ((mid-side) * wet);
//begin 64 bit stereo floating point dither
//int expon; frexp((double)inputSampleL, &expon);
diff --git a/plugins/MacVST/XBandpass/XBandpass.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/XBandpass/XBandpass.xcodeproj/christopherjohnson.pbxuser
index 19415b5c8..5a5e2a94f 100644
--- a/plugins/MacVST/XBandpass/XBandpass.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/XBandpass/XBandpass.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 645412019;
- PBXWorkspaceStateSaveDate = 645412019;
+ PBXPerProjectTemplateStateSaveDate = 667865041;
+ PBXWorkspaceStateSaveDate = 667865041;
};
perUserProjectItems = {
- 8B0C7CD92678362800F0D519 /* PBXTextBookmark */ = 8B0C7CD92678362800F0D519 /* PBXTextBookmark */;
8B0C7CDA2678362800F0D519 /* PBXTextBookmark */ = 8B0C7CDA2678362800F0D519 /* PBXTextBookmark */;
+ 8BDCACC127CECFD600A07B67 /* PBXTextBookmark */ = 8BDCACC127CECFD600A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -86,9 +86,9 @@
};
24D8286F09A914000093AEF8 /* XBandpassProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {885, 6840}}";
+ sepNavIntBoundsRect = "{{0, 0}, {885, 6678}}";
sepNavSelRange = "{8483, 0}";
- sepNavVisRange = "{8399, 208}";
+ sepNavVisRange = "{8397, 175}";
sepNavWindowFrame = "{{18, 42}, {1142, 836}}";
};
};
@@ -106,16 +106,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B0C7CD92678362800F0D519 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* XBandpassProc.cpp */;
- name = "XBandpassProc.cpp: 193";
- rLen = 0;
- rLoc = 8483;
- rType = 0;
- vrLen = 208;
- vrLoc = 8399;
- };
8B0C7CDA2678362800F0D519 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* XBandpassProc.cpp */;
@@ -126,6 +116,16 @@
vrLen = 208;
vrLoc = 8399;
};
+ 8BDCACC127CECFD600A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* XBandpassProc.cpp */;
+ name = "XBandpassProc.cpp: 194";
+ rLen = 0;
+ rLoc = 8483;
+ rType = 0;
+ vrLen = 175;
+ vrLoc = 8397;
+ };
8D01CCC60486CAD60068D4B7 /* XBandpass */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/XBandpass/XBandpass.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/XBandpass/XBandpass.xcodeproj/christopherjohnson.perspectivev3
index 769187c4f..d42d8c878 100644
--- a/plugins/MacVST/XBandpass/XBandpass.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/XBandpass/XBandpass.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 61 301 810 487 0 0 1440 878
+ 46 169 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B0C7CDA2678362800F0D519
+ 8BDCACC127CECFD600A07B67
history
- 8B0C7CD92678362800F0D519
+ 8B0C7CDA2678362800F0D519
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 132}}
+ {{0, 0}, {603, 117}}
RubberWindowFrame
- 61 301 810 487 0 0 1440 878
+ 46 169 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 132pt
+ 117pt
Proportion
- 309pt
+ 324pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 297}}
RubberWindowFrame
- 61 301 810 487 0 0 1440 878
+ 46 169 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B0C7CDB2678362800F0D519
+ 8BDCACC227CECFD600A07B67
1CA23ED40692098700951B8B
- 8B0C7CDC2678362800F0D519
+ 8BDCACC327CECFD600A07B67
8B0237581D42B1C400E1E8C8
- 8B0C7CDD2678362800F0D519
+ 8BDCACC427CECFD600A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 645412392.99014497
+ 667865046.58199704
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,11 +651,10 @@
5
WindowOrderList
- 8B0C7CDE2678362800F0D519
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/XBandpass/XBandpass.xcodeproj
WindowString
- 61 301 810 487 0 0 1440 878
+ 46 169 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/XHighpass/XHighpass.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/XHighpass/XHighpass.xcodeproj/christopherjohnson.pbxuser
index edb28ecb8..ee72dbc43 100644
--- a/plugins/MacVST/XHighpass/XHighpass.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/XHighpass/XHighpass.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 650589514;
- PBXWorkspaceStateSaveDate = 650589514;
+ PBXPerProjectTemplateStateSaveDate = 667865050;
+ PBXWorkspaceStateSaveDate = 667865050;
};
perUserProjectItems = {
- 8BB94C7326C7365800D65CB1 /* PBXTextBookmark */ = 8BB94C7326C7365800D65CB1 /* PBXTextBookmark */;
8BB94C7426C7365800D65CB1 /* PBXTextBookmark */ = 8BB94C7426C7365800D65CB1 /* PBXTextBookmark */;
+ 8BDCACDF27CECFDE00A07B67 /* PBXTextBookmark */ = 8BDCACDF27CECFDE00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -86,9 +86,9 @@
};
24D8286F09A914000093AEF8 /* XHighpassProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {885, 6102}}";
+ sepNavIntBoundsRect = "{{0, 0}, {885, 5958}}";
sepNavSelRange = "{7856, 0}";
- sepNavVisRange = "{7772, 200}";
+ sepNavVisRange = "{7770, 167}";
sepNavWindowFrame = "{{451, 42}, {1204, 836}}";
};
};
@@ -106,16 +106,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8BB94C7326C7365800D65CB1 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* XHighpassProc.cpp */;
- name = "XHighpassProc.cpp: 171";
- rLen = 0;
- rLoc = 7856;
- rType = 0;
- vrLen = 200;
- vrLoc = 7772;
- };
8BB94C7426C7365800D65CB1 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* XHighpassProc.cpp */;
@@ -126,6 +116,16 @@
vrLen = 200;
vrLoc = 7772;
};
+ 8BDCACDF27CECFDE00A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* XHighpassProc.cpp */;
+ name = "XHighpassProc.cpp: 172";
+ rLen = 0;
+ rLoc = 7856;
+ rType = 0;
+ vrLen = 167;
+ vrLoc = 7770;
+ };
8D01CCC60486CAD60068D4B7 /* XHighpass */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/XHighpass/XHighpass.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/XHighpass/XHighpass.xcodeproj/christopherjohnson.perspectivev3
index 044bc3034..9c7d5435d 100644
--- a/plugins/MacVST/XHighpass/XHighpass.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/XHighpass/XHighpass.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 547 303 810 487 0 0 1440 878
+ 408 169 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8BB94C7426C7365800D65CB1
+ 8BDCACDF27CECFDE00A07B67
history
- 8BB94C7326C7365800D65CB1
+ 8BB94C7426C7365800D65CB1
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 132}}
+ {{0, 0}, {603, 117}}
RubberWindowFrame
- 547 303 810 487 0 0 1440 878
+ 408 169 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 132pt
+ 117pt
Proportion
- 309pt
+ 324pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 297}}
RubberWindowFrame
- 547 303 810 487 0 0 1440 878
+ 408 169 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8BB94C7526C7365800D65CB1
+ 8BDCACE027CECFDE00A07B67
1CA23ED40692098700951B8B
- 8BB94C7626C7365800D65CB1
+ 8BDCACE127CECFDE00A07B67
8B0237581D42B1C400E1E8C8
- 8BB94C7726C7365800D65CB1
+ 8BDCACE227CECFDE00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 650589784.30253506
+ 667865054.93313301
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,11 +651,10 @@
5
WindowOrderList
- 8BB94C7826C7365800D65CB1
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/XHighpass/XHighpass.xcodeproj
WindowString
- 547 303 810 487 0 0 1440 878
+ 408 169 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/XLowpass/XLowpass.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/XLowpass/XLowpass.xcodeproj/christopherjohnson.pbxuser
index 158bf9eb1..e75c2e40b 100644
--- a/plugins/MacVST/XLowpass/XLowpass.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/XLowpass/XLowpass.xcodeproj/christopherjohnson.pbxuser
@@ -49,13 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 645228662;
- PBXWorkspaceStateSaveDate = 645228662;
+ PBXPerProjectTemplateStateSaveDate = 667865058;
+ PBXWorkspaceStateSaveDate = 667865058;
};
perUserProjectItems = {
8B80C75B2675699B00C5BBE4 /* PBXTextBookmark */ = 8B80C75B2675699B00C5BBE4 /* PBXTextBookmark */;
8B80C75C2675699B00C5BBE4 /* PBXTextBookmark */ = 8B80C75C2675699B00C5BBE4 /* PBXTextBookmark */;
- 8B8F723E266596360081B239 /* PBXTextBookmark */ = 8B8F723E266596360081B239 /* PBXTextBookmark */;
+ 8BDCACFD27CECFE800A07B67 /* PBXTextBookmark */ = 8BDCACFD27CECFE800A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -87,7 +87,7 @@
};
24D8286F09A914000093AEF8 /* XLowpassProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1272, 6246}}";
+ sepNavIntBoundsRect = "{{0, 0}, {660, 6588}}";
sepNavSelRange = "{2005, 0}";
sepNavVisRange = "{0, 0}";
sepNavWindowFrame = "{{17, 53}, {973, 825}}";
@@ -127,7 +127,7 @@
vrLen = 0;
vrLoc = 0;
};
- 8B8F723E266596360081B239 /* PBXTextBookmark */ = {
+ 8BDCACFD27CECFE800A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* XLowpassProc.cpp */;
name = "XLowpassProc.cpp: 57";
diff --git a/plugins/MacVST/XLowpass/XLowpass.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/XLowpass/XLowpass.xcodeproj/christopherjohnson.perspectivev3
index eacf248dd..3da972fec 100644
--- a/plugins/MacVST/XLowpass/XLowpass.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/XLowpass/XLowpass.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 68 329 810 487 0 0 1440 878
+ 51 182 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,11 +351,11 @@
_historyCapacity
0
bookmark
- 8B80C75C2675699B00C5BBE4
+ 8BDCACFD27CECFE800A07B67
history
8B80C75B2675699B00C5BBE4
- 8B8F723E266596360081B239
+ 8B80C75C2675699B00C5BBE4
SplitCount
@@ -369,18 +369,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 13}}
+ {{0, 0}, {603, 0}}
RubberWindowFrame
- 68 329 810 487 0 0 1440 878
+ 51 182 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 13pt
+ 0pt
Proportion
- 428pt
+ 441pt
Tabs
@@ -394,9 +394,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 401}}
+ {{10, 27}, {603, 414}}
RubberWindowFrame
- 68 329 810 487 0 0 1440 878
+ 51 182 810 487 0 0 1280 698
Module
XCDetailModule
@@ -478,11 +478,11 @@
TableOfContents
- 8B80C75D2675699B00C5BBE4
+ 8BDCACFE27CECFE800A07B67
1CA23ED40692098700951B8B
- 8B80C75E2675699B00C5BBE4
+ 8BDCACFF27CECFE800A07B67
8B0237581D42B1C400E1E8C8
- 8B80C75F2675699B00C5BBE4
+ 8BDCAD0027CECFE800A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -635,7 +635,7 @@
StatusbarIsVisible
TimeStamp
- 645228955.12187004
+ 667865064.15456295
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -655,7 +655,7 @@
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/XLowpass/XLowpass.xcodeproj
WindowString
- 68 329 810 487 0 0 1440 878
+ 51 182 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/XNotch/XNotch.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/XNotch/XNotch.xcodeproj/christopherjohnson.pbxuser
index 9dd65d3a9..4e5497599 100644
--- a/plugins/MacVST/XNotch/XNotch.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/XNotch/XNotch.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 645415029;
- PBXWorkspaceStateSaveDate = 645415029;
+ PBXPerProjectTemplateStateSaveDate = 667865068;
+ PBXWorkspaceStateSaveDate = 667865068;
};
perUserProjectItems = {
- 8B60853E267840980032D630 /* PBXTextBookmark */ = 8B60853E267840980032D630 /* PBXTextBookmark */;
8B60853F267840980032D630 /* PBXTextBookmark */ = 8B60853F267840980032D630 /* PBXTextBookmark */;
+ 8BDCAD1B27CECFF300A07B67 /* PBXTextBookmark */ = 8BDCAD1B27CECFF300A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -86,9 +86,9 @@
};
24D8286F09A914000093AEF8 /* XNotchProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {831, 6678}}";
+ sepNavIntBoundsRect = "{{0, 0}, {849, 6660}}";
sepNavSelRange = "{16359, 0}";
- sepNavVisRange = "{16287, 168}";
+ sepNavVisRange = "{16289, 247}";
sepNavWindowFrame = "{{47, 42}, {853, 836}}";
};
};
@@ -106,16 +106,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B60853E267840980032D630 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* XNotchProc.cpp */;
- name = "XNotchProc.cpp: 349";
- rLen = 0;
- rLoc = 16359;
- rType = 0;
- vrLen = 168;
- vrLoc = 16287;
- };
8B60853F267840980032D630 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* XNotchProc.cpp */;
@@ -126,6 +116,16 @@
vrLen = 168;
vrLoc = 16287;
};
+ 8BDCAD1B27CECFF300A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* XNotchProc.cpp */;
+ name = "XNotchProc.cpp: 350";
+ rLen = 0;
+ rLoc = 16359;
+ rType = 0;
+ vrLen = 247;
+ vrLoc = 16289;
+ };
8D01CCC60486CAD60068D4B7 /* XNotch */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/XNotch/XNotch.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/XNotch/XNotch.xcodeproj/christopherjohnson.perspectivev3
index fd9553ca2..7a52e39bd 100644
--- a/plugins/MacVST/XNotch/XNotch.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/XNotch/XNotch.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 315 369 810 487 0 0 1440 878
+ 235 201 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B60853F267840980032D630
+ 8BDCAD1B27CECFF300A07B67
history
- 8B60853E267840980032D630
+ 8B60853F267840980032D630
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 102}}
+ {{0, 0}, {603, 86}}
RubberWindowFrame
- 315 369 810 487 0 0 1440 878
+ 235 201 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 102pt
+ 86pt
Proportion
- 339pt
+ 355pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 312}}
+ {{10, 27}, {603, 328}}
RubberWindowFrame
- 315 369 810 487 0 0 1440 878
+ 235 201 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B608540267840980032D630
+ 8BDCAD1C27CECFF300A07B67
1CA23ED40692098700951B8B
- 8B608541267840980032D630
+ 8BDCAD1D27CECFF300A07B67
8B0237581D42B1C400E1E8C8
- 8B608542267840980032D630
+ 8BDCAD1E27CECFF300A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 645415064.185233
+ 667865075.62261403
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -651,11 +651,10 @@
5
WindowOrderList
- 8B608543267840980032D630
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/XNotch/XNotch.xcodeproj
WindowString
- 315 369 810 487 0 0 1440 878
+ 235 201 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/XRegion/XRegion.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/XRegion/XRegion.xcodeproj/christopherjohnson.pbxuser
index 242a17ae8..399ecc1b2 100644
--- a/plugins/MacVST/XRegion/XRegion.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/XRegion/XRegion.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 645414952;
- PBXWorkspaceStateSaveDate = 645414952;
+ PBXPerProjectTemplateStateSaveDate = 667865079;
+ PBXWorkspaceStateSaveDate = 667865079;
};
perUserProjectItems = {
- 8B0C7D5B26783F8F00F0D519 /* PBXTextBookmark */ = 8B0C7D5B26783F8F00F0D519 /* PBXTextBookmark */;
8B608549267840DD0032D630 /* PBXTextBookmark */ = 8B608549267840DD0032D630 /* PBXTextBookmark */;
+ 8BDCAD3927CECFFB00A07B67 /* PBXTextBookmark */ = 8BDCAD3927CECFFB00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -86,9 +86,9 @@
};
24D8286F09A914000093AEF8 /* XRegionProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1083, 8712}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1083, 8748}}";
sepNavSelRange = "{9190, 0}";
- sepNavVisRange = "{9090, 334}";
+ sepNavVisRange = "{9055, 334}";
sepNavWindowFrame = "{{89, 42}, {1251, 836}}";
};
};
@@ -106,16 +106,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8B0C7D5B26783F8F00F0D519 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* XRegionProc.cpp */;
- name = "XRegionProc.cpp: 214";
- rLen = 0;
- rLoc = 9190;
- rType = 0;
- vrLen = 475;
- vrLoc = 9090;
- };
8B608549267840DD0032D630 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* XRegionProc.cpp */;
@@ -126,6 +116,16 @@
vrLen = 334;
vrLoc = 9090;
};
+ 8BDCAD3927CECFFB00A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* XRegionProc.cpp */;
+ name = "XRegionProc.cpp: 214";
+ rLen = 0;
+ rLoc = 9190;
+ rType = 0;
+ vrLen = 334;
+ vrLoc = 9055;
+ };
8D01CCC60486CAD60068D4B7 /* XRegion */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/XRegion/XRegion.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/XRegion/XRegion.xcodeproj/christopherjohnson.perspectivev3
index 304904ed8..36701e2ea 100644
--- a/plugins/MacVST/XRegion/XRegion.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/XRegion/XRegion.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 523 374 810 487 0 0 1440 878
+ 390 203 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B608549267840DD0032D630
+ 8BDCAD3927CECFFB00A07B67
history
- 8B0C7D5B26783F8F00F0D519
+ 8B608549267840DD0032D630
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 117}}
+ {{0, 0}, {603, 102}}
RubberWindowFrame
- 523 374 810 487 0 0 1440 878
+ 390 203 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 117pt
+ 102pt
Proportion
- 324pt
+ 339pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
+ {{10, 27}, {603, 312}}
RubberWindowFrame
- 523 374 810 487 0 0 1440 878
+ 390 203 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B60854A267840DD0032D630
+ 8BDCAD3A27CECFFB00A07B67
1CA23ED40692098700951B8B
- 8B60854B267840DD0032D630
+ 8BDCAD3B27CECFFB00A07B67
8B0237581D42B1C400E1E8C8
- 8B60854C267840DD0032D630
+ 8BDCAD3C27CECFFB00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 645415133.72857404
+ 667865083.96810997
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -654,7 +654,7 @@
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/XRegion/XRegion.xcodeproj
WindowString
- 523 374 810 487 0 0 1440 878
+ 390 203 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/YBandpass/YBandpass.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/YBandpass/YBandpass.xcodeproj/christopherjohnson.pbxuser
index f3e0ef787..27e4dcff8 100644
--- a/plugins/MacVST/YBandpass/YBandpass.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/YBandpass/YBandpass.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* YBandpass */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 658012866;
- PBXWorkspaceStateSaveDate = 658012866;
+ PBXPerProjectTemplateStateSaveDate = 667865086;
+ PBXWorkspaceStateSaveDate = 667865086;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* YBandpass */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/YBandpass/YBandpass.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/YBandpass/YBandpass.xcodeproj/christopherjohnson.perspectivev3
index a57f55f59..d5b0e85fb 100644
--- a/plugins/MacVST/YBandpass/YBandpass.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/YBandpass/YBandpass.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 236 222 810 487 0 0 1440 878
+ 176 131 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 236 222 810 487 0 0 1440 878
+ 176 131 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 236 222 810 487 0 0 1440 878
+ 176 131 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8BF0EE7C273885D700A3A4FE
+ 8BDCAD5727CED00400A07B67
1CA23ED40692098700951B8B
- 8BF0EE7D273885D700A3A4FE
+ 8BDCAD5827CED00400A07B67
8B0237581D42B1C400E1E8C8
- 8BF0EE7E273885D700A3A4FE
+ 8BDCAD5927CED00400A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 658015703.22380805
+ 667865092.06060302
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +643,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/YBandpass/YBandpass.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/YBandpass/YBandpass.xcodeproj
WindowString
- 236 222 810 487 0 0 1440 878
+ 176 131 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/YBandpass/YBandpass.xcodeproj/project.pbxproj b/plugins/MacVST/YBandpass/YBandpass.xcodeproj/project.pbxproj
index 414664e99..9fceefd89 100755
--- a/plugins/MacVST/YBandpass/YBandpass.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/YBandpass/YBandpass.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* YBandpass */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "YBandpass" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* YBandpass */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/YHighpass/YHighpass.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/YHighpass/YHighpass.xcodeproj/christopherjohnson.pbxuser
index 87cc1c12a..dddec49d6 100644
--- a/plugins/MacVST/YHighpass/YHighpass.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/YHighpass/YHighpass.xcodeproj/christopherjohnson.pbxuser
@@ -49,11 +49,11 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 658013330;
- PBXWorkspaceStateSaveDate = 658013330;
+ PBXPerProjectTemplateStateSaveDate = 667865095;
+ PBXWorkspaceStateSaveDate = 667865095;
};
perUserProjectItems = {
- 8BF0EE542738810900A3A4FE /* PBXTextBookmark */ = 8BF0EE542738810900A3A4FE /* PBXTextBookmark */;
+ 8BDCAD7427CED00C00A07B67 /* PBXTextBookmark */ = 8BDCAD7427CED00C00A07B67 /* PBXTextBookmark */;
8BF0EE552738810900A3A4FE /* PBXTextBookmark */ = 8BF0EE552738810900A3A4FE /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
@@ -86,9 +86,9 @@
};
24D8286F09A914000093AEF8 /* YHighpassProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {885, 5670}}";
+ sepNavIntBoundsRect = "{{0, 0}, {885, 5706}}";
sepNavSelRange = "{9213, 0}";
- sepNavVisRange = "{12178, 288}";
+ sepNavVisRange = "{12088, 261}";
sepNavWindowFrame = "{{554, 47}, {895, 831}}";
};
};
@@ -106,15 +106,15 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8BF0EE542738810900A3A4FE /* PBXTextBookmark */ = {
+ 8BDCAD7427CED00C00A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* YHighpassProc.cpp */;
- name = "YHighpassProc.cpp: 226";
+ name = "YHighpassProc.cpp: 228";
rLen = 0;
rLoc = 9213;
rType = 0;
- vrLen = 288;
- vrLoc = 12178;
+ vrLen = 261;
+ vrLoc = 12088;
};
8BF0EE552738810900A3A4FE /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
diff --git a/plugins/MacVST/YHighpass/YHighpass.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/YHighpass/YHighpass.xcodeproj/christopherjohnson.perspectivev3
index 162dab38c..e8c6bdd66 100644
--- a/plugins/MacVST/YHighpass/YHighpass.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/YHighpass/YHighpass.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 606 343 810 487 0 0 1440 878
+ 452 188 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8BF0EE552738810900A3A4FE
+ 8BDCAD7427CED00C00A07B67
history
- 8BF0EE542738810900A3A4FE
+ 8BF0EE552738810900A3A4FE
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 132}}
+ {{0, 0}, {603, 117}}
RubberWindowFrame
- 606 343 810 487 0 0 1440 878
+ 452 188 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 132pt
+ 117pt
Proportion
- 309pt
+ 324pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 297}}
RubberWindowFrame
- 606 343 810 487 0 0 1440 878
+ 452 188 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8BF0EE562738810900A3A4FE
+ 8BDCAD7527CED00C00A07B67
1CA23ED40692098700951B8B
- 8BF0EE572738810900A3A4FE
+ 8BDCAD7627CED00C00A07B67
8B0237581D42B1C400E1E8C8
- 8BF0EE582738810900A3A4FE
+ 8BDCAD7727CED00C00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 658014473.20811403
+ 667865100.14737797
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -654,7 +654,7 @@
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/YHighpass/YHighpass.xcodeproj
WindowString
- 606 343 810 487 0 0 1440 878
+ 452 188 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/YLowpass/YLowpass.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/YLowpass/YLowpass.xcodeproj/christopherjohnson.pbxuser
index 667534795..603a36c80 100644
--- a/plugins/MacVST/YLowpass/YLowpass.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/YLowpass/YLowpass.xcodeproj/christopherjohnson.pbxuser
@@ -51,13 +51,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 659628203;
- PBXWorkspaceStateSaveDate = 659628203;
+ PBXPerProjectTemplateStateSaveDate = 667865103;
+ PBXWorkspaceStateSaveDate = 667865103;
};
perUserProjectItems = {
8B61C3C9273F192C00F23585 /* PBXTextBookmark */ = 8B61C3C9273F192C00F23585 /* PBXTextBookmark */;
- 8B73B2822751212B006E2D3D /* PBXTextBookmark */ = 8B73B2822751212B006E2D3D /* PBXTextBookmark */;
8B73B2832751212B006E2D3D /* PBXTextBookmark */ = 8B73B2832751212B006E2D3D /* PBXTextBookmark */;
+ 8BDCAD9227CED01400A07B67 /* PBXTextBookmark */ = 8BDCAD9227CED01400A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -89,9 +89,9 @@
};
24D8286F09A914000093AEF8 /* YLowpassProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1029, 5832}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1029, 5778}}";
sepNavSelRange = "{7321, 0}";
- sepNavVisRange = "{7210, 165}";
+ sepNavVisRange = "{7304, 60}";
sepNavWindowFrame = "{{10, 50}, {1067, 828}}";
};
};
@@ -119,16 +119,6 @@
vrLen = 240;
vrLoc = 4650;
};
- 8B73B2822751212B006E2D3D /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* YLowpassProc.cpp */;
- name = "YLowpassProc.cpp: 172";
- rLen = 0;
- rLoc = 7321;
- rType = 0;
- vrLen = 165;
- vrLoc = 7210;
- };
8B73B2832751212B006E2D3D /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* YLowpassProc.cpp */;
@@ -139,6 +129,16 @@
vrLen = 165;
vrLoc = 7210;
};
+ 8BDCAD9227CED01400A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* YLowpassProc.cpp */;
+ name = "YLowpassProc.cpp: 173";
+ rLen = 0;
+ rLoc = 7321;
+ rType = 0;
+ vrLen = 60;
+ vrLoc = 7304;
+ };
8D01CCC60486CAD60068D4B7 /* YLowpass */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/YLowpass/YLowpass.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/YLowpass/YLowpass.xcodeproj/christopherjohnson.perspectivev3
index b3ee37a60..18ae2ec3d 100644
--- a/plugins/MacVST/YLowpass/YLowpass.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/YLowpass/YLowpass.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 70 303 810 487 0 0 1440 878
+ 52 169 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,11 +351,11 @@
_historyCapacity
0
bookmark
- 8B73B2832751212B006E2D3D
+ 8BDCAD9227CED01400A07B67
history
8B61C3C9273F192C00F23585
- 8B73B2822751212B006E2D3D
+ 8B73B2832751212B006E2D3D
SplitCount
@@ -369,18 +369,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 69}}
+ {{0, 0}, {603, 51}}
RubberWindowFrame
- 70 303 810 487 0 0 1440 878
+ 52 169 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 69pt
+ 51pt
Proportion
- 372pt
+ 390pt
Tabs
@@ -394,9 +394,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 345}}
+ {{10, 27}, {603, 363}}
RubberWindowFrame
- 70 303 810 487 0 0 1440 878
+ 52 169 810 487 0 0 1280 698
Module
XCDetailModule
@@ -478,11 +478,11 @@
TableOfContents
- 8B73B2842751212B006E2D3D
+ 8BDCAD9327CED01400A07B67
1CA23ED40692098700951B8B
- 8B73B2852751212B006E2D3D
+ 8BDCAD9427CED01400A07B67
8B0237581D42B1C400E1E8C8
- 8B73B2862751212B006E2D3D
+ 8BDCAD9527CED01400A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -655,7 +655,7 @@
StatusbarIsVisible
TimeStamp
- 659628331.51704895
+ 667865108.18647599
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -672,11 +672,10 @@
5
WindowOrderList
- 8B73B2872751212B006E2D3D
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/YLowpass/YLowpass.xcodeproj
WindowString
- 70 303 810 487 0 0 1440 878
+ 52 169 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/YNotch/YNotch.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/YNotch/YNotch.xcodeproj/christopherjohnson.pbxuser
index 5710c23e8..0f56dfd70 100644
--- a/plugins/MacVST/YNotch/YNotch.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/YNotch/YNotch.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 658690693;
- PBXWorkspaceStateSaveDate = 658690693;
+ PBXPerProjectTemplateStateSaveDate = 667865111;
+ PBXWorkspaceStateSaveDate = 667865111;
};
perUserProjectItems = {
- 8B016D802742D6B3006B94F9 /* PBXTextBookmark */ = 8B016D802742D6B3006B94F9 /* PBXTextBookmark */;
8B016D812742D6B3006B94F9 /* PBXTextBookmark */ = 8B016D812742D6B3006B94F9 /* PBXTextBookmark */;
+ 8BDCADB027CED01B00A07B67 /* PBXTextBookmark */ = 8BDCADB027CED01B00A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -86,22 +86,12 @@
};
24D8286F09A914000093AEF8 /* YNotchProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {885, 5706}}";
+ sepNavIntBoundsRect = "{{0, 0}, {885, 5742}}";
sepNavSelRange = "{8249, 0}";
- sepNavVisRange = "{12172, 261}";
+ sepNavVisRange = "{12082, 234}";
sepNavWindowFrame = "{{31, 42}, {895, 831}}";
};
};
- 8B016D802742D6B3006B94F9 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* YNotchProc.cpp */;
- name = "YNotchProc.cpp: 195";
- rLen = 0;
- rLoc = 8249;
- rType = 0;
- vrLen = 261;
- vrLoc = 12172;
- };
8B016D812742D6B3006B94F9 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* YNotchProc.cpp */;
@@ -126,6 +116,16 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
+ 8BDCADB027CED01B00A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* YNotchProc.cpp */;
+ name = "YNotchProc.cpp: 195";
+ rLen = 0;
+ rLoc = 8249;
+ rType = 0;
+ vrLen = 234;
+ vrLoc = 12082;
+ };
8D01CCC60486CAD60068D4B7 /* YNotch */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/YNotch/YNotch.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/YNotch/YNotch.xcodeproj/christopherjohnson.perspectivev3
index 0c1065f15..b4a04fd1c 100644
--- a/plugins/MacVST/YNotch/YNotch.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/YNotch/YNotch.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 33 135 810 487 0 0 1440 878
+ 25 90 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8B016D812742D6B3006B94F9
+ 8BDCADB027CED01B00A07B67
history
- 8B016D802742D6B3006B94F9
+ 8B016D812742D6B3006B94F9
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 117}}
+ {{0, 0}, {603, 102}}
RubberWindowFrame
- 33 135 810 487 0 0 1440 878
+ 25 90 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 117pt
+ 102pt
Proportion
- 324pt
+ 339pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 297}}
+ {{10, 27}, {603, 312}}
RubberWindowFrame
- 33 135 810 487 0 0 1440 878
+ 25 90 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8B016D822742D6B3006B94F9
+ 8BDCADB127CED01B00A07B67
1CA23ED40692098700951B8B
- 8B016D832742D6B3006B94F9
+ 8BDCADB227CED01B00A07B67
8B0237581D42B1C400E1E8C8
- 8B016D842742D6B3006B94F9
+ 8BDCADB327CED01B00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 658691763.47959197
+ 667865115.82125902
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -654,7 +654,7 @@
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/YNotch/YNotch.xcodeproj
WindowString
- 33 135 810 487 0 0 1440 878
+ 25 90 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/ZBandpass/ZBandpass.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/ZBandpass/ZBandpass.xcodeproj/christopherjohnson.pbxuser
index 334c8b02d..b4a73a9fb 100644
--- a/plugins/MacVST/ZBandpass/ZBandpass.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/ZBandpass/ZBandpass.xcodeproj/christopherjohnson.pbxuser
@@ -49,13 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 651460511;
- PBXWorkspaceStateSaveDate = 651460511;
+ PBXPerProjectTemplateStateSaveDate = 667865119;
+ PBXWorkspaceStateSaveDate = 667865119;
};
perUserProjectItems = {
8B51587B26D480C7005B9297 /* PBXTextBookmark */ = 8B51587B26D480C7005B9297 /* PBXTextBookmark */;
- 8B51587C26D480C7005B9297 /* PBXBookmark */ = 8B51587C26D480C7005B9297 /* PBXBookmark */;
8B51587D26D480C7005B9297 /* PBXTextBookmark */ = 8B51587D26D480C7005B9297 /* PBXTextBookmark */;
+ 8BDCADCE27CED02400A07B67 /* PBXTextBookmark */ = 8BDCADCE27CED02400A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -87,9 +87,9 @@
};
24D8286F09A914000093AEF8 /* ZBandpassProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {804, 7236}}";
+ sepNavIntBoundsRect = "{{0, 0}, {750, 7164}}";
sepNavSelRange = "{10359, 0}";
- sepNavVisRange = "{10299, 105}";
+ sepNavVisRange = "{10301, 122}";
sepNavWindowFrame = "{{22, 47}, {895, 831}}";
};
};
@@ -117,10 +117,6 @@
vrLen = 110;
vrLoc = 10583;
};
- 8B51587C26D480C7005B9297 /* PBXBookmark */ = {
- isa = PBXBookmark;
- fRef = 24D8286F09A914000093AEF8 /* ZBandpassProc.cpp */;
- };
8B51587D26D480C7005B9297 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* ZBandpassProc.cpp */;
@@ -131,6 +127,16 @@
vrLen = 105;
vrLoc = 10299;
};
+ 8BDCADCE27CED02400A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* ZBandpassProc.cpp */;
+ name = "ZBandpassProc.cpp: 229";
+ rLen = 0;
+ rLoc = 10359;
+ rType = 0;
+ vrLen = 122;
+ vrLoc = 10301;
+ };
8D01CCC60486CAD60068D4B7 /* ZBandpass */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/ZBandpass/ZBandpass.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/ZBandpass/ZBandpass.xcodeproj/christopherjohnson.perspectivev3
index 7fa9d4792..c0deeee68 100644
--- a/plugins/MacVST/ZBandpass/ZBandpass.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/ZBandpass/ZBandpass.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 5 336 810 487 0 0 1440 878
+ 4 185 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,11 +351,11 @@
_historyCapacity
0
bookmark
- 8B51587D26D480C7005B9297
+ 8BDCADCE27CED02400A07B67
history
8B51587B26D480C7005B9297
- 8B51587C26D480C7005B9297
+ 8B51587D26D480C7005B9297
SplitCount
@@ -369,18 +369,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 86}}
+ {{0, 0}, {603, 69}}
RubberWindowFrame
- 5 336 810 487 0 0 1440 878
+ 4 185 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 86pt
+ 69pt
Proportion
- 355pt
+ 372pt
Tabs
@@ -394,9 +394,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 328}}
+ {{10, 27}, {603, 345}}
RubberWindowFrame
- 5 336 810 487 0 0 1440 878
+ 4 185 810 487 0 0 1280 698
Module
XCDetailModule
@@ -478,11 +478,11 @@
TableOfContents
- 8B51587E26D480C7005B9297
+ 8BDCADCF27CED02400A07B67
1CA23ED40692098700951B8B
- 8B51587F26D480C7005B9297
+ 8BDCADD027CED02400A07B67
8B0237581D42B1C400E1E8C8
- 8B51588026D480C7005B9297
+ 8BDCADD127CED02400A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -635,7 +635,7 @@
StatusbarIsVisible
TimeStamp
- 651460807.69921303
+ 667865124.37577403
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -652,11 +652,10 @@
5
WindowOrderList
- 8B51588126D480C7005B9297
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/ZBandpass/ZBandpass.xcodeproj
WindowString
- 5 336 810 487 0 0 1440 878
+ 4 185 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/ZBandpass2/ZBandpass2.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/ZBandpass2/ZBandpass2.xcodeproj/christopherjohnson.pbxuser
index abafcf254..f1f801010 100644
--- a/plugins/MacVST/ZBandpass2/ZBandpass2.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/ZBandpass2/ZBandpass2.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* ZBandpass2 */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 661276523;
- PBXWorkspaceStateSaveDate = 661276523;
+ PBXPerProjectTemplateStateSaveDate = 667865128;
+ PBXWorkspaceStateSaveDate = 667865128;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* ZBandpass2 */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/ZBandpass2/ZBandpass2.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/ZBandpass2/ZBandpass2.xcodeproj/christopherjohnson.perspectivev3
index 22f2cfd2b..86e9dc6ef 100644
--- a/plugins/MacVST/ZBandpass2/ZBandpass2.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/ZBandpass2/ZBandpass2.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 595 358 810 487 0 0 1440 878
+ 444 195 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 595 358 810 487 0 0 1440 878
+ 444 195 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 595 358 810 487 0 0 1440 878
+ 444 195 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8BCFA007276A4A3D00564068
+ 8BDCADEC27CED02C00A07B67
1CA23ED40692098700951B8B
- 8BCFA008276A4A3D00564068
+ 8BDCADED27CED02C00A07B67
8B0237581D42B1C400E1E8C8
- 8BCFA009276A4A3D00564068
+ 8BDCADEE27CED02C00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 661277245.08056295
+ 667865132.76087904
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +643,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/ZBandpass2/ZBandpass2.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/ZBandpass2/ZBandpass2.xcodeproj
WindowString
- 595 358 810 487 0 0 1440 878
+ 444 195 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/ZBandpass2/ZBandpass2.xcodeproj/project.pbxproj b/plugins/MacVST/ZBandpass2/ZBandpass2.xcodeproj/project.pbxproj
index c04109939..cc22d2882 100755
--- a/plugins/MacVST/ZBandpass2/ZBandpass2.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/ZBandpass2/ZBandpass2.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* ZBandpass2 */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "ZBandpass2" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* ZBandpass2 */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/ZHighpass/ZHighpass.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/ZHighpass/ZHighpass.xcodeproj/christopherjohnson.pbxuser
index fe42b426a..73012de8d 100644
--- a/plugins/MacVST/ZHighpass/ZHighpass.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/ZHighpass/ZHighpass.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 658013274;
- PBXWorkspaceStateSaveDate = 658013274;
+ PBXPerProjectTemplateStateSaveDate = 667865136;
+ PBXWorkspaceStateSaveDate = 667865136;
};
perUserProjectItems = {
8B363CF026CB4193008AF808 /* PBXTextBookmark */ = 8B363CF026CB4193008AF808 /* PBXTextBookmark */;
- 8BF0EE3227387C7C00A3A4FE /* PBXTextBookmark */ = 8BF0EE3227387C7C00A3A4FE /* PBXTextBookmark */;
+ 8BDCAE0927CED03400A07B67 /* PBXTextBookmark */ = 8BDCAE0927CED03400A07B67 /* PBXTextBookmark */;
8BF0EE3327387C7C00A3A4FE /* PBXTextBookmark */ = 8BF0EE3327387C7C00A3A4FE /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
@@ -87,9 +87,9 @@
};
24D8286F09A914000093AEF8 /* ZHighpassProc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1353, 6696}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1353, 6660}}";
sepNavSelRange = "{6695, 0}";
- sepNavVisRange = "{3794, 152}";
+ sepNavVisRange = "{3782, 210}";
sepNavWindowFrame = "{{172, 42}, {1268, 836}}";
};
};
@@ -117,15 +117,15 @@
vrLen = 283;
vrLoc = 4809;
};
- 8BF0EE3227387C7C00A3A4FE /* PBXTextBookmark */ = {
+ 8BDCAE0927CED03400A07B67 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* ZHighpassProc.cpp */;
name = "ZHighpassProc.cpp: 148";
rLen = 0;
rLoc = 6695;
rType = 0;
- vrLen = 152;
- vrLoc = 3794;
+ vrLen = 210;
+ vrLoc = 3782;
};
8BF0EE3327387C7C00A3A4FE /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
diff --git a/plugins/MacVST/ZHighpass/ZHighpass.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/ZHighpass/ZHighpass.xcodeproj/christopherjohnson.perspectivev3
index 872a878ef..270bbbbae 100644
--- a/plugins/MacVST/ZHighpass/ZHighpass.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/ZHighpass/ZHighpass.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 548 269 810 487 0 0 1440 878
+ 409 153 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,11 +351,11 @@
_historyCapacity
0
bookmark
- 8BF0EE3327387C7C00A3A4FE
+ 8BDCAE0927CED03400A07B67
history
8B363CF026CB4193008AF808
- 8BF0EE3227387C7C00A3A4FE
+ 8BF0EE3327387C7C00A3A4FE
SplitCount
@@ -369,18 +369,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 69}}
+ {{0, 0}, {603, 51}}
RubberWindowFrame
- 548 269 810 487 0 0 1440 878
+ 409 153 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 69pt
+ 51pt
Proportion
- 372pt
+ 390pt
Tabs
@@ -394,9 +394,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 345}}
+ {{10, 27}, {603, 363}}
RubberWindowFrame
- 548 269 810 487 0 0 1440 878
+ 409 153 810 487 0 0 1280 698
Module
XCDetailModule
@@ -478,11 +478,11 @@
TableOfContents
- 8BF0EE3427387C7C00A3A4FE
+ 8BDCAE0A27CED03400A07B67
1CA23ED40692098700951B8B
- 8BF0EE3527387C7C00A3A4FE
+ 8BDCAE0B27CED03400A07B67
8B0237581D42B1C400E1E8C8
- 8BF0EE3627387C7C00A3A4FE
+ 8BDCAE0C27CED03400A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -635,7 +635,7 @@
StatusbarIsVisible
TimeStamp
- 658013308.51435304
+ 667865140.73514998
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -652,11 +652,10 @@
5
WindowOrderList
- 8BF0EE3727387C7C00A3A4FE
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/ZHighpass/ZHighpass.xcodeproj
WindowString
- 548 269 810 487 0 0 1440 878
+ 409 153 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/ZHighpass2/ZHighpass2.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/ZHighpass2/ZHighpass2.xcodeproj/christopherjohnson.pbxuser
index 4a844350f..d5d226509 100644
--- a/plugins/MacVST/ZHighpass2/ZHighpass2.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/ZHighpass2/ZHighpass2.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* ZHighpass2 */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 660613446;
- PBXWorkspaceStateSaveDate = 660613446;
+ PBXPerProjectTemplateStateSaveDate = 667865144;
+ PBXWorkspaceStateSaveDate = 667865144;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -102,7 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8D01CCC60486CAD60068D4B7 /* ZHighpass2 */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/ZHighpass2/ZHighpass2.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/ZHighpass2/ZHighpass2.xcodeproj/christopherjohnson.perspectivev3
index 50fba6349..b2d9fc5d9 100644
--- a/plugins/MacVST/ZHighpass2/ZHighpass2.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/ZHighpass2/ZHighpass2.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 602 233 810 487 0 0 1440 878
+ 449 136 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 602 233 810 487 0 0 1440 878
+ 449 136 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 602 233 810 487 0 0 1440 878
+ 449 136 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B9E1EF92760304A00AF4668
+ 8BDCAE2727CED03E00A07B67
1CA23ED40692098700951B8B
- 8B9E1EFA2760304A00AF4668
+ 8BDCAE2827CED03E00A07B67
8B0237581D42B1C400E1E8C8
- 8B9E1EFB2760304A00AF4668
+ 8BDCAE2927CED03E00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 660615242.02716398
+ 667865150.51373303
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,11 +643,10 @@
5
WindowOrderList
- 8B9E1EFC2760304A00AF4668
- /Users/christopherjohnson/Desktop/ZHighpass2/ZHighpass2.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/ZHighpass2/ZHighpass2.xcodeproj
WindowString
- 602 233 810 487 0 0 1440 878
+ 449 136 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/ZHighpass2/ZHighpass2.xcodeproj/project.pbxproj b/plugins/MacVST/ZHighpass2/ZHighpass2.xcodeproj/project.pbxproj
index ac03cae5a..15c252c78 100755
--- a/plugins/MacVST/ZHighpass2/ZHighpass2.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/ZHighpass2/ZHighpass2.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* ZHighpass2 */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "ZHighpass2" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* ZHighpass2 */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/ZLowpass/ZLowpass.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/ZLowpass/ZLowpass.xcodeproj/christopherjohnson.pbxuser
index fa5d36ff3..cce2a90dc 100644
--- a/plugins/MacVST/ZLowpass/ZLowpass.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/ZLowpass/ZLowpass.xcodeproj/christopherjohnson.pbxuser
@@ -49,13 +49,13 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 659624460;
- PBXWorkspaceStateSaveDate = 659624460;
+ PBXPerProjectTemplateStateSaveDate = 667865154;
+ PBXWorkspaceStateSaveDate = 667865154;
};
perUserProjectItems = {
8B73B25B27512031006E2D3D /* PBXTextBookmark */ = 8B73B25B27512031006E2D3D /* PBXTextBookmark */;
- 8B73B25C27512031006E2D3D /* PBXBookmark */ = 8B73B25C27512031006E2D3D /* PBXBookmark */;
8B73B25D27512031006E2D3D /* PBXTextBookmark */ = 8B73B25D27512031006E2D3D /* PBXTextBookmark */;
+ 8BDCAE4427CED04600A07B67 /* PBXTextBookmark */ = 8BDCAE4427CED04600A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -71,9 +71,9 @@
};
245463B80991757100464AD3 /* ZLowpass.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1110, 1152}}";
+ sepNavIntBoundsRect = "{{0, 0}, {554, 1548}}";
sepNavSelRange = "{2605, 0}";
- sepNavVisRange = "{2528, 78}";
+ sepNavVisRange = "{2571, 39}";
sepNavWindowFrame = "{{1, 47}, {895, 831}}";
};
};
@@ -117,10 +117,6 @@
vrLen = 245;
vrLoc = 12694;
};
- 8B73B25C27512031006E2D3D /* PBXBookmark */ = {
- isa = PBXBookmark;
- fRef = 245463B80991757100464AD3 /* ZLowpass.h */;
- };
8B73B25D27512031006E2D3D /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 245463B80991757100464AD3 /* ZLowpass.h */;
@@ -131,6 +127,16 @@
vrLen = 78;
vrLoc = 2528;
};
+ 8BDCAE4427CED04600A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 245463B80991757100464AD3 /* ZLowpass.h */;
+ name = "ZLowpass.h: 67";
+ rLen = 0;
+ rLoc = 2605;
+ rType = 0;
+ vrLen = 39;
+ vrLoc = 2571;
+ };
8D01CCC60486CAD60068D4B7 /* ZLowpass */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/ZLowpass/ZLowpass.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/ZLowpass/ZLowpass.xcodeproj/christopherjohnson.perspectivev3
index 28c8feff4..b9e8cc03b 100644
--- a/plugins/MacVST/ZLowpass/ZLowpass.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/ZLowpass/ZLowpass.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 22 77 810 487 0 0 1440 878
+ 16 63 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,11 +351,11 @@
_historyCapacity
0
bookmark
- 8B73B25D27512031006E2D3D
+ 8BDCAE4427CED04600A07B67
history
8B73B25B27512031006E2D3D
- 8B73B25C27512031006E2D3D
+ 8B73B25D27512031006E2D3D
SplitCount
@@ -369,18 +369,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 86}}
+ {{0, 0}, {603, 69}}
RubberWindowFrame
- 22 77 810 487 0 0 1440 878
+ 16 63 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 86pt
+ 69pt
Proportion
- 355pt
+ 372pt
Tabs
@@ -394,9 +394,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 328}}
+ {{10, 27}, {603, 345}}
RubberWindowFrame
- 22 77 810 487 0 0 1440 878
+ 16 63 810 487 0 0 1280 698
Module
XCDetailModule
@@ -478,11 +478,11 @@
TableOfContents
- 8B73B25E27512031006E2D3D
+ 8BDCAE4527CED04600A07B67
1CA23ED40692098700951B8B
- 8B73B25F27512031006E2D3D
+ 8BDCAE4627CED04600A07B67
8B0237581D42B1C400E1E8C8
- 8B73B26027512031006E2D3D
+ 8BDCAE4727CED04600A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -635,7 +635,7 @@
StatusbarIsVisible
TimeStamp
- 659628081.77535605
+ 667865158.95250595
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -655,7 +655,7 @@
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/ZLowpass/ZLowpass.xcodeproj
WindowString
- 22 77 810 487 0 0 1440 878
+ 16 63 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/ZLowpass2/ZLowpass2.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/ZLowpass2/ZLowpass2.xcodeproj/christopherjohnson.pbxuser
index b073f92bf..6a9a088ad 100644
--- a/plugins/MacVST/ZLowpass2/ZLowpass2.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/ZLowpass2/ZLowpass2.xcodeproj/christopherjohnson.pbxuser
@@ -49,14 +49,14 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 667179316;
- PBXWorkspaceStateSaveDate = 667179316;
+ PBXPerProjectTemplateStateSaveDate = 667865162;
+ PBXWorkspaceStateSaveDate = 667865162;
};
perUserProjectItems = {
8B4AFBD927C4599B00664C18 /* PBXTextBookmark */ = 8B4AFBD927C4599B00664C18 /* PBXTextBookmark */;
- 8B4AFBDA27C4599B00664C18 /* PBXTextBookmark */ = 8B4AFBDA27C4599B00664C18 /* PBXTextBookmark */;
8B4AFBDB27C4599B00664C18 /* PBXTextBookmark */ = 8B4AFBDB27C4599B00664C18 /* PBXTextBookmark */;
8B9E1E6D27602B0C00AF4668 /* PBXTextBookmark */ = 8B9E1E6D27602B0C00AF4668 /* PBXTextBookmark */;
+ 8BDCAE6227CED05000A07B67 /* PBXTextBookmark */ = 8BDCAE6227CED05000A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -88,9 +88,9 @@
};
24D8286F09A914000093AEF8 /* ZLowpass2Proc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1047, 7974}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1047, 7956}}";
sepNavSelRange = "{17484, 0}";
- sepNavVisRange = "{0, 197}";
+ sepNavVisRange = "{44, 153}";
sepNavWindowFrame = "{{335, 43}, {1205, 835}}";
};
};
@@ -118,16 +118,6 @@
vrLen = 228;
vrLoc = 44;
};
- 8B4AFBDA27C4599B00664C18 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* ZLowpass2Proc.cpp */;
- name = "ZLowpass2Proc.cpp: 354";
- rLen = 0;
- rLoc = 17484;
- rType = 0;
- vrLen = 197;
- vrLoc = 0;
- };
8B4AFBDB27C4599B00664C18 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* ZLowpass2Proc.cpp */;
@@ -148,6 +138,16 @@
vrLen = 105;
vrLoc = 0;
};
+ 8BDCAE6227CED05000A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* ZLowpass2Proc.cpp */;
+ name = "ZLowpass2Proc.cpp: 357";
+ rLen = 0;
+ rLoc = 17484;
+ rType = 0;
+ vrLen = 153;
+ vrLoc = 44;
+ };
8D01CCC60486CAD60068D4B7 /* ZLowpass2 */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/ZLowpass2/ZLowpass2.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/ZLowpass2/ZLowpass2.xcodeproj/christopherjohnson.perspectivev3
index 201418d7c..ae858e9f8 100644
--- a/plugins/MacVST/ZLowpass2/ZLowpass2.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/ZLowpass2/ZLowpass2.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 630 343 810 487 0 0 1440 878
+ 470 188 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,12 +351,12 @@
_historyCapacity
0
bookmark
- 8B4AFBDB27C4599B00664C18
+ 8BDCAE6227CED05000A07B67
history
8B9E1E6D27602B0C00AF4668
8B4AFBD927C4599B00664C18
- 8B4AFBDA27C4599B00664C18
+ 8B4AFBDB27C4599B00664C18
SplitCount
@@ -370,18 +370,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 132}}
+ {{0, 0}, {603, 117}}
RubberWindowFrame
- 630 343 810 487 0 0 1440 878
+ 470 188 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 132pt
+ 117pt
Proportion
- 309pt
+ 324pt
Tabs
@@ -395,9 +395,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 297}}
RubberWindowFrame
- 630 343 810 487 0 0 1440 878
+ 470 188 810 487 0 0 1280 698
Module
XCDetailModule
@@ -479,11 +479,11 @@
TableOfContents
- 8B4AFBDC27C4599B00664C18
+ 8BDCAE6327CED05000A07B67
1CA23ED40692098700951B8B
- 8B4AFBDD27C4599B00664C18
+ 8BDCAE6427CED05000A07B67
8B0237581D42B1C400E1E8C8
- 8B4AFBDE27C4599B00664C18
+ 8BDCAE6527CED05000A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -636,7 +636,7 @@
StatusbarIsVisible
TimeStamp
- 667179419.33297396
+ 667865168.07318401
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -653,11 +653,10 @@
5
WindowOrderList
- 8B4AFBDF27C4599B00664C18
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/ZLowpass2/ZLowpass2.xcodeproj
WindowString
- 630 343 810 487 0 0 1440 878
+ 470 188 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/ZNotch/ZNotch.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/ZNotch/ZNotch.xcodeproj/christopherjohnson.pbxuser
index a804df325..6efc6d07d 100644
--- a/plugins/MacVST/ZNotch/ZNotch.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/ZNotch/ZNotch.xcodeproj/christopherjohnson.pbxuser
@@ -49,12 +49,12 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 661740567;
- PBXWorkspaceStateSaveDate = 661740567;
+ PBXPerProjectTemplateStateSaveDate = 667865171;
+ PBXWorkspaceStateSaveDate = 667865171;
};
perUserProjectItems = {
- 8BD03E8327715D9B00C95947 /* PBXTextBookmark */ = 8BD03E8327715D9B00C95947 /* PBXTextBookmark */;
8BD03E8427715D9B00C95947 /* PBXTextBookmark */ = 8BD03E8427715D9B00C95947 /* PBXTextBookmark */;
+ 8BDCAE8027CED05800A07B67 /* PBXTextBookmark */ = 8BDCAE8027CED05800A07B67 /* PBXTextBookmark */;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -88,7 +88,7 @@
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1407, 7092}}";
sepNavSelRange = "{18014, 0}";
- sepNavVisRange = "{12651, 348}";
+ sepNavVisRange = "{12674, 358}";
sepNavWindowFrame = "{{11, 47}, {895, 831}}";
};
};
@@ -106,16 +106,6 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8BD03E8327715D9B00C95947 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* ZNotchProc.cpp */;
- name = "ZNotchProc.cpp: 377";
- rLen = 0;
- rLoc = 18014;
- rType = 0;
- vrLen = 348;
- vrLoc = 12651;
- };
8BD03E8427715D9B00C95947 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 24D8286F09A914000093AEF8 /* ZNotchProc.cpp */;
@@ -126,6 +116,16 @@
vrLen = 348;
vrLoc = 12651;
};
+ 8BDCAE8027CED05800A07B67 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 24D8286F09A914000093AEF8 /* ZNotchProc.cpp */;
+ name = "ZNotchProc.cpp: 378";
+ rLen = 0;
+ rLoc = 18014;
+ rType = 0;
+ vrLen = 358;
+ vrLoc = 12674;
+ };
8D01CCC60486CAD60068D4B7 /* ZNotch */ = {
activeExec = 0;
};
diff --git a/plugins/MacVST/ZNotch/ZNotch.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/ZNotch/ZNotch.xcodeproj/christopherjohnson.perspectivev3
index 3bb1b053b..d339475df 100644
--- a/plugins/MacVST/ZNotch/ZNotch.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/ZNotch/ZNotch.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 35 324 810 487 0 0 1440 878
+ 26 179 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -351,10 +351,10 @@
_historyCapacity
0
bookmark
- 8BD03E8427715D9B00C95947
+ 8BDCAE8027CED05800A07B67
history
- 8BD03E8327715D9B00C95947
+ 8BD03E8427715D9B00C95947
SplitCount
@@ -368,18 +368,18 @@
GeometryConfiguration
Frame
- {{0, 0}, {603, 132}}
+ {{0, 0}, {603, 117}}
RubberWindowFrame
- 35 324 810 487 0 0 1440 878
+ 26 179 810 487 0 0 1280 698
Module
PBXNavigatorGroup
Proportion
- 132pt
+ 117pt
Proportion
- 309pt
+ 324pt
Tabs
@@ -393,9 +393,9 @@
GeometryConfiguration
Frame
- {{10, 27}, {603, 282}}
+ {{10, 27}, {603, 297}}
RubberWindowFrame
- 35 324 810 487 0 0 1440 878
+ 26 179 810 487 0 0 1280 698
Module
XCDetailModule
@@ -477,11 +477,11 @@
TableOfContents
- 8BD03E8527715D9B00C95947
+ 8BDCAE8127CED05800A07B67
1CA23ED40692098700951B8B
- 8BD03E8627715D9B00C95947
+ 8BDCAE8227CED05800A07B67
8B0237581D42B1C400E1E8C8
- 8BD03E8727715D9B00C95947
+ 8BDCAE8327CED05800A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -634,7 +634,7 @@
StatusbarIsVisible
TimeStamp
- 661740955.42100096
+ 667865176.62176895
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -654,7 +654,7 @@
/Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/ZNotch/ZNotch.xcodeproj
WindowString
- 35 324 810 487 0 0 1440 878
+ 26 179 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/ZNotch2/ZNotch2.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/ZNotch2/ZNotch2.xcodeproj/christopherjohnson.pbxuser
index 3d4bd3b6f..a8ae5fcb4 100644
--- a/plugins/MacVST/ZNotch2/ZNotch2.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/ZNotch2/ZNotch2.xcodeproj/christopherjohnson.pbxuser
@@ -2,7 +2,7 @@
{
089C1669FE841209C02AAC07 /* Project object */ = {
activeBuildConfigurationName = Release;
- activeTarget = 8D01CCC60486CAD60068D4B7 /* ZNotch2 */;
+ activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */;
codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */;
perUserDictionary = {
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
@@ -49,12 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 661741250;
- PBXWorkspaceStateSaveDate = 661741250;
- };
- perUserProjectItems = {
- 8BD03EAE27715EC800C95947 /* PBXBookmark */ = 8BD03EAE27715EC800C95947 /* PBXBookmark */;
- 8BD03EC027715EED00C95947 /* PBXTextBookmark */ = 8BD03EC027715EED00C95947 /* PBXTextBookmark */;
+ PBXPerProjectTemplateStateSaveDate = 667865180;
+ PBXWorkspaceStateSaveDate = 667865180;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
@@ -86,10 +82,10 @@
};
24D8286F09A914000093AEF8 /* ZNotch2Proc.cpp */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1029, 8352}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1029, 8226}}";
sepNavSelRange = "{11529, 0}";
- sepNavVisRange = "{10987, 1403}";
- sepNavWindowFrame = "{{545, 47}, {895, 831}}";
+ sepNavVisRange = "{10921, 1278}";
+ sepNavWindowFrame = "{{385, 4}, {895, 694}}";
};
};
8B02375E1D42B1C400E1E8C8 /* Source Control */ = {
@@ -106,21 +102,7 @@
isa = PBXCodeSenseManager;
indexTemplatePath = "";
};
- 8BD03EAE27715EC800C95947 /* PBXBookmark */ = {
- isa = PBXBookmark;
- fRef = 24D8286F09A914000093AEF8 /* ZNotch2Proc.cpp */;
- };
- 8BD03EC027715EED00C95947 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 24D8286F09A914000093AEF8 /* ZNotch2Proc.cpp */;
- name = "ZNotch2Proc.cpp: 239";
- rLen = 0;
- rLoc = 11529;
- rType = 0;
- vrLen = 1403;
- vrLoc = 10987;
- };
- 8D01CCC60486CAD60068D4B7 /* ZNotch2 */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
activeExec = 0;
};
}
diff --git a/plugins/MacVST/ZNotch2/ZNotch2.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/ZNotch2/ZNotch2.xcodeproj/christopherjohnson.perspectivev3
index 3f601bb5f..7fe952565 100644
--- a/plugins/MacVST/ZNotch2/ZNotch2.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/ZNotch2/ZNotch2.xcodeproj/christopherjohnson.perspectivev3
@@ -222,48 +222,7 @@
OpenEditors
-
-
- Content
-
- PBXProjectModuleGUID
- 8BD03EBE27715EED00C95947
- PBXProjectModuleLabel
- ZNotch2Proc.cpp
- PBXSplitModuleInNavigatorKey
-
- Split0
-
- PBXProjectModuleGUID
- 8BD03EBF27715EED00C95947
- PBXProjectModuleLabel
- ZNotch2Proc.cpp
- _historyCapacity
- 0
- bookmark
- 8BD03EC027715EED00C95947
- history
-
- 8BD03EAE27715EC800C95947
-
-
- SplitCount
- 1
-
- StatusBarVisibility
-
-
- Geometry
-
- Frame
- {{0, 20}, {895, 734}}
- PBXModuleWindowStatusBarHidden2
-
- RubberWindowFrame
- 545 103 895 775 0 0 1440 878
-
-
-
+
PerspectiveWidths
810
@@ -364,7 +323,7 @@
185
RubberWindowFrame
- 553 308 810 487 0 0 1440 878
+ 413 172 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -403,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 553 308 810 487 0 0 1440 878
+ 413 172 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -428,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 553 308 810 487 0 0 1440 878
+ 413 172 810 487 0 0 1280 698
Module
XCDetailModule
@@ -510,11 +469,11 @@
TableOfContents
- 8BD03EBB27715EED00C95947
+ 8BDCAEA027CED06600A07B67
1CA23ED40692098700951B8B
- 8BD03EBC27715EED00C95947
+ 8BDCAEA127CED06600A07B67
8B0237581D42B1C400E1E8C8
- 8BD03EBD27715EED00C95947
+ 8BDCAEA227CED06600A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -667,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 661741293.44144106
+ 667865190.71014297
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -684,11 +643,11 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/ZNotch2/ZNotch2.xcodeproj
8BD03EBE27715EED00C95947
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/ZNotch2/ZNotch2.xcodeproj
WindowString
- 553 308 810 487 0 0 1440 878
+ 413 172 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/ZNotch2/ZNotch2.xcodeproj/project.pbxproj b/plugins/MacVST/ZNotch2/ZNotch2.xcodeproj/project.pbxproj
index e7e1532d2..e892df472 100755
--- a/plugins/MacVST/ZNotch2/ZNotch2.xcodeproj/project.pbxproj
+++ b/plugins/MacVST/ZNotch2/ZNotch2.xcodeproj/project.pbxproj
@@ -1894,7 +1894,7 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 8D01CCC60486CAD60068D4B7 /* ZNotch2 */ = {
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "ZNotch2" */;
buildPhases = (
@@ -1947,7 +1947,7 @@
);
projectRoot = "";
targets = (
- 8D01CCC60486CAD60068D4B7 /* ZNotch2 */,
+ 8D01CCC60486CAD60068D4B7 /* AudioUnit */,
);
};
/* End PBXProject section */
diff --git a/plugins/MacVST/uLawDecode/uLawDecode.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/uLawDecode/uLawDecode.xcodeproj/christopherjohnson.pbxuser
index 78e474f4a..00c2deaaf 100755
--- a/plugins/MacVST/uLawDecode/uLawDecode.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/uLawDecode/uLawDecode.xcodeproj/christopherjohnson.pbxuser
@@ -75,8 +75,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569773408;
- PBXWorkspaceStateSaveDate = 569773408;
+ PBXPerProjectTemplateStateSaveDate = 667864109;
+ PBXWorkspaceStateSaveDate = 667864109;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
diff --git a/plugins/MacVST/uLawDecode/uLawDecode.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/uLawDecode/uLawDecode.xcodeproj/christopherjohnson.perspectivev3
index 45637a5a3..b6a2ba282 100755
--- a/plugins/MacVST/uLawDecode/uLawDecode.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/uLawDecode/uLawDecode.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 426 311 810 487 0 0 1440 878
+ 318 173 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 426 311 810 487 0 0 1440 878
+ 318 173 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 426 311 810 487 0 0 1440 878
+ 318 173 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B79426F21F60D67006E9731
+ 8BDCAAC127CECC3100A07B67
1CA23ED40692098700951B8B
- 8B79427021F60D67006E9731
+ 8BDCAAC227CECC3100A07B67
8B0237581D42B1C400E1E8C8
- 8B79427121F60D67006E9731
+ 8BDCAAC327CECC3100A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -646,7 +646,7 @@
StatusbarIsVisible
TimeStamp
- 569773415.70611095
+ 667864113.34758902
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -663,10 +663,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/uLawDecode/uLawDecode.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/uLawDecode/uLawDecode.xcodeproj
WindowString
- 426 311 810 487 0 0 1440 878
+ 318 173 810 487 0 0 1280 698
WindowToolsV3
diff --git a/plugins/MacVST/uLawEncode/uLawEncode.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/uLawEncode/uLawEncode.xcodeproj/christopherjohnson.pbxuser
index 4382acd7f..96d4d8d56 100755
--- a/plugins/MacVST/uLawEncode/uLawEncode.xcodeproj/christopherjohnson.pbxuser
+++ b/plugins/MacVST/uLawEncode/uLawEncode.xcodeproj/christopherjohnson.pbxuser
@@ -49,8 +49,8 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 569773438;
- PBXWorkspaceStateSaveDate = 569773438;
+ PBXPerProjectTemplateStateSaveDate = 667864117;
+ PBXWorkspaceStateSaveDate = 667864117;
};
sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */;
userBuildSettings = {
diff --git a/plugins/MacVST/uLawEncode/uLawEncode.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/uLawEncode/uLawEncode.xcodeproj/christopherjohnson.perspectivev3
index 6742d700e..dc4e49764 100755
--- a/plugins/MacVST/uLawEncode/uLawEncode.xcodeproj/christopherjohnson.perspectivev3
+++ b/plugins/MacVST/uLawEncode/uLawEncode.xcodeproj/christopherjohnson.perspectivev3
@@ -323,7 +323,7 @@
185
RubberWindowFrame
- 119 336 810 487 0 0 1440 878
+ 89 185 810 487 0 0 1280 698
Module
PBXSmartGroupTreeModule
@@ -362,7 +362,7 @@
Frame
{{0, 0}, {603, 0}}
RubberWindowFrame
- 119 336 810 487 0 0 1440 878
+ 89 185 810 487 0 0 1280 698
Module
PBXNavigatorGroup
@@ -387,7 +387,7 @@
Frame
{{10, 27}, {603, 414}}
RubberWindowFrame
- 119 336 810 487 0 0 1440 878
+ 89 185 810 487 0 0 1280 698
Module
XCDetailModule
@@ -469,11 +469,11 @@
TableOfContents
- 8B79428E21F60D86006E9731
+ 8BDCAADE27CECC3A00A07B67
1CA23ED40692098700951B8B
- 8B79428F21F60D86006E9731
+ 8BDCAADF27CECC3A00A07B67
8B0237581D42B1C400E1E8C8
- 8B79429021F60D86006E9731
+ 8BDCAAE027CECC3A00A07B67
1CA23EDF0692099D00951B8B
1CA23EE00692099D00951B8B
1CA23EE10692099D00951B8B
@@ -626,7 +626,7 @@
StatusbarIsVisible
TimeStamp
- 569773446.35580504
+ 667864122.08357704
ToolbarConfigUserDefaultsMinorVersion
2
ToolbarDisplayMode
@@ -643,10 +643,10 @@
5
WindowOrderList
- /Users/christopherjohnson/Desktop/MacVST/uLawEncode/uLawEncode.xcodeproj
+ /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/uLawEncode/uLawEncode.xcodeproj
WindowString
- 119 336 810 487 0 0 1440 878
+ 89 185 810 487 0 0 1280 698
WindowToolsV3