Skip to content

Commit 30f9f61

Browse files
committed
fix: update version to 2.2.1
- bug fixes - update dependencies - update changelog
1 parent d671ce9 commit 30f9f61

File tree

9 files changed

+96
-63
lines changed

9 files changed

+96
-63
lines changed

changelog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1+
version 2.2.1
2+
v [Latest UI V3]
3+
- Bug fixes.
4+
15
version 2.2.0
26
v [Latest UI V3]
37
- Bug fixes.
48
* Special thanks to @biminhc1 (Reddit) @bmndc (Github) for all following changes <3
9+
v [Latest UI V3]
510
- Added an option to expand the post text/media preview of posts in Compact view to the fill width of the posts.
611
- Added an option to hide the new search banner above the Home feed (Reddit's experiments for some accounts).
712
- Modified "Hide Thumbnails in Compact View" and "Hide Blank Thumbnails in Compact View" to fully hide post thumbnails without any spacing when "Expand post previews in Compact view" is on.

src-webpack/changelog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1+
version 2.2.1
2+
v [Latest UI V3]
3+
- Bug fixes.
4+
15
version 2.2.0
26
v [Latest UI V3]
37
- Bug fixes.
48
* Special thanks to @biminhc1 (Reddit) @bmndc (Github) for all following changes <3
9+
v [Latest UI V3]
510
- Added an option to expand the post text/media preview of posts in Compact view to the fill width of the posts.
611
- Added an option to hide the new search banner above the Home feed (Reddit's experiments for some accounts).
712
- Modified "Hide Thumbnails in Compact View" and "Hide Blank Thumbnails in Compact View" to fully hide post thumbnails without any spacing when "Expand post previews in Compact view" is on.

src-webpack/package-lock.json

Lines changed: 70 additions & 59 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-webpack/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "reddit_enhancer_webpack",
3-
"version": "2.2.0",
3+
"version": "2.2.1",
44
"description": "",
55
"scripts": {
66
"build-m2": "webpack --config ./webpack-m2.conf.js",

src-webpack/src/common/_locales/en/messages.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"extensionVersion": {
3-
"message": "2.2.0"
3+
"message": "2.2.1"
44
},
55
"extensionName": {
66
"message": "Reddit Enhancer"

src-webpack/src/common/content/tweaks/media/scroll_images.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,15 @@ function enableImageScrollRV3() {
5858
max-height: fit-content;
5959
object-fit: cover !important;
6060
margin-bottom: 0 !important;
61+
}
62+
gallery-carousel figure {
63+
overflow-y: auto;
64+
}
65+
gallery-carousel figure img {
66+
height: fit-content !important;
67+
max-height: fit-content !important;
68+
width: var(--re-limit-image-width) !important;
69+
margin: 0 auto;
6170
}`;
6271
document.head.insertBefore(styleElement, document.head.firstChild);
6372
// Replace all instances of <shreddit-aspect-ratio> with <div>

src-webpack/src/common/content/tweaks/style/override_theme_colours.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -310,6 +310,9 @@ export function themePostBackgroundColour(value) {
310310
shreddit-profile-comment > div:hover {
311311
border-radius: var(--re-theme-border-radius, 1rem) !important;
312312
background-color: color-mix(in srgb, var(--re-theme-post-bg), #000 10%) !important;
313+
}
314+
[routename="post_page"] shreddit-post #pdp-credit-bar {
315+
background: transparent !important;
313316
}`;
314317
document.head.insertBefore(styleElement, document.head.firstChild);
315318
} else {

src-webpack/src/manifest_v2/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33

44
"name": "__MSG_extensionName__",
5-
"version": "2.2.0",
5+
"version": "2.2.1",
66
"description": "__MSG_extensionDescription__",
77
"author": "github.com/joelacus",
88
"default_locale": "en",

src-webpack/src/manifest_v3/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 3,
33

44
"name": "__MSG_extensionName__",
5-
"version": "2.2.0",
5+
"version": "2.2.1",
66
"description": "__MSG_extensionDescription__",
77
"author": "github.com/joelacus",
88
"default_locale": "en",

0 commit comments

Comments
 (0)