[BUG] amazonwebservices inconsistent version names
I have searched through the issues and didn't find my problem.
- [X] Confirm
Bug description
The versions for amazonwebservices are "plain" and "original-wordmark". No existing equivalent wordmark/non-wordmark types for either versions.
Possible fixes or solutions
I'm still not sure on what should be replaced. It's either: (1) change "plain" to "original", or (2) change "original-wordmark" to "plain-wordmark". Respecting its SVG version, it would be point 1, but basing on other icons (adonisjs, express), it would be point 2.
Additional information
No response
Just found the same case for tailwindcss as well.
Possible solution
Based on develop icons we should:
- Rename
original-wordmarkSVG file tooriginal - Rename
plain-wordmarkSVG file toplain - Rename
line-wordmarkSVG file toline
Then, in devicon.json change the entry as the code below:
{
"name": "amazonwebservices",
"altnames": [
"aws"
],
"tags": [
"cloud",
"hosting",
"server"
],
"versions": {
"svg": [
"original",
"plain",
"line"
],
"font": [
"plain",
"line"
]
},
"color": "#f90",
"aliases": [
{
"base": "original",
"alias": "original-wordmark"
},
{
"base": "plain",
"alias": "plain-wordmark"
},
{
"base": "line",
"alias": "line-wordmark"
}
]
},
I'm not sure if it counts as a change, as long we have aliases to all the possible versions.