Skip to content

Commit

Permalink
Remove unused resource.
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleh Kulykov committed Dec 12, 2024
1 parent a79f563 commit f5734f5
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 16 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
(Portable, Patched, Package, cross-P-latform) Lzma SDK, libplzma

1.4.8: (current):
1.4.9: (current):
- Adopt Pod Specs to use resource bundles.

1.4.8:
- Adopt Pod Specs to use resource bundles.

1.4.7:
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ set(PACKAGE "libplzma")
set(CPACK_PACKAGE_NAME "${PACKAGE}")
set(CPACK_PACKAGE_VERSION_MAJOR "1")
set(CPACK_PACKAGE_VERSION_MINOR "4")
set(CPACK_PACKAGE_VERSION_PATCH "8")
set(CPACK_PACKAGE_VERSION_PATCH "9")
set(CPACK_PACKAGE_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}")
set(CPACK_PACKAGE_VENDOR "[email protected]")
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "${PACKAGE} ${PACKAGE_VERSION}")
set(SOVERSION "1.4.8")
set(SOVERSION "1.4.9")
set(CPACK_SOURCE_PACKAGE_FILE_NAME "${CPACK_PACKAGE_NAME}-${CPACK_PACKAGE_VERSION}")
set(VERSION "${CPACK_PACKAGE_VERSION}")

Expand Down
3 changes: 1 addition & 2 deletions PLzmaSDK-ObjC.podspec
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
Pod::Spec.new do |s|
s.name = 'PLzmaSDK-ObjC'
s.version = '1.4.8'
s.version = '1.4.9'
s.summary = '(Portable, Patched, Package, cross-P-latform) Lzma SDK, libplzma'
s.homepage = 'https://github.com/OlehKulykov/PLzmaSDK'
s.source = { :git => s.homepage + '.git', :tag => s.version }
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { 'Oleh Kulykov' => '[email protected]' }
s.resource = 'resources/PrivacyInfo.xcprivacy'
s.ios.deployment_target = '12.0'
s.osx.deployment_target = '10.13'
# s.tvos.deployment_target = '9.0'
Expand Down
3 changes: 1 addition & 2 deletions PLzmaSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
Pod::Spec.new do |s|
s.name = 'PLzmaSDK'
s.version = '1.4.8'
s.version = '1.4.9'
s.summary = '(Portable, Patched, Package, cross-P-latform) Lzma SDK, libplzma'
s.homepage = 'https://github.com/OlehKulykov/PLzmaSDK'
s.source = { :git => s.homepage + '.git', :tag => s.version }
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { 'Oleh Kulykov' => '[email protected]' }
s.swift_versions = ['5.0', '5.1', '5.2', '5.3', '5.4', '5.5', '5.6', '5.7', '5.8', '5.9', '5.10']
s.resource = 'resources/PrivacyInfo.xcprivacy'
s.ios.deployment_target = '12.0'
s.osx.deployment_target = '10.13'
# s.tvos.deployment_target = '12.0'
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ All optional features are enabled by default, but they might be disabled during
-----------
#### Swift Package Manager
```swift
.package(url: "https://github.com/OlehKulykov/PLzmaSDK.git", .exact("1.4.8"))
.package(url: "https://github.com/OlehKulykov/PLzmaSDK.git", .exact("1.4.9"))
```

#### CocoaPods Podfile (Swift)
Expand All @@ -64,7 +64,7 @@ use_frameworks!
platform :ios, '11.0'

target '<REPLACE_WITH_YOUR_TARGET>' do
pod 'PLzmaSDK', '1.4.8'
pod 'PLzmaSDK', '1.4.9'
end
```

Expand All @@ -74,7 +74,7 @@ use_frameworks!
platform :ios, '9.0'

target '<REPLACE_WITH_YOUR_TARGET>' do
pod 'PLzmaSDK-ObjC', '1.4.8'
pod 'PLzmaSDK-ObjC', '1.4.9'
end
```

Expand All @@ -86,7 +86,7 @@ end
"npm": ">=6.0.0"
},
"dependencies": {
"plzmasdk": "1.4.8"
"plzmasdk": "1.4.9"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 1.4.8.{build}
version: 1.4.9.{build}


os: Visual Studio 2019
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ android {
minSdkVersion 21
targetSdkVersion 26
versionCode 1
versionName "1.4.8"
versionName "1.4.9"
externalNativeBuild {
cmake {
arguments "-DANDROID_STL=c++_static", "-DANDROID_TOOLCHAIN=clang", "-DLIBCLZMA_OPT_ANDROID:BOOL=ON", "-DLIBCLZMA_OPT_STATIC:BOOL=OFF", "-DLIBCLZMA_OPT_TESTS:BOOL=OFF", "-DLIBCLZMA_OPT_BUILD_NUMBER=1174"
Expand Down
4 changes: 2 additions & 2 deletions libplzma.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@
/// and all optional C bindings to the internal C++ part(Core) of the library.
/// Everything what you need to use this library in C | Objective-C | Swift env. is here.

/// @brief Manualy defined version of the library, i.e. 1.4.8
/// @brief Manualy defined version of the library, i.e. 1.4.9
/// The optinal \a LIBPLZMA_VERSION_BUILD might be befined by the CI or CMake or manualy.
/// Conforms 'Semantic Versioning 2.0.0'.
/// @link https://semver.org
#define LIBPLZMA_VERSION_MAJOR 1
#define LIBPLZMA_VERSION_MINOR 4
#define LIBPLZMA_VERSION_PATCH 8
#define LIBPLZMA_VERSION_PATCH 9

// Check Windows
#if defined(WIN32) || defined(_WIN32) || defined(_WIN64) || defined(WIN64) || defined(WIN32_LEAN_AND_MEAN)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "plzmasdk",
"version": "1.4.8",
"version": "1.4.9",
"description": "(Portable, Patched, Package, cross-P-latform) Lzma SDK, libplzma",
"author": "Oleh Kulykov <[email protected]>",
"license": "SEE LICENSE IN LICENSE",
Expand Down

0 comments on commit f5734f5

Please sign in to comment.