termux-connecting 1.1.5 → 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/bin/postinstall.js +25 -0
- package/bin/termux-connect-pc +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
var G = '\x1b[32m',
|
|
3
|
+
Y = '\x1b[33m',
|
|
4
|
+
C = '\x1b[36m',
|
|
5
|
+
N = '\x1b[0m';
|
|
6
|
+
console.log(G + '━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━' + N);
|
|
7
|
+
console.log(G + ' termux-connecting berhasil diinstall!' + N);
|
|
8
|
+
console.log(G + '━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━' + N);
|
|
9
|
+
console.log('');
|
|
10
|
+
console.log(C + 'Di Termux:' + N);
|
|
11
|
+
console.log(' termux-connecting');
|
|
12
|
+
console.log(' Setup perangkat: update paket, install tools, set password, lihat IP.');
|
|
13
|
+
console.log('');
|
|
14
|
+
console.log(C + 'Di PC/Mac:' + N);
|
|
15
|
+
console.log(' termux-connect-pc');
|
|
16
|
+
console.log(' Koneksi ke Termux: input IP/user/pass, setup SSH key, Telegram alert.');
|
|
17
|
+
console.log('');
|
|
18
|
+
console.log(Y + 'Subcommand PC:' + N);
|
|
19
|
+
console.log(' termux-connect-pc connection Setup/ubah koneksi');
|
|
20
|
+
console.log(' termux-connect-pc check Cek koneksi & kirim alert Telegram');
|
|
21
|
+
console.log(' termux-connect-pc help Bantuan');
|
|
22
|
+
console.log(' termux-connect-pc version Versi');
|
|
23
|
+
console.log('');
|
|
24
|
+
console.log(G + 'Selamat menggunakan!' + N);
|
|
25
|
+
console.log('');
|
package/bin/termux-connect-pc
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "termux-connecting",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.7",
|
|
4
4
|
"description": "CLI setup Termux + koneksi SSH dari PC/Mac dengan Telegram alert",
|
|
5
5
|
"bin": {
|
|
6
6
|
"termux-connecting": "bin/termux-connecting",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"node": ">=12"
|
|
19
19
|
},
|
|
20
20
|
"scripts": {
|
|
21
|
-
"postinstall": "node
|
|
21
|
+
"postinstall": "node bin/postinstall.js",
|
|
22
22
|
"prepublishOnly": "./scripts/bump-version.sh",
|
|
23
23
|
"postpublish": "git push"
|
|
24
24
|
}
|