Skip to content

Commit

Permalink
Update version to 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tareqimbasher committed Oct 1, 2024
1 parent 677061e commit b1a1fea
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 34 deletions.
6 changes: 3 additions & 3 deletions src/Apps/NetPad.Apps.App/NetPad.Apps.App.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<PropertyGroup>
<TargetFramework>$(DefaultTargetFramework)</TargetFramework>
<RootNamespace>NetPad</RootNamespace>
<AssemblyVersion>0.7.2</AssemblyVersion>
<FileVersion>0.7.2</FileVersion>
<InformationalVersion>0.7.2</InformationalVersion>
<AssemblyVersion>0.8.0</AssemblyVersion>
<FileVersion>0.8.0</FileVersion>
<InformationalVersion>0.8.0</InformationalVersion>
<IsPackable>false</IsPackable>
<SpaRoot>App\</SpaRoot>
<DefaultItemExcludes>$(DefaultItemExcludes);$(SpaRoot)node_modules\**</DefaultItemExcludes>
Expand Down
6 changes: 3 additions & 3 deletions src/Apps/NetPad.Apps.App/electron.manifest.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
const electronBuilderConfig = {
appId: "com.netpad.app",
productName: "NetPad",
copyright: "Copyright © 2024 Tareq Imbasher",
buildVersion: "0.7.2",
copyright: "Copyright © 2021 Tareq Imbasher",
buildVersion: "0.8.0",
compression: "maximum",
directories: {
output: "../../../bin/Desktop"
Expand Down Expand Up @@ -73,7 +73,7 @@ const electronBuilderConfig = {
},
win: {
artifactName: "${name}-${version}-${os}-${arch}.${ext}",
icon: "../../../wwwroot/favicon.ico",
icon: "../../../wwwroot/favicon-256x256.ico",
target: [
{
target: "nsis"
Expand Down
Binary file not shown.
27 changes: 0 additions & 27 deletions src/Apps/NetPad.Apps.Shells.Tauri/TauriApp/build.sh

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@
},
"bundle": {
"active": true,
"publisher": "Tareq Imbasher",
"copyright": "Copyright © 2021 Tareq Imbasher",
"homepage": "https://github.com/tareqimbasher/NetPad",
"shortDescription": "A cross-platform C# editor and playground",
"category": "DeveloperTool",
"targets": "all",
"windows": {
"nsis": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"mainBinaryName": "netpad-vnext",
"build": {
"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"
},
Expand Down
2 changes: 1 addition & 1 deletion src/Core/NetPad.Runtime/Common/GlobalConsts.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ public static class GlobalConsts
/// <summary>
/// If a data connection resource cache was created with an app version before this version, it will be invalidated and re-scaffolded.
/// </summary>
public static SemanticVersion DataConnectionCacheValidOnOrAfterAppVersion { get; } = new(0, 7, 2);
public static SemanticVersion DataConnectionCacheValidOnOrAfterAppVersion { get; } = new(0, 8, 0);
}

0 comments on commit b1a1fea

Please sign in to comment.