yggvault ratatoskr-space connected via regular web
Color theme
also available via yggdrasil mesh http://[203:b338:2a84:a18f:986:47ae:1a4:d8d3]/pkg/inkscape/INKSCAPE_1_1
vault / inkscape / INKSCAPE_1_1

inkscape @ INKSCAPE_1_1

integrity

size
67.0 MiB
downloaded
last checked
detected
raw version: universal archives only
source https://gitlab.com/inkscape/inkscape · available · gitlab

release notes

Due to a git/gitlab issue they do not contain bundled extensions.

In addition, out of git, the CMake package in it will declare that he is in an "unknown" version and that will be in the version string. Both problems are solved by creating the source package with make dist (or ninja dist) in a build folder for the git repo with the extensions submodule present, using CPack and temporarily replacing unknown with the current git hash.

Unfortunately, there is no way to use the gitlab release list and remove the "default" asset tarballs.

You can find all source tarball at https://inkscape.org/release/inkscape-1.1/source/archive/xz/dl/ and we are working on providing a packager-friendly source download URL page/scheme at https://gitlab.com/inkscape/inkscape-web/-/issues/486

Inkscape 1.1

Released on 2021-05-24.

Release highlights

Inkscape 1.1 is the latest major Inkscape release that brings users many fresh new features and new functionality.

The most notable changes include:

Full release notes here

download

unix · zip
curl -fL -o INKSCAPE_1_1.zip https://ratatoskr.space/pkg/inkscape/INKSCAPE_1_1.zip
                    printf '%s  %s\n' 'e346cb14ca99239a7f9e4a6f51b7a0ddb68765cb33d406de805ed4019e168bdb' 'INKSCAPE_1_1.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/inkscape/INKSCAPE_1_1.zip"
$out = "INKSCAPE_1_1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "e346cb14ca99239a7f9e4a6f51b7a0ddb68765cb33d406de805ed4019e168bdb") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o INKSCAPE_1_1.tar.gz https://ratatoskr.space/pkg/inkscape/INKSCAPE_1_1.tar.gz
                    printf '%s  %s\n' '329c078263d202723c81a35ae7049742ec11fdc6a97244d1d6e2ab09f98f3f93' 'INKSCAPE_1_1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/inkscape/INKSCAPE_1_1.tar.gz"
$out = "INKSCAPE_1_1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "329c078263d202723c81a35ae7049742ec11fdc6a97244d1d6e2ab09f98f3f93") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o INKSCAPE_1_1.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/inkscape/INKSCAPE_1_1.zip
                    printf '%s  %s\n' 'e346cb14ca99239a7f9e4a6f51b7a0ddb68765cb33d406de805ed4019e168bdb' 'INKSCAPE_1_1.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/inkscape/INKSCAPE_1_1.zip"
$out = "INKSCAPE_1_1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "e346cb14ca99239a7f9e4a6f51b7a0ddb68765cb33d406de805ed4019e168bdb") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o INKSCAPE_1_1.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/inkscape/INKSCAPE_1_1.tar.gz
                    printf '%s  %s\n' '329c078263d202723c81a35ae7049742ec11fdc6a97244d1d6e2ab09f98f3f93' 'INKSCAPE_1_1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/inkscape/INKSCAPE_1_1.tar.gz"
$out = "INKSCAPE_1_1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "329c078263d202723c81a35ae7049742ec11fdc6a97244d1d6e2ab09f98f3f93") { throw "sha256 mismatch" }
artifact format size hashes
INKSCAPE_1_1.zip zip 67.1 MiB
blake3-24 acd2ddd2d72fb38cbd08415c753633290182062c314945d8
sha256 e346cb14ca99239a7f9e4a6f51b7a0ddb68765cb33d406de805ed4019e168bdb
sha1 5dc39ba1ed1decbe5795b736c6ef9321cf5822fb
INKSCAPE_1_1.tar.gz tar.gz 62.9 MiB
blake3-24 e11ae2742dc0e4dac5d0ce15cad9ac8169c71ce1418b398e
sha256 329c078263d202723c81a35ae7049742ec11fdc6a97244d1d6e2ab09f98f3f93
sha1 62bbd11f237964afdf6cbc630ba4160fd4d40e46

install

bazel
http_archive(
    name = "inkscape",
    urls = ["https://ratatoskr.space/pkg/inkscape/INKSCAPE_1_1.tar.gz"],
    integrity = "sha256-MpwHgmPSAnI8gaNa5wSXQuwR/capckTR1uKrCfmPP5M=",
    strip_prefix = "inkscape-INKSCAPE_1_1",
)
zig
.url = "https://ratatoskr.space/pkg/inkscape/INKSCAPE_1_1.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
    name = "inkscape",
    urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/inkscape/INKSCAPE_1_1.tar.gz"],
    integrity = "sha256-MpwHgmPSAnI8gaNa5wSXQuwR/capckTR1uKrCfmPP5M=",
    strip_prefix = "inkscape-INKSCAPE_1_1",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/inkscape/INKSCAPE_1_1.tar.gz",
← INKSCAPE_1_1_1INKSCAPE_1_0_2 →