Compare commits
No commits in common. "master" and "0.7.0" have entirely different histories.
10 changed files with 45 additions and 120 deletions
119
.github/workflows/dotnet.yml
vendored
119
.github/workflows/dotnet.yml
vendored
|
|
@ -2,15 +2,15 @@ name: .NET
|
||||||
on: push
|
on: push
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
Linux_amd64:
|
Linux_Native:
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
image: almalinux:8
|
image: almalinux:8
|
||||||
env:
|
env:
|
||||||
BUILD_TYPE: Release
|
BUILD_TYPE: Release
|
||||||
steps:
|
steps:
|
||||||
- name: Cloning
|
- name: Cloning
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v4
|
||||||
- name: Install packages
|
- name: Install packages
|
||||||
run: dnf install -y cmake gcc gcc-c++
|
run: dnf install -y cmake gcc gcc-c++
|
||||||
- name: Configure CMake
|
- name: Configure CMake
|
||||||
|
|
@ -20,69 +20,11 @@ jobs:
|
||||||
- name: Install
|
- name: Install
|
||||||
run: cmake --install "build" --config ${{env.BUILD_TYPE}} --prefix "install/"
|
run: cmake --install "build" --config ${{env.BUILD_TYPE}} --prefix "install/"
|
||||||
- name: Upload
|
- name: Upload
|
||||||
uses: actions/upload-artifact@v5
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: AlmaLinux amd64
|
name: AlmaLinux amd64
|
||||||
path: ${{github.workspace}}/install/
|
path: ${{github.workspace}}/install/
|
||||||
Linux_arm64:
|
Windows_Native:
|
||||||
runs-on: ubuntu-24.04-arm
|
|
||||||
container:
|
|
||||||
image: almalinux:8
|
|
||||||
env:
|
|
||||||
BUILD_TYPE: Release
|
|
||||||
steps:
|
|
||||||
- name: Cloning
|
|
||||||
uses: actions/checkout@v5
|
|
||||||
- name: Install packages
|
|
||||||
run: dnf install -y cmake gcc gcc-c++
|
|
||||||
- name: Configure CMake
|
|
||||||
run: cmake -B "build" -DRAGEPHOTO_C_LIBRARY=ON -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
|
|
||||||
- name: Build
|
|
||||||
run: cmake --build "build" --config ${{env.BUILD_TYPE}}
|
|
||||||
- name: Install
|
|
||||||
run: cmake --install "build" --config ${{env.BUILD_TYPE}} --prefix "install/"
|
|
||||||
- name: Upload
|
|
||||||
uses: actions/upload-artifact@v5
|
|
||||||
with:
|
|
||||||
name: AlmaLinux arm64
|
|
||||||
path: ${{github.workspace}}/install/
|
|
||||||
macOS_amd64:
|
|
||||||
runs-on: macos-15-intel
|
|
||||||
env:
|
|
||||||
BUILD_TYPE: Release
|
|
||||||
steps:
|
|
||||||
- name: Cloning
|
|
||||||
uses: actions/checkout@v5
|
|
||||||
- name: Configure CMake
|
|
||||||
run: cmake -B "${{github.workspace}}/build" -DRAGEPHOTO_C_LIBRARY=ON -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -GNinja
|
|
||||||
- name: Build
|
|
||||||
run: cmake --build "${{github.workspace}}/build" --config ${{env.BUILD_TYPE}}
|
|
||||||
- name: Install
|
|
||||||
run: cmake --install "${{github.workspace}}/build" --config ${{env.BUILD_TYPE}} --prefix "${{github.workspace}}/install/"
|
|
||||||
- name: Upload
|
|
||||||
uses: actions/upload-artifact@v5
|
|
||||||
with:
|
|
||||||
name: macOS amd64
|
|
||||||
path: ${{github.workspace}}/install/
|
|
||||||
macOS_arm64:
|
|
||||||
runs-on: macos-15
|
|
||||||
env:
|
|
||||||
BUILD_TYPE: Release
|
|
||||||
steps:
|
|
||||||
- name: Cloning
|
|
||||||
uses: actions/checkout@v5
|
|
||||||
- name: Configure CMake
|
|
||||||
run: cmake -B "${{github.workspace}}/build" -DRAGEPHOTO_C_LIBRARY=ON -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -GNinja
|
|
||||||
- name: Build
|
|
||||||
run: cmake --build "${{github.workspace}}/build" --config ${{env.BUILD_TYPE}}
|
|
||||||
- name: Install
|
|
||||||
run: cmake --install "${{github.workspace}}/build" --config ${{env.BUILD_TYPE}} --prefix "${{github.workspace}}/install/"
|
|
||||||
- name: Upload
|
|
||||||
uses: actions/upload-artifact@v5
|
|
||||||
with:
|
|
||||||
name: macOS arm64
|
|
||||||
path: ${{github.workspace}}/install/
|
|
||||||
Windows:
|
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
env:
|
env:
|
||||||
BUILD_TYPE: Release
|
BUILD_TYPE: Release
|
||||||
|
|
@ -94,7 +36,7 @@ jobs:
|
||||||
- amd64_arm64
|
- amd64_arm64
|
||||||
steps:
|
steps:
|
||||||
- name: Cloning
|
- name: Cloning
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v4
|
||||||
- name: Setup MSVC
|
- name: Setup MSVC
|
||||||
uses: ilammy/msvc-dev-cmd@v1
|
uses: ilammy/msvc-dev-cmd@v1
|
||||||
with:
|
with:
|
||||||
|
|
@ -106,12 +48,12 @@ jobs:
|
||||||
- name: Install
|
- name: Install
|
||||||
run: cmake --install "${{github.workspace}}/build" --config ${{env.BUILD_TYPE}} --prefix "${{github.workspace}}/install"
|
run: cmake --install "${{github.workspace}}/build" --config ${{env.BUILD_TYPE}} --prefix "${{github.workspace}}/install"
|
||||||
- name: Upload
|
- name: Upload
|
||||||
uses: actions/upload-artifact@v5
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: Windows MSVC ${{matrix.arch}}
|
name: Windows MSVC ${{matrix.arch}}
|
||||||
path: ${{github.workspace}}/install/
|
path: ${{github.workspace}}/install/
|
||||||
Release:
|
Release:
|
||||||
needs: [Linux_amd64, Linux_arm64, macOS_amd64, macOS_arm64, Windows]
|
needs: [Linux_Native, Windows_Native]
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
|
|
@ -120,68 +62,47 @@ jobs:
|
||||||
BUILD_TYPE: Release
|
BUILD_TYPE: Release
|
||||||
steps:
|
steps:
|
||||||
- name: Cloning
|
- name: Cloning
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v4
|
||||||
- name: Download Linux amd64 Assets
|
- name: Download Linux amd64 Assets
|
||||||
uses: actions/download-artifact@v6
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: AlmaLinux amd64
|
name: AlmaLinux amd64
|
||||||
path: assets/linux-x64
|
path: assets/linux-x64
|
||||||
- name: Download Linux arm64 Assets
|
|
||||||
uses: actions/download-artifact@v6
|
|
||||||
with:
|
|
||||||
name: AlmaLinux arm64
|
|
||||||
path: assets/linux-arm64
|
|
||||||
- name: Download macOS amd64 Assets
|
|
||||||
uses: actions/download-artifact@v6
|
|
||||||
with:
|
|
||||||
name: macOS amd64
|
|
||||||
path: assets/osx-x64
|
|
||||||
- name: Download macOS arm64 Assets
|
|
||||||
uses: actions/download-artifact@v6
|
|
||||||
with:
|
|
||||||
name: macOS arm64
|
|
||||||
path: assets/osx-arm64
|
|
||||||
- name: Download Windows MSVC amd64 Assets
|
- name: Download Windows MSVC amd64 Assets
|
||||||
uses: actions/download-artifact@v6
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: Windows MSVC amd64
|
name: Windows MSVC amd64
|
||||||
path: assets/win-x64
|
path: assets/win-x64
|
||||||
- name: Download Windows MSVC arm64 Assets
|
- name: Download Windows MSVC amd64_x86 Assets
|
||||||
uses: actions/download-artifact@v6
|
uses: actions/download-artifact@v4
|
||||||
with:
|
|
||||||
name: Windows MSVC amd64_arm64
|
|
||||||
path: assets/win-arm64
|
|
||||||
- name: Download Windows MSVC x86 Assets
|
|
||||||
uses: actions/download-artifact@v6
|
|
||||||
with:
|
with:
|
||||||
name: Windows MSVC amd64_x86
|
name: Windows MSVC amd64_x86
|
||||||
path: assets/win-x86
|
path: assets/win-x86
|
||||||
|
- name: Download Windows MSVC amd64_arm64 Assets
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: Windows MSVC amd64_arm64
|
||||||
|
path: assets/win-arm64
|
||||||
- name: Copy Assets
|
- name: Copy Assets
|
||||||
run: |
|
run: |
|
||||||
mkdir -p "${{github.workspace}}\src\dotnet\runtimes\linux-arm64\native"
|
|
||||||
mkdir -p "${{github.workspace}}\src\dotnet\runtimes\linux-x64\native"
|
mkdir -p "${{github.workspace}}\src\dotnet\runtimes\linux-x64\native"
|
||||||
mkdir -p "${{github.workspace}}\src\dotnet\runtimes\osx-arm64\native"
|
|
||||||
mkdir -p "${{github.workspace}}\src\dotnet\runtimes\osx-x64\native"
|
|
||||||
mkdir -p "${{github.workspace}}\src\dotnet\runtimes\win-arm64\native"
|
mkdir -p "${{github.workspace}}\src\dotnet\runtimes\win-arm64\native"
|
||||||
mkdir -p "${{github.workspace}}\src\dotnet\runtimes\win-x64\native"
|
mkdir -p "${{github.workspace}}\src\dotnet\runtimes\win-x64\native"
|
||||||
mkdir -p "${{github.workspace}}\src\dotnet\runtimes\win-x86\native"
|
mkdir -p "${{github.workspace}}\src\dotnet\runtimes\win-x86\native"
|
||||||
cp "${{github.workspace}}\assets\linux-arm64\lib64\libragephoto.so" "${{github.workspace}}\src\dotnet\runtimes\linux-arm64\native\libragephoto.so"
|
|
||||||
cp "${{github.workspace}}\assets\linux-x64\lib64\libragephoto.so" "${{github.workspace}}\src\dotnet\runtimes\linux-x64\native\libragephoto.so"
|
cp "${{github.workspace}}\assets\linux-x64\lib64\libragephoto.so" "${{github.workspace}}\src\dotnet\runtimes\linux-x64\native\libragephoto.so"
|
||||||
cp "${{github.workspace}}\assets\osx-arm64\lib\libragephoto.dylib" "${{github.workspace}}\src\dotnet\runtimes\osx-arm64\native\libragephoto.dylib"
|
|
||||||
cp "${{github.workspace}}\assets\osx-x64\lib\libragephoto.dylib" "${{github.workspace}}\src\dotnet\runtimes\osx-x64\native\libragephoto.dylib"
|
|
||||||
cp "${{github.workspace}}\assets\win-arm64\bin\libragephoto.dll" "${{github.workspace}}\src\dotnet\runtimes\win-arm64\native\libragephoto.dll"
|
cp "${{github.workspace}}\assets\win-arm64\bin\libragephoto.dll" "${{github.workspace}}\src\dotnet\runtimes\win-arm64\native\libragephoto.dll"
|
||||||
cp "${{github.workspace}}\assets\win-x64\bin\libragephoto.dll" "${{github.workspace}}\src\dotnet\runtimes\win-x64\native\libragephoto.dll"
|
cp "${{github.workspace}}\assets\win-x64\bin\libragephoto.dll" "${{github.workspace}}\src\dotnet\runtimes\win-x64\native\libragephoto.dll"
|
||||||
cp "${{github.workspace}}\assets\win-x86\bin\libragephoto.dll" "${{github.workspace}}\src\dotnet\runtimes\win-x86\native\libragephoto.dll"
|
cp "${{github.workspace}}\assets\win-x86\bin\libragephoto.dll" "${{github.workspace}}\src\dotnet\runtimes\win-x86\native\libragephoto.dll"
|
||||||
- name: Setup MSBuild
|
- name: Setup MSBuild
|
||||||
uses: microsoft/setup-msbuild@v2
|
uses: microsoft/setup-msbuild@v2
|
||||||
- name: Setup .NET
|
- name: Setup .NET
|
||||||
uses: actions/setup-dotnet@v5
|
uses: actions/setup-dotnet@v4
|
||||||
with:
|
with:
|
||||||
dotnet-version: 8.0.x
|
dotnet-version: 8.0.x
|
||||||
- name: Build RagePhoto.Core
|
- name: Build RagePhoto.Core
|
||||||
run: msbuild "${{github.workspace}}\src\dotnet\RagePhoto.Core.csproj" /t:restore /t:pack /p:Configuration=${{env.BUILD_TYPE}}
|
run: msbuild "${{github.workspace}}\src\dotnet\RagePhoto.Core.csproj" /t:restore /t:pack /p:Configuration=${{env.BUILD_TYPE}}
|
||||||
- name: Upload
|
- name: Upload
|
||||||
uses: actions/upload-artifact@v5
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: NuGet Package
|
name: NuGet Package
|
||||||
path: ${{github.workspace}}\src\dotnet\bin\${{env.BUILD_TYPE}}\RagePhoto.Core.*.nupkg
|
path: ${{github.workspace}}\src\dotnet\bin\${{env.BUILD_TYPE}}\RagePhoto.Core.*.nupkg
|
||||||
|
|
|
||||||
7
.github/workflows/ubuntu-c.yml
vendored
7
.github/workflows/ubuntu-c.yml
vendored
|
|
@ -8,7 +8,7 @@ jobs:
|
||||||
BUILD_TYPE: Release
|
BUILD_TYPE: Release
|
||||||
steps:
|
steps:
|
||||||
- name: Cloning
|
- name: Cloning
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v4
|
||||||
- name: Install packages
|
- name: Install packages
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update -qq
|
sudo apt-get update -qq
|
||||||
|
|
@ -20,7 +20,8 @@ jobs:
|
||||||
- name: Install
|
- name: Install
|
||||||
run: cmake --install "${{github.workspace}}/build" --config ${{env.BUILD_TYPE}} --prefix "${{github.workspace}}/install/usr/local"
|
run: cmake --install "${{github.workspace}}/build" --config ${{env.BUILD_TYPE}} --prefix "${{github.workspace}}/install/usr/local"
|
||||||
- name: Upload
|
- name: Upload
|
||||||
uses: actions/upload-artifact@v5
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: Ubuntu
|
name: Ubuntu
|
||||||
path: ${{github.workspace}}/install/
|
path: |
|
||||||
|
${{github.workspace}}/install/
|
||||||
|
|
|
||||||
7
.github/workflows/ubuntu-cxx.yml
vendored
7
.github/workflows/ubuntu-cxx.yml
vendored
|
|
@ -13,7 +13,7 @@ jobs:
|
||||||
- 17
|
- 17
|
||||||
steps:
|
steps:
|
||||||
- name: Cloning
|
- name: Cloning
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v4
|
||||||
- name: Install packages
|
- name: Install packages
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update -qq
|
sudo apt-get update -qq
|
||||||
|
|
@ -25,7 +25,8 @@ jobs:
|
||||||
- name: Install
|
- name: Install
|
||||||
run: cmake --install "${{github.workspace}}/build" --config ${{env.BUILD_TYPE}} --prefix "${{github.workspace}}/install/usr/local"
|
run: cmake --install "${{github.workspace}}/build" --config ${{env.BUILD_TYPE}} --prefix "${{github.workspace}}/install/usr/local"
|
||||||
- name: Upload
|
- name: Upload
|
||||||
uses: actions/upload-artifact@v5
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: Ubuntu C++${{matrix.cxxstd}}
|
name: Ubuntu C++${{matrix.cxxstd}}
|
||||||
path: ${{github.workspace}}/install/
|
path: |
|
||||||
|
${{github.workspace}}/install/
|
||||||
|
|
|
||||||
4
.github/workflows/webassembly-c.yml
vendored
4
.github/workflows/webassembly-c.yml
vendored
|
|
@ -8,7 +8,7 @@ jobs:
|
||||||
BUILD_TYPE: Release
|
BUILD_TYPE: Release
|
||||||
steps:
|
steps:
|
||||||
- name: Cloning
|
- name: Cloning
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v4
|
||||||
- name: Setup emsdk
|
- name: Setup emsdk
|
||||||
uses: mymindstorm/setup-emsdk@v14
|
uses: mymindstorm/setup-emsdk@v14
|
||||||
with:
|
with:
|
||||||
|
|
@ -22,7 +22,7 @@ jobs:
|
||||||
- name: Build
|
- name: Build
|
||||||
run: cmake --build "${{github.workspace}}/build" --config ${{env.BUILD_TYPE}}
|
run: cmake --build "${{github.workspace}}/build" --config ${{env.BUILD_TYPE}}
|
||||||
- name: Upload
|
- name: Upload
|
||||||
uses: actions/upload-artifact@v5
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: WebAssembly
|
name: WebAssembly
|
||||||
path: |
|
path: |
|
||||||
|
|
|
||||||
4
.github/workflows/webassembly-cxx.yml
vendored
4
.github/workflows/webassembly-cxx.yml
vendored
|
|
@ -8,7 +8,7 @@ jobs:
|
||||||
BUILD_TYPE: Release
|
BUILD_TYPE: Release
|
||||||
steps:
|
steps:
|
||||||
- name: Cloning
|
- name: Cloning
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v4
|
||||||
- name: Setup emsdk
|
- name: Setup emsdk
|
||||||
uses: mymindstorm/setup-emsdk@v14
|
uses: mymindstorm/setup-emsdk@v14
|
||||||
with:
|
with:
|
||||||
|
|
@ -22,7 +22,7 @@ jobs:
|
||||||
- name: Build
|
- name: Build
|
||||||
run: cmake --build "${{github.workspace}}/build" --config ${{env.BUILD_TYPE}}
|
run: cmake --build "${{github.workspace}}/build" --config ${{env.BUILD_TYPE}}
|
||||||
- name: Upload
|
- name: Upload
|
||||||
uses: actions/upload-artifact@v5
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: WebAssembly
|
name: WebAssembly
|
||||||
path: |
|
path: |
|
||||||
|
|
|
||||||
7
.github/workflows/windows-c.yml
vendored
7
.github/workflows/windows-c.yml
vendored
|
|
@ -14,7 +14,7 @@ jobs:
|
||||||
- amd64_arm64
|
- amd64_arm64
|
||||||
steps:
|
steps:
|
||||||
- name: Cloning
|
- name: Cloning
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v4
|
||||||
- name: Setup MSVC
|
- name: Setup MSVC
|
||||||
uses: ilammy/msvc-dev-cmd@v1
|
uses: ilammy/msvc-dev-cmd@v1
|
||||||
with:
|
with:
|
||||||
|
|
@ -26,7 +26,8 @@ jobs:
|
||||||
- name: Install
|
- name: Install
|
||||||
run: cmake --install "${{github.workspace}}/build" --config ${{env.BUILD_TYPE}} --prefix "${{github.workspace}}/install"
|
run: cmake --install "${{github.workspace}}/build" --config ${{env.BUILD_TYPE}} --prefix "${{github.workspace}}/install"
|
||||||
- name: Upload
|
- name: Upload
|
||||||
uses: actions/upload-artifact@v5
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: Windows MSVC ${{matrix.arch}}
|
name: Windows MSVC ${{matrix.arch}}
|
||||||
path: ${{github.workspace}}/install/
|
path: |
|
||||||
|
${{github.workspace}}/install/
|
||||||
|
|
|
||||||
7
.github/workflows/windows-cxx.yml
vendored
7
.github/workflows/windows-cxx.yml
vendored
|
|
@ -17,7 +17,7 @@ jobs:
|
||||||
- 17
|
- 17
|
||||||
steps:
|
steps:
|
||||||
- name: Cloning
|
- name: Cloning
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v4
|
||||||
- name: Setup MSVC
|
- name: Setup MSVC
|
||||||
uses: ilammy/msvc-dev-cmd@v1
|
uses: ilammy/msvc-dev-cmd@v1
|
||||||
with:
|
with:
|
||||||
|
|
@ -29,7 +29,8 @@ jobs:
|
||||||
- name: Install
|
- name: Install
|
||||||
run: cmake --install "${{github.workspace}}/build" --config ${{env.BUILD_TYPE}} --prefix "${{github.workspace}}/install"
|
run: cmake --install "${{github.workspace}}/build" --config ${{env.BUILD_TYPE}} --prefix "${{github.workspace}}/install"
|
||||||
- name: Upload
|
- name: Upload
|
||||||
uses: actions/upload-artifact@v5
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: Windows MSVC C++${{matrix.cxxstd}} ${{matrix.arch}}
|
name: Windows MSVC C++${{matrix.cxxstd}} ${{matrix.arch}}
|
||||||
path: ${{github.workspace}}/install/
|
path: |
|
||||||
|
${{github.workspace}}/install/
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@
|
||||||
|
|
||||||
cmake_minimum_required(VERSION 3.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
cmake_policy(VERSION 3.16...3.28)
|
cmake_policy(VERSION 3.16...3.28)
|
||||||
project(ragephoto VERSION 0.7.1 LANGUAGES C CXX)
|
project(ragephoto VERSION 0.7.0 LANGUAGES C CXX)
|
||||||
include(GNUInstallDirs)
|
include(GNUInstallDirs)
|
||||||
|
|
||||||
# RagePhoto CMake includes
|
# RagePhoto CMake includes
|
||||||
|
|
|
||||||
|
|
@ -1207,7 +1207,7 @@ void ragephoto_setphotodesc(ragephoto_t instance_t, const char *description, uin
|
||||||
}
|
}
|
||||||
if (bufferSize != 0) {
|
if (bufferSize != 0) {
|
||||||
instance->data->descBuffer = bufferSize;
|
instance->data->descBuffer = bufferSize;
|
||||||
ragephotodata_setbufferoffsets(instance->data);
|
ragephoto_setbufferoffsets(instance->data);
|
||||||
}
|
}
|
||||||
instance->data->error = RAGEPHOTO_ERROR_NOERROR; // 255
|
instance->data->error = RAGEPHOTO_ERROR_NOERROR; // 255
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -4,9 +4,9 @@
|
||||||
<TargetFrameworks>netstandard2.1;net47</TargetFrameworks>
|
<TargetFrameworks>netstandard2.1;net47</TargetFrameworks>
|
||||||
<AssemblyName>RagePhoto.Core</AssemblyName>
|
<AssemblyName>RagePhoto.Core</AssemblyName>
|
||||||
<RootNamespace>RagePhoto</RootNamespace>
|
<RootNamespace>RagePhoto</RootNamespace>
|
||||||
<Version>0.7.1</Version>
|
<Version>0.7.0</Version>
|
||||||
<AssemblyVersion>0.7.1</AssemblyVersion>
|
<AssemblyVersion>0.7.0</AssemblyVersion>
|
||||||
<FileVersion>0.7.1</FileVersion>
|
<FileVersion>0.7.0</FileVersion>
|
||||||
<Authors>Syping</Authors>
|
<Authors>Syping</Authors>
|
||||||
<Copyright>Copyright © 2025 Syping</Copyright>
|
<Copyright>Copyright © 2025 Syping</Copyright>
|
||||||
<Description>Open Source RAGE Photo Parser for GTA V and RDR 2</Description>
|
<Description>Open Source RAGE Photo Parser for GTA V and RDR 2</Description>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue