Skip to content

Commit 2bb6216

Browse files
committed
Merge branch 'main' into release/3.0.0-preview.5
2 parents 60007d7 + 2f6bc01 commit 2bb6216

File tree

2 files changed

+26
-10
lines changed

2 files changed

+26
-10
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

+25-9
Original file line numberDiff line numberDiff line change
@@ -70,16 +70,24 @@ body:
7070
label: Version of SkiaSharp
7171
description: What version of SkiaSharp are you using?
7272
options:
73-
- 3.x (Alpha)
74-
- 2.88.4-preview (Preview)
75-
- 2.88.3 (Current)
76-
- 2.88.2 (Previous)
73+
- 3.x-preview.4 (Current Preview)
74+
- 3.x-preview.3 (Previous Preview)
75+
- 3.x-preview.2 (Deprecated)
76+
- 3.x-preview.1 (Deprecated)
77+
- 2.88.9-preview.1 (Preview)
78+
- 2.88.8 (Current)
79+
- 2.88.7 (Previous)
80+
- 2.88.6 (Deprecated)
81+
- 2.88.5 (Deprecated)
82+
- 2.88.4 (Deprecated)
83+
- 2.88.3 (Deprecated)
84+
- 2.88.2 (Deprecated)
7785
- 2.88.1 (Deprecated)
7886
- 2.88.0 (Deprecated)
79-
- 2.80.x (Deprecated)
87+
- 2.80.x (Obsolete)
8088
- 1.x (Obsolete)
8189
- Other (Please indicate in the description)
82-
default: 2
90+
default: 6
8391
- type: dropdown
8492
id: goodversion
8593
validations:
@@ -88,13 +96,21 @@ body:
8896
label: Last Known Good Version of SkiaSharp
8997
description: What version of SkiaSharp still did what you expected?
9098
options:
91-
- 2.88.2 (Previous)
99+
- 3.x-preview.3 (Previous Preview)
100+
- 3.x-preview.2 (Deprecated)
101+
- 3.x-preview.1 (Deprecated)
102+
- 2.88.7 (Previous)
103+
- 2.88.6 (Deprecated)
104+
- 2.88.5 (Deprecated)
105+
- 2.88.4 (Deprecated)
106+
- 2.88.3 (Deprecated)
107+
- 2.88.2 (Deprecated)
92108
- 2.88.1 (Deprecated)
93109
- 2.88.0 (Deprecated)
94-
- 2.80.x (Deprecated)
110+
- 2.80.x (Obsolete)
95111
- 1.x (Obsolete)
96112
- Other (Please indicate in the description)
97-
default: 0
113+
default: 4
98114
- type: dropdown
99115
id: ide
100116
validations:

binding/SkiaSharp/SKPixmap.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ public bool Encode (SKWStream dst, SKEncodedImageFormat encoder, int quality) =>
237237
SKEncodedImageFormat.Jpeg =>
238238
Encode (dst, new SKJpegEncoderOptions (quality)),
239239
SKEncodedImageFormat.Png =>
240-
Encode (dst, new SKPngEncoderOptions ()),
240+
Encode (dst, SKPngEncoderOptions.Default),
241241
SKEncodedImageFormat.Webp when quality == 100 =>
242242
Encode (dst, new SKWebpEncoderOptions (SKWebpEncoderCompression.Lossless, 75)),
243243
SKEncodedImageFormat.Webp =>

0 commit comments

Comments
 (0)