Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6be4a36bf9 | |||
| 6c63e53848 | |||
| e5ac8913ed | |||
| c8dbe74fcc | |||
| 525a9883f0 |
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -7,3 +7,6 @@
|
||||
[submodule "libs/3rdParty/rapidcsv"]
|
||||
path = libs/3rdParty/rapidcsv
|
||||
url = https://github.com/d99kris/rapidcsv.git
|
||||
[submodule "libs/3rdParty/Qt-QrCodeGenerator"]
|
||||
path = libs/3rdParty/Qt-QrCodeGenerator
|
||||
url = https://github.com/alex-spataru/Qt-QrCodeGenerator.git
|
||||
|
||||
@ -1,5 +1,11 @@
|
||||
# Changelog
|
||||
|
||||
## 0.2.1 - 2026-01-15
|
||||
|
||||
### Added
|
||||
|
||||
- Displaying QR code of current item in edit item dialog
|
||||
|
||||
## 0.2 - 2026-01-14
|
||||
|
||||
### Added
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
cmake_minimum_required(VERSION 3.16)
|
||||
|
||||
set(TARGET_APP "GenericQtClient")
|
||||
project(${TARGET_APP} VERSION 0.2.0 LANGUAGES CXX)
|
||||
project(${TARGET_APP} VERSION 0.2.1 LANGUAGES CXX)
|
||||
|
||||
enable_testing()
|
||||
|
||||
@ -11,6 +11,10 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
add_subdirectory(libs/GenericCore)
|
||||
set (CORE_LIB_DIR ${CMAKE_CURRENT_SOURCE_DIR}/libs/GenericCore)
|
||||
|
||||
### 3rd party libraries
|
||||
add_subdirectory(libs/3rdParty/Qt-QrCodeGenerator)
|
||||
set (QR_LIB_DIR ${CMAKE_CURRENT_SOURCE_DIR}/libs/3rdParty/Qt-QrCodeGenerator)
|
||||
|
||||
configure_file(ApplicationConfig.h.in ApplicationConfig.h)
|
||||
|
||||
#Frontend applications
|
||||
|
||||
Submodule UIs/GenericWidgets updated: c83ba2da9d...a8bf5b4032
1
libs/3rdParty/Qt-QrCodeGenerator
vendored
Submodule
1
libs/3rdParty/Qt-QrCodeGenerator
vendored
Submodule
Submodule libs/3rdParty/Qt-QrCodeGenerator added at f9bdfea8ef
Submodule libs/GenericCore updated: c15e5425a7...caffa1c18a
Reference in New Issue
Block a user