Skip to content

Commit

Permalink
Pre release upload
Browse files Browse the repository at this point in the history
  • Loading branch information
GwendolyneFreddy committed Jan 11, 2021
1 parent 4c736cc commit 05e9d2f
Show file tree
Hide file tree
Showing 5 changed files with 1,142 additions and 11 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ This is a readme file template for GitHub for mods developed and/or hosted at SH
For each section, I took over, whenever possible, elements of readmes already published in order to maintain a semblance of consistency in the terms used. You just have to keep the ones you need (list of compatible games, installation procedures according to the platform, list of tools used...) and, for the rest, replace "MYMOD" and "Author" by the name of the mod and its author, modify links and fill in appropriate texts. For some sections,I have been as exhaustive as possible: all you have to do is to choose paragraphs you are interested in and delete the others.


Short mod description
Short mod description: Short mod description: obvious, isn't it? :wink:

**Key features:**
- Feature #1
Expand All @@ -46,9 +46,7 @@ Short mod description
- Feature #4
- ...

 

**Note:** If you want to use more complex formating, please have a look <a href="https://github.com/GwendolyneFreddy/Infinity-Animations">here</a> and <a href="https://github.com/SpellholdStudios/1pp">there</a>.
**Note:** If you want to use more complex formating, please have a look <a href="https://github.com/GwendolyneFreddy/Infinity-Animations">here</a> and <a href="https://github.com/SpellholdStudios/1pp">there</a>.<br>


<details><summary>CLICK ME</summary>
Expand All @@ -63,7 +61,7 @@ GitHub markdown emoji listings:
<ins>Tip to underline text</ins>

</p>
</details><br>
</details>
<div align="right"><a href="#top">Back to top</a></div>


Expand Down
23 changes: 23 additions & 0 deletions mymod/mymod-config-default.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# mumod-config-defaut.ini : This file controls which installation options are enabled by default.
# Do not modify this file manually unless you know what you are doing.

# ini section header is required to avoid false detection

[Configurarion_options]
mymod_variable1=1
# mymod_variable1 description
# 1 = first option (recommended) [default] - 2 = second option description

| mymod_variable4 | blabla<br> | string | a name! | <strong>Hello<strong> |

mymod_variable2=1
# mymod_variable2 description
# 1 = first option (recommended) [default] - 2 = second option description - 3 = third option description

mymod_variable3=A
# mymod_variable3 description
# Type a single character

mymod_variable3=Hello
# mymod_variable4 description
# Please enter a name.
54 changes: 54 additions & 0 deletions mymod/mymod.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# 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


# ini section header is required to avoid false detection
[Metadata]

# Full name of the mod, without version number
Name = name of your mod

# Author name or nick, don't use email address
Author = you

# Short description of the mod, main goals, features etc
Description = small description of your mod content.

# Web address of mod readme file (filename is case-sensitive!)
Readme = https://spellholdstudios.github.io/readmes/mymod-readme-english.

# Web address of mod dedicated forum or forum thread
Forum = http://www.shsforums.net/forum/234-miscellaneous-released-mods/

# Web address of mod personal Homepage, no need to duplicate with mod dedicated forum
Homepage = http://www.shsforums.net/topic/your_topic_in_SHS_forums

# 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/yourpersonalaccount/yourmodrepo

# 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

# Dynamic Install Order Category. Pick one category from Overwrite, Fixes, Quests, NPC, Items, Spells, Kits, Tweaks, AI, Sounds, Portraits, UI, Late
Type =

# This mod should be installed *before* the mods listed after the keyword
Before = EET_end

# This mod should be installed *after* the mods listed after the keyword
After = bg2fixpack, EET

# 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 =
Loading

0 comments on commit 05e9d2f

Please sign in to comment.