This commit is contained in:
Matthew Leibowitz 2018-09-29 05:35:16 +02:00
Родитель eec4fcbee2
Коммит 38b485edff
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 3650EBE4AA155AF9
9 изменённых файлов: 98 добавлений и 39 удалений

Просмотреть файл

@ -27,6 +27,7 @@ var VERBOSITY = (Verbosity) Enum.Parse (typeof(Verbosity), Argument ("v", Argume
var SKIP_EXTERNALS = Argument ("skipexternals", Argument ("SkipExternals", "")).ToLower ().Split (',');
var PACK_ALL_PLATFORMS = Argument ("packall", Argument ("PackAll", Argument ("PackAllPlatforms", TARGET.ToLower() == "ci" || TARGET.ToLower() == "nuget-only")));
var PRINT_ALL_ENV_VARS = Argument ("printAllEnvVars", false);
var ARTIFACTS_ROOT_URL = Argument ("artifactsRootUrl", "");
var NuGetSources = new [] { MakeAbsolute (Directory ("./output/nugets")).FullPath, "https://api.nuget.org/v3/index.json" };
var NuGetToolPath = Context.Tools.Resolve ("nuget.exe");

Просмотреть файл

@ -35,6 +35,31 @@ void CopyChangelogs (DirectoryPath diffRoot, string id, string version)
}
}
Task ("docs-download-output")
.Does (() =>
{
if (string.IsNullOrEmpty (ARTIFACTS_ROOT_URL))
throw new Exception ("Specify an artifacts root URL with --artifactsRootUrl=<URL>");
EnsureDirectoryExists ("./output/nugets");
CleanDirectories ("./output/nugets");
foreach (var id in TRACKED_NUGETS.Keys) {
Information ($"Downloading '{id}'...");
var version = GetVersion (id);
var name = $"{id}.{version}.nupkg";
CleanDirectories ($"./output/{id}");
DownloadFile ($"{ARTIFACTS_ROOT_URL}/nugets/{name}", $"./output/nugets/{name}");
Unzip ($"./output/nugets/{name}", $"./output/{id}/nuget");
}
CleanDirectories ($"./output/samples");
DownloadFile ($"{ARTIFACTS_ROOT_URL}/samples.zip", $"./output/samples.zip");
Unzip ($"./output/samples.zip", $"./output/samples");
});
Task ("docs-api-diff")
.Does (async () =>
{

Просмотреть файл

@ -756,9 +756,10 @@ Obsoleted properties:
public SKTypefaceStyle Style { get; }
```
Added property:
Added properties:
```csharp
public static SKTypeface Default { get; }
public SKFontStyle FontStyle { get; }
```
@ -781,6 +782,7 @@ Modified methods:
Added methods:
```csharp
public static SKTypeface CreateDefault ();
public static SKTypeface FromFamilyName (string familyName);
public static SKTypeface FromFamilyName (string familyName, SKFontStyle style);
```

Просмотреть файл

@ -2322,6 +2322,7 @@
<Member Id="M:SkiaSharp.SKTypeface.CharsToGlyphs(System.String,System.UInt16[]@)" />
<Member Id="M:SkiaSharp.SKTypeface.CountGlyphs(System.IntPtr,System.Int32,SkiaSharp.SKEncoding)" />
<Member Id="M:SkiaSharp.SKTypeface.CountGlyphs(System.String)" />
<Member Id="M:SkiaSharp.SKTypeface.CreateDefault" />
<Member Id="M:SkiaSharp.SKTypeface.Dispose(System.Boolean)" />
<Member Id="M:SkiaSharp.SKTypeface.FromData(SkiaSharp.SKData,System.Int32)" />
<Member Id="M:SkiaSharp.SKTypeface.FromFamilyName(System.String)" />
@ -2338,6 +2339,7 @@
<Member Id="M:SkiaSharp.SKTypeface.OpenStream" />
<Member Id="M:SkiaSharp.SKTypeface.OpenStream(System.Int32@)" />
<Member Id="M:SkiaSharp.SKTypeface.TryGetTableData(System.UInt32,System.Byte[]@)" />
<Member Id="P:SkiaSharp.SKTypeface.Default" />
<Member Id="P:SkiaSharp.SKTypeface.FamilyName" />
<Member Id="P:SkiaSharp.SKTypeface.FontSlant" />
<Member Id="P:SkiaSharp.SKTypeface.FontStyle" />

Просмотреть файл

@ -48,9 +48,6 @@
<AssemblyVersion>1.57.0.0</AssemblyVersion>
<AssemblyVersion>1.58.0.0</AssemblyVersion>
<AssemblyVersion>1.59.0.0</AssemblyVersion>
<AssemblyVersion>1.57.0.0</AssemblyVersion>
<AssemblyVersion>1.58.0.0</AssemblyVersion>
<AssemblyVersion>1.59.0.0</AssemblyVersion>
<AssemblyVersion>1.60.0.0</AssemblyVersion>
<AssemblyVersion>1.68.0.0</AssemblyVersion>
</AssemblyInfo>

Просмотреть файл

@ -13,11 +13,6 @@
<Base>
<BaseTypeName>System.Enum</BaseTypeName>
</Base>
<Attributes>
<Attribute FrameworkAlternate="">
<AttributeName>System.Obsolete("Use SKPath1DPathEffectStyle instead.", true)</AttributeName>
</Attribute>
</Attributes>
<Docs>
<summary>How to transform path at each point (based on the current position and tangent).</summary>
<remarks></remarks>

Просмотреть файл

@ -420,7 +420,7 @@ The example above produces the following:
</Parameters>
<Docs>
<param name="context">The graphics context.</param>
<param name="desc">The configuration of the texture.</param>
<param name="texture">To be added.</param>
<param name="colorType">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
@ -682,7 +682,7 @@ The example above produces the following:
</Parameters>
<Docs>
<param name="context">The graphics context.</param>
<param name="desc">The configuration of the texture.</param>
<param name="texture">To be added.</param>
<param name="origin">To be added.</param>
<param name="colorType">To be added.</param>
<summary>To be added.</summary>
@ -710,7 +710,7 @@ The example above produces the following:
</Parameters>
<Docs>
<param name="context">The graphics context.</param>
<param name="desc">The configuration of the texture.</param>
<param name="texture">To be added.</param>
<param name="colorType">To be added.</param>
<param name="props">The surface property configuration.</param>
<summary>To be added.</summary>
@ -928,7 +928,7 @@ The example above produces the following:
</Parameters>
<Docs>
<param name="context">The graphics context.</param>
<param name="desc">The configuration of the texture.</param>
<param name="texture">To be added.</param>
<param name="origin">To be added.</param>
<param name="colorType">To be added.</param>
<param name="props">The surface property configuration.</param>
@ -958,7 +958,7 @@ The example above produces the following:
</Parameters>
<Docs>
<param name="context">The graphics context.</param>
<param name="desc">The configuration of the texture.</param>
<param name="texture">To be added.</param>
<param name="origin">To be added.</param>
<param name="sampleCount">To be added.</param>
<param name="colorType">To be added.</param>
@ -1154,7 +1154,7 @@ The example above produces the following:
</Parameters>
<Docs>
<param name="context">The graphics context.</param>
<param name="desc">The configuration of the texture.</param>
<param name="texture">To be added.</param>
<param name="origin">To be added.</param>
<param name="sampleCount">To be added.</param>
<param name="colorType">To be added.</param>
@ -1186,7 +1186,7 @@ The example above produces the following:
</Parameters>
<Docs>
<param name="context">The graphics context.</param>
<param name="desc">The configuration of the texture.</param>
<param name="texture">To be added.</param>
<param name="origin">To be added.</param>
<param name="sampleCount">To be added.</param>
<param name="colorType">To be added.</param>
@ -1292,7 +1292,7 @@ The example above produces the following:
</Parameters>
<Docs>
<param name="context">The graphics context.</param>
<param name="desc">The configuration of the texture.</param>
<param name="texture">To be added.</param>
<param name="origin">To be added.</param>
<param name="sampleCount">To be added.</param>
<param name="colorType">To be added.</param>
@ -1462,7 +1462,7 @@ The example above produces the following:
</Parameters>
<Docs>
<param name="context">The graphics context.</param>
<param name="desc">The configuration of the texture.</param>
<param name="texture">To be added.</param>
<param name="colorType">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
@ -1556,7 +1556,7 @@ The example above produces the following:
</Parameters>
<Docs>
<param name="context">The graphics context.</param>
<param name="desc">The configuration of the texture.</param>
<param name="texture">To be added.</param>
<param name="origin">To be added.</param>
<param name="colorType">To be added.</param>
<summary>To be added.</summary>
@ -1584,7 +1584,7 @@ The example above produces the following:
</Parameters>
<Docs>
<param name="context">The graphics context.</param>
<param name="desc">The configuration of the texture.</param>
<param name="texture">To be added.</param>
<param name="colorType">To be added.</param>
<param name="props">The surface property configuration.</param>
<summary>To be added.</summary>
@ -1613,7 +1613,7 @@ The example above produces the following:
</Parameters>
<Docs>
<param name="context">The graphics context.</param>
<param name="desc">The configuration of the texture.</param>
<param name="texture">To be added.</param>
<param name="origin">To be added.</param>
<param name="colorType">To be added.</param>
<param name="props">The surface property configuration.</param>
@ -1643,7 +1643,7 @@ The example above produces the following:
</Parameters>
<Docs>
<param name="context">The graphics context.</param>
<param name="desc">The configuration of the texture.</param>
<param name="texture">To be added.</param>
<param name="origin">To be added.</param>
<param name="sampleCount">To be added.</param>
<param name="colorType">To be added.</param>
@ -1674,7 +1674,7 @@ The example above produces the following:
</Parameters>
<Docs>
<param name="context">The graphics context.</param>
<param name="desc">The configuration of the texture.</param>
<param name="texture">To be added.</param>
<param name="origin">To be added.</param>
<param name="sampleCount">To be added.</param>
<param name="colorType">To be added.</param>
@ -1706,7 +1706,7 @@ The example above produces the following:
</Parameters>
<Docs>
<param name="context">The graphics context.</param>
<param name="desc">The configuration of the texture.</param>
<param name="texture">To be added.</param>
<param name="origin">To be added.</param>
<param name="sampleCount">To be added.</param>
<param name="colorType">To be added.</param>
@ -1739,7 +1739,7 @@ The example above produces the following:
</Parameters>
<Docs>
<param name="context">The graphics context.</param>
<param name="desc">The configuration of the texture.</param>
<param name="texture">To be added.</param>
<param name="origin">To be added.</param>
<param name="sampleCount">To be added.</param>
<param name="colorType">To be added.</param>

Просмотреть файл

@ -148,6 +148,43 @@ Typeface objects are immutable, and so they can be shared between threads.
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="CreateDefault">
<MemberSignature Language="C#" Value="public static SkiaSharp.SKTypeface CreateDefault ();" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class SkiaSharp.SKTypeface CreateDefault() cil managed" />
<MemberSignature Language="DocId" Value="M:SkiaSharp.SKTypeface.CreateDefault" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>SkiaSharp</AssemblyName>
<AssemblyVersion>1.68.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>SkiaSharp.SKTypeface</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Default">
<MemberSignature Language="C#" Value="public static SkiaSharp.SKTypeface Default { get; }" />
<MemberSignature Language="ILAsm" Value=".property class SkiaSharp.SKTypeface Default" />
<MemberSignature Language="DocId" Value="P:SkiaSharp.SKTypeface.Default" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>SkiaSharp</AssemblyName>
<AssemblyVersion>1.68.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>SkiaSharp.SKTypeface</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Dispose">
<MemberSignature Language="C#" Value="protected override void Dispose (bool disposing);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig virtual instance void Dispose(bool disposing) cil managed" />

Просмотреть файл

@ -130,7 +130,7 @@
<AttributeName>System.Reflection.AssemblyFileVersion("1.68.0.0")</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="skiasharp-1.68.0">
<AttributeName>System.Reflection.AssemblyInformationalVersion("1.68.0.0-8bc5f4e7b7bb91aa9f34c17a0e4daed27d42b22d")</AttributeName>
<AttributeName>System.Reflection.AssemblyInformationalVersion("1.68.0.0-eec4fcbee25d2514b0116627d9fbad1b3cadce5d")</AttributeName>
</Attribute>
</Attributes>
</Assembly>
@ -270,7 +270,7 @@
<AttributeName>System.Reflection.AssemblyFileVersion("1.68.0.0")</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="skiasharp-views-android-1.68.0">
<AttributeName>System.Reflection.AssemblyInformationalVersion("1.68.0.0-8bc5f4e7b7bb91aa9f34c17a0e4daed27d42b22d")</AttributeName>
<AttributeName>System.Reflection.AssemblyInformationalVersion("1.68.0.0-eec4fcbee25d2514b0116627d9fbad1b3cadce5d")</AttributeName>
</Attribute>
</Attributes>
</Assembly>
@ -404,7 +404,7 @@
<AttributeName>System.Reflection.AssemblyFileVersion("1.68.0.0")</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="skiasharp-views-net-1.68.0">
<AttributeName>System.Reflection.AssemblyInformationalVersion("1.68.0.0-8bc5f4e7b7bb91aa9f34c17a0e4daed27d42b22d")</AttributeName>
<AttributeName>System.Reflection.AssemblyInformationalVersion("1.68.0.0-eec4fcbee25d2514b0116627d9fbad1b3cadce5d")</AttributeName>
</Attribute>
</Attributes>
</Assembly>
@ -484,7 +484,7 @@
<AttributeName>System.Reflection.AssemblyFileVersion("1.68.0.0")</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="skiasharp-views-net-1.68.0">
<AttributeName>System.Reflection.AssemblyInformationalVersion("1.68.0.0-8bc5f4e7b7bb91aa9f34c17a0e4daed27d42b22d")</AttributeName>
<AttributeName>System.Reflection.AssemblyInformationalVersion("1.68.0.0-eec4fcbee25d2514b0116627d9fbad1b3cadce5d")</AttributeName>
</Attribute>
</Attributes>
</Assembly>
@ -618,7 +618,7 @@
<AttributeName>System.Reflection.AssemblyFileVersion("1.68.0.0")</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="skiasharp-views-net-1.68.0">
<AttributeName>System.Reflection.AssemblyInformationalVersion("1.68.0.0-8bc5f4e7b7bb91aa9f34c17a0e4daed27d42b22d")</AttributeName>
<AttributeName>System.Reflection.AssemblyInformationalVersion("1.68.0.0-eec4fcbee25d2514b0116627d9fbad1b3cadce5d")</AttributeName>
</Attribute>
</Attributes>
</Assembly>
@ -680,7 +680,7 @@
<AttributeName>System.Reflection.AssemblyFileVersion("1.68.0.0")</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="skiasharp-views-tizen-1.68.0">
<AttributeName>System.Reflection.AssemblyInformationalVersion("1.68.0.0-8bc5f4e7b7bb91aa9f34c17a0e4daed27d42b22d")</AttributeName>
<AttributeName>System.Reflection.AssemblyInformationalVersion("1.68.0.0-eec4fcbee25d2514b0116627d9fbad1b3cadce5d")</AttributeName>
</Attribute>
</Attributes>
</Assembly>
@ -814,7 +814,7 @@
<AttributeName>System.Reflection.AssemblyFileVersion("1.68.0.0")</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="skiasharp-views-uwp-1.68.0">
<AttributeName>System.Reflection.AssemblyInformationalVersion("1.68.0.0-8bc5f4e7b7bb91aa9f34c17a0e4daed27d42b22d")</AttributeName>
<AttributeName>System.Reflection.AssemblyInformationalVersion("1.68.0.0-eec4fcbee25d2514b0116627d9fbad1b3cadce5d")</AttributeName>
</Attribute>
</Attributes>
</Assembly>
@ -951,7 +951,7 @@
<AttributeName>System.Reflection.AssemblyFileVersion("1.68.0.0")</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="skiasharp-views-ios-1.68.0">
<AttributeName>System.Reflection.AssemblyInformationalVersion("1.68.0.0-8bc5f4e7b7bb91aa9f34c17a0e4daed27d42b22d")</AttributeName>
<AttributeName>System.Reflection.AssemblyInformationalVersion("1.68.0.0-eec4fcbee25d2514b0116627d9fbad1b3cadce5d")</AttributeName>
</Attribute>
</Attributes>
</Assembly>
@ -1088,7 +1088,7 @@
<AttributeName>System.Reflection.AssemblyFileVersion("1.68.0.0")</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="skiasharp-views-macos-1.68.0">
<AttributeName>System.Reflection.AssemblyInformationalVersion("1.68.0.0-8bc5f4e7b7bb91aa9f34c17a0e4daed27d42b22d")</AttributeName>
<AttributeName>System.Reflection.AssemblyInformationalVersion("1.68.0.0-eec4fcbee25d2514b0116627d9fbad1b3cadce5d")</AttributeName>
</Attribute>
</Attributes>
</Assembly>
@ -1225,7 +1225,7 @@
<AttributeName>System.Reflection.AssemblyFileVersion("1.68.0.0")</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="skiasharp-views-tvos-1.68.0">
<AttributeName>System.Reflection.AssemblyInformationalVersion("1.68.0.0-8bc5f4e7b7bb91aa9f34c17a0e4daed27d42b22d")</AttributeName>
<AttributeName>System.Reflection.AssemblyInformationalVersion("1.68.0.0-eec4fcbee25d2514b0116627d9fbad1b3cadce5d")</AttributeName>
</Attribute>
</Attributes>
</Assembly>
@ -1305,7 +1305,7 @@
<AttributeName>System.Reflection.AssemblyFileVersion("1.68.0.0")</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="skiasharp-views-watchos-1.68.0">
<AttributeName>System.Reflection.AssemblyInformationalVersion("1.68.0.0-8bc5f4e7b7bb91aa9f34c17a0e4daed27d42b22d")</AttributeName>
<AttributeName>System.Reflection.AssemblyInformationalVersion("1.68.0.0-eec4fcbee25d2514b0116627d9fbad1b3cadce5d")</AttributeName>
</Attribute>
</Attributes>
</Assembly>
@ -1441,7 +1441,7 @@
<AttributeName>System.Reflection.AssemblyFileVersion("1.68.0.0")</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="skiasharp-views-forms-1.68.0">
<AttributeName>System.Reflection.AssemblyInformationalVersion("1.68.0.0-8bc5f4e7b7bb91aa9f34c17a0e4daed27d42b22d")</AttributeName>
<AttributeName>System.Reflection.AssemblyInformationalVersion("1.68.0.0-eec4fcbee25d2514b0116627d9fbad1b3cadce5d")</AttributeName>
</Attribute>
</Attributes>
</Assembly>
@ -1518,7 +1518,7 @@
<AttributeName>System.Reflection.AssemblyFileVersion("1.4.6.2")</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="harfbuzzsharp-1.4.6.2">
<AttributeName>System.Reflection.AssemblyInformationalVersion("1.4.6.2-8bc5f4e7b7bb91aa9f34c17a0e4daed27d42b22d")</AttributeName>
<AttributeName>System.Reflection.AssemblyInformationalVersion("1.4.6.2-eec4fcbee25d2514b0116627d9fbad1b3cadce5d")</AttributeName>
</Attribute>
</Attributes>
</Assembly>
@ -1598,7 +1598,7 @@
<AttributeName>System.Reflection.AssemblyFileVersion("1.68.0.0")</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="skiasharp-harfbuzz-1.68.0">
<AttributeName>System.Reflection.AssemblyInformationalVersion("1.68.0.0-8bc5f4e7b7bb91aa9f34c17a0e4daed27d42b22d")</AttributeName>
<AttributeName>System.Reflection.AssemblyInformationalVersion("1.68.0.0-eec4fcbee25d2514b0116627d9fbad1b3cadce5d")</AttributeName>
</Attribute>
</Attributes>
</Assembly>