-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.ps1
172 lines (126 loc) · 6.42 KB
/
settings.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
# Settings for the ModpackUploader
# For details/help see: https://github.com/NillerMedDild/ModpackUploader
# =====================================================================//
# CURSEFORGE ACCOUNT SETTINGS
# =====================================================================//
$CURSEFORGE_USER = "UnicorNora"
# ProjectID can be found on the modpack's Curseforge Projects page, under "About This Project"
$CURSEFORGE_PROJECT_ID = 251553
#=====================================================================//
# DEPENDENCIES URL
#=====================================================================//
# File name of the latest https://github.com/Gaz492/twitch-export-builder/releases
$TwitchExportBuilderDLWindows = "twitch-export-builder_windows_amd64.exe"
$TwitchExportBuilderDLLinux = "twitch-export-builder_linux_amd64"
$TwichExportBuilderDLMac = "twitch-export-builder_darwin_amd64"
# File name of the latest https://github.com/TheRandomLabs/ChangelogGenerator/releases
$ChangelogGeneratorDL = "ChangelogGenerator-2.0.0-pre10.jar"
# File name of the latest https://github.com/CrankySupertoon/ModPackDownloader/releases
$ModpackDownloaderDL = "ModpackDownloader-cli-0.6.1.jar"
# =====================================================================//
# MAIN MODPACK SETTINGS
# =====================================================================//
# This is the Pack Name
$CLIENT_FANCY_NAME = "Pyramid Challenge Reborn"
# Name of the Modpack in the ZIP File
$CLIENT_NAME = "PyramidChallengeReborn"
# Version Of The Modpack
$MODPACK_VERSION = "2.4.0"
# Last Version Of The Modpack
# Needed For Changelog Parsing
$LAST_MODPACK_VERSION = "2.3.2"
# Modpacks Forge Version:
# Default: "14.23.5.2854"
$FORGE_VERSION=14.23.5.2855
# =====================================================================//
# CHANGELOG SETTINGS
# =====================================================================//
# Changelog Type
# Can be "markdown", "text" or "html"
$CLIENT_CHANGELOG_TYPE = "html"
# Changelog
# Must be a single string. Use Powershell escaping for new lines etc. New line is `n and indent is `t
$CLIENT_CHANGELOG = "Empty"
# =====================================================================//
# CURSEFORGE PROJECT SETTINGS
# =====================================================================//
# Modpack's Minecraft Version
# @(6756) - is Minecraft 1.12.2
# @(7722) - is Minecraft 1.15.2
# @(8134) - is Minecraft 1.16.4
# More can be found by running GetGameVersions
$GAME_VERSIONS = @(6756)
# Can be "alpha", "beta" or "release"
$CLIENT_RELEASE_TYPE = "release"
#=====================================================================//
# CURSEFORGE CLIENT FILE SETTINGS
#=====================================================================//
# All of these are defined in .build.json.
# Sorry for the inconvience.
#=====================================================================//
# SERVER FILE SETTINGS
#=====================================================================//
# List of Mods to remove for the Server
# In the format @("filename", "filename")
$CLIENT_MODS_TO_REMOVE_FROM_SERVER_FILES = @("betterchat-1.4.jar", "Blur-1.0.4-14.jar", "Controlling-3.0.10.jar", "CrashToMainMenu-client-1.12.2-1.0.0.jar", "CustomBackgrounds-MC1.12-1.1.1.jar", "CustomMainMenu-MC1.12.2-2.0.9.1.jar", "Ding-1.12.2-1.0.2.jar", "forgemod_VoxelMap-1.9.28_for_1.12.2.jar", "FullscreenWindowed-1.12-1.6.0.jar", "gibmemojangstudio-1.0.0.jar", "keywizard-1.12.2-1.7.3.jar", "LoadingScreens-1.12.2-0.3.1.jar", "MadHelp-1.12.2-3.0.0-universal.jar", "MainMenuScale-1.3.2.jar", "moreoverlays-1.15.1-mc1.12.2.jar", "Notes-1.12-1.1.1.jar", "reauth-3.6.0.jar", "ResourceLoader-MC1.12.1-1.5.3.jar", "ResourceReloader-1.0.2.5.jar", "shutupmodelloader-1.12.2-1.0.0.jar", "smooth-scrolling-everywhere-1.1.jar", "ungrabmouse-2.2.jar")
# A continuous line of the folders and files (with extensions) to zip into Server Files.
# Default: @("mods", "config")
$SERVER_CONTENTS_TO_ZIP = @("mods", "config", "ic2_profiles", "scripts", "maps")
# =====================================================================//
# MODULES
# =====================================================================//
# Toggles CurseForge Client Files Generation
# Default: $true
$ENABLE_CURSE_CLIENT_MODULE = $true
# Toggles Modpack Uploading to CurseForge
# Default: $true
$ENABLE_MODPACK_UPLOADER_MODULE = $true
# Toggles Server Files
# Default: $true
$ENABLE_SERVER_FILE_MODULE = $true
# Toggles Changelog Generation. This Reauires an Older Version of the Pack
# Default: $false
$ENABLE_CHANGELOG_GENERATOR_MODULE=$true
# Toggles the Redownloadment or Thrid Party Dependencies Every Time you Conpile the Pack
# Default: $false
$ENABLE_ALWAYS_UPDATE_JARS = $false
# Toggles Extra Logging on/off.
# Default: $false
$ENABLE_EXTRA_LOGGING = $false
# Toggles GitHub Changelog Generator integration on/off.
# Requires extensive setup, this is an advanced step.
# See below link for info:
# https://github.com/github-changelog-generator/github-changelog-generator
# Default: $false
$ENABLE_GITHUB_CHANGELOG_GENERATOR_MODULE = $false
$GITHUB_NAME = "MyName"
$GITHUB_TOKEN = "$GITHUB_NAME`:MyToken"
$GITHUB_REPOSITORY = "MyRepo"
$CHANGES_SINCE_VERSION = "1.0.0"
# =====================================================================//
# ADVANCED
# Do not change anything unless you
# know what you are doing!
# =====================================================================//
# Syntax of the Client ZIP File
$CLIENT_ZIP_NAME = "$CLIENT_NAME-$MODPACK_VERSION"
# Syntax of the Previous Versions Client ZIP File
$LAST_CLIENT_ZIP_NAME = "$CLIENT_NAME-$LAST_MODPACK_VERSION"
# Syntax of the Display name on CurseForge
$CLIENT_FILE_DISPLAY_NAME = "$CLIENT_FANCY_NAME $MODPACK_VERSION"
# ZIP Name for the Server Files
# This reads the values above and ammends server onto it.
$SERVER_ZIP_NAME = "$CLIENT_NAME-Server-$MODPACK_VERSION"
# Display Name for the Server Files
# This reads the values above and ammends server onto it.
$SERVER_FILE_DISPLAY_NAME = "$CLIENT_FANCY_NAME Server $MODPACK_VERSION"
# Can be "markdown", "text" or "html"
# Default: $CLIENT_CHANGELOG_TYPE
$SERVER_CHANGELOG_TYPE = $CLIENT_CHANGELOG_TYPE
# Changelog for the Server
# Must be a single string. Use Powershell escaping for new lines etc. New line is `n and indent is `t
# Default: $CLIENT_CHANGELOG
$SERVER_CHANGELOG = $CLIENT_CHANGELOG
# Release Type for Server Files on CurseForge
# Can be "alpha", "beta" or "release"
$SERVER_RELEASE_TYPE = $CLIENT_RELEASE_TYPE