Skip to content

Commit b1a1fea

Browse files
committed
Update version to 0.8.0
1 parent 677061e commit b1a1fea

7 files changed

Lines changed: 13 additions & 34 deletions

File tree

src/Apps/NetPad.Apps.App/NetPad.Apps.App.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<PropertyGroup>
33
<TargetFramework>$(DefaultTargetFramework)</TargetFramework>
44
<RootNamespace>NetPad</RootNamespace>
5-
<AssemblyVersion>0.7.2</AssemblyVersion>
6-
<FileVersion>0.7.2</FileVersion>
7-
<InformationalVersion>0.7.2</InformationalVersion>
5+
<AssemblyVersion>0.8.0</AssemblyVersion>
6+
<FileVersion>0.8.0</FileVersion>
7+
<InformationalVersion>0.8.0</InformationalVersion>
88
<IsPackable>false</IsPackable>
99
<SpaRoot>App\</SpaRoot>
1010
<DefaultItemExcludes>$(DefaultItemExcludes);$(SpaRoot)node_modules\**</DefaultItemExcludes>

src/Apps/NetPad.Apps.App/electron.manifest.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
const electronBuilderConfig = {
66
appId: "com.netpad.app",
77
productName: "NetPad",
8-
copyright: "Copyright © 2024 Tareq Imbasher",
9-
buildVersion: "0.7.2",
8+
copyright: "Copyright © 2021 Tareq Imbasher",
9+
buildVersion: "0.8.0",
1010
compression: "maximum",
1111
directories: {
1212
output: "../../../bin/Desktop"
@@ -73,7 +73,7 @@ const electronBuilderConfig = {
7373
},
7474
win: {
7575
artifactName: "${name}-${version}-${os}-${arch}.${ext}",
76-
icon: "../../../wwwroot/favicon.ico",
76+
icon: "../../../wwwroot/favicon-256x256.ico",
7777
target: [
7878
{
7979
target: "nsis"
82.3 KB
Binary file not shown.

src/Apps/NetPad.Apps.Shells.Tauri/TauriApp/build.sh

Lines changed: 0 additions & 27 deletions
This file was deleted.

src/Apps/NetPad.Apps.Shells.Tauri/TauriApp/src-tauri/tauri.conf.json5

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@
2121
},
2222
"bundle": {
2323
"active": true,
24+
"publisher": "Tareq Imbasher",
25+
"copyright": "Copyright © 2021 Tareq Imbasher",
26+
"homepage": "https://github.com/tareqimbasher/NetPad",
27+
"shortDescription": "A cross-platform C# editor and playground",
28+
"category": "DeveloperTool",
2429
"targets": "all",
2530
"windows": {
2631
"nsis": {

src/Apps/NetPad.Apps.Shells.Tauri/TauriApp/src-tauri/tauri.conf.linux-x64.json5

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"mainBinaryName": "netpad-vnext",
23
"build": {
34
"beforeBuildCommand": "dotnet publish ../../NetPad.Apps.App/NetPad.Apps.App.csproj -r linux-x64 -c \"Release\" /p:PublishReadyToRun=true /p:PublishSingleFile=false /p:WebBuild=true --no-self-contained"
45
},

src/Core/NetPad.Runtime/Common/GlobalConsts.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ public static class GlobalConsts
1515
/// <summary>
1616
/// If a data connection resource cache was created with an app version before this version, it will be invalidated and re-scaffolded.
1717
/// </summary>
18-
public static SemanticVersion DataConnectionCacheValidOnOrAfterAppVersion { get; } = new(0, 7, 2);
18+
public static SemanticVersion DataConnectionCacheValidOnOrAfterAppVersion { get; } = new(0, 8, 0);
1919
}

0 commit comments

Comments
 (0)