Skip to content

Commit

Permalink
Changed to version 0.0.12
Browse files Browse the repository at this point in the history
Compatibility with Qt Creator 4.8.0
  • Loading branch information
pasccom committed Dec 30, 2018
1 parent 33fb273 commit 89167b6
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "Qt Creator Plugin Developper Plugin"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 0.0.9
PROJECT_NUMBER = 0.0.10

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion Doxyfile.internal
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "Qt Creator Plugin Developer Plugin (developper)"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 0.0.9
PROJECT_NUMBER = 0.0.10

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
4 changes: 2 additions & 2 deletions QtcDevPlugin.json.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
\"Name\" : \"QtcDevPlugin\",
\"Version\" : \"0.0.9\",
\"CompatVersion\" : \"0.0.9\",
\"Version\" : \"0.0.10\",
\"CompatVersion\" : \"0.0.10\",
\"Vendor\" : \"Pascal COMBES\",
\"Copyright\" : \"(C) Pascal COMBES <[email protected]>\",
\"License\" : \"GPLv3\",
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ COMPATIBILITY TABLE
| 0.0.7 | 4.5.0 | `Y` | `Y` | `?` |
| 0.0.8 | 4.6.0 | `P` | `P` | `?` |
| 0.0.9 | 4.7.0 | `P` | `P` | `?` |
| 0.0.10 | 4.8.0 | `P` | `P` | `?` |

A `Y` means that QtcDevPlugin was tested against this Qt Creator version
under the given operating system. A `N` means that the version of the plugin
Expand Down
2 changes: 0 additions & 2 deletions Test/qtcrunconfigurationfactorytest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ void QtcRunConfigurationFactoryTest::testOpenProject(void)

QStringList args = qtcRunConfig->commandLineArgumentsList();
ProjectExplorer::Runnable qtcRunnable = qtcRunConfig->runnable();
//QCOMPARE(qtcRunnable.runMode, ProjectExplorer::ApplicationLauncher::Gui);
QCOMPARE(qtcRunnable.executable, QCoreApplication::applicationFilePath());
QString workingDirectory = target->activeBuildConfiguration()->buildDirectory().toString();
workingDirectory.replace(QLatin1Char('/'), QDir::separator());
Expand Down Expand Up @@ -171,7 +170,6 @@ void QtcRunConfigurationFactoryTest::testOpenProject(void)

QStringList args = qtcTestRunConfig->commandLineArgumentsList();
ProjectExplorer::Runnable qtcTestRunnable = qtcTestRunConfig->runnable();
//QCOMPARE(qtcTestRunnable.runMode, ProjectExplorer::ApplicationLauncher::Gui);
QCOMPARE(qtcTestRunnable.executable, QCoreApplication::applicationFilePath());
QString workingDirectory = target->activeBuildConfiguration()->buildDirectory().toString();
workingDirectory.replace(QLatin1Char('/'), QDir::separator());
Expand Down
1 change: 1 addition & 0 deletions qtcdeveloperplugin.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ namespace Internal {
* | 0.0.7 | 4.5.0 | `Y` | `Y` | `?` |
* | 0.0.8 | 4.6.0 | `P` | `P` | `?` |
* | 0.0.9 | 4.7.0 | `P` | `P` | `?` |
* | 0.0.10 | 4.8.0 | `P` | `P` | `?` |
*
* A \c Y means that QtcDevPlugin was tested against this Qt Creator version
* under the given operating system. A \c N means that the version of the plugin
Expand Down

0 comments on commit 89167b6

Please sign in to comment.