build also cli
This commit is contained in:
@@ -5,7 +5,7 @@
|
|||||||
AppBaseName = MinecraftModpackUpdater
|
AppBaseName = MinecraftModpackUpdater
|
||||||
AppFriendlyName = Minecraft Modpack Updater
|
AppFriendlyName = Minecraft Modpack Updater
|
||||||
AppId = de.pilzinsel64.minecraft-modpack-updater
|
AppId = de.pilzinsel64.minecraft-modpack-updater
|
||||||
AppVersionRelease = 1.10.0[1]
|
AppVersionRelease =
|
||||||
AppShortSummary = Install and Update Minecraft Modpacks easliy.
|
AppShortSummary = Install and Update Minecraft Modpacks easliy.
|
||||||
AppDescription = """
|
AppDescription = """
|
||||||
Minecraft Modpack Updater is a simple tool to install and update a modpack to a selected minecraft profile by a selected modpack configuration file. It downloads a config file via https and checks the version there and what files has been changed and download the updateded files via a given link from the config.
|
Minecraft Modpack Updater is a simple tool to install and update a modpack to a selected minecraft profile by a selected modpack configuration file. It downloads a config file via https and checks the version there and what files has been changed and download the updateded files via a given link from the config.
|
||||||
@@ -54,7 +54,8 @@ FlatpakPlatformRuntime = org.freedesktop.Platform
|
|||||||
FlatpakPlatformSdk = org.freedesktop.Sdk
|
FlatpakPlatformSdk = org.freedesktop.Sdk
|
||||||
FlatpakPlatformVersion = 25.08
|
FlatpakPlatformVersion = 25.08
|
||||||
FlatpakFinishArgs = """
|
FlatpakFinishArgs = """
|
||||||
--socket=x11
|
--socket=wayland
|
||||||
|
--socket=fallback-x11
|
||||||
--filesystem=home
|
--filesystem=home
|
||||||
--share=network
|
--share=network
|
||||||
"""
|
"""
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
<TargetFramework>net8.0</TargetFramework>
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<AssemblyName>mmu-cli</AssemblyName>
|
<AssemblyName>MinecraftModpackUpdaterCli</AssemblyName>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
92
ModpackUpdater.Apps.Client/app.pupnet.conf
Normal file
92
ModpackUpdater.Apps.Client/app.pupnet.conf
Normal file
@@ -0,0 +1,92 @@
|
|||||||
|
# PUPNET DEPLOY: 1.9.1
|
||||||
|
# Use: 'pupnet --help conf' for information.
|
||||||
|
|
||||||
|
# APP PREAMBLE
|
||||||
|
AppBaseName = MinecraftModpackUpdaterCli
|
||||||
|
AppFriendlyName = Minecraft Modpack Updater CLI
|
||||||
|
AppId = de.pilzinsel64.minecraft-modpack-updater-cli
|
||||||
|
AppVersionRelease =
|
||||||
|
AppShortSummary = Install and Update Minecraft Modpacks easliy.
|
||||||
|
AppDescription = """
|
||||||
|
Minecraft Modpack Updater is a simple tool to install and update a modpack to a selected minecraft profile by a selected modpack configuration file. It downloads a config file via https and checks the version there and what files has been changed and download the updateded files via a given link from the config.
|
||||||
|
"""
|
||||||
|
AppLicenseId = MIT
|
||||||
|
AppLicenseFile = ../LICENSE
|
||||||
|
AppChangeFile =
|
||||||
|
|
||||||
|
# PUBLISHER
|
||||||
|
PublisherName = Pilzinsel64
|
||||||
|
PublisherId = de.pilzinsel64
|
||||||
|
PublisherCopyright = Copyright (C) Pilzinsel64 2025
|
||||||
|
PublisherLinkName = Pilzinsel64 Homepage
|
||||||
|
PublisherLinkUrl = https://pilzinsel64.de
|
||||||
|
PublisherEmail =
|
||||||
|
|
||||||
|
# DESKTOP INTEGRATION
|
||||||
|
DesktopNoDisplay = false
|
||||||
|
DesktopTerminal = false
|
||||||
|
DesktopFile =
|
||||||
|
StartCommand =
|
||||||
|
PrimeCategory =
|
||||||
|
MetaFile =
|
||||||
|
IconFiles = """
|
||||||
|
Assets/app.ico
|
||||||
|
Assets/app.svg
|
||||||
|
"""
|
||||||
|
|
||||||
|
# DOTNET PUBLISH
|
||||||
|
DotnetProjectPath = ModpackUpdater.Apps.Client.Gui.csproj
|
||||||
|
DotnetPublishArgs = -p:Version=${APP_VERSION} --self-contained true -p:DebugType=None -p:DebugSymbols=false -p:PublishSingleFile=true -p:PublishTrimmed=false
|
||||||
|
DotnetPostPublish =
|
||||||
|
DotnetPostPublishOnWindows =
|
||||||
|
|
||||||
|
# PACKAGE OUTPUT
|
||||||
|
PackageName = minecraft-modpack-updater-cli
|
||||||
|
OutputDirectory = ../publish/client-cli
|
||||||
|
|
||||||
|
# APPIMAGE OPTIONS
|
||||||
|
AppImageArgs =
|
||||||
|
AppImageRuntimePath =
|
||||||
|
AppImageVersionOutput = false
|
||||||
|
|
||||||
|
# FLATPAK OPTIONS
|
||||||
|
FlatpakPlatformRuntime = org.freedesktop.Platform
|
||||||
|
FlatpakPlatformSdk = org.freedesktop.Sdk
|
||||||
|
FlatpakPlatformVersion = 25.08
|
||||||
|
FlatpakFinishArgs = """
|
||||||
|
--socket=wayland
|
||||||
|
--socket=fallback-x11
|
||||||
|
--filesystem=home
|
||||||
|
--share=network
|
||||||
|
"""
|
||||||
|
FlatpakBuilderArgs =
|
||||||
|
|
||||||
|
# RPM OPTIONS
|
||||||
|
RpmAutoReq = false
|
||||||
|
RpmAutoProv = true
|
||||||
|
RpmRequires = """
|
||||||
|
krb5-libs
|
||||||
|
libicu
|
||||||
|
openssl-libs
|
||||||
|
"""
|
||||||
|
|
||||||
|
# DEBIAN OPTIONS
|
||||||
|
DebianRecommends = """
|
||||||
|
libc6
|
||||||
|
libgcc1
|
||||||
|
libgssapi-krb5-2
|
||||||
|
libicu70
|
||||||
|
libssl3
|
||||||
|
libstdc++6
|
||||||
|
zlib1g
|
||||||
|
"""
|
||||||
|
|
||||||
|
# WINDOWS SETUP OPTIONS
|
||||||
|
SetupGroupName =
|
||||||
|
SetupAdminInstall = false
|
||||||
|
SetupCommandPrompt =
|
||||||
|
SetupMinWindowsVersion = 10
|
||||||
|
SetupSignTool =
|
||||||
|
SetupSuffixOutput =
|
||||||
|
SetupVersionOutput = false
|
||||||
|
SetupUninstallScript =
|
||||||
12
ModpackUpdater.Apps.Client/publish.sh
Executable file
12
ModpackUpdater.Apps.Client/publish.sh
Executable file
@@ -0,0 +1,12 @@
|
|||||||
|
pupnet -y -v "$1[1]" -r linux-x64 -k appimage
|
||||||
|
#pupnet -y -v "$1[1]" -r linux-x64 -k flatpak
|
||||||
|
#pupnet -y -v "$1[1]"-r linux-x64 -k deb
|
||||||
|
#pupnet -y -v "$1[1]"-r linux-x64 -k rpm
|
||||||
|
pupnet -y -v "$1[1]" -r linux-arm64 -k appimage
|
||||||
|
#pupnet -y -v "$1[1]" -r linux-arm64 -k flatpak
|
||||||
|
#pupnet -y -v "$1[1]"-r linux-arm64 -k deb
|
||||||
|
#pupnet -y -v "$1[1]"-r linux-arm64 -k rpm
|
||||||
|
pupnet -y -v "$1[1]" -r win-x64 -k zip
|
||||||
|
pupnet -y -v "$1[1]" -r win-arm64 -k zip
|
||||||
|
pupnet -y -v "$1[1]" -r osx-x64 -k zip
|
||||||
|
pupnet -y -v "$1[1]" -r osx-arm64 -k zip
|
||||||
Reference in New Issue
Block a user