-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refiz todo o menu do ac, baseei-me no menu do antigo 7Clicker que não funciona mais nos novos javas para quem curtia o antigo menu, uma nostalgia (ainda preciso melhorar a frequencia dos cliques para não parecer tão padrão). Pretendo aumentar a quantia de CPS, estou estudando mais sobre isso, mas 20 já é um bom número XD. Coloquei a bandeira do Gabão no icon e ficou lindo! OBS: Usem com moderação e descansem os dedos! Quem usar no Revinho vai ser banido!
- Loading branch information
1 parent
2c043c7
commit 1f00c00
Showing
25 changed files
with
921 additions
and
567 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
bin | ||
.settings | ||
.classpath | ||
.project | ||
build | ||
# Ignore Gradle project-specific cache directory | ||
.gradle | ||
|
||
# Ignore Gradle build output directory | ||
build |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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,38 +1,56 @@ | ||
plugins { | ||
id 'java' | ||
buildscript { | ||
repositories { | ||
mavenCentral() | ||
maven { url = 'https://plugins.gradle.org/m2/' } | ||
} | ||
dependencies { | ||
classpath 'com.github.jengelman.gradle.plugins:shadow:5.2.0' | ||
} | ||
} | ||
|
||
apply plugin: "java" | ||
apply plugin: 'com.github.johnrengelman.shadow' | ||
|
||
group = project_Group | ||
version = project_Version | ||
|
||
repositories { | ||
mavenCentral() | ||
maven { | ||
url 'https://repo1.maven.org/maven2/' | ||
metadataSources { | ||
artifact() //Look directly for artifact | ||
} | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation 'com.intellij:forms_rt:7.0.3' | ||
implementation 'org.pushing-pixels:trident:1.2' | ||
implementation 'com.github.kwhat:jnativehook:2.2.2' | ||
implementation 'com.apple:AppleJavaExtensions:1.4' | ||
} | ||
|
||
sourceSets { | ||
main { | ||
java { | ||
srcDirs = ['src'] | ||
} | ||
shadowJar { | ||
archiveFileName.set("Gabao Clicker ${project.version}.jar") | ||
|
||
dependencies { | ||
include(dependency('org.pushing-pixels:trident:1.2')) | ||
include(dependency('com.github.kwhat:jnativehook:2.2.2')) | ||
include(dependency('com.apple:AppleJavaExtensions:1.4')) | ||
} | ||
} | ||
|
||
jar { | ||
manifest { | ||
attributes("Main-Class": "me.thiagogebrim.gabaoclicker.Start") | ||
} | ||
from { | ||
configurations.compileClasspath.collect { it.isDirectory() ? it : zipTree(it) } | ||
attributes( | ||
"Manifest-Version": 1.0, | ||
"Main-Class": "me.thiagogebrim.gabaoclicker.AutoClicker" | ||
) | ||
} | ||
} | ||
|
||
//noinspection GroovyUnusedAssignment | ||
sourceCompatibility = '1.8' | ||
//noinspection GroovyUnusedAssignment | ||
targetCompatibility = '1.8' | ||
|
||
tasks.withType(JavaCompile) { | ||
tasks.withType(JavaCompile).configureEach { | ||
options.encoding = 'UTF-8' | ||
} | ||
|
||
build.dependsOn(shadowJar) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
Oops, something went wrong.