Skip to content
This repository has been archived by the owner on Nov 24, 2021. It is now read-only.

Commit

Permalink
add screenshots; update readme; fix downloading status
Browse files Browse the repository at this point in the history
Former-commit-id: 2f4b35035a7b7d81c03a8fdffa732e448812dc6f [formerly e133d97]
Former-commit-id: d815b1495b936923ab4d2924864f2c3c285a8ee3
  • Loading branch information
ingbyr committed Sep 26, 2017
1 parent cfa328e commit 824bbc8
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 2 deletions.
35 changes: 34 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
# GUI-YouGet
![](https://img.shields.io/badge/v0.2-pass-green.svg)
![](https://img.shields.io/github/forks/ingbyr/GUI-YouGet.svg)
![](https://img.shields.io/github/stars/ingbyr/GUI-YouGet.svg)
![](https://img.shields.io/badge/license-MIT-blue.svg)
![](https://img.shields.io/github/issues/ingbyr/GUI-YouGet.svg)

## Authors
> [中文说明](http://www.ingbyr.com/2016/06/18/youget-zh/)
# Download
> **NOTICE:** Before you run the GUI-YouGet, you need to install [jre8 ](http://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html)(recommended) or [jdk8](http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html) first.
[GUI-YouGet Download Page](https://github.com/ingbyr/GUI-YouGet/releases)

# Screenshot
![](screenshot/main.png)
![](screenshot/medias.png)
![](screenshot/download.png)

# Feedback bugs
If something is broken and `GUI-YouGet` can't get you things you want, don't panic. (Yes, this happens all the time!)
Open a new issue on [GitHub](https://github.com/ingbyr/GUI-YouGet/issues), with detailed `/log/debug.log` output attached.

# Legal Issues

This software is distributed under the [MIT license](https://raw.githubusercontent.com/ingbyr/GUI-YouGet/master/LICENSE.txt).
In particular, please be aware that
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

# Authors

Made by [@ingbyr](http://www.ingbyr.com)
Binary file added screenshot/download.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshot/main.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshot/medias.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/main/kotlin/com/ingbyr/guiyouget/core/YouGet.kt
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ class YouGet(val url: String) : CoreController() {

override fun runDownloadCommand(formatID: String) {
isDownloading = true
status = "Downloading..."
var line: String?
val args = CoreArgs(core)
when (app.config[CoreUtils.PROXY_TYPE]) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/com/ingbyr/guiyouget/core/YoutubeDL.kt
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ class YoutubeDL(private val url: String) : CoreController() {

override fun runDownloadCommand(formatID: String) {
isDownloading = true
status = "Downloading..."
var line: String?
val args = CoreArgs(core)
// todo remove proxy from this
when (app.config[CoreUtils.PROXY_TYPE]) {
CoreUtils.PROXY_SOCKS -> {
args.add("--proxy",
Expand Down

0 comments on commit 824bbc8

Please sign in to comment.