Skip to content

Commit

Permalink
downgrade to 1.20.1 and make profiles
Browse files Browse the repository at this point in the history
  • Loading branch information
TheAlan404 committed Dec 13, 2023
1 parent 7ad1ae3 commit faf9bd7
Show file tree
Hide file tree
Showing 9 changed files with 128 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
name: Test the server
jobs:
test:
env:
upload_to_mclogs: true
runs-on: ubuntu-latest
steps:
- name: Checkout bc23
Expand Down
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,27 @@

[![mcman badge](https://img.shields.io/badge/uses-mcman-purple?logo=github)](https://github.com/ParadigmMC/mcman)

## Folders

- `profile` - Prism launcher profile
- `config` - Server config files
- `pack` - Packwiz pack generated by mcman
- `server` - mcman build output

<!-- run 'mcman md' to update! -->

<!--start:mcman-server-->
| Version | Type | Loader |
| ------- | ----------------------------- | -------- |
| 1.20.4 | [Quilt](https://quiltmc.org/) | *Latest* |
<!--end:mcman-server-->

## List of Mods

<!--start:mcman-addons-->
| Name | Description | Version |
| ------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ------- |
| [Quilted Fabric API (QFAPI) / Quilt Standard Libraries (QSL)](https://modrinth.com/mod/qsl) | The standard libraries of the Quilt ecosystem. Essential for your modding experience on Quilt! | latest |
| [Quilt Kotlin Libraries (QKL)](https://modrinth.com/mod/qkl) | Quilt's official Kotlin libraries | latest |
| [Mod Menu](https://modrinth.com/mod/modmenu) | Adds a mod menu to view the list of mods you have installed. | latest |
<!--end:mcman-addons-->
12 changes: 12 additions & 0 deletions make_profile.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
@echo off
setlocal

set SOURCE_FOLDER=profile
set ZIP_FILE=profile.zip

if exist "%ZIP_FILE%" del "%ZIP_FILE%"

tar -czf "%ZIP_FILE%" "%SOURCE_FOLDER%"

echo Done
endlocal
8 changes: 8 additions & 0 deletions make_profile.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash

SOURCE_FOLDER=profile
ZIP_FILE=profile.zip

zip -r "$ZIP_FILE" "$SOURCE_FOLDER"

echo "Done"
5 changes: 5 additions & 0 deletions profile/.minecraft/unsup.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
version=1
preset=minecraft

source_format=packwiz
source=https://raw.githack.com/ModFest/modfest-skyandsea/main/pack/pack.toml
17 changes: 17 additions & 0 deletions profile/instance.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[General]
iconKey=default
name=ModFest 1.20: Sky and Sea
InstanceType=OneSix
JoinServerOnLaunch=false
OverrideCommands=false
OverrideConsole=false
notes=
OverrideGameTime=false
OverrideJavaArgs=false
OverrideJavaLocation=false
OverrideMemory=false
OverrideMiscellaneous=false
OverrideNativeWorkarounds=false
OverridePerformance=false
OverrideWindow=false
UseAccountForInstance=false
56 changes: 56 additions & 0 deletions profile/mmc-pack.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{
"components": [
{
"cachedName": "LWJGL 3",
"cachedVersion": "3.3.2",
"cachedVolatile": true,
"dependencyOnly": true,
"uid": "org.lwjgl3",
"version": "3.3.2"
},
{
"cachedName": "Minecraft",
"cachedRequires": [
{
"suggests": "3.3.2",
"uid": "org.lwjgl3"
}
],
"cachedVersion": "1.20.4",
"important": true,
"uid": "net.minecraft",
"version": "1.20.4"
},
{
"cachedName": "Intermediary Mappings",
"cachedRequires": [
{
"equals": "1.20.4",
"uid": "net.minecraft"
}
],
"cachedVersion": "1.20.4",
"cachedVolatile": true,
"dependencyOnly": true,
"uid": "net.fabricmc.intermediary",
"version": "1.20.4"
},
{
"cachedName": "Quilt Loader",
"cachedRequires": [
{
"uid": "net.fabricmc.intermediary"
}
],
"cachedVersion": "0.22.1-beta.4",
"uid": "org.quiltmc.quilt-loader",
"version": "0.22.1-beta.4"
},
{
"cachedName": "unsup",
"cachedVersion": "0.2.3",
"uid": "com.unascribed.unsup"
}
],
"formatVersion": 1
}
12 changes: 12 additions & 0 deletions profile/patches/com.unascribed.unsup.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"formatVersion": 1,
"name": "unsup",
"uid": "com.unascribed.unsup",
"version": "0.2.3",
"+agents": [
{
"name": "com.unascribed:unsup:0.2.3",
"url": "https://repo.sleeping.town"
}
]
}
2 changes: 1 addition & 1 deletion server.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "modfest-skyandsea"
mc_version = "1.20.4"
mc_version = "1.20.1"

[jar]
type = "quilt"
Expand Down

0 comments on commit faf9bd7

Please sign in to comment.