Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit cfb0a6f

Browse files
committedNov 1, 2020
Add 'Download spec archive' button
1 parent d68c934 commit cfb0a6f

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed
 

‎app/Routes.tsx

+9
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,15 @@ export default class Routes extends React.Component<
244244
>
245245
Load local file
246246
</Dropdown.Item>
247+
<Dropdown.Item
248+
onClick={() => {
249+
shell.openExternal(
250+
'https://github.com/proj3rd/3gpp-specs/archive/master.zip'
251+
);
252+
}}
253+
>
254+
Download spec archive
255+
</Dropdown.Item>
247256
<Dropdown.Item
248257
onClick={() => {
249258
shell.openExternal(

‎app/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "tool3rd",
33
"productName": "tool3rd",
4-
"version": "1.6.0",
4+
"version": "1.6.1",
55
"description": "tool3rd",
66
"main": "./main.prod.js",
77
"author": {

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "tool3rd",
33
"productName": "tool3rd",
4-
"version": "1.6.0",
4+
"version": "1.6.1",
55
"description": "tool3rd",
66
"scripts": {
77
"build": "concurrently \"yarn build-main\" \"yarn build-renderer\" \"yarn build-worker\"",

0 commit comments

Comments
 (0)
Please sign in to comment.