Skip to content

Commit

Permalink
Provide URLs for some missing extensions.
Browse files Browse the repository at this point in the history
There's also a way to check for these in the future; if terms are missing for a library, the search term "unknown" will find it.
  • Loading branch information
tommyettinger committed Nov 14, 2024
1 parent 68632ec commit 4e3c364
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/gdx/liftoff/ui/panels/ThirdPartyPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public void populate(boolean fullscreen) {
}

private SearchEntry addThirdParty(String name) {
return addThirdParty(name, prop.getProperty(name), prop.getProperty(name + "Tip"), prop.getProperty(name + "Url"), prop.getProperty(name + "Terms"));
return addThirdParty(name, prop.getProperty(name, name), prop.getProperty(name + "Tip", "Unknown third-party extension."), prop.getProperty(name + "Url", ""), prop.getProperty(name + "Terms", "unknown"));
}

/**
Expand Down
7 changes: 7 additions & 0 deletions src/main/resources/ui-data/urls.properties
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ squidCoreUrl=https://github.com/yellowstonegames/SquidSquad
squidFreezeCoreUrl=https://github.com/yellowstonegames/SquidSquad
squidFreezeGridUrl=https://github.com/yellowstonegames/SquidSquad
squidFreezeOldUrl=https://github.com/yellowstonegames/SquidSquad
squidFreezePathUrl=https://github.com/yellowstonegames/SquidSquad
squidFreezeTextUrl=https://github.com/yellowstonegames/SquidSquad
squidGlyphUrl=https://github.com/yellowstonegames/SquidSquad
squidGridUrl=https://github.com/yellowstonegames/SquidSquad
Expand All @@ -103,8 +104,14 @@ squidSmoothUrl=https://github.com/yellowstonegames/SquidSquad
squidStoreCoreUrl=https://github.com/yellowstonegames/SquidSquad
squidStoreGridUrl=https://github.com/yellowstonegames/SquidSquad
squidStoreOldUrl=https://github.com/yellowstonegames/SquidSquad
squidStorePathUrl=https://github.com/yellowstonegames/SquidSquad
squidStoreTextUrl=https://github.com/yellowstonegames/SquidSquad
squidTextUrl=https://github.com/yellowstonegames/SquidSquad
squidWrathCoreUrl=https://github.com/yellowstonegames/SquidSquad
squidWrathGridUrl=https://github.com/yellowstonegames/SquidSquad
squidWrathOldUrl=https://github.com/yellowstonegames/SquidSquad
squidWrathPathUrl=https://github.com/yellowstonegames/SquidSquad
squidWrathTextUrl=https://github.com/yellowstonegames/SquidSquad
squidWorldUrl=https://github.com/yellowstonegames/SquidSquad
squidlibUrl=https://github.com/yellowstonegames/SquidLib
squidlibExtraUrl=https://github.com/yellowstonegames/SquidLib
Expand Down

0 comments on commit 4e3c364

Please sign in to comment.