Skip to content

Commit

Permalink
usbtreeview: Update to 3.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
rasa committed Aug 4, 2019
1 parent b05c9a7 commit 10e154c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ scoop bucket add rasa https://github.com/rasa/scoops.git
|[time-it](https://github.com/rasa/time_it "https://github.com/rasa/time_it")|[1.2](https://github.com/rasa/time_it "https://github.com/rasa/time_it")|Time disk I/O|[MIT](https://opensource.org/licenses/MIT "https://opensource.org/licenses/MIT")|
|[tmac](https://technitium.com/tmac/ "https://technitium.com/tmac/")|[6.0.7](https://technitium.com/tmac/ "https://technitium.com/tmac/")|Spoof MAC address|[Freeware](https://en.wikipedia.org/wiki/Freeware "https://en.wikipedia.org/wiki/Freeware")|
|[usbdeview-ids](http://www.linux-usb.org/usb-ids.html "http://www.linux-usb.org/usb-ids.html")|[<i>latest</i>](http://www.linux-usb.org/usb-ids.html "http://www.linux-usb.org/usb-ids.html")|USB device database used by Nirsoft's usbdeview|[GPL-2.0-only](https://opensource.org/licenses/GPL-2.0-only "https://opensource.org/licenses/GPL-2.0-only")|
|[usbtreeview](http://www.uwe-sieber.de/usbtreeview_e.html "http://www.uwe-sieber.de/usbtreeview_e.html")|[3.3.5](http://www.uwe-sieber.de/usbtreeview_e.html "http://www.uwe-sieber.de/usbtreeview_e.html")|USB device tree viewer|[Freeware](https://en.wikipedia.org/wiki/Freeware "https://en.wikipedia.org/wiki/Freeware")|
|[usbtreeview](http://www.uwe-sieber.de/usbtreeview_e.html "http://www.uwe-sieber.de/usbtreeview_e.html")|[3.3.6](http://www.uwe-sieber.de/usbtreeview_e.html "http://www.uwe-sieber.de/usbtreeview_e.html")|USB device tree viewer|[Freeware](https://en.wikipedia.org/wiki/Freeware "https://en.wikipedia.org/wiki/Freeware")|
|[vlc-bluray-plugin](https://www.videolan.org/ "https://www.videolan.org/")|[<i>2018.03.25</i>](https://www.videolan.org/ "https://www.videolan.org/")|VLC Blu-ray plugin|[GPL-2.0-only](https://opensource.org/licenses/GPL-2.0-only "https://opensource.org/licenses/GPL-2.0-only")|
|[vlc-installer](https://github.com/rasa/vlc_installer "https://github.com/rasa/vlc_installer")|[2.2.4](https://github.com/rasa/vlc_installer "https://github.com/rasa/vlc_installer")|Download and install the VLC media player and related plugins (deprecated)|[MIT](https://opensource.org/licenses/MIT "https://opensource.org/licenses/MIT")|
|[wfc](https://www.binisoft.org/wfc.php "https://www.binisoft.org/wfc.php")|[6.0.2.0](https://www.binisoft.org/wfc.php "https://www.binisoft.org/wfc.php")|Powerful tool which extends the functionality of Windows Firewall and provides new extra features which makes Windows Firewall better|[Freeware](https://en.wikipedia.org/wiki/Freeware "https://en.wikipedia.org/wiki/Freeware")|
Expand Down
4 changes: 2 additions & 2 deletions usbtreeview.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"bin": "usbtreeview.exe",
"checkver": "USB Device Tree Viewer V([\\d.]+)",
"description": "USB device tree viewer",
"hash": "360d9eb1161dc4b2c38bc305dd523fce17ba828ecebdadfb1aecf257f1c66c7f",
"hash": "68d5dd469a1c8522a762fd0a7f743fd40475b25fbdb121a0546f50d908467468",
"homepage": "http://www.uwe-sieber.de/usbtreeview_e.html",
"license": "Freeware",
"shortcuts": [
Expand All @@ -23,5 +23,5 @@
]
],
"url": "http://www.uwe-sieber.de/files/usbtreeview.zip",
"version": "3.3.5"
"version": "3.3.6"
}
9 changes: 5 additions & 4 deletions validate.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def decode(s):
if re.match('^schema', file):
sys.exit(0)

print('Validating %s via %s' % (file, schema_name))
#print('Validating %s via %s' % (file, schema_name))

with open(schema_name, 'r') as f:
schema_data = json.load(f)
Expand All @@ -77,10 +77,11 @@ def decode(s):
validate(json_data, schema_data)

except Exception as e:
print("%s failed" % file)
trace = traceback.format_exc()
print(trace)
with open(failed, 'a+') as f:
f.write(trace)
print(e)
#with open(failed, 'a+') as f:
# f.write(trace)
sys.exit(1)

sys.exit(0)

0 comments on commit 10e154c

Please sign in to comment.