Skip to content

Commit

Permalink
Version 1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kuiper committed Sep 26, 2023
1 parent 3ca8a92 commit 43c2fc2
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 15 deletions.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
+ VERSION 1.7.1; 2023-10-26
- Bugfix: Fix upgrade-conf bug introduced in 1.7.0.


+ VERSION 1.7.0; 2023-10-25
- Feature #24: Automatically skips confirmation if environment variable "CI=true" is defined.
- Other minor tweaks.
Expand Down
26 changes: 13 additions & 13 deletions PupNet.pupnet.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# PUPNET DEPLOY: 1.7.0
# PUPNET DEPLOY: 1.7.1
# Use: 'pupnet --help conf' for information.

# APP PREAMBLE
Expand All @@ -10,19 +10,19 @@ AppShortSummary = Cross-platform deployment utility which packages your .NET pro
AppDescription = """
PupNet Deploy is a cross-platform deployment utility which packages your .NET project as a ready-to-ship
installation file in a single step.

It has been possible to cross-compile console C# applications for sometime now. More recently, the cross-platform
Avalonia replacement for WPF allows fully-featured GUI applications to target a range of platforms, including:
Linux, Windows, MacOS and Android.

Now, PupNet Deploy allows you to ship your dotnet application as:
* AppImage for Linux
* Setup File for Windows
* Flatpak
* Debian Binary Package
* RPM Binary Package
* Plain old Zip

PupNet has good support for internationalization, desktop icons, publisher metadata and custom build operations.
Although developed for .NET, it is also possible to use it to deploy C++ and other kinds of applications.
"""
Expand All @@ -40,7 +40,7 @@ PublisherEmail = [email protected]
# DESKTOP INTEGRATION
DesktopNoDisplay = true
DesktopTerminal = true
DesktopFile =
DesktopFile =
StartCommand = pupnet
PrimeCategory = Development
MetaFile = Deploy/PupNet.metainfo.xml
Expand All @@ -57,17 +57,17 @@ IconFiles = """
"""

# DOTNET PUBLISH
DotnetProjectPath =
DotnetProjectPath =
DotnetPublishArgs = -p:Version=${APP_VERSION} --self-contained true -p:PublishReadyToRun=true -p:DebugType=None -p:DebugSymbols=false
DotnetPostPublish =
DotnetPostPublishOnWindows =
DotnetPostPublish =
DotnetPostPublishOnWindows =

# PACKAGE OUTPUT
PackageName = PupNet-Deploy
OutputDirectory = Deploy/OUT

# APPIMAGE OPTIONS
AppImageArgs =
AppImageArgs =
AppImageVersionOutput = false

# FLATPAK OPTIONS
Expand All @@ -80,7 +80,7 @@ FlatpakFinishArgs = """
--filesystem=host
--share=network
"""
FlatpakBuilderArgs =
FlatpakBuilderArgs =

# RPM OPTIONS
RpmAutoReq = false
Expand Down Expand Up @@ -109,6 +109,6 @@ DebianRecommends = """
SetupAdminInstall = false
SetupCommandPrompt = PupNet Console
SetupMinWindowsVersion = 10
SetupSignTool =
SetupSuffixOutput =
SetupVersionOutput = false
SetupSignTool =
SetupSuffixOutput =
SetupVersionOutput = true
2 changes: 1 addition & 1 deletion PupNet/ConfigurationReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ public string ToString(DocStyles style)

if (style == DocStyles.NoComments)
{
sb.Append($"# Use: '{Program.CommandName} --{ArgumentReader.HelpLongArg} conf' for information.");
sb.AppendLine($"# Use: '{Program.CommandName} --{ArgumentReader.HelpLongArg} conf' for information.");
}
}

Expand Down
2 changes: 1 addition & 1 deletion publish.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dotnet pack -c Release -o ./Deploy/OUT -p:Version=1.7.0
dotnet pack -c Release -o ./Deploy/OUT -p:Version=1.7.1
pupnet -r linux-x64 -k deb -y
pupnet -r linux-x64 -k rpm -y
pupnet -r linux-x64 -k appimage -y
Expand Down

0 comments on commit 43c2fc2

Please sign in to comment.