This repository has been archived by the owner on Nov 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 295
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Former-commit-id: 0774c5bb78b848a8a3a52eabfb9c86f6e8e8378c [formerly cbab4ca] Former-commit-id: 745a3b0d7f95684a724e267ddf366f6986a21dad
- Loading branch information
Showing
47 changed files
with
355 additions
and
414 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,11 @@ | |
.idea/ | ||
build/ | ||
out/ | ||
app.properties | ||
/app.properties | ||
conf/ | ||
gradle/ | ||
gradlew | ||
gradlew.bat | ||
log/ | ||
/engine/ | ||
GUI-YouGet.iml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,58 @@ | ||
group 'com.ingbyr.guiyouget' | ||
version '0.2.1' | ||
group "com.ingbyr.guiyouget" | ||
version "0.2.2" | ||
|
||
buildscript { | ||
ext.kotlin_version = '1.1.60' | ||
ext.kotlin_version = "1.2.20" | ||
|
||
repositories { | ||
mavenCentral() | ||
} | ||
dependencies { | ||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" | ||
classpath group: "de.dynamicfiles.projects.gradle.plugins", name: "javafx-gradle-plugin", version: "8.8.2" | ||
} | ||
} | ||
|
||
apply plugin: 'kotlin' | ||
|
||
jar { | ||
manifest { | ||
attributes('Main-Class': 'com.ingbyr.guiyouget.MainKt') | ||
} | ||
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } } | ||
} | ||
|
||
apply plugin: "kotlin" | ||
apply plugin: "javafx-gradle-plugin" | ||
|
||
sourceCompatibility = 1.8 | ||
|
||
|
||
repositories { | ||
mavenCentral() | ||
jcenter() | ||
mavenCentral() | ||
} | ||
|
||
dependencies { | ||
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version" | ||
compile 'no.tornado:tornadofx:1.7.10' | ||
compile 'com.jfoenix:jfoenix:1.4.0' | ||
compile 'com.beust:klaxon:0.30' | ||
compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3' | ||
compile 'com.squareup.okhttp3:okhttp:3.9.0' | ||
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" | ||
compile "no.tornado:tornadofx:1.7.14" | ||
compile "com.jfoenix:jfoenix:1.11.1" | ||
compile "com.beust:klaxon:0.30" | ||
compile group: "ch.qos.logback", name: "logback-classic", version: "1.2.3" | ||
compile "com.github.kittinunf.fuel:fuel:1.12.0" | ||
} | ||
|
||
compileKotlin { | ||
kotlinOptions.jvmTarget = "1.8" | ||
} | ||
|
||
compileTestKotlin { | ||
kotlinOptions.jvmTarget = "1.8" | ||
} | ||
|
||
jfx { | ||
verbose = false | ||
mainClass = "com.ingbyr.guiyouget.MainKt" | ||
jfxMainAppJarName="GUI-YouGet.jar" | ||
vendor = "ingbyr" | ||
appName = "GUI-YouGet" | ||
additionalAppResources = "src/main/deploy" | ||
skipMainClassScanning = true | ||
jvmProperties = ["-Dfile.encoding": "UTF-8"] | ||
nativeReleaseVersion = "0.2.2" | ||
bundler = 'exe' | ||
needShortcut = true | ||
bundleArguments = [ | ||
installdirChooser: 'true' | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
version=0.2.2 | ||
you-get-version=0.4.985 | ||
youtube-dl-version=2018.01.18 | ||
proxy-port= | ||
proxy-type= | ||
proxy-address= | ||
storage-path= | ||
download-core=youtube-dl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
29ec6541f4f140bea844df64d7c5b87a28a66400 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
9ae2ad2118e26dd1df2aab680f5ed6b7ebf6c1e7 |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/main/kotlin/com/ingbyr/guiyouget/controllers/ProgressController.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.