Skip to content

Commit

Permalink
Bugfix embedded installer
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbui78 committed Jun 9, 2022
1 parent 70104e3 commit 77ca7e9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions DazStudioPlugin/DzC4DDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -290,10 +290,10 @@ void DzC4DDialog::HandleTargetPluginInstallerButton()
// verify plugin path
bool bIsPluginPath = false;
QString sPluginsPath = sDestinationPath;
if (sPluginsPath.endsWith("/plugins") == false)
{
sPluginsPath += "/plugins";
}
//if (sPluginsPath.endsWith("/plugins", Qt::CaseInsensitive) == false)
//{
// sPluginsPath += "/plugins";
//}
if (QDir(sPluginsPath).exists())
{
bIsPluginPath = true;
Expand Down
4 changes: 2 additions & 2 deletions DazStudioPlugin/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Version number for dzBridge-C4D
#define PLUGIN_MAJOR 2022
#define PLUGIN_MINOR 1
#define PLUGIN_REV 6
#define PLUGIN_BUILD 16
#define PLUGIN_REV 7
#define PLUGIN_BUILD 17

#define PLUGIN_VERSION DZ_MAKE_VERSION( PLUGIN_MAJOR, PLUGIN_MINOR, PLUGIN_REV, PLUGIN_BUILD )

0 comments on commit 77ca7e9

Please sign in to comment.