Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add jasyncapicmp to the file tools-manual.json #1964

Merged
merged 5 commits into from
Jul 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions components/tools/ToolsCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,13 @@ export default function ToolsCard({ toolData }) {
{toolData.filters.language && <div className="flex flex-col gap-2 mx-6">
<Carddata classes= 'text-sm text-gray-700' heading="LANGUAGE" data = {Data.properties.filters.properties.language.description} type="lang" visible = {visible} setVisible = {setVisible} read={readMore} setRead ={setReadMore} />
<div className="flex gap-2">
<Tag
name={toolData.filters.language.name}
bgColor={toolData.filters.language.color}
borderColor={toolData.filters.language.borderColor}
/>
{toolData.filters.language.map((item, index) => (
<Tag key={index}
name={item.name}
bgColor={item.color}
borderColor={item.borderColor}
/>
))}
</div>
</div>}
{toolData.filters.technology.length > 0 && <div className="flex flex-col gap-2 my-4 mx-6">
Expand Down
22 changes: 20 additions & 2 deletions config/tools-manual.json
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@
"description": "React component to view the difference between two Json based API documents. Supported specifications: JsonSchema, OpenAPI 3.x, AsyncAPI 2.x.",
"links": {
"repoUrl": "https://github.com/udamir/api-diff-viewer",
"websiteUrl": "https://api-diff-viewer.vercel.app/",
"websiteUrl": "https://api-diff-viewer.vercel.app/"
},
"filters": {
"language": "TypeScript",
Expand Down Expand Up @@ -588,7 +588,25 @@
"language": "TypeScript",
"categories": ["compare-tool"]
}
}
},
{
"title": "jasyncapicmp",
"description": "Tool/library/maven-plugin for comparing two AsyncAPI versions and evaluating compatibility.",
"links": {
"websiteUrl": "https://siom79.github.io/jasyncapicmp/",
"repoUrl": "https://github.com/siom79/jasyncapicmp"
},
"filters": {
"language": "Java",
"technology": [
"Maven"
],
"categories": [
"compare-tool"
],
"hasCommercial": false
}
}
]
},
"Others": {
Expand Down
Loading