From 7d0c29e99aab176f07a2006e6d7f44b3641dcfbe Mon Sep 17 00:00:00 2001 From: Benjamin Neff Date: Mon, 26 Jul 2021 02:07:16 +0200 Subject: [PATCH 1/2] Update repo data before trying to install packages closes #8276 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f801ecc92..8c0964a1a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,7 +44,7 @@ jobs: - 5432:5432 steps: - name: Install system dependencies - run: sudo apt-get install -y build-essential curl git gsfonts imagemagick libcurl4-openssl-dev libidn11-dev libmagickwand-dev libssl-dev libxml2-dev libxslt1-dev + run: sudo apt update && sudo apt install -y build-essential curl git gsfonts imagemagick libcurl4-openssl-dev libidn11-dev libmagickwand-dev libssl-dev libxml2-dev libxslt1-dev - name: Start MySQL run: sudo systemctl start mysql.service if: matrix.db == 'mysql' From 07a49de7e1aa3c37f17128bc2cb4aa180a3708ca Mon Sep 17 00:00:00 2001 From: Thorsten Claus Date: Sat, 24 Jul 2021 10:34:24 +0200 Subject: [PATCH 2/2] Using galleries default border radius Small indicator images in image gallery are round ones, this doesn't correspond with preview shown in stream. It also doesn't look good on real-world images. (may look OK for User profile images) closes #8275 --- Changelog.md | 1 + app/assets/stylesheets/gallery.scss | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index 9287182bd..cfa307ae3 100644 --- a/Changelog.md +++ b/Changelog.md @@ -4,6 +4,7 @@ * Cache local posts/comments count for statistics [#8241](https://github.com/diaspora/diaspora/pull/8241) * Fix html-syntax in some handlebars templates [#8251](https://github.com/diaspora/diaspora/pull/8251) * Remove `chat_enabled` flag from archive export [#8265](https://github.com/diaspora/diaspora/pull/8265) +* Change thumbnails in image slideshow to squares [#8275](https://github.com/diaspora/diaspora/pull/8275) ## Bug fixes diff --git a/app/assets/stylesheets/gallery.scss b/app/assets/stylesheets/gallery.scss index 67a1a467c..6780c2b3b 100644 --- a/app/assets/stylesheets/gallery.scss +++ b/app/assets/stylesheets/gallery.scss @@ -55,7 +55,6 @@ $margin: 15px; li { border: 0; - border-radius: $thumbnail-size / 2; height: $thumbnail-size; margin: $margin 6px; vertical-align: middle;