diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index a41f52c..e0a8133 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -17,6 +17,6 @@ qt_add_executable(quickshell panelinterface.cpp ) -qt_add_qml_module(quickshell URI Quickshell) +qt_add_qml_module(quickshell URI Quickshell VERSION 0.1) target_link_libraries(quickshell PRIVATE ${QT_DEPS}) diff --git a/src/core/main.cpp b/src/core/main.cpp index 8d4a5e3..0d3b6b0 100644 --- a/src/core/main.cpp +++ b/src/core/main.cpp @@ -14,7 +14,7 @@ int main(int argc, char** argv) { const auto app = QGuiApplication(argc, argv); QGuiApplication::setApplicationName("quickshell"); - QGuiApplication::setApplicationVersion("0.0.1"); + QGuiApplication::setApplicationVersion("0.1.0"); QCommandLineParser parser; parser.addHelpOption(); diff --git a/src/io/CMakeLists.txt b/src/io/CMakeLists.txt index 7578383..6fe0f40 100644 --- a/src/io/CMakeLists.txt +++ b/src/io/CMakeLists.txt @@ -9,7 +9,7 @@ if (SOCKETS) target_sources(quickshell-io PRIVATE socket.cpp) endif() -qt_add_qml_module(quickshell-io URI Quickshell.Io) +qt_add_qml_module(quickshell-io URI Quickshell.Io VERSION 0.1) target_link_libraries(quickshell-io PRIVATE ${QT_DEPS}) target_link_libraries(quickshell-io-init PRIVATE ${QT_DEPS}) diff --git a/src/wayland/CMakeLists.txt b/src/wayland/CMakeLists.txt index cde289e..3300a5f 100644 --- a/src/wayland/CMakeLists.txt +++ b/src/wayland/CMakeLists.txt @@ -45,7 +45,7 @@ endfunction() # ----- qt_add_library(quickshell-wayland STATIC) -qt_add_qml_module(quickshell-wayland URI Quickshell.Wayland) +qt_add_qml_module(quickshell-wayland URI Quickshell.Wayland VERSION 0.1) # required to make sure the constructor is linked add_library(quickshell-wayland-init OBJECT init.cpp) diff --git a/src/wayland/wlr_layershell/CMakeLists.txt b/src/wayland/wlr_layershell/CMakeLists.txt index 87bc044..27a85ca 100644 --- a/src/wayland/wlr_layershell/CMakeLists.txt +++ b/src/wayland/wlr_layershell/CMakeLists.txt @@ -4,7 +4,7 @@ qt_add_library(quickshell-wayland-layershell STATIC window.cpp ) -qt_add_qml_module(quickshell-wayland-layershell URI Quickshell.Wayland._WlrLayerShell) +qt_add_qml_module(quickshell-wayland-layershell URI Quickshell.Wayland._WlrLayerShell VERSION 0.1) wl_proto(quickshell-wayland-layershell wlr-layer-shell-unstable-v1 "${CMAKE_CURRENT_SOURCE_DIR}/wlr-layer-shell-unstable-v1.xml") target_link_libraries(quickshell-wayland-layershell PRIVATE ${QT_DEPS} wayland-client)