You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,11 @@
1
1
Changelog
2
2
---
3
3
4
+
# 88.3-1.0.4 [Perfomance Issue Fix]
5
+
6
+
- Fixed an issue that causes the extension to make VS very slow/unresponsive.
7
+
- Allowed sticker **StickerRelativeSize** to be set to `-1` which disables the autoscaling and removes blurryness of the sticker (if present)
8
+
4
9
# 88.3-1.0.3 [Zoom Scroll Fix]
5
10
6
11
- Added **StickerRelativeSize** options to the content settings. Which fixes the sticker's size in place while you zoom scroll. See documentation for more details.
Copy file name to clipboardExpand all lines: README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,8 @@ You can navigate to the settings here
77
77
That's why I've allowed you to set your own custom sticker to be used for all doki themes.
78
78
The value provided _must_ be an absolute path to the local file on your machine to be used. Feel free to use the `...` to pick a file.
79
79
80
-
**StickerRelativeSize** because I do not know the Visual Studio SDK very well, this is my solution to fixing issues with zoom scrolling. When the viewport size changes, the sticker would either grow or shrink relative to the viewport. This is the relative size the sticker should be relative to the current view port. 1 being the same size as the viewport and 0.01 being 1 percent the size of the current viewport.
80
+
**StickerRelativeSize** Value Range: `[-1.0, 1]` (eg: 0.5 for half size of viewport) because I do not know the Visual Studio SDK very well, this is my solution to fixing issues with zoom scrolling. When the viewport size changes, the sticker would either grow or shrink relative to the viewport. This is the relative size the sticker should be relative to the current view port. 1 being the same size as the viewport and 0.01 being 1 percent the size of the current viewport.
81
+
Set to -1 to allow the sticker to scale with the view port zoom size.
81
82
82
83
**Note**: stickers go away if you use a non-Doki Theme.
@@ -49,17 +49,21 @@ public sealed class doki_theme_visualstudioPackage : AsyncPackage {
49
49
/// <param name="cancellationToken">A cancellation token to monitor for initialization cancellation, which can occur when VS is shutting down.</param>
50
50
/// <param name="progress">A provider for progress updates.</param>
51
51
/// <returns>A task representing the async work of package initialization, or an already completed task if there is none. Do not return null from this method.</returns>
0 commit comments