Compare commits

...

12 Commits

Author SHA1 Message Date
Ra
3a035fc9e0 hmmmm maybe not supposed to include these bin folders, ..... guess we'll find out later
Some checks failed
OpenOSRS - CI (push) / Build (push) Has been cancelled
OpenOSRS - CI (push) / Test (push) Has been cancelled
OpenOSRS - CI (push) / Checkstyle main (push) Has been cancelled
OpenOSRS - CI (push) / Checkstyle test (push) Has been cancelled
OpenOSRS - Stale issues and PRs / stale (push) Has been cancelled
OpenOSRS - Scraper / scrape-npcs (push) Has been cancelled
OpenOSRS - Gradle Dependencies / update-wrapper (push) Has been cancelled
2025-09-12 04:23:42 -07:00
ThatGamerBlue
915fb55c0a Merge pull request #3228 from open-osrs/revert-3226-revert-3224-delete-client
Some checks failed
OpenOSRS - CI (push) / Build (push) Has been cancelled
OpenOSRS - CI (push) / Test (push) Has been cancelled
OpenOSRS - CI (push) / Checkstyle main (push) Has been cancelled
OpenOSRS - CI (push) / Checkstyle test (push) Has been cancelled
OpenOSRS - Stale issues and PRs / stale (push) Has been cancelled
OpenOSRS - Scraper / scrape-npcs (push) Has been cancelled
OpenOSRS - Gradle Dependencies / update-wrapper (push) Has been cancelled
client: snake is back on the menu boys
2022-06-28 23:54:31 +01:00
ThatGamerBlue
fe0aea3505 or that one 2022-06-28 23:52:29 +01:00
ThatGamerBlue
47be8143de dont need that one 2022-06-28 23:52:00 +01:00
ThatGamerBlue
aa1f0a2fbc Revert "revert: "thistitlemakesthebothappy: replace the client with something better"" 2022-06-28 23:51:05 +01:00
Owain van Brakel
09b0a5f2d6 Merge remote-tracking branch 'origin/master' 2022-06-27 12:42:24 +02:00
Owain van Brakel
5e37d4765e project(mixins): Fix setCombatInfo 2022-06-27 12:42:12 +02:00
Owain van Brakel
b0fa3e3196 Merge pull request #3227 from open-osrs/oopsie-yet-again 2022-06-23 23:26:25 +02:00
Owain van Brakel
bf1a6c6200 Revert "let's not do this because it doesn't work and i don't care :)"
This reverts commit ffd6ab5317.
2022-06-23 23:21:20 +02:00
Owain van Brakel
f1af3e57e9 project(gradle): Oopsie 2022-06-23 23:20:58 +02:00
ThatGamerBlue
8af6f77e18 Merge pull request #3226 from open-osrs/revert-3224-delete-client
revert: "thistitlemakesthebothappy: replace the client with something better"
2022-06-23 20:56:10 +01:00
ThatGamerBlue
c524cb88a7 Revert "thistitlemakesthebothappy: replace the client with something better" 2022-06-23 20:55:25 +01:00
3493 changed files with 20417 additions and 79 deletions

View File

@@ -23,33 +23,32 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
import org.ajoberstar.grgit.Grgit
import java.io.BufferedReader
import java.io.InputStreamReader
buildscript {
repositories {
mavenLocal()
gradlePluginPortal()
maven(url = "https://raw.githubusercontent.com/open-osrs/hosting/master")
mavenCentral()
}
dependencies {
classpath("org.ajoberstar.grgit:grgit-core:4.1.0")
classpath("com.openosrs:script-assembler-plugin:1.0.0")
classpath("com.openosrs:injector-plugin:2.0.1")
}
}
plugins {
id("org.ajoberstar.grgit") version "4.1.0"
application
}
val localGitCommit: String = try {
val projectPath = rootProject.projectDir.absolutePath
Grgit.open(mapOf("dir" to projectPath)).head().id
} catch (_: Exception) {
"n/a"
}
val proc = ProcessBuilder("git", "rev-parse", "HEAD")
.directory(rootProject.projectDir)
.redirectErrorStream(true)
.start()
proc.waitFor()
BufferedReader(InputStreamReader(proc.inputStream)).readText().trim()
.ifEmpty { "n/a" }
} catch (_: Exception) { "n/a" }
allprojects {
group = "com.openosrs"
@@ -142,8 +141,8 @@ subprojects {
tasks {
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
withType<AbstractArchiveTask> {
@@ -165,7 +164,7 @@ subprojects {
exclude("**/RoomType.java")
}
/*withType<Jar> {
withType<Jar> {
doLast {
// sign jar
if (System.getProperty("signKeyStore") != null) {
@@ -187,7 +186,7 @@ subprojects {
}
}
}
}*/
}
}
configurations.compileOnly.get().extendsFrom(configurations["annotationProcessor"])

View File

@@ -29,11 +29,12 @@ plugins {
repositories {
mavenCentral()
maven(url = "https://raw.githubusercontent.com/open-osrs/hosting/master")
}
dependencies {
implementation(gradleApi())
implementation(group = "net.runelite", name = "fernflower", version = "07082019")
// Switch from the old net.runelite fernflower (no longer hosted)
// to the maintained Vineflower fork which provides the same API.
implementation(group = "org.vineflower", name = "vineflower", version = "1.11.1")
implementation(group = "org.json", name = "json", version = "20190722")
}
}

View File

@@ -155,8 +155,6 @@ open class BootstrapTask @Inject constructor(@Input val type: String) : DefaultT
it.file.name.contains("runelite-api") ||
it.file.name.contains("runelite-jshell")) {
path = "https://github.com/open-osrs/hosting/raw/master/${type}/${it.file.name}"
} else if (it.file.name.contains("injection-annotations")) {
path = "https://github.com/open-osrs/hosting/raw/master/" + group.replace(".", "/") + "/${name}/$version/${it.file.name}"
} else if (!group.contains("runelite")) {
path = "https://repo.maven.apache.org/maven2/" + group.replace(".", "/") + "/${name}/$version/${name}-$version"
if (it.classifier != null && it.classifier != "no_aop") {

View File

@@ -29,8 +29,8 @@ object ProjectVersions {
const val openosrsVersion = "4.31.2"
const val rsversion = 206
const val rsversion = 233
const val cacheversion = 165
const val lombokVersion = "1.18.20"
const val lombokVersion = "1.18.34"
}

1403
cache/bin/main/djb2.properties vendored Normal file

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More