Skip to content

Commit

Permalink
Update marketplace.json file, changelog, readme and docs for the new …
Browse files Browse the repository at this point in the history
…feature.
  • Loading branch information
skttl committed Mar 25, 2023
1 parent 756f03d commit 5a33c9e
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 11 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 3.1.0

- You can now choose which index or searcher you want to use for searching.
- Fix casing error in backoffice files.

## 3.0.0

- Upgraded to Umbraco 10
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Full Text Search

[![NuGet release](https://img.shields.io/nuget/v/Our.Umbraco.FullTextSearch.svg)](https://www.nuget.org/packages/Our.Umbraco.FullTextSearch)
[![Our Umbraco project page](https://img.shields.io/badge/our-umbraco-orange.svg)](https://our.umbraco.com/packages/website-utilities/full-text-search-8/)

Full Text Search is a fast, powerful and easy to setup search solution for Umbraco sites.

Expand All @@ -19,7 +18,7 @@ Full Text Search can be installed via NuGet

- 1.x.x: Umbraco 8.1+
- 2.x.x: Umbraco 9
- 3.x.x: Umbraco 10
- 3.x.x: Umbraco 10/11

#### NuGet package repository

Expand All @@ -31,10 +30,10 @@ To [install from NuGet](https://www.nuget.org/packages/Our.Umbraco.FullTextSearc

For details on how to use the Full Text Search package, please refer to our documentation.

[v1.x Developers Guide](developers-guide-v1.md)
[v1.x Developers Guide](docs/developers-guide-v1.md)
The guide for v1 (the Umbraco 8 version)

[v2.x-v3.x Developers Guide](developers-guide-v2.md)
[v2.x-v3.x Developers Guide](docs/developers-guide-v2.md)
The guide for v2 and v3 (the Umbraco 9-10 / net core version)

---
Expand Down
6 changes: 6 additions & 0 deletions docs/developers-guide-v2.md
Original file line number Diff line number Diff line change
Expand Up @@ -314,3 +314,9 @@ Adds Content Type aliases to the list of allowed Content Types, in order to limi

`RemoveAllowedContentTypes(string[] aliases)` or `RemoveAllowedContentType(string alias)`
Removes Content Type aliases from the list of allowed Content Types.

`SetIndex(string index)`
Set which index to search. By default, Full Text Search will search in the built in External Index, but if you have content in another index you want to search - you can configure this here. Note, this only controls which index you are searching. Indexing is still only happening in the external index.

`SetSearcher(string searcher)`
Set which searcher to use for searching. By default, Full Text Search will use the searcher from the selected index (default: the built in External Index).
11 changes: 5 additions & 6 deletions src/Our.Umbraco.FullTextSearch/Our.Umbraco.FullTextSearch.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,17 @@

<PackageId>Our.Umbraco.FullTextSearch</PackageId>
<Product>FullTextSearch</Product>
<Title>Our.Umbraco.FullTextSearch</Title>
<Title>Full Text Search for Umbraco</Title>
<Description>Full Text Search is a fast, powerful and easy to setup search solution for Umbraco sites. Searches the whole page content (also generated content) Simple and easy setup for multiple search types (quoted, fuzzy matching, wildcards etc.) Extends the default ExternalIndex</Description>
<Authors>Søren Kottal</Authors>
<Copyright>Søren Kottal</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/skttl/umbraco-fulltextsearch8</PackageProjectUrl>
<RepositoryUrl>https://github.com/skttl/umbraco-fulltextsearch8</RepositoryUrl>
<PackageIcon>search.png</PackageIcon>

<PackageTags>umbraco plugin package umbraco-marketplace</PackageTags>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<PackageReleaseNotes></PackageReleaseNotes>
</PropertyGroup>

<ItemGroup>
Expand All @@ -24,9 +25,7 @@
</ItemGroup>

<ItemGroup>
<None Include="..\..\docs\search.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\..\README.md" Pack="true" PackagePath="\"/>
<None Include="..\..\docs\search.png" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>
20 changes: 19 additions & 1 deletion umbraco-marketplace.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
{
"$schema": "https://marketplace.umbraco.com/umbraco-marketplace-schema.json",
"AlternatePackageNames": ["Full Text Search"],
"AuthorDetails": {
"Name": "Søren Kottal",
"Description": "4x Umbraco MVP working as Tech Lead and full stack developer at Ecreo, the Umbraco Gold Partner agency in Odense, Denmark.",
"ImageUrl": "https://24days.in/media/cr3nhed0/1644397043794.jpg"
},
"DocumentationUrl": "https://github.com/skttl/umbraco-fulltextsearch8/blob/master/docs/developers-guide-v2.md",
"DiscussionForumUrl": "https://github.com/skttl/umbraco-fulltextsearch8/discussions",
"IssueTrackerUrl": "https://github.com/skttl/umbraco-fulltextsearch8/issues",
"Screenshots": [
{
"ImageUrl": "https://our.umbraco.com/media/wiki/279435/637398594674775124_1l9q1vcvkkgif.gif",
"Caption": "Full Text Search comes with a backoffice section for controlling the searching and indexing of content in your Umbraco site."
}
],
"Category": "Search",
"LicenseTypes": [ "Free" ],
"PackageType": "Package"
"PackageType": "Package",
"Tags": ["search", "examine", "indexing"],
"Title": "Full Text Search"
}

0 comments on commit 5a33c9e

Please sign in to comment.