Skip to content

Commit

Permalink
Merge branch '221-1.10.26'
Browse files Browse the repository at this point in the history
  • Loading branch information
zeruth committed Mar 29, 2024
2 parents 7fe218f + e709289 commit 8729618
Show file tree
Hide file tree
Showing 41 changed files with 402 additions and 372 deletions.
2 changes: 1 addition & 1 deletion cache/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<parent>
<groupId>net.runelite</groupId>
<artifactId>runelite-parent</artifactId>
<version>1.10.25.2</version>
<version>1.10.26</version>
</parent>

<artifactId>cache</artifactId>
Expand Down
1 change: 0 additions & 1 deletion cache/src/main/java/net/runelite/cache/IndexType.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ public enum IndexType
FONTS(13),
MUSIC_SAMPLES(14),
MUSIC_PATCHES(15),
WORLDMAP_OLD(16), // looks unused
WORLDMAP_GEOGRAPHY(18),
WORLDMAP(19),
WORLDMAP_GROUND(20),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ public class ItemDefinition
public final int id;

public String name = "null";
public String examine;
public String unknown1;

public int resizeX = 128;
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,10 @@ else if (opcode == 2)
{
def.name = stream.readString();
}
else if (opcode == 3)
{
def.examine = stream.readString();
}
else if (opcode == 4)
{
def.zoom2d = stream.readUnsignedShort();
Expand Down

This file was deleted.

87 changes: 0 additions & 87 deletions cache/src/test/java/net/runelite/cache/WorldMapDumperTest.java

This file was deleted.

7 changes: 4 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<groupId>net.runelite</groupId>
<artifactId>runelite-parent</artifactId>
<version>1.10.25.2</version>
<version>1.10.26</version>
<packaging>pom</packaging>

<name>RuneLite</name>
Expand All @@ -46,7 +46,8 @@
<maven.javadoc.skip>true</maven.javadoc.skip>
<checkstyle.skip>true</checkstyle.skip>
<glslang.path></glslang.path>
<rs.version>220</rs.version>

<rs.version>221</rs.version>

<!--HotLite-->
<kotlin.version>1.9.22</kotlin.version>
Expand All @@ -65,7 +66,7 @@
<url>https://github.com/runelite/runelite</url>
<connection>scm:git:git://github.com/runelite/runelite</connection>
<developerConnection>scm:git:[email protected]:runelite/runelite</developerConnection>
<tag>runelite-parent-1.10.25.2</tag>
<tag>runelite-parent-1.10.26</tag>
</scm>

<developers>
Expand Down
2 changes: 1 addition & 1 deletion runelite-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<parent>
<groupId>net.runelite</groupId>
<artifactId>runelite-parent</artifactId>
<version>1.10.25.2</version>
<version>1.10.26</version>
</parent>

<artifactId>runelite-api</artifactId>
Expand Down
Loading

0 comments on commit 8729618

Please sign in to comment.