Skip to content

Commit 43c2fc2

Browse files
author
kuiper
committed
Version 1.7.1
1 parent 3ca8a92 commit 43c2fc2

File tree

4 files changed

+19
-15
lines changed

4 files changed

+19
-15
lines changed

CHANGES

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
+ VERSION 1.7.1; 2023-10-26
2+
- Bugfix: Fix upgrade-conf bug introduced in 1.7.0.
3+
4+
15
+ VERSION 1.7.0; 2023-10-25
26
- Feature #24: Automatically skips confirmation if environment variable "CI=true" is defined.
37
- Other minor tweaks.

PupNet.pupnet.conf

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# PUPNET DEPLOY: 1.7.0
1+
# PUPNET DEPLOY: 1.7.1
22
# Use: 'pupnet --help conf' for information.
33

44
# APP PREAMBLE
@@ -10,19 +10,19 @@ AppShortSummary = Cross-platform deployment utility which packages your .NET pro
1010
AppDescription = """
1111
PupNet Deploy is a cross-platform deployment utility which packages your .NET project as a ready-to-ship
1212
installation file in a single step.
13-
13+
1414
It has been possible to cross-compile console C# applications for sometime now. More recently, the cross-platform
1515
Avalonia replacement for WPF allows fully-featured GUI applications to target a range of platforms, including:
1616
Linux, Windows, MacOS and Android.
17-
17+
1818
Now, PupNet Deploy allows you to ship your dotnet application as:
1919
* AppImage for Linux
2020
* Setup File for Windows
2121
* Flatpak
2222
* Debian Binary Package
2323
* RPM Binary Package
2424
* Plain old Zip
25-
25+
2626
PupNet has good support for internationalization, desktop icons, publisher metadata and custom build operations.
2727
Although developed for .NET, it is also possible to use it to deploy C++ and other kinds of applications.
2828
"""
@@ -40,7 +40,7 @@ PublisherEmail = [email protected]
4040
# DESKTOP INTEGRATION
4141
DesktopNoDisplay = true
4242
DesktopTerminal = true
43-
DesktopFile =
43+
DesktopFile =
4444
StartCommand = pupnet
4545
PrimeCategory = Development
4646
MetaFile = Deploy/PupNet.metainfo.xml
@@ -57,17 +57,17 @@ IconFiles = """
5757
"""
5858

5959
# DOTNET PUBLISH
60-
DotnetProjectPath =
60+
DotnetProjectPath =
6161
DotnetPublishArgs = -p:Version=${APP_VERSION} --self-contained true -p:PublishReadyToRun=true -p:DebugType=None -p:DebugSymbols=false
62-
DotnetPostPublish =
63-
DotnetPostPublishOnWindows =
62+
DotnetPostPublish =
63+
DotnetPostPublishOnWindows =
6464

6565
# PACKAGE OUTPUT
6666
PackageName = PupNet-Deploy
6767
OutputDirectory = Deploy/OUT
6868

6969
# APPIMAGE OPTIONS
70-
AppImageArgs =
70+
AppImageArgs =
7171
AppImageVersionOutput = false
7272

7373
# FLATPAK OPTIONS
@@ -80,7 +80,7 @@ FlatpakFinishArgs = """
8080
--filesystem=host
8181
--share=network
8282
"""
83-
FlatpakBuilderArgs =
83+
FlatpakBuilderArgs =
8484

8585
# RPM OPTIONS
8686
RpmAutoReq = false
@@ -109,6 +109,6 @@ DebianRecommends = """
109109
SetupAdminInstall = false
110110
SetupCommandPrompt = PupNet Console
111111
SetupMinWindowsVersion = 10
112-
SetupSignTool =
113-
SetupSuffixOutput =
114-
SetupVersionOutput = false
112+
SetupSignTool =
113+
SetupSuffixOutput =
114+
SetupVersionOutput = true

PupNet/ConfigurationReader.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ public string ToString(DocStyles style)
351351

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

publish.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
dotnet pack -c Release -o ./Deploy/OUT -p:Version=1.7.0
1+
dotnet pack -c Release -o ./Deploy/OUT -p:Version=1.7.1
22
pupnet -r linux-x64 -k deb -y
33
pupnet -r linux-x64 -k rpm -y
44
pupnet -r linux-x64 -k appimage -y

0 commit comments

Comments
 (0)