Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Y
YAT4TANGO
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software Control System
Libraries
YAT4TANGO
Commits
15cce024
Commit
15cce024
authored
Dec 1, 2021
by
Stephane Poirier
Browse files
Options
Downloads
Patches
Plain Diff
version 1.13.4
parent
f601b4cc
No related branches found
Tags
release_1_3_6
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
CMakeLists.txt
+2
-2
2 additions, 2 deletions
CMakeLists.txt
ReleaseNotes.txt
+17
-5
17 additions, 5 deletions
ReleaseNotes.txt
pom.xml
+1
-1
1 addition, 1 deletion
pom.xml
with
20 additions
and
8 deletions
CMakeLists.txt
+
2
−
2
View file @
15cce024
...
...
@@ -5,7 +5,7 @@ set(CMAKE_VERBOSE_MAKEFILE TRUE)
set
(
MAJOR_VERSION
"1"
)
set
(
MINOR_VERSION
"13"
)
set
(
PATCH_VERSION
"
3
"
)
set
(
PATCH_VERSION
"
4
"
)
set
(
VERSION
"
${
MAJOR_VERSION
}
.
${
MINOR_VERSION
}
.
${
PATCH_VERSION
}
"
)
if
(
NOT DEFINED CMAKE_INSTALL_PREFIX AND CMAKE_SIZEOF_VOID_P EQUAL 8
)
...
...
@@ -19,7 +19,7 @@ pkg_check_modules(TANGO tango REQUIRED)
pkg_check_modules
(
YAT yat REQUIRED
)
if
(
UNIX
)
add_definitions
(
-O2 -g -gstabs+ -std=c++0x -Wall -Wextra -DYAT4TANGO_PROJECT_VERSION=1.13.
3
-DYAT4TANGO_PROJECT_NAME=YAT
)
add_definitions
(
-O2 -g -gstabs+ -std=c++0x -Wall -Wextra -DYAT4TANGO_PROJECT_VERSION=1.13.
4
-DYAT4TANGO_PROJECT_NAME=YAT
4Tango
)
set
(
CMAKE_SHARED_LINKER_FLAGS
"-Wl,-z,defs"
)
endif
()
...
...
This diff is collapsed.
Click to expand it.
ReleaseNotes.txt
+
17
−
5
View file @
15cce024
YAT4Tango history file
1.13.4 (2021/12/01)
===================
Fixes
TangoLogAdapter
If _host parameter is null then use the API_LOGGER to prevent seg fault.
In this case, log messages will be redirected to the admin device associated
to the device server.
1.13.3 (2021/09/23)
===================
Additions
TangoLogAdapter
Objets inherited from TangoLogAdapter can now use those methods for message logging with formatting:
Objets inherited from TangoLogAdapter can now use those methods for message
logging with formatting:
debug(), info(), warn(), error(), fatal()
which internally use the yat::Format class.
usage :
debug("Message with two arguments: first: {}, second: {}.").arg(value_1).arg(value_2);
-> see <yat4tango/LogHelper.h>
-> see Format class in <yat/utils/String.h> for format specification
Changes
DeviceTask
This class now inherite from TangoLogAdapter instead of Tango::LogAdapter in order to benefit from the new log methods using yat::Format
This class now inherite from TangoLogAdapter instead of Tango::LogAdapter
in order to benefit from the new log methods using yat::Format
-> see <yat4tango/DeviceTask.h>
1.13.2 (2021/07/07)
...
...
This diff is collapsed.
Click to expand it.
pom.xml
+
1
−
1
View file @
15cce024
...
...
@@ -13,7 +13,7 @@
<artifactId>
YAT4Tango-${aol}-${library}-${mode}
</artifactId>
<version>
1.13.4
-SNAPSHOT
</version>
<version>
1.13.4
</version>
<packaging>
nar
</packaging>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment