Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
dtk
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
6
Issues
6
List
Boards
Labels
Service Desk
Milestones
Merge Requests
4
Merge Requests
4
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
dtk
dtk
Commits
c513e404
Commit
c513e404
authored
Jan 24, 2019
by
NICLAUSSE Nicolas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
release 1.7.0
parent
062c0815
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
4 deletions
+9
-4
CHANGES.md
CHANGES.md
+5
-0
CMakeLists.txt
CMakeLists.txt
+2
-2
app/dtkComposerEvaluator/main.cpp
app/dtkComposerEvaluator/main.cpp
+1
-1
app/dtkDistributedServer/main.cpp
app/dtkDistributedServer/main.cpp
+1
-1
No files found.
CHANGES.md
View file @
c513e404
# ChangeLog
## version 1.7.0 - 2019-01-24
-
add clear method in factory
-
add option to replace plugin in factory
-
add threading options to pythonInterpreter
-
add option to redirect output in pythonInterpreter and use a specific settings file
## version 1.6.7 - 2018-11-23
-
Swig: Add typecheck for QStringList
## version 1.6.6 - 2018-11-22
...
...
CMakeLists.txt
View file @
c513e404
...
...
@@ -23,8 +23,8 @@ project(dtk)
## ###################################################################
set
(
dtk_VERSION_MAJOR 1
)
set
(
dtk_VERSION_MINOR
6
)
set
(
dtk_VERSION_PATCH
7
)
set
(
dtk_VERSION_MINOR
7
)
set
(
dtk_VERSION_PATCH
0
)
set
(
dtk_VERSION
${
dtk_VERSION_MAJOR
}
.
${
dtk_VERSION_MINOR
}
.
${
dtk_VERSION_PATCH
}
)
...
...
app/dtkComposerEvaluator/main.cpp
View file @
c513e404
...
...
@@ -28,7 +28,7 @@ int main(int argc, char **argv)
dtkDistributedGuiApplication
*
application
=
dtkDistributedGuiApplication
::
create
(
argc
,
argv
);
application
->
setApplicationName
(
"dtkComposerEvaluator"
);
application
->
setApplicationVersion
(
"1.
6.3
"
);
application
->
setApplicationVersion
(
"1.
7.0
"
);
application
->
setOrganizationName
(
"inria"
);
application
->
setOrganizationDomain
(
"fr"
);
bool
no_gui
=
application
->
noGui
();
...
...
app/dtkDistributedServer/main.cpp
View file @
c513e404
...
...
@@ -23,7 +23,7 @@ int main(int argc, char **argv)
{
dtkCoreApplication
*
application
=
dtkCoreApplication
::
create
(
argc
,
argv
);
application
->
setApplicationName
(
"dtkDistributedServer"
);
application
->
setApplicationVersion
(
"1.
6.3
"
);
application
->
setApplicationVersion
(
"1.
7.0
"
);
application
->
setOrganizationName
(
"inria"
);
application
->
setOrganizationDomain
(
"fr"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment