fastqr 1.0.25 → 1.0.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '08d585e67100578345b5674f927112bd3952112da22087488b3ce322d804dd74'
4
- data.tar.gz: 83b738da76c1b9ff2eed8c7fc76a170a8959c4afb19847d65b62bfd164a7a6ce
3
+ metadata.gz: 457b98912e41a7810a0f8c3d8f22965b517c6da7fb8bbe2ed06b969eda990603
4
+ data.tar.gz: '063209c0e1f36e15b709dcf5129dd2902a48de17a4b57967791aea9e9924122b'
5
5
  SHA512:
6
- metadata.gz: 5deef00c5c5f9d310b8eadfc66f558e5b4686592b492c4cc2bdb9efaf4975a576284bcd143490aa26ec1156d53660402906e75803ab3c367846af2c3ba70bfaf
7
- data.tar.gz: 046df632715d666378f65cab549b78e0046819bc0c4c23365602fdea5d1e143a748fb7219ca4f78cf254d36946d9509f5989c9dad6d4047e02406d4b799ad946
6
+ metadata.gz: 150aeb0c727ccc4915b09d65c38bcf7afa5a25f766bae315830096402fef9915e8ee21a88503cbbb94b24b843b9cead04e2aee178c5eddc2be7528e57555483c
7
+ data.tar.gz: 3799f1bd5ea39d4daadb353874a122b3184c85e9294f082629ae8b90cbe90d4e85178d48874c8ff0d8c8a3cabf0b17c1cd8547b12b479ff4760e074d54977017
data/CMakeLists.txt CHANGED
@@ -1,5 +1,5 @@
1
1
  cmake_minimum_required(VERSION 3.15)
2
- project(fastqr VERSION 1.0.25 LANGUAGES CXX C)
2
+ project(fastqr VERSION 1.0.26 LANGUAGES CXX C)
3
3
 
4
4
  set(CMAKE_CXX_STANDARD 14)
5
5
  set(CMAKE_CXX_STANDARD_REQUIRED ON)
@@ -134,13 +134,14 @@ if(NOT BUILD_SHARED_LIBS)
134
134
  ${PNG_STATIC_LIBRARY}
135
135
  ${ZLIB_STATIC_LIBRARY}
136
136
  )
137
-
138
- # On Linux, ensure full static linking
137
+
138
+ # On Linux, ensure FULL static linking (no GLIBC dependency)
139
139
  if(UNIX AND NOT APPLE)
140
140
  target_link_options(fastqr-cli PRIVATE
141
- -static-libgcc
142
- -static-libstdc++
141
+ -static
143
142
  )
143
+ # Add pthread for static linking (required by libstdc++ and libqrencode)
144
+ target_link_libraries(fastqr-cli PRIVATE pthread)
144
145
  endif()
145
146
  else()
146
147
  message(WARNING "Static libraries not found, falling back to dynamic linking")
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.25
1
+ 1.0.26
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fastqr-pro",
3
- "version": "1.0.25",
3
+ "version": "1.0.26",
4
4
  "description": "Fast QR code generator with UTF-8 support, custom colors, logo embedding, and precise size control",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FastQR
4
- VERSION = "1.0.25"
4
+ VERSION = "1.0.26"
5
5
  end
6
6
 
data/src/fastqr.cpp CHANGED
@@ -31,7 +31,7 @@
31
31
  #include <algorithm>
32
32
  #include <cstdio>
33
33
 
34
- #define FASTQR_VERSION "1.0.25"
34
+ #define FASTQR_VERSION "1.0.26"
35
35
 
36
36
  namespace fastqr {
37
37
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastqr
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.25
4
+ version: 1.0.26
5
5
  platform: ruby
6
6
  authors:
7
7
  - FastQR Project