owngit 1.0.2 → 1.0.3
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 +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
OwnGit is a self-hosted Git server for home labs and local machines. It keeps private repositories and their history on your own computer, NAS, or home server, with a browser dashboard for everyday use. Repositories remain ordinary bare Git repositories served by the Git installation on the host.
|
|
4
4
|
|
|
5
|
-
This package installs OwnGit 1.0.
|
|
5
|
+
This package installs OwnGit 1.0.3 and the `owngit` command. It supports macOS on Apple silicon, Linux on x64, Linux on ARM64, and Windows on x64.
|
|
6
6
|
|
|
7
7
|
```sh
|
|
8
8
|
npm install -g owngit
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "owngit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Private Git storage and browser dashboard on your own computer",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/juliankang4/owngit",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"node": ">=18"
|
|
21
21
|
},
|
|
22
22
|
"optionalDependencies": {
|
|
23
|
-
"owngit-darwin-arm64": "1.0.
|
|
24
|
-
"owngit-linux-arm64": "1.0.
|
|
25
|
-
"owngit-linux-x64": "1.0.
|
|
26
|
-
"owngit-win32-x64": "1.0.
|
|
23
|
+
"owngit-darwin-arm64": "1.0.3",
|
|
24
|
+
"owngit-linux-arm64": "1.0.3",
|
|
25
|
+
"owngit-linux-x64": "1.0.3",
|
|
26
|
+
"owngit-win32-x64": "1.0.3"
|
|
27
27
|
}
|
|
28
28
|
}
|