Remove downloadCount temporarily

This commit is contained in:
Saoud Rizwan 2025-02-19 15:05:33 -08:00
parent 3fd1f16acb
commit 2491b469e7
4 changed files with 10 additions and 10 deletions

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "claude-dev",
"version": "3.4.0",
"version": "3.4.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "claude-dev",
"version": "3.4.0",
"version": "3.4.1",
"license": "Apache-2.0",
"dependencies": {
"@anthropic-ai/bedrock-sdk": "^0.10.2",

View file

@ -2,7 +2,7 @@
"name": "claude-dev",
"displayName": "Cline",
"description": "Autonomous coding agent right in your IDE, capable of creating/editing files, running commands, using the browser, and more with your permission every step of the way.",
"version": "3.4.1",
"version": "3.4.2",
"icon": "assets/icons/icon.png",
"galleryBanner": {
"color": "#617A91",

View file

@ -181,7 +181,7 @@ const McpMarketplaceCard = ({ item, installedServers }: McpMarketplaceCardProps)
<span className="codicon codicon-star-full" />
<span style={{ wordBreak: "break-all" }}>{item.githubStars?.toLocaleString() ?? 0}</span>
</div>
<div
{/* <div
style={{
display: "flex",
alignItems: "center",
@ -191,7 +191,7 @@ const McpMarketplaceCard = ({ item, installedServers }: McpMarketplaceCardProps)
}}>
<span className="codicon codicon-cloud-download" />
<span style={{ wordBreak: "break-all" }}>{item.downloadCount?.toLocaleString() ?? 0}</span>
</div>
</div> */}
{item.requiresApiKey && (
<span className="codicon codicon-key" title="Requires API key" style={{ flexShrink: 0 }} />
)}

View file

@ -21,7 +21,7 @@ const McpMarketplaceView = () => {
const [isRefreshing, setIsRefreshing] = useState(false)
const [searchQuery, setSearchQuery] = useState("")
const [selectedCategory, setSelectedCategory] = useState<string | null>(null)
const [sortBy, setSortBy] = useState<"downloadCount" | "stars" | "name" | "newest">("downloadCount")
const [sortBy, setSortBy] = useState<"newest" | "stars" | "name">("newest")
const categories = useMemo(() => {
const uniqueCategories = new Set(items.map((item) => item.category))
@ -41,8 +41,8 @@ const McpMarketplaceView = () => {
})
.sort((a, b) => {
switch (sortBy) {
case "downloadCount":
return b.downloadCount - a.downloadCount
// case "downloadCount":
// return b.downloadCount - a.downloadCount
case "stars":
return b.githubStars - a.githubStars
case "name":
@ -232,9 +232,9 @@ const McpMarketplaceView = () => {
}}
value={sortBy}
onChange={(e) => setSortBy((e.target as HTMLInputElement).value as typeof sortBy)}>
<VSCodeRadio value="downloadCount">Most Installs</VSCodeRadio>
<VSCodeRadio value="stars">Most Stars</VSCodeRadio>
{/* <VSCodeRadio value="downloadCount">Most Installs</VSCodeRadio> */}
<VSCodeRadio value="newest">Newest</VSCodeRadio>
<VSCodeRadio value="stars">GitHub Stars</VSCodeRadio>
<VSCodeRadio value="name">Name</VSCodeRadio>
</VSCodeRadioGroup>
</div>