Skip to content

Commit

Permalink
Update docs for release (#1263)
Browse files Browse the repository at this point in the history
* Update the version numbers
* Regenerate the docs
* Added better change logs
  • Loading branch information
mattleibow authored Apr 29, 2020
1 parent 22fcbe7 commit 258682e
Show file tree
Hide file tree
Showing 18 changed files with 1,191 additions and 16 deletions.
11 changes: 5 additions & 6 deletions VERSIONS.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# dependencies
ANGLE.WindowsStore release 2.1.13
mdoc.targets release 5.7.4.10
mdoc release 5.7.4.10
harfbuzz release 2.6.1
skia release m68
Expand All @@ -12,13 +10,14 @@ Xamarin.Forms.Platform.GTK release 4.4.0.991757
Tizen.NET release 4.0.0
OpenTK release 3.0.1
OpenTK.GLControl release 3.0.1
MSBuild.Sdk.Extras release 1.6.65
MSBuild.Sdk.Extras release 2.0.54
Cake release 0.37.0
GtkSharp release 3.22.24.37
GdkSharp release 3.22.24.37
GLibSharp release 3.22.24.37
AtkSharp release 3.22.24.37
System.Memory release 4.5.3
System.IO.UnmanagedMemoryStream release 4.3.0

# additional references used by the tooling
OpenTK.GLControl reference 1.1.2349.61993
Expand All @@ -33,7 +32,7 @@ SkiaSharp file 1.68.2.0

# HarfBuzzSharp.dll
HarfBuzzSharp assembly 1.0.0.0
HarfBuzzSharp file 2.6.1.1
HarfBuzzSharp file 2.6.1.2

# nuget versions
SkiaSharp nuget 1.68.2
Expand All @@ -50,5 +49,5 @@ SkiaSharp.Views.Forms nuget 1.68.2
SkiaSharp.Views.Forms.WPF nuget 1.68.2
SkiaSharp.Views.Forms.GTK nuget 1.68.2
SkiaSharp.HarfBuzz nuget 1.68.2
HarfBuzzSharp nuget 2.6.1.1
HarfBuzzSharp.NativeAssets.Linux nuget 2.6.1.1
HarfBuzzSharp nuget 2.6.1.2
HarfBuzzSharp.NativeAssets.Linux nuget 2.6.1.2
2 changes: 1 addition & 1 deletion cake/UtilsManaged.cake
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ string[] GetReferenceSearchPaths()
var refs = new List<string>();

if (IsRunningOnWindows()) {
var vs = VSWhereLatest(new VSWhereLatestSettings { Requires = "Component.Xamarin" });
var vs = VS_INSTALL ?? VSWhereLatest(new VSWhereLatestSettings { Requires = "Component.Xamarin" });
var referenceAssemblies = $"{vs}/Common7/IDE/ReferenceAssemblies/Microsoft/Framework";
var pf = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFilesX86);

Expand Down
5 changes: 5 additions & 0 deletions changelogs/HarfBuzzSharp/2.6.1.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.
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,15 @@

## SkiaSharp.Views.Desktop.Common.dll

> No changes.
### Namespace SkiaSharp.Views.Desktop

#### Type Changed: SkiaSharp.Views.Desktop.SKPaintGLSurfaceEventArgs

Added constructor:

```csharp
public SKPaintGLSurfaceEventArgs (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTarget renderTarget, SkiaSharp.GRSurfaceOrigin origin, SkiaSharp.SKColorType colorType, SkiaSharp.GRGlFramebufferInfo glInfo);
```



Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,7 @@ public class SKTouchEventArgs : System.EventArgs {
public SKTouchEventArgs (long id, SKTouchAction type, SkiaSharp.SKPoint location, bool inContact);
public SKTouchEventArgs (long id, SKTouchAction type, SKMouseButton mouseButton, SKTouchDeviceType deviceType, SkiaSharp.SKPoint location, bool inContact);
public SKTouchEventArgs (long id, SKTouchAction type, SKMouseButton mouseButton, SKTouchDeviceType deviceType, SkiaSharp.SKPoint location, bool inContact, int wheelDelta);
public SKTouchEventArgs (long id, SKTouchAction type, SKMouseButton mouseButton, SKTouchDeviceType deviceType, SkiaSharp.SKPoint location, bool inContact, int wheelDelta, float pressure);
// properties
public SKTouchAction ActionType { get; }
public SKTouchDeviceType DeviceType { get; }
Expand All @@ -306,6 +307,7 @@ public class SKTouchEventArgs : System.EventArgs {
public bool InContact { get; }
public SkiaSharp.SKPoint Location { get; }
public SKMouseButton MouseButton { get; }
public float Pressure { get; }
public int WheelDelta { get; }
// methods
public override string ToString ();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,21 @@ ISKGLViewController
```


#### Type Changed: SkiaSharp.Views.Forms.SKTouchEventArgs

Added constructor:

```csharp
public SKTouchEventArgs (long id, SKTouchAction type, SKMouseButton mouseButton, SKTouchDeviceType deviceType, SkiaSharp.SKPoint location, bool inContact, int wheelDelta, float pressure);
```

Added property:

```csharp
public float Pressure { get; }
```


#### New Type: SkiaSharp.Views.Forms.ISKGLViewController

```csharp
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# API diff: SkiaSharp.Views.Forms.dll

## SkiaSharp.Views.Forms.dll

### Namespace SkiaSharp.Views.Forms

#### Type Changed: SkiaSharp.Views.Forms.SKImageSourceHandler

Removed method:

```csharp
public virtual System.Threading.Tasks.Task<bool> LoadImageAsync (Xamarin.Forms.Platform.Tizen.Native.Image image, Xamarin.Forms.ImageSource imageSource, System.Threading.CancellationToken cancelationToken);
```



15 changes: 15 additions & 0 deletions changelogs/SkiaSharp.Views.Forms/1.68.2/SkiaSharp.Views.Forms.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,21 @@ ISKGLViewController
```


#### Type Changed: SkiaSharp.Views.Forms.SKTouchEventArgs

Added constructor:

```csharp
public SKTouchEventArgs (long id, SKTouchAction type, SKMouseButton mouseButton, SKTouchDeviceType deviceType, SkiaSharp.SKPoint location, bool inContact, int wheelDelta, float pressure);
```

Added property:

```csharp
public float Pressure { get; }
```


#### New Type: SkiaSharp.Views.Forms.ISKGLViewController

```csharp
Expand Down
9 changes: 9 additions & 0 deletions changelogs/SkiaSharp.Views/1.68.2/SkiaSharp.Views.Android.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@

### Namespace SkiaSharp.Views.Android

#### Type Changed: SkiaSharp.Views.Android.SKPaintGLSurfaceEventArgs

Added constructor:

```csharp
public SKPaintGLSurfaceEventArgs (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTarget renderTarget, SkiaSharp.GRSurfaceOrigin origin, SkiaSharp.SKColorType colorType, SkiaSharp.GRGlFramebufferInfo glInfo);
```


#### New Type: SkiaSharp.Views.Android.Resource

```csharp
Expand Down
22 changes: 21 additions & 1 deletion changelogs/SkiaSharp.Views/1.68.2/SkiaSharp.Views.Mac.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,24 @@

## SkiaSharp.Views.Mac.dll

> No changes.
### Namespace SkiaSharp.Views.Mac

#### Type Changed: SkiaSharp.Views.Mac.SKGLView

Added method:

```csharp
public override void Reshape ();
```


#### Type Changed: SkiaSharp.Views.Mac.SKPaintGLSurfaceEventArgs

Added constructor:

```csharp
public SKPaintGLSurfaceEventArgs (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTarget renderTarget, SkiaSharp.GRSurfaceOrigin origin, SkiaSharp.SKColorType colorType, SkiaSharp.GRGlFramebufferInfo glInfo);
```



13 changes: 12 additions & 1 deletion changelogs/SkiaSharp.Views/1.68.2/SkiaSharp.Views.Tizen.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,15 @@

## SkiaSharp.Views.Tizen.dll

> No changes.
### Namespace SkiaSharp.Views.Tizen

#### Type Changed: SkiaSharp.Views.Tizen.SKPaintGLSurfaceEventArgs

Added constructor:

```csharp
public SKPaintGLSurfaceEventArgs (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTarget renderTarget, SkiaSharp.GRSurfaceOrigin origin, SkiaSharp.SKColorType colorType, SkiaSharp.GRGlFramebufferInfo glInfo);
```



31 changes: 30 additions & 1 deletion changelogs/SkiaSharp.Views/1.68.2/SkiaSharp.Views.UWP.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,33 @@

## SkiaSharp.Views.UWP.dll

> No changes.
### Namespace SkiaSharp.Views.UWP

#### Type Changed: SkiaSharp.Views.UWP.AngleSwapChainPanel

Added method:

```csharp
protected virtual void OnDestroyingContext ();
```


#### Type Changed: SkiaSharp.Views.UWP.SKPaintGLSurfaceEventArgs

Added constructor:

```csharp
public SKPaintGLSurfaceEventArgs (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTarget renderTarget, SkiaSharp.GRSurfaceOrigin origin, SkiaSharp.SKColorType colorType, SkiaSharp.GRGlFramebufferInfo glInfo);
```


#### Type Changed: SkiaSharp.Views.UWP.SKSwapChainPanel

Added method:

```csharp
protected override void OnDestroyingContext ();
```



13 changes: 12 additions & 1 deletion changelogs/SkiaSharp.Views/1.68.2/SkiaSharp.Views.iOS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,15 @@

## SkiaSharp.Views.iOS.dll

> No changes.
### Namespace SkiaSharp.Views.iOS

#### Type Changed: SkiaSharp.Views.iOS.SKPaintGLSurfaceEventArgs

Added constructor:

```csharp
public SKPaintGLSurfaceEventArgs (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTarget renderTarget, SkiaSharp.GRSurfaceOrigin origin, SkiaSharp.SKColorType colorType, SkiaSharp.GRGlFramebufferInfo glInfo);
```



13 changes: 12 additions & 1 deletion changelogs/SkiaSharp.Views/1.68.2/SkiaSharp.Views.tvOS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,15 @@

## SkiaSharp.Views.tvOS.dll

> No changes.
### Namespace SkiaSharp.Views.tvOS

#### Type Changed: SkiaSharp.Views.tvOS.SKPaintGLSurfaceEventArgs

Added constructor:

```csharp
public SKPaintGLSurfaceEventArgs (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTarget renderTarget, SkiaSharp.GRSurfaceOrigin origin, SkiaSharp.SKColorType colorType, SkiaSharp.GRGlFramebufferInfo glInfo);
```



Loading

0 comments on commit 258682e

Please sign in to comment.