Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorTiago Conceição <Tiago_caza@hotmail.com>2022-11-10 07:09:00 +0300
committerTiago Conceição <Tiago_caza@hotmail.com>2022-11-10 07:09:00 +0300
commit8e4995a6a5f35bbee9fa54108b2743fd7fe59f18 (patch)
tree9f68381c2a9b66d2512aef8b658bca3f336d7252 /build
parent051f11bb6e723e9ccc624abdaa69e5d8750ffa01 (diff)
v3.8.3
- **UVtoolsCmd:** - **print-properties:** - (Change) `-b`, `--base` option to `-a`, `-all` to indicate all properties and sub-properties, now defaults to only show base properties - (Add) `-r`, `--range` option to prints only the matching layer(s) index(es) in a range - (Add) `-i`, `--indexes` option to prints only the matching layer(s) index(es) - (Add) Command: `set-properties <input-file> <property=value> Set properties in a file or to it layers with new values` - (Add) Command: `print-issues <input-file> Detect and print issues in a file` - (Add) New option to the `run` command: `-p, --property <property=value> Set a property with a new value (Compatible with operations only)` - (Remove) Command: `print-layers` as it has been moved to `print-properties`, use `-r :` to obtain same result as default on `print-layers` - **Issues:** - (Fix) Issues groups with only one issue was displaying the wrong area value - (Fix) Volume incorrectly calculated, resulting in a high value for group of issues - (Fix) Incorrect calculation of the bounding rectangle for a group of issues - **Repair layers:** - (Add) Switch to opt between "Re-detect the selected issues before repair" and "Use and repair the previous detected issues" (Default) - (Improvement) Do not allow to run the tool if there are no detected issues when the option "Use and repair the previous detected issues" is selected - (Improvement) Linux: Recompile libcvextern.so on a older system to be able to run on both older and newest system (#603) - (Upgrade) .NET from 6.0.10 to 6.0.11
Diffstat (limited to 'build')
-rw-r--r--build/libcvextern.sh14
-rw-r--r--build/platforms/linux-x64/libcvextern.zipbin23182686 -> 23418475 bytes
-rw-r--r--build/platforms/linux-x64/libcvextern22.04.zipbin0 -> 23182686 bytes
3 files changed, 7 insertions, 7 deletions
diff --git a/build/libcvextern.sh b/build/libcvextern.sh
index 1f95e62..b2deade 100644
--- a/build/libcvextern.sh
+++ b/build/libcvextern.sh
@@ -46,7 +46,7 @@ done
echo "Script to build libcvextern.so|dylib on $(uname -a) $arch"
if testcmd ldconfig; then
- if [ -z "$(ldconfig -p | grep libpng)" -o -z "$(ldconfig -p | grep libgdiplus)" -o -z "$(ldconfig -p | grep libavcodec)" -o -z "$(command -v git)" -o -z "$(command -v cmake)" ]; then
+ if [ -z "$(ldconfig -p | grep libpng)" -o -z "$(ldconfig -p | grep libgdiplus)" -o -z "$(ldconfig -p | grep libavcodec)" -o -z "$(command -v git)" -o -z "$(command -v cmake)" -o -z "$(command -v dotnet)" ]; then
installDependencies=true
fi
fi
@@ -67,14 +67,14 @@ if [ "${OSTYPE:0:6}" == "darwin" ]; then
[ -z "$(command -v cmake)" ] && brew install cmake
[ -z "$(command -v mono)" ] && brew install mono
[ -z "$(command -v dotnet)" ] && brew install --cask dotnet-sdk
-elif testcmd apt-get; then
+elif testcmd apt; then
osVariant="debian"
if [ "$installDependencies" == true ]; then
- sudo apt-get update
- sudo apt-get -y install git build-essential libgtk-3-dev libgstreamer1.0-dev libavcodec-dev libswscale-dev libavformat-dev libdc1394-dev libv4l-dev cmake-curses-gui ocl-icd-dev freeglut3-dev libgeotiff-dev libusb-1.0-0-dev
- sudo apt-get install -y apt-transport-https
- sudo apt-get update
- sudo apt-get install -y dotnet-sdk-6.0
+ sudo apt update
+ sudo apt -y install git build-essential libgtk-3-dev libgstreamer1.0-dev libavcodec-dev libswscale-dev libavformat-dev libdc1394-dev libv4l-dev cmake-curses-gui ocl-icd-dev freeglut3-dev libgeotiff-dev libusb-1.0-0-dev
+ sudo apt install -y apt-transport-https
+ sudo apt update
+ sudo apt install -y dotnet-sdk-6.0
fi
elif testcmd pacman; then
osVariant="arch"
diff --git a/build/platforms/linux-x64/libcvextern.zip b/build/platforms/linux-x64/libcvextern.zip
index 3e1915f..49c2722 100644
--- a/build/platforms/linux-x64/libcvextern.zip
+++ b/build/platforms/linux-x64/libcvextern.zip
Binary files differ
diff --git a/build/platforms/linux-x64/libcvextern22.04.zip b/build/platforms/linux-x64/libcvextern22.04.zip
new file mode 100644
index 0000000..3e1915f
--- /dev/null
+++ b/build/platforms/linux-x64/libcvextern22.04.zip
Binary files differ