Skip to content

Commit

Permalink
Update open source.md
Browse files Browse the repository at this point in the history
Team names on thunderstore do not always equal the author's github name. This resulted in a lot of broken links or incorrect Git references.
  • Loading branch information
Odjit authored Jan 27, 2025
1 parent 34e6c65 commit 5870212
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions dev/open source.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,17 @@ https://thunderstore.io/c/v-rising/api/v1/package/

{% assign all_mods = site.data.OpenSourceMods %}

{% assign server_mods = "KindredCommands,Bloodcraft,XPRising,KindredPortals,AutoBrazier,KindredLogistics,KindredSchematics,Gator_Bounty,BloodyBoss,Sanguis,BloodyEncounters,BloodyWallet,OfflineRaidGuard,RaidGuard,Protector,BloodyRewards,JewelCreator,ShardExtraLife,CoffinSleep,BloodyShop,BloodyMailBox,BloodyPoint,BloodyMerchant,Notify,AutoCloseDoors,StarterKit,KindredArenas,MuteChatPlayer,BetterMissions,BloodRefill,SpiderKiller" | split: "," %}
{% assign server_mods = "KindredCommands,Bloodcraft,XPRising,KindredPortals,AutoBrazier,KindredLogistics,KindredSchematics,Gator_Bounty,BloodyBoss,Sanguis,BloodyEncounters,BloodyWallet,RaidGuard,Protector,BloodyRewards,JewelCreator,ShardExtraLife,CoffinSleep,BloodyShop,BloodyMailBox,BloodyPoint,BloodyMerchant,Notify,AutoCloseDoors,StarterKit,KindredArenas,MuteChatPlayer,BetterMissions,BloodRefill,SpiderKiller" | split: "," %}
{% assign client_mods = "ClientUI,RemoveVersionWatermark,Eclipse" | split: "," %}
{% assign framework_mods = "Bloodstone,VampireCommandFramework,CrimsonSQL,BloodyCore,XPShared" | split: "," %}

{% assign server_mods_data = all_mods | where_exp: "item", "server_mods contains item.name and item.is_deprecated == false" | sort: "date_updated" | reverse %}
{% assign client_mods_data = all_mods | where_exp: "item", "client_mods contains item.name and item.is_deprecated == false" | sort: "date_updated" | reverse %}
{% assign framework_mods_data = all_mods | where_exp: "item", "framework_mods contains item.name and item.is_deprecated == false" | sort: "date_updated" | reverse %}
{% assign server_mods_data = all_mods | where_exp: "item", "server_mods contains item.name" | sort: "date_updated" | reverse %}
{% assign client_mods_data = all_mods | where_exp: "item", "client_mods contains item.name" | sort: "date_updated" | reverse %}
{% assign framework_mods_data = all_mods | where_exp: "item", "framework_mods contains item.name" | sort: "date_updated" | reverse %}

{% assign server_mods_data = server_mods_data | reject_exp: "item", "item.is_deprecated == true" %}
{% assign client_mods_data = client_mods_data | reject_exp: "item", "item.is_deprecated == true" %}
{% assign framework_mods_data = framework_mods_data | reject_exp: "item", "item.is_deprecated == true" %}

<h1>Server Mods</h1>

Expand All @@ -34,7 +38,7 @@ https://thunderstore.io/c/v-rising/api/v1/package/
<tr>
<td><a href="{{ latest_version.website_url }}">{{ mod.name }}</a></td>
<td>{{ latest_version.description }}</td>
<td><a href="https://github.com/{{ mod.owner }}">{{ mod.owner }}</a></td>
<td><a href="https://thunderstore.io/c/v-rising/p{{ mod.owner }}">{{ mod.owner }}</a></td>
</tr>
{% endfor %}
</table>
Expand All @@ -51,7 +55,7 @@ https://thunderstore.io/c/v-rising/api/v1/package/
<tr>
<td><a href="{{ latest_version.website_url }}">{{ mod.name }}</a></td>
<td>{{ latest_version.description }}</td>
<td><a href="https://github.com/{{ mod.owner }}">{{ mod.owner }}</a></td>
<td><a href="https://thunderstore.io/c/v-rising/p{{ mod.owner }}">{{ mod.owner }}</a></td>
</tr>
{% endfor %}
</table>
Expand All @@ -68,7 +72,7 @@ https://thunderstore.io/c/v-rising/api/v1/package/
<tr>
<td><a href="{{ latest_version.website_url }}">{{ mod.name }}</a></td>
<td>{{ latest_version.description }}</td>
<td><a href="https://github.com/{{ mod.owner }}">{{ mod.owner }}</a></td>
<td><a href="https://thunderstore.io/c/v-rising/p{{ mod.owner }}">{{ mod.owner }}</a></td>
</tr>
{% endfor %}
</table>

0 comments on commit 5870212

Please sign in to comment.