Skip to content

Commit

Permalink
Updated to v8.6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
klasjersevi committed Sep 16, 2021
1 parent 07e970f commit 9dd04b9
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 15 deletions.
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog for Weavy

## 8.6.6 (2021-09-16)

* Fix for server error when creating space in client using delayed init.

## 8.6.5 (2021-09-13)

* Changed the allowed transfer protocol of the integrated OAuth2 server so that it honours the `weavy.https` configuration setting.
Expand Down
Binary file modified lib/Weavy.Bundler.dll
Binary file not shown.
Binary file modified lib/Weavy.Bundler.pdb
Binary file not shown.
Binary file modified lib/Weavy.Core.dll
Binary file not shown.
Binary file modified lib/Weavy.Core.pdb
Binary file not shown.
Binary file modified lib/Weavy.Web.dll
Binary file not shown.
Binary file modified lib/wvy.exe
Binary file not shown.
Binary file modified lib/wvy.pdb
Binary file not shown.
2 changes: 1 addition & 1 deletion src/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
[assembly: Guid("70cffd0f-7b12-43ec-9c57-9080937a6b04")]

// Assembly version
[assembly: AssemblyVersion("8.6.5")]
[assembly: AssemblyVersion("8.6.6")]
2 changes: 1 addition & 1 deletion src/Scripts/src/client/weavy.js
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@
if (isSpaceConfig) {
space = new WeavySpace(weavy, options);
weavy.spaces.push(space);
Promise.all([weavy.authentication.whenAuthorized(), weavy.whenInitialized()]).then(function () {
Promise.all([weavy.authentication.whenAuthorized(), weavy.whenReady()]).then(function () {
space.fetchOrCreate();
});
} else {
Expand Down
23 changes: 10 additions & 13 deletions src/Weavy.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<Import Project="..\packages\JavaScriptEngineSwitcher.V8.Native.win-x64.3.1.5\build\JavaScriptEngineSwitcher.V8.Native.win-x64.props" Condition="Exists('..\packages\JavaScriptEngineSwitcher.V8.Native.win-x64.3.1.5\build\JavaScriptEngineSwitcher.V8.Native.win-x64.props')" />
<Import Project="..\packages\JavaScriptEngineSwitcher.V8.Native.win-x86.3.1.5\build\JavaScriptEngineSwitcher.V8.Native.win-x86.props" Condition="Exists('..\packages\JavaScriptEngineSwitcher.V8.Native.win-x86.3.1.5\build\JavaScriptEngineSwitcher.V8.Native.win-x86.props')" />
<Import Project="..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1\build\net46\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props" Condition="Exists('..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1\build\net46\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>
</ProductVersion>
<ProductVersion></ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{70CFFD0F-7B12-43EC-9C57-9080937A6B04}</ProjectGuid>
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
Expand All @@ -23,8 +22,7 @@
<IISExpressWindowsAuthentication />
<IISExpressUseClassicPipelineMode />
<UseGlobalApplicationHostFile />
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
<NuGetPackageImportStamp></NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand Down Expand Up @@ -366,17 +364,17 @@
<Reference Include="System.Xaml" />
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq" />
<Reference Include="Weavy.Bundler, Version=8.6.5.0, Culture=neutral, PublicKeyToken=null">
<Reference Include="Weavy.Bundler, Version=8.6.6.0, Culture=neutral, PublicKeyToken=null">
<HintPath>..\lib\Weavy.Bundler.dll</HintPath>
</Reference>
<Reference Include="Weavy.Core, Version=8.6.5.0, Culture=neutral, PublicKeyToken=null">
<Reference Include="Weavy.Core, Version=8.6.6.0, Culture=neutral, PublicKeyToken=null">
<HintPath>..\lib\Weavy.Core.dll</HintPath>
</Reference>
<Reference Include="Weavy.Web, Version=8.6.5.0, Culture=neutral, PublicKeyToken=null">
<Reference Include="Weavy.Web, Version=8.6.6.0, Culture=neutral, PublicKeyToken=null">
<HintPath>..\lib\Weavy.Web.dll</HintPath>
</Reference>
<Reference Include="WindowsBase" />
<Reference Include="wvy, Version=8.6.5.0, Culture=neutral, PublicKeyToken=null">
<Reference Include="wvy, Version=8.6.6.0, Culture=neutral, PublicKeyToken=null">
<HintPath>..\lib\wvy.exe</HintPath>
</Reference>
</ItemGroup>
Expand Down Expand Up @@ -4363,13 +4361,12 @@
<WebProjectProperties>
<UseIIS>True</UseIIS>
<AutoAssignPort>True</AutoAssignPort>
<DevelopmentServerPort>53147</DevelopmentServerPort>
<DevelopmentServerPort>0</DevelopmentServerPort>
<DevelopmentServerVPath>/</DevelopmentServerVPath>
<IISUrl>https://localhost:44323/</IISUrl>
<NTLMAuthentication>False</NTLMAuthentication>
<UseCustomServer>False</UseCustomServer>
<CustomServerUrl>
</CustomServerUrl>
<CustomServerUrl />
<SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
</WebProjectProperties>
</FlavorProperties>
Expand Down Expand Up @@ -4420,7 +4417,7 @@ using System.Reflection%3B
<Output TaskParameter="AssignedFilesWithCulture" ItemName="ResourcesWithCulture" />
</AssignCulture>
<Message Text="%(Culture) -&gt; @(ResourcesWithCulture)" Importance="High" />
<MakeDir Directories="@(ResourcesWithCulture->'bin\%(Culture)\')" />
<MakeDir Directories="@(ResourcesWithCulture-&gt;'bin\%(Culture)\')" />
<AL SdkToolsPath="$(SDK40ToolsPath)" EmbedResources="@(ResourcesWithCulture)" TargetType="library" TemplateFile="bin\Weavy.dll" Culture="%(Culture)" OutputAssembly="bin\%(Culture)\Weavy.resources.dll" />
</Target>
</Project>
Binary file modified tools/Weavy.Build.dll
Binary file not shown.

0 comments on commit 9dd04b9

Please sign in to comment.