npgsqlrest 1.1.6 → 1.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/readme.md +26 -2
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -25,6 +25,28 @@ NpgsqlRest Client Web App is a command line utility that runs as a configurable
|
|
|
25
25
|
|
|
26
26
|
See the [default configuration file](https://vb-consulting.github.io/npgsqlrest/config/) with descriptions for more information.
|
|
27
27
|
|
|
28
|
+
## Notes Before Installation
|
|
29
|
+
|
|
30
|
+
This package will download an executable file for the target OS on installation (see the postinstall.js script) from the [GitHub release page](https://github.com/vb-consulting/NpgsqlRest/releases/).
|
|
31
|
+
|
|
32
|
+
Currently, only the Windows-64 and Linux-64 builds are supported.
|
|
33
|
+
|
|
34
|
+
The Mac OS builds are missing because I don't have a Mac machine. If someone could help me out with this I'd be grateful.
|
|
35
|
+
|
|
36
|
+
If you try to install this package on MacOS, or any other unsupported OS, installation will report: `Unsupported OS detected: [OS Type]`.
|
|
37
|
+
|
|
38
|
+
To see how you can create your own custom build follow these instructions:
|
|
39
|
+
|
|
40
|
+
- The client application was built from the [`NpgsqlRestClient` project directory](https://github.com/vb-consulting/NpgsqlRest/tree/master/NpgsqlRestClient/).
|
|
41
|
+
|
|
42
|
+
Steps:
|
|
43
|
+
|
|
44
|
+
1) Make sure that you have .NET8 SDK installed and ready.
|
|
45
|
+
2) Clone [NpgsqlRest repository](https://github.com/vb-consulting/NpgsqlRest/tree/master/NpgsqlRest)
|
|
46
|
+
3) Navigate to the [`NpgsqlRestClient` project directory](https://github.com/vb-consulting/NpgsqlRest/tree/master/NpgsqlRestClient/).
|
|
47
|
+
4) Make your desired customizations (or not).
|
|
48
|
+
5) Run publish command, for example, `dotnet publish -r win-x64 -c Release --output [target dir]`
|
|
49
|
+
|
|
28
50
|
## Installation
|
|
29
51
|
|
|
30
52
|
Install `npgsqlrest` using npm:
|
|
@@ -78,6 +100,10 @@ $
|
|
|
78
100
|
|
|
79
101
|
## Changelog
|
|
80
102
|
|
|
103
|
+
### 1.1.7
|
|
104
|
+
|
|
105
|
+
Update readme.
|
|
106
|
+
|
|
81
107
|
### 1.1.6
|
|
82
108
|
### 1.1.5
|
|
83
109
|
### 1.1.4
|
|
@@ -99,5 +125,3 @@ Client Build 1.1.0.0
|
|
|
99
125
|
Npgsql 2.7.1.0
|
|
100
126
|
NpgsqlRest.HttpFiles 1.0.2.0
|
|
101
127
|
NpgsqlRest.TsClient 1.6.0.0
|
|
102
|
-
|
|
103
|
-
https://github.com/vb-consulting/NpgsqlRest/releases/tag/v2.7.1-client-v1.1.0
|