Skip to content

Tricked-dev/argoninstallerrepo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TModInstaller repo

.github/workflows/update.yml

Minecraft mod installer gui application repository

current repos:

Contributing to the STD repo

The std repo is mend to be a selective repo for useful mods you can add new mods by editing the std_data.json file.

Creating a TMOD Installer repo

Creating a TMOD Installer repo is pretty easy you can view the example above.

important notes for hosting a repo:

Typescript interfaces to create a repo:

interface DownloadMod {
	mcversion: string;
	version: string;
	// Hash of the mod supported formats, sha256, sha512, sha1, md5; syntax md5;<hash>
	hash: string;
	url: string;
	filename: string;
	id: string;
}

interface Mod {
	// Nicknames of this mod
	nicknames: string[];
	// ID OF THIS MOD
	forgeid: string;
	// Displayname
	display: string;
	description: string;
	// URL to the icon of this mod
	icon: string;
	categories: string[];
	// Array of mod-ids this "mod" conflicts with
	conflicts: string[];
	// Room for additional meta for this mod homepage github, discord, Creator...
	meta: Record<string, string>;
	downloads: DownloadMod[];
}

interface repo {
	// THE id of your repo this allows users to remove your repo and have all mods be removed and allows them to view where the mod is from
	id: string;
	// Mods that exist
	mods: Mod[];
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

 

Packages

No packages published