Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0bece35c44
|
||
|
9c48d30159
|
|||
| a016b68355 | |||
| afdef57808 | |||
| 4a3095625c | |||
| f1fc68e7bf | |||
| 825bbd63ea | |||
| 25edfa775b |
16
.drone.yml
Normal file
16
.drone.yml
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
kind: pipeline
|
||||||
|
name: test
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: test
|
||||||
|
image: colthreepv/node-chrome:8
|
||||||
|
commands:
|
||||||
|
- npm install
|
||||||
|
- npm test
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
cpu: 250m
|
||||||
|
memory: 256Mi
|
||||||
|
limits:
|
||||||
|
cpu: 250m
|
||||||
|
memory: 256Mi
|
||||||
11
README.md
11
README.md
@@ -4,8 +4,11 @@ Inspektor is a simple file browser for inspecting the contents of a
|
|||||||
[remoteStorage](https://remotestorage.io) account. It is intended for RS app
|
[remoteStorage](https://remotestorage.io) account. It is intended for RS app
|
||||||
developers and power users.
|
developers and power users.
|
||||||
|
|
||||||
Inspektor is beta software and currently under development. You're invited to
|
You're invited to contribute to this app and/or submit feedback to improve it. Please use the
|
||||||
contribute and/or give feedback: https://gitlab.com/skddc/inspektor
|
[RS Discourse forums](https://community.remotestorage.io/t/rs-inspektor-a-simple-remotestorage-file-browser/428)
|
||||||
|
to post issues or ideas, and/or to request an account for gitea.kosmos.org
|
||||||
|
if you want to submit pull requests directly to the upstream repository. You
|
||||||
|
may also submit Git patches via [e-mail](mailto:raucao@kip.pe).
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
@@ -17,9 +20,9 @@ contribute and/or give feedback: https://gitlab.com/skddc/inspektor
|
|||||||
* [x] Render JSON content tree view (optional source view)
|
* [x] Render JSON content tree view (optional source view)
|
||||||
* [x] Delete documents
|
* [x] Delete documents
|
||||||
* [x] Edit JSON content in tree view
|
* [x] Edit JSON content in tree view
|
||||||
* [ ] Delete directories
|
* [x] Delete directories
|
||||||
* [ ] Edit content source
|
* [ ] Edit content source
|
||||||
* [ ] Render other types content (e.g. audio and video)
|
* [ ] Render other types of content (e.g. audio and video)
|
||||||
* [ ] Copy/move documents
|
* [ ] Copy/move documents
|
||||||
* [ ] Copy/move directories (and enclosed files)
|
* [ ] Copy/move directories (and enclosed files)
|
||||||
* [ ] Loading indicator for any view change that loads remote data
|
* [ ] Loading indicator for any view change that loads remote data
|
||||||
|
|||||||
14
package-lock.json
generated
14
package-lock.json
generated
@@ -9413,13 +9413,13 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"remotestoragejs": {
|
"remotestoragejs": {
|
||||||
"version": "1.0.3",
|
"version": "1.1.0",
|
||||||
"resolved": "https://registry.npmjs.org/remotestoragejs/-/remotestoragejs-1.0.3.tgz",
|
"resolved": "https://registry.npmjs.org/remotestoragejs/-/remotestoragejs-1.1.0.tgz",
|
||||||
"integrity": "sha512-es03OF5+nZ+sRFgxD97qLRApbBs+rdZ5H4aOH5piI4Cz1Y+3PL+jumdZ+w1WDb3XlPSRXr31VhBHGadM1q2n6g==",
|
"integrity": "sha512-No4HnSjrHYRv9m2UWGDPJjb0dyOC0F1Lhfr32dNw2PdQIXlp7pg7eJOGw/hHR6SPBkbkl6P0YEkhiFuSH7yY6g==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"tv4": "1.3.0",
|
"tv4": "1.3.0",
|
||||||
"webfinger.js": "2.6.6",
|
"webfinger.js": "2.7.0",
|
||||||
"xhr2": "0.1.4"
|
"xhr2": "0.1.4"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -11211,9 +11211,9 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"webfinger.js": {
|
"webfinger.js": {
|
||||||
"version": "2.6.6",
|
"version": "2.7.0",
|
||||||
"resolved": "https://registry.npmjs.org/webfinger.js/-/webfinger.js-2.6.6.tgz",
|
"resolved": "https://registry.npmjs.org/webfinger.js/-/webfinger.js-2.7.0.tgz",
|
||||||
"integrity": "sha512-dQpuL01XtluQ9Ndgu62o3pEmIe/ssDoIE0CQsOyavGl04xyHal+Ge4gFerw5V0BFoLTQpD8ZZqaDzb43hG9atw==",
|
"integrity": "sha512-l+UtsuV4zrBKyVAj9VCtwWgscTgadCsdGgL1OvbV102cvydWwJCGXlFIXauzWLzfheIDHfPNRWfgMuwyC6ZfIA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"xhr2": "0.1.4"
|
"xhr2": "0.1.4"
|
||||||
|
|||||||
@@ -45,7 +45,7 @@
|
|||||||
"json-tree-view": "github:skddc/json-tree-view#bugfix/setters",
|
"json-tree-view": "github:skddc/json-tree-view#bugfix/setters",
|
||||||
"loader.js": "^4.2.3",
|
"loader.js": "^4.2.3",
|
||||||
"remotestorage-widget": "^1.3.0",
|
"remotestorage-widget": "^1.3.0",
|
||||||
"remotestoragejs": "^1.0.3"
|
"remotestoragejs": "^1.1.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "6.* || >= 7.*"
|
"node": "6.* || >= 7.*"
|
||||||
|
|||||||
Reference in New Issue
Block a user