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
8c4ce599
Commit
8c4ce599
authored
Jul 25, 2018
by
NICLAUSSE Nicolas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
version 1.5.0
parent
64ea42ec
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
5 deletions
+8
-5
CHANGES.md
CHANGES.md
+3
-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
app/dtkDistributedSlave/main.cpp
app/dtkDistributedSlave/main.cpp
+1
-1
No files found.
CHANGES.md
View file @
8c4ce599
# ChangeLog
## version 1.5.0 - 2018-07-25
-
API change: add acces to factories and manager in the layer manager; add
*loadFromName*
in
*dtkCorePluginManagerBase*
-
change python modules directory (from
`modules`
to
`lib/pythonX.Y/site-packages`
)
## version 1.4.4 - 2018-07-19
-
fix typo when installating dtkWidgets sip wrapping on macOS
## version 1.4.3 - 2018-07-19
...
...
CMakeLists.txt
View file @
8c4ce599
...
...
@@ -23,8 +23,8 @@ project(dtk)
## ###################################################################
set
(
dtk_VERSION_MAJOR 1
)
set
(
dtk_VERSION_MINOR
4
)
set
(
dtk_VERSION_PATCH
4
)
set
(
dtk_VERSION_MINOR
5
)
set
(
dtk_VERSION_PATCH
0
)
set
(
dtk_VERSION
${
dtk_VERSION_MAJOR
}
.
${
dtk_VERSION_MINOR
}
.
${
dtk_VERSION_PATCH
}
)
...
...
app/dtkComposerEvaluator/main.cpp
View file @
8c4ce599
...
...
@@ -28,7 +28,7 @@ int main(int argc, char **argv)
dtkDistributedGuiApplication
*
application
=
dtkDistributedGuiApplication
::
create
(
argc
,
argv
);
application
->
setApplicationName
(
"dtkComposerEvaluator"
);
application
->
setApplicationVersion
(
"1.
4.4
"
);
application
->
setApplicationVersion
(
"1.
5.0
"
);
application
->
setOrganizationName
(
"inria"
);
application
->
setOrganizationDomain
(
"fr"
);
bool
no_gui
=
application
->
noGui
();
...
...
app/dtkDistributedServer/main.cpp
View file @
8c4ce599
...
...
@@ -23,7 +23,7 @@ int main(int argc, char **argv)
{
dtkCoreApplication
*
application
=
dtkCoreApplication
::
create
(
argc
,
argv
);
application
->
setApplicationName
(
"dtkDistributedServer"
);
application
->
setApplicationVersion
(
"1.
4.4
"
);
application
->
setApplicationVersion
(
"1.
5.0
"
);
application
->
setOrganizationName
(
"inria"
);
application
->
setOrganizationDomain
(
"fr"
);
...
...
app/dtkDistributedSlave/main.cpp
View file @
8c4ce599
...
...
@@ -61,7 +61,7 @@ int main(int argc, char **argv)
{
dtkDistributedGuiApplication
*
app
=
dtkDistributedGuiApplication
::
create
(
argc
,
argv
);
app
->
setApplicationName
(
"dtkDistributedSlave"
);
app
->
setApplicationVersion
(
"1.
4.4
"
);
app
->
setApplicationVersion
(
"1.
5.0
"
);
app
->
setOrganizationName
(
"inria"
);
QCommandLineParser
*
parser
=
app
->
parser
();
...
...
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