Skip to content
Extraits de code Groupes Projets
Non vérifiée Valider 6f3c61d8 rédigé par Steffen van Bergerem's avatar Steffen van Bergerem Validation de Benjamin Neff
Parcourir les fichiers

Increase maximal height of large thumbnail

Fixes #6248, supersedes #6244.

closes #7383
parent 8a98cd45
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
* Remove unused setPreload function [#7354](https://github.com/diaspora/diaspora/pull/7354) * Remove unused setPreload function [#7354](https://github.com/diaspora/diaspora/pull/7354)
* Remove jQuery deprecations [#7356](https://github.com/diaspora/diaspora/pull/7356) * Remove jQuery deprecations [#7356](https://github.com/diaspora/diaspora/pull/7356)
* Use empty selector where "#" was used as a selector before (prepare jQuery 3 upgrade) [#7372](https://github.com/diaspora/diaspora/pull/7372) * Use empty selector where "#" was used as a selector before (prepare jQuery 3 upgrade) [#7372](https://github.com/diaspora/diaspora/pull/7372)
* Increase maximal height of large thumbnail on mobile [#7383](https://github.com/diaspora/diaspora/pull/7383)
## Bug fixes ## Bug fixes
* Don't hide posts when blocking someone from the profile [#7379](https://github.com/diaspora/diaspora/pull/7379) * Don't hide posts when blocking someone from the profile [#7379](https://github.com/diaspora/diaspora/pull/7379)
......
...@@ -18,16 +18,15 @@ class ProcessedImage < CarrierWave::Uploader::Base ...@@ -18,16 +18,15 @@ class ProcessedImage < CarrierWave::Uploader::Base
end end
version :thumb_small do version :thumb_small do
process :resize_to_fill => [50,50] process resize_to_fill: [50, 50]
end end
version :thumb_medium do version :thumb_medium do
process :resize_to_limit => [100,100] process resize_to_limit: [100, 100]
end end
version :thumb_large do version :thumb_large do
process :resize_to_limit => [300,300] process resize_to_limit: [300, 1500]
end end
version :scaled_full do version :scaled_full do
process :resize_to_limit => [700,nil] process resize_to_limit: [700, nil]
end end
end end
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter