Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
dtk-widgets
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
13
Issues
13
List
Boards
Labels
Milestones
Merge Requests
2
Merge Requests
2
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
dtk
dtk-widgets
Compare Revisions
c78cf918c32505c51467198f043cbc23b574fcbc...bf8350be6d053403cbdb460db6273f83f507d0c5
Source
bf8350be6d053403cbdb460db6273f83f507d0c5
Select Git revision
...
Target
c78cf918c32505c51467198f043cbc23b574fcbc
Select Git revision
Compare
Commits (2)
release 2.16.0
· 702383d1
NICLAUSSE Nicolas
authored
Nov 29, 2019
702383d1
Merge branch 'release/2.16.0' into develop
· bf8350be
NICLAUSSE Nicolas
authored
Nov 29, 2019
bf8350be
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
CHANGES.md
CHANGES.md
+4
-0
CMakeLists.txt
CMakeLists.txt
+2
-2
No files found.
CHANGES.md
View file @
bf8350be
# ChangeLog
## version 2.16.0 - 2019-11-29
-
first version of dtkWidgetsDataManager
## version 2.15.2 - 2019-11-12
-
Fixed workspace bar count.
## version 2.15.1 - 2019-10-18
-
Allow menu framework to tweak an existing Qt menu bar.
## version 2.15.0 - 2019-10-18
...
...
CMakeLists.txt
View file @
bf8350be
...
...
@@ -23,8 +23,8 @@ project(dtkWidgets)
## ###################################################################
set
(
${
PROJECT_NAME
}
_VERSION_MAJOR 2
)
set
(
${
PROJECT_NAME
}
_VERSION_MINOR 1
5
)
set
(
${
PROJECT_NAME
}
_VERSION_PATCH
2
)
set
(
${
PROJECT_NAME
}
_VERSION_MINOR 1
6
)
set
(
${
PROJECT_NAME
}
_VERSION_PATCH
0
)
set
(
${
PROJECT_NAME
}
_VERSION
${${
PROJECT_NAME
}
_VERSION_MAJOR
}
.
${${
PROJECT_NAME
}
_VERSION_MINOR
}
.
${${
PROJECT_NAME
}
_VERSION_PATCH
}
)
...
...