Skip to content

Commit

Permalink
Merge pull request #10 from mikeswanson/2022_v3_sdk
Browse files Browse the repository at this point in the history
2022 v3 sdk
  • Loading branch information
mikeswanson authored Jun 5, 2022
2 parents c4f6281 + e89fc4a commit bd48b6f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions Ai2Canvas.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -453,9 +453,9 @@
isa = XCBuildConfiguration;
baseConfigurationReference = 4C1467C5280BD56D00607F79 /* AIPluginDebug.xcconfig */;
buildSettings = {
CURRENT_PROJECT_VERSION = 1.7;
CURRENT_PROJECT_VERSION = 1.8;
DEVELOPMENT_TEAM = 2C8GQ57YVR;
MARKETING_VERSION = 1.7;
MARKETING_VERSION = 1.8;
REZ_SEARCH_PATHS = ./../common/mac;
};
name = debug;
Expand All @@ -464,9 +464,9 @@
isa = XCBuildConfiguration;
baseConfigurationReference = 4C1467C3280BD56D00607F79 /* AIPluginRelease.xcconfig */;
buildSettings = {
CURRENT_PROJECT_VERSION = 1.7;
CURRENT_PROJECT_VERSION = 1.8;
DEVELOPMENT_TEAM = 2C8GQ57YVR;
MARKETING_VERSION = 1.7;
MARKETING_VERSION = 1.8;
REZ_SEARCH_PATHS = ./../common/mac;
};
name = release;
Expand Down
6 changes: 3 additions & 3 deletions Resources/Ai2Canvas.rc
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ BEGIN
BLOCK "040904e4"
BEGIN
VALUE "CompanyName", "Mike Swanson"
VALUE "Copyright", "Copyright 2010-2021 Mike Swanson. All rights reserved."
VALUE "Copyright", "Copyright 2010-2022 Mike Swanson. All rights reserved."
VALUE "FileDescription", "Ai->Canvas Export Plug-In"
VALUE "FileVersion", "16.0"
VALUE "InternalName", "Ai->Canvas"
VALUE "LegalCopyright", "Copyright 2010-2021 Mike Swanson. All rights reserved."
VALUE "LegalCopyright", "Copyright 2010-2022 Mike Swanson. All rights reserved."
VALUE "OriginalFilename", "Ai2Canvas.aip"
VALUE "ProductName", "Ai->Canvas"
VALUE "ProductVersion", "1.6"
VALUE "ProductVersion", "1.8"
END
END
BLOCK "VarFileInfo"
Expand Down
6 changes: 3 additions & 3 deletions Source/Ai2CanvasPlugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -181,13 +181,13 @@ ASErr Ai2CanvasPlugin::GoMenuItem(AIMenuMessage* message)
SDKAboutPluginsHelper aboutPluginsHelper;

#ifdef MAC_ENV
aboutPluginsHelper.PopAboutBox(message, "Ai->Canvas Export Plug-In 1.7 (Mac)", "Copyright 2010-2022 Mike Swanson\nAll rights reserved\nhttp://blog.mikeswanson.com/");
aboutPluginsHelper.PopAboutBox(message, "Ai->Canvas Export Plug-In 1.8 (Mac)", "Copyright 2010-2022 Mike Swanson\nAll rights reserved\nhttp://blog.mikeswanson.com/");
#endif
#ifdef WIN_ENV
#ifdef _WIN64
aboutPluginsHelper.PopAboutBox(message, "Ai->Canvas Export Plug-In 1.7 (PC/64)", "Copyright 2010-2022 Mike Swanson\nAll rights reserved\nhttp://blog.mikeswanson.com/");
aboutPluginsHelper.PopAboutBox(message, "Ai->Canvas Export Plug-In 1.8 (PC/64)", "Copyright 2010-2022 Mike Swanson\nAll rights reserved\nhttp://blog.mikeswanson.com/");
#else
aboutPluginsHelper.PopAboutBox(message, "Ai->Canvas Export Plug-In 1.7 (PC/32)", "Copyright 2010-2022 Mike Swanson\nAll rights reserved\nhttp://blog.mikeswanson.com/");
aboutPluginsHelper.PopAboutBox(message, "Ai->Canvas Export Plug-In 1.8 (PC/32)", "Copyright 2010-2022 Mike Swanson\nAll rights reserved\nhttp://blog.mikeswanson.com/");
#endif
#endif
}
Expand Down
2 changes: 1 addition & 1 deletion Source/Document.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include "Document.h"

// Current plug-in version
#define PLUGIN_VERSION "1.7"
#define PLUGIN_VERSION "1.8"

using namespace CanvasExport;

Expand Down
Binary file modified plugin.pipl
Binary file not shown.

0 comments on commit bd48b6f

Please sign in to comment.