Skip to content

Commit

Permalink
2.0.0
Browse files Browse the repository at this point in the history
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
thiagogebrimm committed Jan 6, 2023
1 parent 2c043c7 commit 1f00c00
Show file tree
Hide file tree
Showing 25 changed files with 921 additions and 567 deletions.
9 changes: 4 additions & 5 deletions .gitignore
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
2 changes: 1 addition & 1 deletion .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/jarRepositories.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
GabãoClicker
==========

OBS: Você pode usar ele como um medidor de CPS, basta deixa-lo aberto e posicionar na posição de sua preferência.

Requisitos para rodar
------------
- Java 8.0
Expand Down
54 changes: 36 additions & 18 deletions build.gradle
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 modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
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
Loading

0 comments on commit 1f00c00

Please sign in to comment.