Skip to content

Commit

Permalink
Use same config/cache dir as Natron (INRIA)
Browse files Browse the repository at this point in the history
This will reset config and cache for existing users, sorry about that :)
  • Loading branch information
rodlie committed Apr 20, 2024
1 parent 47b43ef commit a113f56
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ option(USE_PKGCONF "Use pkg-config" ON)
add_definitions(-DQT_DEPRECATED_WARNINGS)
add_definitions(-DAPP_NAME="${PROJECT_NAME}")
add_definitions(-DAPP_VERSION="${PROJECT_VERSION}")
add_definitions(-DAPP_ORG="Natron")
add_definitions(-DAPP_DOMAIN="natronvfx.org")
add_definitions(-DAPP_ORG="INRIA")
add_definitions(-DAPP_URL="https://github.com/rodlie/NatronPluginManager")

add_compile_options(-Wall -Wextra)
if(CMAKE_BUILD_TYPE MATCHES "^(release|Release|RELEASE)$")
Expand Down
4 changes: 2 additions & 2 deletions src/app.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -491,10 +491,10 @@ void NatronPluginManager::handleAboutActionTriggered()
"Free Software Foundation; either version 2 of the License, "
"or (at your option) any later version.");
QString text = tr("<h3 style=\"font-weight:normal;\">%1</h3>"
"<p>A plug-in manager for <a href=\"https://natrongithub.github.io\">Natron</a>.</p>"
"<p>A <a href=\"%3\">plug-in manager</a> for <a href=\"https://natrongithub.github.io\">Natron</a>.</p>"
"<p style=\"font-size:small;\">%2</p>"
"<p style=\"font-size:small;\">Copyright &copy; <a href=\"https://github.com/rodlie\">Ole-André Rodlie</a>. All rights reserved.</p>")
.arg(title, lic);
.arg(title, lic, QString(APP_URL));
QMessageBox::about(this, tr("About"), text);
}

Expand Down
1 change: 0 additions & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ int main(int argc, char *argv[])
QApplication::setApplicationVersion(APP_VERSION);
QApplication::setApplicationDisplayName(QObject::tr("Natron Plug-in Manager"));
QApplication::setOrganizationName(APP_ORG);
QApplication::setOrganizationDomain(APP_DOMAIN);

NatronPluginManager app;
app.show();
Expand Down

0 comments on commit a113f56

Please sign in to comment.