Merge branch 'master' into feature/external-player.js-cleanup
This commit is contained in:
6
.github/config.yml
vendored
6
.github/config.yml
vendored
@@ -1,17 +1,17 @@
|
|||||||
# ProBot Request Info (https://probot.github.io/apps/request-info/)
|
# ProBot Request Info (https://probot.github.io/apps/request-info/)
|
||||||
|
|
||||||
requestInfoReplyComment: >
|
requestInfoReplyComment: >
|
||||||
We would appreciate it if you could provide us with more information about this
|
👋 We would appreciate it if you could provide us with more information about this
|
||||||
issue. <br><br> 
|
issue. <br><br> 
|
||||||
requestInfoLabelToAdd: 'need more info'
|
requestInfoLabelToAdd: 'need more info'
|
||||||
|
|
||||||
# ProBot Welcome (https://probot.github.io/apps/welcome/)
|
# ProBot Welcome (https://probot.github.io/apps/welcome/)
|
||||||
|
|
||||||
newPRWelcomeComment: >
|
newPRWelcomeComment: >
|
||||||
Thanks for opening this pull request! You're awesome.
|
🙌 Thanks for opening this pull request! You're awesome.
|
||||||
<br><br> 
|
<br><br> 
|
||||||
firstPRMergeComment: >
|
firstPRMergeComment: >
|
||||||
Congrats on getting your first pull request landed! <br><br>
|
🎉 Congrats on getting your first pull request landed! <br><br>
|
||||||

|

|
||||||
|
|
||||||
# ProBot WIP (https://probot.github.io/apps/wip/)
|
# ProBot WIP (https://probot.github.io/apps/wip/)
|
||||||
|
|||||||
2
.github/lock.yml
vendored
2
.github/lock.yml
vendored
@@ -1,4 +1,4 @@
|
|||||||
# ProBot Lock (https://probot.github.io/apps/lock/)
|
# ProBot Lock (https://probot.github.io/apps/lock/)
|
||||||
|
|
||||||
daysUntilLock: 180
|
daysUntilLock: 90
|
||||||
lockComment: false
|
lockComment: false
|
||||||
|
|||||||
10
.github/no-response.yml
vendored
10
.github/no-response.yml
vendored
@@ -3,9 +3,7 @@
|
|||||||
daysUntilClose: 7
|
daysUntilClose: 7
|
||||||
responseRequiredLabel: 'need more info'
|
responseRequiredLabel: 'need more info'
|
||||||
closeComment: >
|
closeComment: >
|
||||||
This issue has been automatically closed because there was no response to the
|
This issue has been automatically closed because there was no response to a
|
||||||
maintainer's request for more information from the issue opener. With only the
|
request for more information from the issue opener. Please leave a comment or
|
||||||
information that is currently in the issue, we don't have enough information to
|
open a new issue if you have additional information related to this issue.
|
||||||
take action. Please leave a comment or open a new issue if you have the additional
|
<br><br> 
|
||||||
information we need to investigate further. <br><br>
|
|
||||||

|
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
"mkdirp": "^0.5.1",
|
"mkdirp": "^0.5.1",
|
||||||
"music-metadata": "^1.0.0",
|
"music-metadata": "^1.0.0",
|
||||||
"network-address": "^1.1.0",
|
"network-address": "^1.1.0",
|
||||||
"parse-torrent": "^5.7.3",
|
"parse-torrent": "^6.0.1",
|
||||||
"prettier-bytes": "^1.0.1",
|
"prettier-bytes": "^1.0.1",
|
||||||
"react": "^15.4.2",
|
"react": "^15.4.2",
|
||||||
"react-dom": "^15.4.2",
|
"react-dom": "^15.4.2",
|
||||||
|
|||||||
@@ -191,9 +191,14 @@ function handleSubmit () {
|
|||||||
path: this.state.basePath,
|
path: this.state.basePath,
|
||||||
files: this.state.files,
|
files: this.state.files,
|
||||||
announce: announceList,
|
announce: announceList,
|
||||||
private: this.state.isPrivate,
|
|
||||||
comment: this.state.comment.trim()
|
comment: this.state.comment.trim()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// If torrent is not private, leave private flag unset. This ensures that
|
||||||
|
// the torrent info hash will match the result generated by other tools,
|
||||||
|
// including webtorrent-cli.
|
||||||
|
if (this.state.isPrivate) options.private = true
|
||||||
|
|
||||||
dispatch('createTorrent', options)
|
dispatch('createTorrent', options)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user