sourcepp 2025.5.25.dev1__tar.gz → 2025.5.25.dev2__tar.gz

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.
@@ -30,7 +30,7 @@ endif()
30
30
  set(CMAKE_POSITION_INDEPENDENT_CODE ON)
31
31
 
32
32
  set(SOURCEPP_BUILD_PYTHON_WRAPPERS ON CACHE INTERNAL "" FORCE)
33
- set(SOURCEPP_VERSION "2025.05.25dev1")
33
+ set(SOURCEPP_VERSION "2025.05.25.dev2")
34
34
 
35
35
  # As weird as this looks, this is necessary for sdist wheel
36
36
  set(SOURCEPP_PYTHON_IS_SUBDIR OFF)
@@ -41,6 +41,6 @@ else()
41
41
  FetchContent_Declare(
42
42
  sourcepp
43
43
  GIT_REPOSITORY "https://github.com/craftablescience/sourcepp.git"
44
- GIT_TAG "bc129fb8450454092a64dac0e78fe824ea91c332")
44
+ GIT_TAG "3a4895adc24c1636a07d5808f2777a385846ba2b")
45
45
  FetchContent_MakeAvailable(sourcepp)
46
46
  endif()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: sourcepp
3
- Version: 2025.5.25.dev1
3
+ Version: 2025.5.25.dev2
4
4
  Summary: Several modern C++20 libraries for sanely parsing Valve formats.
5
5
  Author-Email: craftablescience <lauralewisdev@gmail.com>
6
6
  Maintainer-Email: craftablescience <lauralewisdev@gmail.com>
@@ -420,6 +420,7 @@ found on PyPI in the [sourcepp](https://pypi.org/project/sourcepp) package.
420
420
  - `vpkpp`'s ORE parser is based on [reverse-engineering work](https://github.com/erysdren/narbacular-drop-tools) by [@erysdren](https://github.com/erysdren).
421
421
  - `vpkpp`'s VPP parser was contributed by [@erysdren](https://github.com/erysdren).
422
422
  - `vpkpp`'s WAD3 parser/writer was contributed by [@ozxybox](https://github.com/ozxybox).
423
+ - `vtfpp`'s NICE/Lanczos-3 resize filter support was contributed by [@koerismo](https://github.com/koerismo).
423
424
  - `vtfpp`'s SHT parser/writer was contributed by [@Trico Everfire](https://github.com/Trico-Everfire).
424
425
  - `vtfpp`'s VTF write support is loosely based on work by [@Trico Everfire](https://github.com/Trico-Everfire).
425
426
  - `vtfpp`'s HDRI to cubemap conversion code is modified from the [HdriToCubemap](https://github.com/ivarout/HdriToCubemap) library by [@ivarout](https://github.com/ivarout).
@@ -398,6 +398,7 @@ found on PyPI in the [sourcepp](https://pypi.org/project/sourcepp) package.
398
398
  - `vpkpp`'s ORE parser is based on [reverse-engineering work](https://github.com/erysdren/narbacular-drop-tools) by [@erysdren](https://github.com/erysdren).
399
399
  - `vpkpp`'s VPP parser was contributed by [@erysdren](https://github.com/erysdren).
400
400
  - `vpkpp`'s WAD3 parser/writer was contributed by [@ozxybox](https://github.com/ozxybox).
401
+ - `vtfpp`'s NICE/Lanczos-3 resize filter support was contributed by [@koerismo](https://github.com/koerismo).
401
402
  - `vtfpp`'s SHT parser/writer was contributed by [@Trico Everfire](https://github.com/Trico-Everfire).
402
403
  - `vtfpp`'s VTF write support is loosely based on work by [@Trico Everfire](https://github.com/Trico-Everfire).
403
404
  - `vtfpp`'s HDRI to cubemap conversion code is modified from the [HdriToCubemap](https://github.com/ivarout/HdriToCubemap) library by [@ivarout](https://github.com/ivarout).
@@ -5,7 +5,7 @@ build-backend = "scikit_build_core.build"
5
5
 
6
6
  [project]
7
7
  name = "sourcepp"
8
- version = "2025.05.25dev1"
8
+ version = "2025.05.25.dev2"
9
9
  authors = [{ name = "craftablescience", email = "lauralewisdev@gmail.com" }]
10
10
  maintainers = [{ name = "craftablescience", email = "lauralewisdev@gmail.com" }]
11
11
  description = "Several modern C++20 libraries for sanely parsing Valve formats."
@@ -1,5 +1,5 @@
1
1
  from ._sourcepp_impl import __doc__, bsppp, gamepp, sourcepp, steampp, toolpp, vcryptpp, vtfpp
2
2
 
3
3
  __author__ = "craftablescience"
4
- __version__ = "2025.05.25dev1"
4
+ __version__ = "2025.05.25.dev2"
5
5
  __all__ = ['__author__', '__doc__', '__version__', 'bsppp', 'gamepp', 'sourcepp', 'steampp', 'toolpp', 'vcryptpp', 'vtfpp']
@@ -171,6 +171,7 @@ void register_python(py::module_& m) {
171
171
  .value("MITCHELL", ResizeFilter::MITCHELL)
172
172
  .value("POINT_SAMPLE", ResizeFilter::POINT_SAMPLE)
173
173
  .value("KAISER", ResizeFilter::KAISER)
174
+ .value("NICE", ResizeFilter::NICE)
174
175
  .export_values();
175
176
 
176
177
  py::enum_<ResizeMethod>(ImageConversion, "ResizeMethod")