Skip to content

Commit

Permalink
Re-generate all the changelogs (#2592)
Browse files Browse the repository at this point in the history
(cherry picked from commit 1bdccdc)
  • Loading branch information
mattleibow authored and github-actions[bot] committed Aug 31, 2023
1 parent 2c67a1f commit 79d0776
Show file tree
Hide file tree
Showing 154 changed files with 984 additions and 11 deletions.
8 changes: 8 additions & 0 deletions changelogs/HarfBuzzSharp/2.8.2.1/HarfBuzzSharp.breaking.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# API diff: HarfBuzzSharp.dll

## HarfBuzzSharp.dll

### Namespace HarfBuzzSharp

#### Removed Type HarfBuzzSharp.Resource

2 changes: 2 additions & 0 deletions changelogs/HarfBuzzSharp/2.8.2.1/HarfBuzzSharp.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

### Namespace HarfBuzzSharp

#### Removed Type HarfBuzzSharp.Resource

### New Namespace HarfBuzzSharp.Internals

#### New Type: HarfBuzzSharp.Internals.PlatformConfiguration
Expand Down
5 changes: 5 additions & 0 deletions changelogs/HarfBuzzSharp/2.8.2.2/HarfBuzzSharp.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: HarfBuzzSharp.dll

## HarfBuzzSharp.dll

> No changes.
5 changes: 5 additions & 0 deletions changelogs/HarfBuzzSharp/2.8.2.3/HarfBuzzSharp.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: HarfBuzzSharp.dll

## HarfBuzzSharp.dll

> No changes.
5 changes: 5 additions & 0 deletions changelogs/HarfBuzzSharp/2.8.2.4/HarfBuzzSharp.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: HarfBuzzSharp.dll

## HarfBuzzSharp.dll

> No changes.
5 changes: 5 additions & 0 deletions changelogs/HarfBuzzSharp/2.8.2.5/HarfBuzzSharp.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: HarfBuzzSharp.dll

## HarfBuzzSharp.dll

> No changes.
5 changes: 5 additions & 0 deletions changelogs/HarfBuzzSharp/7.3.0/HarfBuzzSharp.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: HarfBuzzSharp.dll

## HarfBuzzSharp.dll

> No changes.
61 changes: 55 additions & 6 deletions changelogs/SkiaSharp.HarfBuzz/2.88.1/SkiaSharp.HarfBuzz.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,68 @@

## SkiaSharp.HarfBuzz.dll

### Namespace SkiaSharp.HarfBuzz
> Assembly Version Changed: 2.88.0.0 vs 0.0.0.0
#### Type Changed: SkiaSharp.HarfBuzz.SKShaper+Result
### New Namespace SkiaSharp.HarfBuzz

Added constructor:
#### New Type: SkiaSharp.HarfBuzz.BlobExtensions

```csharp
public SKShaper.Result (uint[] codepoints, uint[] clusters, SkiaSharp.SKPoint[] points, float width);
public static class BlobExtensions {
// methods
public static HarfBuzzSharp.Blob ToHarfBuzzBlob (this SkiaSharp.SKStreamAsset asset);
}
```

Added property:
#### New Type: SkiaSharp.HarfBuzz.CanvasExtensions

```csharp
public float Width { get; }
public static class CanvasExtensions {
// methods
public static void DrawShapedText (this SkiaSharp.SKCanvas canvas, string text, SkiaSharp.SKPoint p, SkiaSharp.SKPaint paint);
public static void DrawShapedText (this SkiaSharp.SKCanvas canvas, SKShaper shaper, string text, SkiaSharp.SKPoint p, SkiaSharp.SKPaint paint);
public static void DrawShapedText (this SkiaSharp.SKCanvas canvas, string text, float x, float y, SkiaSharp.SKPaint paint);
public static void DrawShapedText (this SkiaSharp.SKCanvas canvas, SKShaper shaper, string text, float x, float y, SkiaSharp.SKPaint paint);
}
```

#### New Type: SkiaSharp.HarfBuzz.FontExtensions

```csharp
public static class FontExtensions {
// methods
public static SkiaSharp.SKSizeI GetScale (this HarfBuzzSharp.Font font);
public static void SetScale (this HarfBuzzSharp.Font font, SkiaSharp.SKSizeI scale);
}
```

#### New Type: SkiaSharp.HarfBuzz.SKShaper

```csharp
public class SKShaper : System.IDisposable {
// constructors
public SKShaper (SkiaSharp.SKTypeface typeface);
// properties
public SkiaSharp.SKTypeface Typeface { get; }
// methods
public virtual void Dispose ();
public SKShaper.Result Shape (HarfBuzzSharp.Buffer buffer, SkiaSharp.SKPaint paint);
public SKShaper.Result Shape (string text, SkiaSharp.SKPaint paint);
public SKShaper.Result Shape (HarfBuzzSharp.Buffer buffer, float xOffset, float yOffset, SkiaSharp.SKPaint paint);
public SKShaper.Result Shape (string text, float xOffset, float yOffset, SkiaSharp.SKPaint paint);

// inner types
public class Result {
// constructors
public SKShaper.Result ();
public SKShaper.Result (uint[] codepoints, uint[] clusters, SkiaSharp.SKPoint[] points);
public SKShaper.Result (uint[] codepoints, uint[] clusters, SkiaSharp.SKPoint[] points, float width);
// properties
public uint[] Clusters { get; }
public uint[] Codepoints { get; }
public SkiaSharp.SKPoint[] Points { get; }
public float Width { get; }
}
}
```

5 changes: 5 additions & 0 deletions changelogs/SkiaSharp.HarfBuzz/2.88.2/SkiaSharp.HarfBuzz.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.HarfBuzz.dll

## SkiaSharp.HarfBuzz.dll

> No changes.
5 changes: 5 additions & 0 deletions changelogs/SkiaSharp.HarfBuzz/2.88.3/SkiaSharp.HarfBuzz.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.HarfBuzz.dll

## SkiaSharp.HarfBuzz.dll

> No changes.
5 changes: 5 additions & 0 deletions changelogs/SkiaSharp.HarfBuzz/2.88.4/SkiaSharp.HarfBuzz.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.HarfBuzz.dll

## SkiaSharp.HarfBuzz.dll

> No changes.
5 changes: 5 additions & 0 deletions changelogs/SkiaSharp.HarfBuzz/2.88.5/SkiaSharp.HarfBuzz.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.HarfBuzz.dll

## SkiaSharp.HarfBuzz.dll

> No changes.
5 changes: 5 additions & 0 deletions changelogs/SkiaSharp.HarfBuzz/2.88.6/SkiaSharp.HarfBuzz.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.HarfBuzz.dll

## SkiaSharp.HarfBuzz.dll

> No changes.
5 changes: 5 additions & 0 deletions changelogs/SkiaSharp.Skottie/2.88.2/SkiaSharp.SceneGraph.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.SceneGraph.dll

## SkiaSharp.SceneGraph.dll

> No changes.
5 changes: 5 additions & 0 deletions changelogs/SkiaSharp.Skottie/2.88.2/SkiaSharp.Skottie.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Skottie.dll

## SkiaSharp.Skottie.dll

> No changes.
5 changes: 5 additions & 0 deletions changelogs/SkiaSharp.Skottie/2.88.3/SkiaSharp.SceneGraph.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.SceneGraph.dll

## SkiaSharp.SceneGraph.dll

> No changes.
5 changes: 5 additions & 0 deletions changelogs/SkiaSharp.Skottie/2.88.3/SkiaSharp.Skottie.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Skottie.dll

## SkiaSharp.Skottie.dll

> No changes.
5 changes: 5 additions & 0 deletions changelogs/SkiaSharp.Skottie/2.88.4/SkiaSharp.SceneGraph.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.SceneGraph.dll

## SkiaSharp.SceneGraph.dll

> No changes.
5 changes: 5 additions & 0 deletions changelogs/SkiaSharp.Skottie/2.88.4/SkiaSharp.Skottie.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Skottie.dll

## SkiaSharp.Skottie.dll

> No changes.
5 changes: 5 additions & 0 deletions changelogs/SkiaSharp.Skottie/2.88.5/SkiaSharp.SceneGraph.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.SceneGraph.dll

## SkiaSharp.SceneGraph.dll

> No changes.
5 changes: 5 additions & 0 deletions changelogs/SkiaSharp.Skottie/2.88.5/SkiaSharp.Skottie.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Skottie.dll

## SkiaSharp.Skottie.dll

> No changes.
5 changes: 5 additions & 0 deletions changelogs/SkiaSharp.Skottie/2.88.6/SkiaSharp.SceneGraph.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.SceneGraph.dll

## SkiaSharp.SceneGraph.dll

> No changes.
5 changes: 5 additions & 0 deletions changelogs/SkiaSharp.Skottie/2.88.6/SkiaSharp.Skottie.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Skottie.dll

## SkiaSharp.Skottie.dll

> No changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Views.Blazor.dll

## SkiaSharp.Views.Blazor.dll

> No changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Views.Blazor.dll

## SkiaSharp.Views.Blazor.dll

> No changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Views.Blazor.dll

## SkiaSharp.Views.Blazor.dll

> No changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Views.Blazor.dll

## SkiaSharp.Views.Blazor.dll

> No changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Views.Blazor.dll

## SkiaSharp.Views.Blazor.dll

> No changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Views.Desktop.Common.dll

## SkiaSharp.Views.Desktop.Common.dll

> No changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Views.Desktop.Common.dll

## SkiaSharp.Views.Desktop.Common.dll

> No changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Views.Desktop.Common.dll

## SkiaSharp.Views.Desktop.Common.dll

> No changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Views.Desktop.Common.dll

## SkiaSharp.Views.Desktop.Common.dll

> No changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Views.Desktop.Common.dll

## SkiaSharp.Views.Desktop.Common.dll

> No changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Views.Forms.dll

## SkiaSharp.Views.Forms.dll

> No changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Views.Forms.dll

## SkiaSharp.Views.Forms.dll

> No changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Views.Forms.dll

## SkiaSharp.Views.Forms.dll

> No changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Views.Forms.dll

## SkiaSharp.Views.Forms.dll

> No changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Views.Forms.dll

## SkiaSharp.Views.Forms.dll

> No changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Views.Forms.dll

## SkiaSharp.Views.Forms.dll

> No changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Views.Forms.dll

## SkiaSharp.Views.Forms.dll

> No changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Views.Forms.dll

## SkiaSharp.Views.Forms.dll

> No changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Views.Forms.dll

## SkiaSharp.Views.Forms.dll

> No changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Views.Forms.dll

## SkiaSharp.Views.Forms.dll

> No changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Views.Forms.dll

## SkiaSharp.Views.Forms.dll

> No changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Views.Forms.dll

## SkiaSharp.Views.Forms.dll

> No changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Views.Forms.dll

## SkiaSharp.Views.Forms.dll

> No changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Views.Forms.dll

## SkiaSharp.Views.Forms.dll

> No changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Views.Forms.dll

## SkiaSharp.Views.Forms.dll

> No changes.
5 changes: 5 additions & 0 deletions changelogs/SkiaSharp.Views.Gtk2/2.88.2/SkiaSharp.Views.Gtk.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Views.Gtk.dll

## SkiaSharp.Views.Gtk.dll

> No changes.
5 changes: 5 additions & 0 deletions changelogs/SkiaSharp.Views.Gtk2/2.88.3/SkiaSharp.Views.Gtk.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Views.Gtk.dll

## SkiaSharp.Views.Gtk.dll

> No changes.
5 changes: 5 additions & 0 deletions changelogs/SkiaSharp.Views.Gtk2/2.88.4/SkiaSharp.Views.Gtk.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Views.Gtk.dll

## SkiaSharp.Views.Gtk.dll

> No changes.
5 changes: 5 additions & 0 deletions changelogs/SkiaSharp.Views.Gtk2/2.88.5/SkiaSharp.Views.Gtk.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Views.Gtk.dll

## SkiaSharp.Views.Gtk.dll

> No changes.
5 changes: 5 additions & 0 deletions changelogs/SkiaSharp.Views.Gtk2/2.88.6/SkiaSharp.Views.Gtk.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Views.Gtk.dll

## SkiaSharp.Views.Gtk.dll

> No changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API diff: SkiaSharp.Views.Gtk3.dll

## SkiaSharp.Views.Gtk3.dll

> No changes.
Loading

0 comments on commit 79d0776

Please sign in to comment.