Skip to content

Commit 961e1c0

Browse files
committed
Update for v1.0.1
1 parent 6732e68 commit 961e1c0

File tree

4 files changed

+20
-5
lines changed

4 files changed

+20
-5
lines changed

CHANGES

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
+ Version 1.0.1; 2023-03-26
2+
- Programs now asks for key-press only on Windows
3+
- Set version correctly
4+
5+
+ Version 1.0.0; 2023-03-22
6+
- Initial release
7+
- Reports version as "3.2.1". This was intentional at the time by way of demonstration.

HelloWorld.pupnet.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ AppId = zone.kuiper.helloworld
2121
# brackets to denote package release, i.e. '1.2.3[1]'. Release refers to a change to the deployment
2222
# package, rather the application. If release part is absent (i.e. '1.2.3'), the release value defaults
2323
# to '1'. Note that the version-release value given here may be overridden from the command line.
24-
AppVersionRelease = 3.2.1[5]
24+
AppVersionRelease = 1.0.1[1]
2525

2626
# Mandatory single line application description.
2727
AppShortSummary = A Hello World application

HelloWorld/Program.cs

+9-4
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
using System;
2020
using System.IO;
2121
using System.Reflection;
22+
using System.Runtime.InteropServices;
2223

2324
namespace HelloWorld
2425
{
@@ -66,10 +67,14 @@ static void Main(string[] args)
6667
Console.WriteLine("pupnet was NOT called with: --property DefineConstants=CUSTOM_FLAG");
6768
#endif
6869

69-
Console.WriteLine();
70-
Console.WriteLine();
71-
Console.WriteLine("Press any key to finish");
72-
Console.ReadKey(false);
70+
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
71+
{
72+
Console.WriteLine();
73+
Console.WriteLine();
74+
Console.WriteLine("Press any key to finish");
75+
Console.ReadKey(false);
76+
}
77+
7378
Console.WriteLine();
7479
}
7580

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@ In this case, the Hello World program will output the following when built, inst
6161
CUSTOM_FLAG defined OK
6262
pupnet was called with: --property DefineConstants=CUSTOM_FLAG;
6363

64+
The application runs in the terminal so, with AppImage, run the program from the command-line rather than
65+
double-clicking from a file manager to see the output.
66+
6467
See the [PupNet Deploy Project](https://github.com/kuiperzone/PupNet-Deploy) for complete instructions and information.
6568

6669
**PupNet Deploy** was created by Andy Thomas at [https://kuiper.zone](https://kuiper.zone).

0 commit comments

Comments
 (0)