-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added publish profiles. - Added readme.
- Loading branch information
Showing
26 changed files
with
771 additions
and
152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Twilight Boxart | ||
A boxart downloader written in C#. Uses various sources and scan methods to determine the correct boxart. | ||
Written for TwilightMenu++ but can be used for other loader UI's with some config changes. 😊 | ||
|
||
## Supported rom types | ||
* Nintendo - Game Boy | ||
* Nintendo - Game Boy Color | ||
* Nintendo - Game Boy Advance | ||
* Nintendo - Nintendo DS | ||
* Nintendo - Nintendo DSi | ||
* Nintendo - Nintendo DSi (DSiWare) | ||
* Nintendo - Nintendo Entertainment System | ||
* Nintendo - Super Nintendo Entertainment System | ||
* Sega - Mega Drive - Genesis | ||
* Sega - Master System - Mark III | ||
* Sega - Game Gear | ||
|
||
## Boxart sources | ||
* [GameTDB](https://gametdb.com) using titleid matching. | ||
* [LibRetro](https://github.com/libretro/libretro-thumbnails) using [NoIntro](https://datomatic.no-intro.org) sha1 matching. | ||
|
||
## Download | ||
[Here](https://github.com/KirovAir/TwilightBoxart/releases). | ||
|
||
## To-do | ||
* Add support for more consoles. (redump.org as disc source) | ||
* Prefilled config support for different loaders. (RetroArch, Wii etc.) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
TwilightBoxart.CLI/Properties/PublishProfiles/Linux - Noframework.pubxml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
https://go.microsoft.com/fwlink/?LinkID=208121. | ||
--> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<PublishProtocol>FileSystem</PublishProtocol> | ||
<Configuration>Release</Configuration> | ||
<Platform>Any CPU</Platform> | ||
<TargetFramework>netcoreapp3.0</TargetFramework> | ||
<PublishDir>bin\Release\linux-x64-no-framework</PublishDir> | ||
<RuntimeIdentifier>linux-x64</RuntimeIdentifier> | ||
<SelfContained>false</SelfContained> | ||
</PropertyGroup> | ||
</Project> |
15 changes: 15 additions & 0 deletions
15
TwilightBoxart.CLI/Properties/PublishProfiles/Linux.pubxml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
https://go.microsoft.com/fwlink/?LinkID=208121. | ||
--> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<PublishProtocol>FileSystem</PublishProtocol> | ||
<Configuration>Release</Configuration> | ||
<Platform>Any CPU</Platform> | ||
<TargetFramework>netcoreapp3.0</TargetFramework> | ||
<PublishDir>bin\Release\linux-x64</PublishDir> | ||
<RuntimeIdentifier>linux-x64</RuntimeIdentifier> | ||
<SelfContained>true</SelfContained> | ||
</PropertyGroup> | ||
</Project> |
15 changes: 15 additions & 0 deletions
15
TwilightBoxart.CLI/Properties/PublishProfiles/MacOS - NoFramework.pubxml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
https://go.microsoft.com/fwlink/?LinkID=208121. | ||
--> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<PublishProtocol>FileSystem</PublishProtocol> | ||
<Configuration>Release</Configuration> | ||
<Platform>Any CPU</Platform> | ||
<TargetFramework>netcoreapp3.0</TargetFramework> | ||
<PublishDir>bin\Release\macos-x64-no-framework</PublishDir> | ||
<RuntimeIdentifier>osx-x64</RuntimeIdentifier> | ||
<SelfContained>false</SelfContained> | ||
</PropertyGroup> | ||
</Project> |
15 changes: 15 additions & 0 deletions
15
TwilightBoxart.CLI/Properties/PublishProfiles/MacOS.pubxml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
https://go.microsoft.com/fwlink/?LinkID=208121. | ||
--> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<PublishProtocol>FileSystem</PublishProtocol> | ||
<Configuration>Release</Configuration> | ||
<Platform>Any CPU</Platform> | ||
<TargetFramework>netcoreapp3.0</TargetFramework> | ||
<PublishDir>bin\Release\macos-x64</PublishDir> | ||
<RuntimeIdentifier>osx-x64</RuntimeIdentifier> | ||
<SelfContained>true</SelfContained> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
[Config] | ||
SdRoot=C:\Users\Jesse\Downloads\roms | ||
BoxArtDir=_nds\TWiLightMenu\boxart | ||
SdRoot= | ||
BoxArtDir={sdroot}\_nds\TWiLightMenu\boxart | ||
BoxartWidth=128 | ||
BoxartHeight=115 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.