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

Commit

Permalink
change GUI-YouGet to VDM
Browse files Browse the repository at this point in the history
Former-commit-id: fd46f5b6195d3024b2829a15b4edd7f23d76bb9b [formerly 1a7434e]
Former-commit-id: 78fe9edc4edccb97108d1d720b2782fa4e99cb3a
  • Loading branch information
ingbyr committed May 26, 2018
1 parent cba2025 commit 82a4242
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 20 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
# GUI-YouGet
# Video Download Manager
![](https://img.shields.io/badge/version-0.3.0-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/github/issues/ingbyr/GUI-YouGet.svg)
![](https://img.shields.io/github/stars/ingbyr/VDM.svg)
![](https://img.shields.io/github/forks/ingbyr/VDM.svg)
![](https://img.shields.io/github/issues/ingbyr/VDM.svg)
![](https://img.shields.io/badge/license-MIT-blue.svg)

[中文说明](http://www.ingbyr.com/post/youget-zh/)

# Download
[Download Page](https://github.com/ingbyr/GUI-YouGet/releases)
[Download Page](https://github.com/ingbyr/VDM/releases)

- You can install GUI-YouGet by downloading GUI-YouGet.exe directly
- If you know how to run the jar file, just download the `GUI-YouGet-NEEDJRE.zip`(Requires the [JRE8 ](http://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html)or [JDK8](http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html))
- You can install GUI-YouGet by downloading `VDM.exe` directly
- If you know how to run the jar file, just download the `VDM-NEEDJRE.zip` (Requires [JRE8 ](http://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html) or [JDK8](http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html))


# Screenshots
![](screenshots/main.png)
![](screenshots/MainView.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 `app/log/debug.log` output attached.
If something is broken and `VDM` 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/VDM/issues), with detailed `app/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).
This software is distributed under the [MIT license](https://raw.githubusercontent.com/ingbyr/VDM/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,
Expand Down
Binary file added screenshots/MainView.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed screenshots/main.png
Binary file not shown.
8 changes: 4 additions & 4 deletions src/main/kotlin/com/ingbyr/vdm/utils/VDMUtils.kt
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import java.nio.file.Paths
import kotlin.math.max

object VDMUtils {
const val VDM_UPDATE_URL = "https://github.com/ingbyr/GUI-YouGet/releases/latest"
const val VDM_SOURCE_CODE = "https://github.com/ingbyr/GUI-YouGet"
const val VDM_LICENSE = "https://raw.githubusercontent.com/ingbyr/GUI-YouGet/master/LICENSE.txt"
const val VDM_REPORT_BUGS = "https://github.com/ingbyr/GUI-YouGet/issues"
const val VDM_UPDATE_URL = "https://github.com/ingbyr/VDM/releases/latest"
const val VDM_SOURCE_CODE = "https://github.com/ingbyr/VDM"
const val VDM_LICENSE = "https://raw.githubusercontent.com/ingbyr/VDM/master/LICENSE.txt"
const val VDM_REPORT_BUGS = "https://github.com/ingbyr/VDM/issues"
const val UNKNOWN_VERSION = "0.0.0"
const val DONATION_URL = "https://paypal.me/ingbyr"
const val DB_DOWNLOAD_TASKS = "DB_DOWNLOAD_TASKS"
Expand Down
11 changes: 6 additions & 5 deletions src/main/kotlin/com/ingbyr/vdm/views/MainView.kt
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,12 @@ class MainView : View() {
downloadTaskTableView = tableview(controller.downloadTaskModelList) {
fitToParentSize()
columnResizePolicy = SmartResize.POLICY
column("", DownloadTaskModel::checkedProperty).cellFormat {
val cb = JFXCheckBox("")
cb.isSelected = it
graphic = cb
}
// TODO multi options
// column("", DownloadTaskModel::checkedProperty).cellFormat {
// val cb = JFXCheckBox("")
// cb.isSelected = it
// graphic = cb
// }
column(messages["ui.title"], DownloadTaskModel::titleProperty).pctWidth(40)
column(messages["ui.size"], DownloadTaskModel::sizeProperty)
column(messages["ui.status"], DownloadTaskModel::statusProperty).cellFormat {
Expand Down

0 comments on commit 82a4242

Please sign in to comment.