Skip to content

Commit

Permalink
Release version to 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tareqimbasher committed Apr 2, 2024
1 parent b982d44 commit f236f22
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 13 deletions.
14 changes: 6 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,10 @@ See the [Troubleshooting](https://github.com/tareqimbasher/NetPad/wiki/Troublesh
* Manage namespaces
* Standard code editor features powered by Monaco editor
* Auto-open unsaved scripts from previous session on launch
* Dump complex objects to the results console and export results to Excel or HTML
* Dump complex objects to the results console
* Export results to Excel or HTML
* Choose the .NET SDK version you want to use per script
* Add and use database connections
* Add database connections and query them with LINQ
* Run SQL queries
* Add NuGet packages
* Reference assemblies from disk
Expand Down Expand Up @@ -120,10 +121,6 @@ See the [Troubleshooting](https://github.com/tareqimbasher/NetPad/wiki/Troublesh
* Export a script as a C# project
* Ability to run a script from the command-line
* Git tracking of script changes
* More advanced `Dump()` capabilities:
* Dump HTML controls and interact with them
* Dump images, SVGs, and bitmaps
* Dump code with syntax highlighting
* Quality of Life:
* User-defined results styling
* Workspaces/Sessions
Expand Down Expand Up @@ -238,9 +235,10 @@ electronize build /target custom "osx-arm64;mac" /electron-arch arm64 /manifest

Packaged files can be found in the `bin/Desktop` folder.

###### Note
###### Notes

> Alternatively, on Linux, the `/scripts/package-electron.sh` script can be used
> 1. To build flatpak files the `flatpak` and `flatpak-builder` packages need to be installed.
> 2. On Linux, the `/scripts/package-electron.sh` script can be used
> to package the Electron app, in which case packaged files can be found in
> the `/dist/` folder.
Expand Down
2 changes: 1 addition & 1 deletion scripts/package-electron.sh
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ package() {
continue
fi

if [[ $filename != *.exe* ]] && [[ $filename != *.zip ]] && [[ $filename != *.pacman ]] && [[ $filename != *.AppImage ]] && [[ $filename != *.deb ]] && [[ $filename != *.rpm ]]; then
if [[ $filename != *.exe* ]] && [[ $filename != *.zip ]] && [[ $filename != *.pacman ]] && [[ $filename != *.AppImage ]] && [[ $filename != *.deb ]] && [[ $filename != *.rpm ]] && [[ $filename != *.flatpak ]] && [[ $filename != *.snap ]]; then
continue
fi

Expand Down
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 @@ -11,9 +11,9 @@
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<RootNamespace>NetPad</RootNamespace>
<Nullable>enable</Nullable>
<AssemblyVersion>0.6.1</AssemblyVersion>
<FileVersion>0.6.1</FileVersion>
<InformationalVersion>0.6.1</InformationalVersion>
<AssemblyVersion>0.7.0</AssemblyVersion>
<FileVersion>0.7.0</FileVersion>
<InformationalVersion>0.7.0</InformationalVersion>
<LangVersion>11</LangVersion>
</PropertyGroup>
<ItemGroup>
Expand Down
14 changes: 13 additions & 1 deletion src/Apps/NetPad.Apps.App/electron.manifest.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const electronBuilderConfig = {
appId: "com.netpad.app",
productName: "NetPad",
copyright: "Copyright © 2020 Tareq Imbasher",
buildVersion: "0.6.1",
buildVersion: "0.7.0",
compression: "maximum",
directories: {
output: "../../../bin/Desktop"
Expand Down Expand Up @@ -49,6 +49,12 @@ const electronBuilderConfig = {
{
target: "rpm",
},
{
target: "flatpak",
},
{
target: "snap",
},
{
target: "zip",
},
Expand Down Expand Up @@ -90,6 +96,12 @@ const electronBuilderConfig = {
rpm: {
artifactName: "${name}-${version}-${os}-${arch}.${ext}",
},
flatpak: {
artifactName: "${name}-${version}-${os}-${arch}.${ext}",
},
snap: {
artifactName: "${name}-${version}-${os}-${arch}.${ext}",
},
nsis: {
artifactName: "${name}-${version}-${os}-${arch}.${ext}",
oneClick: false,
Expand Down

0 comments on commit f236f22

Please sign in to comment.