@chang-code-hub/screen-file-receiver 2.2.18

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/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # screen-file-receiver
2
+
3
+ Screen file receiver - decode files from DataMatrix codes captured from screen.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install -g @chang-code-hub/screen-file-receiver
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```bash
14
+ # Launch the receiver GUI
15
+ screen-file-receiver
16
+
17
+ # Or use the short alias
18
+ sfr
19
+ ```
20
+
21
+ ## Requirements
22
+
23
+ - Windows OS (x64)
24
+ - .NET Framework 4.8 or later
25
+
26
+ ## CLI
27
+
28
+ This package wraps the Windows desktop application. Running the command launches the WPF GUI.
Binary file
@@ -0,0 +1,20 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <configuration>
3
+ <startup>
4
+ <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
5
+ </startup>
6
+ <runtime>
7
+ <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
8
+ <dependentAssembly>
9
+ <assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
10
+ <bindingRedirect oldVersion="0.0.0.0-4.0.5.0" newVersion="4.0.5.0" />
11
+ </dependentAssembly>
12
+ </assemblyBinding>
13
+ <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
14
+ <dependentAssembly>
15
+ <assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
16
+ <bindingRedirect oldVersion="0.0.0.0-6.0.3.0" newVersion="6.0.3.0" />
17
+ </dependentAssembly>
18
+ </assemblyBinding>
19
+ </runtime>
20
+ </configuration>
package/package.json ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "@chang-code-hub/screen-file-receiver",
3
+ "version": "2.2.18",
4
+ "description": "Screen file receiver - decode files from DataMatrix codes captured from screen",
5
+ "keywords": [
6
+ "datamatrix",
7
+ "qrcode",
8
+ "file-transfer",
9
+ "screen",
10
+ "visual-transfer",
11
+ "opencv"
12
+ ],
13
+ "homepage": "https://github.com/chang/screen-file-transmit",
14
+ "license": "MIT",
15
+ "author": "chang",
16
+ "os": [
17
+ "win32"
18
+ ],
19
+ "cpu": [
20
+ "x64"
21
+ ],
22
+ "bin": {
23
+ "screen-file-receiver": "bin/screen-file-receiver.js",
24
+ "sfr": "bin/screen-file-receiver.js"
25
+ },
26
+ "files": [
27
+ "bin/",
28
+ "dist/",
29
+ "README.md"
30
+ ],
31
+ "publishConfig": {
32
+ "registry": "https://registry.npmjs.org/"
33
+ },
34
+ "engines": {
35
+ "node": ">=14.0.0"
36
+ }
37
+ }