Software Updates
* FontAwesome to v6.2.1
This commit is contained in:
parent
289f311c4f
commit
9193dbe56b
2 changed files with 7 additions and 5 deletions
|
@ -81,12 +81,13 @@ mkdir -p $assets_dir
|
||||||
|
|
||||||
# jQuery CDN URL
|
# jQuery CDN URL
|
||||||
jquery_version=3.6.1
|
jquery_version=3.6.1
|
||||||
jquery_url=https://code.jquery.com
|
jquery_url=https://code.jquery.com # Check this link for new versions
|
||||||
|
|
||||||
# Get jQuery
|
# Get jQuery
|
||||||
wget_verify $jquery_url/jquery-$jquery_version.min.js ea61688671d0c3044f2c5b2f2c4af0a6620ac6c2 $assets_dir/jquery.min.js
|
wget_verify $jquery_url/jquery-$jquery_version.min.js ea61688671d0c3044f2c5b2f2c4af0a6620ac6c2 $assets_dir/jquery.min.js
|
||||||
|
|
||||||
# Bootstrap CDN URL
|
# Bootstrap CDN URL
|
||||||
|
# See https://github.com/twbs/bootstrap/releases to check for new versions
|
||||||
bootstrap_version=5.2.2
|
bootstrap_version=5.2.2
|
||||||
bootstrap_url=https://github.com/twbs/bootstrap/releases/download/v$bootstrap_version/bootstrap-$bootstrap_version-dist.zip
|
bootstrap_url=https://github.com/twbs/bootstrap/releases/download/v$bootstrap_version/bootstrap-$bootstrap_version-dist.zip
|
||||||
|
|
||||||
|
@ -97,11 +98,12 @@ mv $assets_dir/bootstrap-$bootstrap_version-dist $assets_dir/bootstrap
|
||||||
rm -f /tmp/bootstrap.zip
|
rm -f /tmp/bootstrap.zip
|
||||||
|
|
||||||
# FontAwesome CDN URL
|
# FontAwesome CDN URL
|
||||||
fontawesome_version=6.2.0
|
# See https://github.com/FortAwesome/Font-Awesome/releases to check for new versions
|
||||||
|
fontawesome_version=6.2.1
|
||||||
fontawesome_url=https://github.com/FortAwesome/Font-Awesome/releases/download/$fontawesome_version/fontawesome-free-$fontawesome_version-web.zip
|
fontawesome_url=https://github.com/FortAwesome/Font-Awesome/releases/download/$fontawesome_version/fontawesome-free-$fontawesome_version-web.zip
|
||||||
|
|
||||||
# Get FontAwesome
|
# Get FontAwesome
|
||||||
wget_verify $fontawesome_url cd6250deeb38ab707240200c573d2357eaf732a0 /tmp/fontawesome.zip
|
wget_verify $fontawesome_url cd0f2bcc9653b56e3e2dd82d6598aa6bbca8d796 /tmp/fontawesome.zip
|
||||||
unzip -q /tmp/fontawesome.zip -d $assets_dir
|
unzip -q /tmp/fontawesome.zip -d $assets_dir
|
||||||
mv $assets_dir/fontawesome-free-$fontawesome_version-web $assets_dir/fontawesome
|
mv $assets_dir/fontawesome-free-$fontawesome_version-web $assets_dir/fontawesome
|
||||||
rm -f /tmp/fontawesome.zip
|
rm -f /tmp/fontawesome.zip
|
||||||
|
|
|
@ -30,8 +30,8 @@ apt_install \
|
||||||
# whether we have the latest version of everything.
|
# whether we have the latest version of everything.
|
||||||
# For the latest versions, see:
|
# For the latest versions, see:
|
||||||
# https://github.com/roundcube/roundcubemail/releases
|
# https://github.com/roundcube/roundcubemail/releases
|
||||||
# https://github.com/mfreiholz/persistent_login/commits/master
|
# https://github.com/mfreiholz/persistent_login/
|
||||||
# https://github.com/stremlau/html5_notifier/commits/master
|
# https://github.com/stremlau/html5_notifier/
|
||||||
# https://github.com/mstilkerich/rcmcarddav/releases
|
# https://github.com/mstilkerich/rcmcarddav/releases
|
||||||
# The easiest way to get the package hashes is to run this script and get the hash from
|
# The easiest way to get the package hashes is to run this script and get the hash from
|
||||||
# the error message.
|
# the error message.
|
||||||
|
|
Loading…
Reference in a new issue