Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gui/about_window.ui
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ width: 20px;
</font>
</property>
<property name="text">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;© 2024 DevTools. All rights reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;© 2024-2026 DevTools. All rights reserved.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
</widget>
</item>
Expand Down
2 changes: 1 addition & 1 deletion gui/davis_gui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ using std::string;
using std::vector;
using namespace dvs;
const int ANIMATION_DURATION = 300;
const double OPACITY_IF_NOT_ACTIVE = 0.92;
const double OPACITY_IF_NOT_ACTIVE = 0.94;

DavisGUI::DavisGUI(QWidget* parent)
: QMainWindow(parent)
Expand Down
6 changes: 3 additions & 3 deletions gui/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@

#define VERSION_MAJOR 1
#define VERSION_MINOR 1
#define VERSION_PATCH 2
#define VERSION_PATCH 3

#define STR_HELPER(x) #x
#define STR(x) STR_HELPER(x)

#define FILE_VERSION_STR STR(VERSION_MAJOR) "." STR(VERSION_MINOR) "." STR(VERSION_PATCH) ".0"
#define PRODUCT_VERSION_STR STR(VERSION_MAJOR) "." STR(VERSION_MINOR) "." STR(VERSION_PATCH) ".0"
#define FILE_VERSION_STR STR(VERSION_MAJOR) "." STR(VERSION_MINOR) "." STR(VERSION_PATCH)
#define PRODUCT_VERSION_STR STR(VERSION_MAJOR) "." STR(VERSION_MINOR) "." STR(VERSION_PATCH)

#endif // VERSION_H