Skip to content

Commit

Permalink
removed limit (of 5) from results set
Browse files Browse the repository at this point in the history
  • Loading branch information
CoreyHayward committed Dec 18, 2024
1 parent 3b09fb8 commit 3280c9f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<UseWindowsForms>true</UseWindowsForms>
<RootNamespace>Community.PowerToys.Run.Plugin.ClipboardManager</RootNamespace>
<AssemblyName>Community.PowerToys.Run.Plugin.ClipboardManager</AssemblyName>
<Version>0.9.0</Version>
<Version>0.10.0</Version>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<Platforms>x64;ARM64</Platforms>
Expand Down
2 changes: 1 addition & 1 deletion Community.PowerToys.Run.Plugin.ClipboardManager/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public List<Result> Query(Query query)

if (string.IsNullOrWhiteSpace(query?.Search))
{
return clipboardTextItems.Take(5).Select(CreateResult).ToList();
return clipboardTextItems.Select(CreateResult).ToList();
}

var results = new List<Result>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"IsGlobal": false,
"Name": "ClipboardManager",
"Author": "Corey Hayward",
"Version": "0.9.0",
"Version": "0.10.0",
"Language": "csharp",
"Website": "https://github.com/CoreyHayward/PowerToys-Run-ClipboardManager",
"IcoPathDark": "Images\\ClipboardManager.dark.png",
Expand Down

0 comments on commit 3280c9f

Please sign in to comment.