Skip to content

Commit

Permalink
Release week 38 (#292)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaIng authored Sep 24, 2023
2 parents 89912e6 + 27ed2f4 commit 78893d8
Show file tree
Hide file tree
Showing 6 changed files with 84 additions and 80 deletions.
3 changes: 3 additions & 0 deletions .wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ js
JSON
JSP
JustBoom
Kavita
Kbit
KiB
klick
Expand Down Expand Up @@ -351,6 +352,7 @@ SDIO
SDL
servlet
SFTP
SHA
Shairport
ShareAlike
Shoutcast
Expand Down Expand Up @@ -449,6 +451,7 @@ www
Xfce
XRDP
XU
xz
YaCy
ympd
youtube
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ To see the full list of possibilities, please check our [contribution](https://d

## 3rd party resources

- [Bootstrap](https://github.com/twbs/bootstrap) v5.3.1
- [Bootstrap](https://github.com/twbs/bootstrap) v5.3.2
- [Mixitup](https://github.com/patrickkunka/mixitup) v3.3.1 modified for our needs
- [jquery.cslider](https://github.com/Le-Stagiaire/jquery.cslider) modified for our needs and converted to vanilla JavaScript
- [Font Awesome](https://github.com/FortAwesome/Font-Awesome) v5.15.4 individual glyphs: [fa-download](https://github.com/FortAwesome/Font-Awesome/blob/5.x/svgs/solid/download.svg), [fa-book](https://github.com/FortAwesome/Font-Awesome/blob/5.x/svgs/solid/book.svg) and [fa-external-link-alt](https://github.com/FortAwesome/Font-Awesome/blob/5.x/svgs/solid/external-link-alt.svg)
Expand Down
5 changes: 2 additions & 3 deletions contribute.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,12 @@ <h2>Grow in 2022</h2>
We are asking you to help the DietPi project. DietPi is an open-source product and it is free to use. We are sustained by donations and <b>even a small one (as little as the price of a cup of coffee)</b> would help the things move forward, covering the costs for hardware (new boards, micro SD cards etc.), web hosting and future development.
<br><br>This allows us to continue working on DietPi, make it better with every new update.
<br><br><img src="images/contribute/coffee.jpg" alt="Coffee" width="200" height="189" loading="lazy">
<br><br>In 2021 we made 10 releases and brought 166 improvements and changes, and fixed 138 bugs. We provided new software titles, support new SBCs and brought many optimisations. There are over <a href="https://dietpi.com/survey/" target="_blank" rel="noopener">110000</a> systems running DietPi.
<br><b>Enable us to grow in 2022!</b>
<br><br>In 2022 we made 13 releases and brought 113 improvements and changes, and fixed 89 bugs. We provided new software titles, support new SBCs and brought many optimisations. There are over <a href="https://dietpi.com/survey/" target="_blank" rel="noopener">120000</a> systems running DietPi.
<br><b>Enable us to grow in 2023!</b>
</p>
<p class="medium-text">
<a href="https://www.paypal.com/donate?hosted_button_id=6DVBECXRW3TAA" class="button" target="_blank" rel="noopener">Donate via PayPal</a>
<a href="https://www.patreon.com/DietPi" class="button" target="_blank" rel="noopener">Become a Patron</a>
<a href="https://brave.com/tips/" class="button" target="_blank" rel="noopener">Donate through Brave Rewards</a>
</p>
</div>
<div class="title">
Expand Down
5 changes: 3 additions & 2 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -418,15 +418,16 @@ a:active {
width: 25px;
height: 25px;
vertical-align: text-bottom;
margin-right: 10px;
}
.project-info > div > a > u {
/*.project-info > div > a > u {
margin-left: 10px;
font-size: 133%;
color: #181a1c;
}
.project-info > div > a:hover > u {
color: #c5ff00;
}
}*/
.single-project img {
width: 100%;
/* "height: auto" in combination with inline width and height allows to keep aspect ratio while loading for non-bleeding edge browsers, which do not support "aspect-ratio" yet. */
Expand Down
7 changes: 4 additions & 3 deletions deploy.bash
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,13 @@ G_EXEC cd "DietPi-Website-$BRANCH"
G_EXEC sed -i "s|<lastmod>.*</lastmod>|<lastmod>$(date '+%Y-%m-%dT%T%:z')</lastmod>|" sitemap.xml

# Bootstrap
G_EXEC curl -sSf 'https://cdn.jsdelivr.net/npm/[email protected].1/dist/css/bootstrap.min.css' -o css/bootstrap.css
G_EXEC curl -sSf 'https://cdn.jsdelivr.net/npm/[email protected].1/dist/js/bootstrap.min.js' -o js/bootstrap.js
G_EXEC curl -sSf 'https://cdn.jsdelivr.net/npm/[email protected].2/dist/css/bootstrap.min.css' -o css/bootstrap.css
G_EXEC curl -sSf 'https://cdn.jsdelivr.net/npm/[email protected].2/dist/js/bootstrap.min.js' -o js/bootstrap.js

# Minify
# - Download
G_EXEC curl -sSfL "$(curl -sSf 'https://api.github.com/repos/tdewolff/minify/releases/latest' | mawk -F\" '/\"browser_download_url\".*linux_amd64\.tar\.gz\"$/{print $4}')" -o minify.tar.gz
#G_EXEC curl -sSfL "$(curl -sSf 'https://api.github.com/repos/tdewolff/minify/releases/latest' | mawk -F\" '/^ *\"browser_download_url\" ".*linux_amd64\.tar\.gz\"$/{print $4}')" -o minify.tar.gz
G_EXEC curl -sSfL 'https://github.com/tdewolff/minify/releases/download/v2.12.8/minify_linux_amd64.tar.gz' -o minify.tar.gz
G_EXEC tar xf minify.tar.gz minify
G_EXEC_NOHALT=1 G_EXEC rm minify.tar.gz
# - Minify JavaScript
Expand Down
Loading

0 comments on commit 78893d8

Please sign in to comment.