aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortdro <tdro@noreply.example.com>2023-03-27 19:10:50 -0400
committertdro <tdro@noreply.example.com>2023-03-27 19:10:57 -0400
commit2806da7e669ad06bcf58d7173c7851484974d006 (patch)
treed7c993c712e24fa8c4a66f3829acf9ca2e66539d
parent94301fe8990ff50a864f87114034f4189e1927e0 (diff)
downloadcanory-2806da7e669ad06bcf58d7173c7851484974d006.tar.gz
canory-2806da7e669ad06bcf58d7173c7851484974d006.tar.bz2
canory-2806da7e669ad06bcf58d7173c7851484974d006.zip
shell: GitHub deprecates svn -> fetch icons over HTTP
-rw-r--r--Makefile69
-rw-r--r--shell.nix2
-rw-r--r--static/icons/tabler/LICENSE2
-rw-r--r--static/icons/tabler/clock.svg4
-rw-r--r--static/icons/tabler/pinned.svg4
5 files changed, 41 insertions, 40 deletions
diff --git a/Makefile b/Makefile
index b9b8a85..2f12353 100644
--- a/Makefile
+++ b/Makefile
@@ -59,38 +59,39 @@ test-jsonfeed:
icons:
rm -rf static/icons
mkdir -p static/icons/feather static/icons/tabler
- svn export --force https://github.com/feathericons/feather/trunk/LICENSE static/icons/feather
- svn export --force https://github.com/feathericons/feather/trunk/icons/alert-circle.svg static/icons/feather
- svn export --force https://github.com/feathericons/feather/trunk/icons/archive.svg static/icons/feather
- svn export --force https://github.com/feathericons/feather/trunk/icons/arrow-down-circle.svg static/icons/feather
- svn export --force https://github.com/feathericons/feather/trunk/icons/arrow-left.svg static/icons/feather
- svn export --force https://github.com/feathericons/feather/trunk/icons/arrow-right.svg static/icons/feather
- svn export --force https://github.com/feathericons/feather/trunk/icons/arrow-up.svg static/icons/feather
- svn export --force https://github.com/feathericons/feather/trunk/icons/at-sign.svg static/icons/feather
- svn export --force https://github.com/feathericons/feather/trunk/icons/calendar.svg static/icons/feather
- svn export --force https://github.com/feathericons/feather/trunk/icons/circle.svg static/icons/feather
- svn export --force https://github.com/feathericons/feather/trunk/icons/clock.svg static/icons/feather
- svn export --force https://github.com/feathericons/feather/trunk/icons/code.svg static/icons/feather
- svn export --force https://github.com/feathericons/feather/trunk/icons/copy.svg static/icons/feather
- svn export --force https://github.com/feathericons/feather/trunk/icons/edit.svg static/icons/feather
- svn export --force https://github.com/feathericons/feather/trunk/icons/external-link.svg static/icons/feather
- svn export --force https://github.com/feathericons/feather/trunk/icons/eye-off.svg static/icons/feather
- svn export --force https://github.com/feathericons/feather/trunk/icons/file-text.svg static/icons/feather
- svn export --force https://github.com/feathericons/feather/trunk/icons/git-commit.svg static/icons/feather
- svn export --force https://github.com/feathericons/feather/trunk/icons/globe.svg static/icons/feather
- svn export --force https://github.com/feathericons/feather/trunk/icons/heart.svg static/icons/feather
- svn export --force https://github.com/feathericons/feather/trunk/icons/home.svg static/icons/feather
- svn export --force https://github.com/feathericons/feather/trunk/icons/link.svg static/icons/feather
- svn export --force https://github.com/feathericons/feather/trunk/icons/map-pin.svg static/icons/feather
- svn export --force https://github.com/feathericons/feather/trunk/icons/rss.svg static/icons/feather
- svn export --force https://github.com/feathericons/feather/trunk/icons/search.svg static/icons/feather
- svn export --force https://github.com/feathericons/feather/trunk/icons/tag.svg static/icons/feather
- svn export --force https://github.com/feathericons/feather/trunk/icons/trash-2.svg static/icons/feather
- svn export --force https://github.com/feathericons/feather/trunk/icons/user.svg static/icons/feather
- svn export --force https://github.com/feathericons/feather/trunk/icons/users.svg static/icons/feather
- svn export --force https://github.com/tabler/tabler-icons/trunk/LICENSE static/icons/tabler
- svn export --force https://github.com/tabler/tabler-icons/trunk/icons/book-2.svg static/icons/tabler
- svn export --force https://github.com/tabler/tabler-icons/trunk/icons/clock.svg static/icons/tabler
- svn export --force https://github.com/tabler/tabler-icons/trunk/icons/pinned.svg static/icons/tabler
- svn export --force https://github.com/tabler/tabler-icons/trunk/icons/robot.svg static/icons/tabler
+ curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/LICENSE --output-dir static/icons/feather
+ curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/alert-circle.svg --output-dir static/icons/feather
+ curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/archive.svg --output-dir static/icons/feather
+ curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/arrow-down-circle.svg --output-dir static/icons/feather
+ curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/arrow-left.svg --output-dir static/icons/feather
+ curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/arrow-right.svg --output-dir static/icons/feather
+ curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/arrow-up.svg --output-dir static/icons/feather
+ curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/at-sign.svg --output-dir static/icons/feather
+ curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/calendar.svg --output-dir static/icons/feather
+ curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/circle.svg --output-dir static/icons/feather
+ curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/clock.svg --output-dir static/icons/feather
+ curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/code.svg --output-dir static/icons/feather
+ curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/copy.svg --output-dir static/icons/feather
+ curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/edit.svg --output-dir static/icons/feather
+ curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/external-link.svg --output-dir static/icons/feather
+ curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/eye-off.svg --output-dir static/icons/feather
+ curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/file-text.svg --output-dir static/icons/feather
+ curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/git-commit.svg --output-dir static/icons/feather
+ curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/globe.svg --output-dir static/icons/feather
+ curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/heart.svg --output-dir static/icons/feather
+ curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/home.svg --output-dir static/icons/feather
+ curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/link.svg --output-dir static/icons/feather
+ curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/map-pin.svg --output-dir static/icons/feather
+ curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/rss.svg --output-dir static/icons/feather
+ curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/search.svg --output-dir static/icons/feather
+ curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/tag.svg --output-dir static/icons/feather
+ curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/trash-2.svg --output-dir static/icons/feather
+ curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/user.svg --output-dir static/icons/feather
+ curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/users.svg --output-dir static/icons/feather
+ curl --silent --remote-name https://raw.githubusercontent.com/tabler/tabler-icons/master/LICENSE --output-dir static/icons/tabler
+ curl --silent --remote-name https://raw.githubusercontent.com/tabler/tabler-icons/master/icons/book-2.svg --output-dir static/icons/tabler
+ curl --silent --remote-name https://raw.githubusercontent.com/tabler/tabler-icons/master/icons/clock.svg --output-dir static/icons/tabler
+ curl --silent --remote-name https://raw.githubusercontent.com/tabler/tabler-icons/master/icons/pinned.svg --output-dir static/icons/tabler
+ curl --silent --remote-name https://raw.githubusercontent.com/tabler/tabler-icons/master/icons/robot.svg --output-dir static/icons/tabler
+ curl --silent --remote-name https://raw.githubusercontent.com/tabler/tabler-icons/master/icons/robot.svg --output-dir static/icons/tabler
git add -f static/icons
diff --git a/shell.nix b/shell.nix
index e002d79..f40739a 100644
--- a/shell.nix
+++ b/shell.nix
@@ -46,6 +46,7 @@ let
pkgs.busybox
pkgs.caddy
pkgs.check-jsonschema
+ pkgs.curl
pkgs.deno
pkgs.entr
pkgs.git
@@ -53,7 +54,6 @@ let
pkgs.jing
pkgs.libxml2
pkgs.libxslt
- pkgs.subversion
pkgs.yj
]}
/bin/sh
diff --git a/static/icons/tabler/LICENSE b/static/icons/tabler/LICENSE
index 1f192ee..fe62055 100644
--- a/static/icons/tabler/LICENSE
+++ b/static/icons/tabler/LICENSE
@@ -1,6 +1,6 @@
MIT License
-Copyright (c) 2020-2022 Paweł Kuna
+Copyright (c) 2020-2023 Paweł Kuna
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/static/icons/tabler/clock.svg b/static/icons/tabler/clock.svg
index fd98984..e7a91d3 100644
--- a/static/icons/tabler/clock.svg
+++ b/static/icons/tabler/clock.svg
@@ -1,7 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-clock" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
- <circle cx="12" cy="12" r="9" />
- <polyline points="12 7 12 12 15 15" />
+ <path d="M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0" />
+ <path d="M12 7v5l3 3" />
</svg>
diff --git a/static/icons/tabler/pinned.svg b/static/icons/tabler/pinned.svg
index fac8252..56e24ba 100644
--- a/static/icons/tabler/pinned.svg
+++ b/static/icons/tabler/pinned.svg
@@ -1,8 +1,8 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-pinned" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M9 4v6l-2 4v2h10v-2l-2 -4v-6" />
- <line x1="12" y1="16" x2="12" y2="21" />
- <line x1="8" y1="4" x2="16" y2="4" />
+ <path d="M12 16l0 5" />
+ <path d="M8 4l8 0" />
</svg>