-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c2c1e90
commit 7911fa1
Showing
3 changed files
with
23 additions
and
39 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 |
---|---|---|
@@ -1,57 +1,37 @@ | ||
# File encoding: preferred UTF8 (no BOM) if unicode characters are present, it can be ANSI for English-only | ||
# File format: ini as default and then HJSON/JSON5/JSONC/JSON (JSON doesn't allow comments) for advanced modders who want to use benefits of those file formats | ||
# File name: it must be the same as tp2 name: MyMod.tp2 => MyMod.ini (.hjson/.json5/.jsonc/.json) | ||
# File location: the same folder where .tp2 file is present | ||
# File content: every key=value pair is optional, key names are case insensitive | ||
# Never copy this from other mod, always use https://github.com/ALIENQuake/ProjectInfinity/wiki/Adding-metadata-for-mod | ||
# Filename must be the same as tp2 basename, placed at the same folder where | ||
# .tp2 file is located, use UTF8 (without BOM) encoding, everything is optional | ||
|
||
# ini section header is required to avoid false detection | ||
[Metadata] | ||
|
||
# Full name of the mod, without version number | ||
# Full name of the mod, without the version number, without the list of supported games, without the version number | ||
Name = Generalized Biffing | ||
|
||
# Author name or nick, don't use email address | ||
# Author name or nick, don't use an email address | ||
Author = the bigg | ||
|
||
# Short description of the mod, main goals, features etc | ||
Description = This WeiDU mod allows you to biff the content of the override folder for improved performance, that means the files are converted into the BIF file format and moved into the data folder. This is compatible with the common WeiDU stack un-install operation. The game thereby loads much faster again and the performance is running pretty smoothly without jerking. | ||
|
||
# Web address of mod readme file (filename is case-sensitive!) | ||
# Web address of mod readme file (filename is case-sensitive!), comma-separated list. You can link to txt, md, html, pdf etc. | ||
Readme = http://spellholdstudios.github.io/readmes/generalized_biffing-readme-english.html | ||
|
||
# Web address of mod Homepage | ||
Homepage = http://www.shsforums.net/topic/39238-generalized-biffing/ | ||
|
||
# Web address of mod dedicated forum or forum thread | ||
# Web address of mod dedicated forum or forum thread | ||
Forum = http://www.shsforums.net/topic/60716-generalized-biffing-updated-to-v25/ | ||
|
||
# if you use Github.com (preferred hosting site), simply use github.com/AccountOrOrgName/RepositoryName | ||
# If you use other hosting sites, please check requirements and put direct download link | ||
Download = https://github.com/SpellholdStudios/generalized_biffing | ||
|
||
# Requirements for other hosting sites: | ||
# - forum attachments won't work because the download links will be changed every time when you update mod package | ||
# - mod package should be downloaded using 'wget' commandline tool: wget.exe --no-check-certificate 'link' | ||
# - it's possible to preform file size check using 'wget' commandline tool: wget.exe --no-check-certificate --spider 'link' | ||
# - links do not expire after 30 or more days without download (speeedyshare, mediafire etc has forced expiration dates) | ||
# - hosting site won't require user interaction or captcha (googledrive, mediafire etc require user interaction) | ||
# - hosting site don't advertise any kind of adware/crapware etc | ||
# Web address of mod personal Homepage, no need to duplicate with a mod dedicated forum | ||
Homepage = http://www.shsforums.net/topic/39238-generalized-biffing/ | ||
|
||
# if you use GitHub.com, simply use https://github.com/AccountOrOrgName/RepositoryName | ||
# read more about Delta Updates https://github.com/ALIENQuake/ProjectInfinity/wiki/Delta-Updates-for-mods-hosted-at-Github | ||
Download = https://github.com/SpellholdStudios/generalized_biffing | ||
|
||
# Type of LABELs used by the mod, read more here https://www.gibberlings3.net/forums/topic/32516-tutorial-what-is-label | ||
LabelType = GloballyUnique | ||
|
||
# Dynamic Install Order Category | ||
Type = Last | ||
|
||
# This mod should be installed *before* the mods listed after the keyword | ||
Before = | ||
|
||
# This mod should be installed *after* the mods listed after the keyword | ||
After = * | ||
|
||
# The listed mods are required to be installed *before* this mod | ||
# Require-Earlier = | ||
|
||
# The listed mods are required to be installed *after* this mod | ||
# Require-Later = |
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