Skip to content

Commit

Permalink
Increase version number
Browse files Browse the repository at this point in the history
  • Loading branch information
novomesk committed Jul 2, 2024
1 parent b677fc4 commit dfbdd0a
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 3 deletions.
9 changes: 8 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 0.6.2.{build}
version: 0.6.3.{build}
image: Visual Studio 2022
environment:
CC: cl.exe
Expand Down Expand Up @@ -38,7 +38,14 @@ build_script:
nmake
cd ..\qtbuild_6.7.1
C:\Qt\6.7.1\msvc2019_64\bin\qmake.exe qt-jpegxl-image-plugin_alternative_appveyor.pro
nmake
artifacts:
- path: plugins\imageformats\*.dll
- path: qtbuild_6.2.4\*.dll
- path: qtbuild_6.5.3\*.dll
- path: qtbuild_6.7.1\*.dll
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ TEMPLATE = lib
CONFIG += release skip_target_version_ext c++14 warn_on plugin
CONFIG -= separate_debug_info debug debug_and_release force_debug_info

win32:VERSION = 0.6.2
win32:VERSION = 0.6.3
QMAKE_TARGET_COMPANY = "Daniel Novomesky"
QMAKE_TARGET_PRODUCT = "qt-jpegxl-image-plugin"
QMAKE_TARGET_DESCRIPTION = "Qt plug-in to allow Qt and KDE based applications to read/write JPEG XL images."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ TEMPLATE = lib
CONFIG += release skip_target_version_ext c++14 warn_on plugin
CONFIG -= separate_debug_info debug debug_and_release force_debug_info

win32:VERSION = 0.6.2
win32:VERSION = 0.6.3
QMAKE_TARGET_COMPANY = "Daniel Novomesky"
QMAKE_TARGET_PRODUCT = "qt-jpegxl-image-plugin"
QMAKE_TARGET_DESCRIPTION = "Qt plug-in to allow Qt and KDE based applications to read/write JPEG XL images."
Expand Down
Empty file added qtbuild_6.7.1/.qmake.conf
Empty file.
25 changes: 25 additions & 0 deletions qtbuild_6.7.1/qt-jpegxl-image-plugin_alternative_appveyor.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
TARGET = qjpegxl6

DEFINES += JXL_STATIC_DEFINE JXL_THREADS_STATIC_DEFINE

INCLUDEPATH += ../libjxl/lib/include ../libjxl/build/lib/include

HEADERS = ../src/qjpegxlhandler_p.h ../src/util_p.h
SOURCES = ../src/qjpegxlhandler.cpp
OTHER_FILES = ../src/jpegxl.json

SOURCES += ../src/main.cpp

LIBS_PRIVATE += ../libjxl/build/lib/jxl.lib ../libjxl/build/lib/jxl_cms.lib ../libjxl/build/lib/jxl_threads.lib ../libjxl/build/third_party/highway/hwy.lib ../libjxl/build/third_party/brotli/brotlidec.lib ../libjxl/build/third_party/brotli/brotlienc.lib ../libjxl/build/third_party/brotli/brotlicommon.lib

TEMPLATE = lib

CONFIG += release skip_target_version_ext c++14 warn_on plugin
CONFIG -= separate_debug_info debug debug_and_release force_debug_info

win32:VERSION = 0.6.3
QMAKE_TARGET_COMPANY = "Daniel Novomesky"
QMAKE_TARGET_PRODUCT = "qt-jpegxl-image-plugin"
QMAKE_TARGET_DESCRIPTION = "Qt plug-in to allow Qt and KDE based applications to read/write JPEG XL images."
QMAKE_TARGET_COPYRIGHT = "Copyright (C) 2020-2024 Daniel Novomesky"
QMAKE_TARGET_COMMENTS = "Build using Qt 6.7.1"

0 comments on commit dfbdd0a

Please sign in to comment.