Skip to content

Commit

Permalink
Updated to v8.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lajjne committed Nov 22, 2021
1 parent ffa1b00 commit cd20c27
Show file tree
Hide file tree
Showing 12 changed files with 43 additions and 5 deletions.
4 changes: 4 additions & 0 deletions changelog.md
@@ -1,5 +1,9 @@
# Changelog for Weavy

## 8.8.0 (2021-11-22)

* Added methods for listing files and embeds posted in a conversation.

## 8.7.1 (2021-11-16)

* Administrative rights are now required in order to view the generated API documentation available on ~/docs.
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.
34 changes: 34 additions & 0 deletions lib/Weavy.Core.xml
Expand Up @@ -17021,6 +17021,14 @@
<param name="query">A <see cref="T:Weavy.Core.Models.AppQuery"/> object containing the search criteria.</param>
<returns>Returns a paged list of <see cref="T:Weavy.Core.Models.App"/> objects.</returns>
</member>
<member name="M:Weavy.Core.Repos.AttachmentRepo.GetForConversation(System.Int32,Weavy.Core.Models.QueryOptions)">
<summary>
Get attachments in the conversation.
</summary>
<param name="id"></param>
<param name="opts"><see cref="T:Weavy.Core.Models.QueryOptions"/> for paging etc..</param>
<returns>Returns a paged list of <see cref="T:Weavy.Core.Models.Attachment"/> objects.</returns>
</member>
<member name="T:Weavy.Core.Repos.BlobRepo">
<summary>
Repo for blobs.
Expand Down Expand Up @@ -17594,6 +17602,14 @@
The object will be updated to reflect any changes made by the repository, i.e. identity or computed columns.
</remarks>
</member>
<member name="M:Weavy.Core.Repos.EmbedRepo.GetForConversation(System.Int32,Weavy.Core.Models.QueryOptions)">
<summary>
Return embeds for the specified conversation.
</summary>
<param name="id"></param>
<param name="opts"><see cref="T:Weavy.Core.Models.QueryOptions"/> for paging etc..</param>
<returns>Returns a paged list of <see cref="T:Weavy.Core.Models.Embed"/> objects.</returns>
</member>
<member name="T:Weavy.Core.Repos.EntityRepo">
<summary>
Repo for entities.
Expand Down Expand Up @@ -22936,6 +22952,24 @@
<param name="trashed"><c>true</c> to return conversation even if trashed, otherwise <c>false</c>.</param>
<returns>Returns an instance of the <see cref="T:Weavy.Core.Models.Conversation"/> class.</returns>
</member>
<member name="M:Weavy.Core.Services.ConversationService.GetAttachments(System.Int32,Weavy.Core.Models.QueryOptions,System.Boolean)">
<summary>
Gets attachments in the <see cref="T:Weavy.Core.Models.Conversation"/>.
</summary>
<param name="id">Id of the <see cref="T:Weavy.Core.Models.Conversation"/>.</param>
<param name="opts"><c>true</c> to perform action as super user, otherwise <c>false</c>.</param>
<param name="sudo"></param>
<returns>Returns an list of <see cref="T:Weavy.Core.Models.Attachment"/> objects.</returns>
</member>
<member name="M:Weavy.Core.Services.ConversationService.GetEmbeds(System.Int32,Weavy.Core.Models.QueryOptions,System.Boolean)">
<summary>
Get embeds in the <see cref="T:Weavy.Core.Models.Conversation"/>.
</summary>
<param name="id">Id of the <see cref="T:Weavy.Core.Models.Conversation"/>.</param>
<param name="opts"><c>true</c> to perform action as super user, otherwise <c>false</c>.</param>
<param name="sudo"></param>
<returns>Returns an list of <see cref="T:Weavy.Core.Models.Embed"/> objects.</returns>
</member>
<member name="M:Weavy.Core.Services.ConversationService.GetAsMember(System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>
Gets a <see cref="T:Weavy.Core.Models.Conversation"/> object from the repository.
Expand Down
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
Expand Up @@ -17,4 +17,4 @@
[assembly: Guid("70cffd0f-7b12-43ec-9c57-9080937a6b04")]

// Assembly version
[assembly: AssemblyVersion("8.7.1")]
[assembly: AssemblyVersion("8.8.0")]
8 changes: 4 additions & 4 deletions src/Weavy.csproj
Expand Up @@ -364,17 +364,17 @@
<Reference Include="System.Xaml" />
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq" />
<Reference Include="Weavy.Bundler, Version=8.7.1.0, Culture=neutral, PublicKeyToken=null">
<Reference Include="Weavy.Bundler, Version=8.8.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>..\lib\Weavy.Bundler.dll</HintPath>
</Reference>
<Reference Include="Weavy.Core, Version=8.7.1.0, Culture=neutral, PublicKeyToken=null">
<Reference Include="Weavy.Core, Version=8.8.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>..\lib\Weavy.Core.dll</HintPath>
</Reference>
<Reference Include="Weavy.Web, Version=8.7.1.0, Culture=neutral, PublicKeyToken=null">
<Reference Include="Weavy.Web, Version=8.8.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>..\lib\Weavy.Web.dll</HintPath>
</Reference>
<Reference Include="WindowsBase" />
<Reference Include="wvy, Version=8.7.1.0, Culture=neutral, PublicKeyToken=null">
<Reference Include="wvy, Version=8.8.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>..\lib\wvy.exe</HintPath>
</Reference>
</ItemGroup>
Expand Down
Binary file modified tools/Weavy.Build.dll
Binary file not shown.

0 comments on commit cd20c27

Please sign in to comment.