Skip to content

Commit

Permalink
v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AkiyukiOkayasu committed Dec 19, 2017
1 parent 348491e commit 2fcae88
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@
"_DEBUG=1",
"DEBUG=1",
"JUCER_XCODE_MAC_F6D2F4CF=1",
"JUCE_APP_VERSION=0.2.0",
"JUCE_APP_VERSION_HEX=0x200",
"JUCE_APP_VERSION=0.3.0",
"JUCE_APP_VERSION_HEX=0x300",
"JucePlugin_Build_VST=0",
"JucePlugin_Build_VST3=0",
"JucePlugin_Build_AU=0",
Expand All @@ -186,7 +186,7 @@
INSTALL_PATH = "$(HOME)/Applications";
MACOSX_DEPLOYMENT_TARGET = 10.11;
MACOSX_DEPLOYMENT_TARGET_ppc = 10.4;
PRODUCT_BUNDLE_IDENTIFIER = net.tkrworks.ImpulseResponseMeasurement;
PRODUCT_BUNDLE_IDENTIFIER = com.AkiyukiOkayasu.ImpulseResponseMeasurement;
SDKROOT_ppc = macosx10.5;
USE_HEADERMAP = NO; }; name = Debug; };
5505CF091F908D49BDADECAC = {isa = XCBuildConfiguration; buildSettings = {
Expand All @@ -201,8 +201,8 @@
"_NDEBUG=1",
"NDEBUG=1",
"JUCER_XCODE_MAC_F6D2F4CF=1",
"JUCE_APP_VERSION=0.2.0",
"JUCE_APP_VERSION_HEX=0x200",
"JUCE_APP_VERSION=0.3.0",
"JUCE_APP_VERSION_HEX=0x300",
"JucePlugin_Build_VST=0",
"JucePlugin_Build_VST3=0",
"JucePlugin_Build_AU=0",
Expand All @@ -219,7 +219,7 @@
LLVM_LTO = YES;
MACOSX_DEPLOYMENT_TARGET = 10.11;
MACOSX_DEPLOYMENT_TARGET_ppc = 10.4;
PRODUCT_BUNDLE_IDENTIFIER = net.tkrworks.ImpulseResponseMeasurement;
PRODUCT_BUNDLE_IDENTIFIER = com.AkiyukiOkayasu.ImpulseResponseMeasurement;
SDKROOT_ppc = macosx10.5;
USE_HEADERMAP = NO; }; name = Release; };
B5991A833BFC1C325F5A4BDA = {isa = XCBuildConfiguration; buildSettings = {
Expand Down
6 changes: 3 additions & 3 deletions Builds/MacOSX/Info-App.plist
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<key>CFBundleIconFile</key>
<string></string>
<key>CFBundleIdentifier</key>
<string>net.tkrworks.ImpulseResponseMeasurement</string>
<string>com.AkiyukiOkayasu.ImpulseResponseMeasurement</string>
<key>CFBundleName</key>
<string>ImpulseResponseMeasurement</string>
<key>CFBundleDisplayName</key>
Expand All @@ -18,9 +18,9 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleShortVersionString</key>
<string>0.2.0</string>
<string>0.3.0</string>
<key>CFBundleVersion</key>
<string>0.2.0</string>
<string>0.3.0</string>
<key>NSHumanReadableCopyright</key>
<string></string>
<key>NSHighResolutionCapable</key>
Expand Down
2 changes: 1 addition & 1 deletion ImpulseResponseMeasurement.jucer
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<JUCERPROJECT id="vNoCfh" name="ImpulseResponseMeasurement" displaySplashScreen="0"
reportAppUsage="0" splashScreenColour="Dark" projectType="guiapp"
version="0.2.0" bundleIdentifier="net.tkrworks.ImpulseResponseMeasurement"
version="0.3.0" bundleIdentifier="com.AkiyukiOkayasu.ImpulseResponseMeasurement"
includeBinaryInAppConfig="1" cppLanguageStandard="14" companyCopyright=""
jucerVersion="5.2.0">
<MAINGROUP id="tCWCka" name="ImpulseResponseMeasurement">
Expand Down
4 changes: 2 additions & 2 deletions JuceLibraryCode/JuceHeader.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
namespace ProjectInfo
{
const char* const projectName = "ImpulseResponseMeasurement";
const char* const versionString = "0.2.0";
const int versionNumber = 0x200;
const char* const versionString = "0.3.0";
const int versionNumber = 0x300;
}
#endif

0 comments on commit 2fcae88

Please sign in to comment.