Skip to content

Commit

Permalink
Implement support for Education-v392 (1.14.70)
Browse files Browse the repository at this point in the history
Squashed commit of the following:

commit 00427bc
Author: bundabrg <bundabrg@grieve.com.au>
Date:   Thu Jul 1 16:05:18 2021 +0800

    Create StartGameSerializer for Education-392

commit 13b09f6
Author: bundabrg <bundabrg@grieve.com.au>
Date:   Wed Jun 30 16:42:30 2021 +0800

    Initial work on Education-v392

    Education connects but crashes
  • Loading branch information
bundabrg committed Jul 2, 2021
1 parent 53bdb66 commit 0044234
Show file tree
Hide file tree
Showing 17 changed files with 59,490 additions and 4 deletions.
8 changes: 7 additions & 1 deletion builds/build-all/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!--
~ MIT License
~
~ Copyright (c) 2020 Reversion Developers
~ Copyright (c) 2021 Reversion Developers
~
~ Permission is hereby granted, free of charge, to any person obtaining a copy
~ of this software and associated documentation files (the "Software"), to deal
Expand Down Expand Up @@ -71,6 +71,12 @@
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>au.com.grieve.reversion</groupId>
<artifactId>translator-v392ee_to_v408be</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>au.com.grieve.reversion</groupId>
<artifactId>translator-v407be_to_v408be</artifactId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* MIT License
*
* Copyright (c) 2020 Reversion Developers
* Copyright (c) 2021 Reversion Developers
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down Expand Up @@ -34,8 +34,10 @@
import au.com.grieve.reversion.protocol.bedrock.v423.Bedrock_v423;
import au.com.grieve.reversion.protocol.education.v390.Education_v390;
import au.com.grieve.reversion.protocol.education.v391.Education_v391;
import au.com.grieve.reversion.protocol.education.v392.Education_v392;
import au.com.grieve.reversion.translators.v390ee_to_v408be.Register_v390ee_to_v408be;
import au.com.grieve.reversion.translators.v391ee_to_v408be.Register_v391ee_to_v408be;
import au.com.grieve.reversion.translators.v392ee_to_v408be.Register_v392ee_to_v408be;
import au.com.grieve.reversion.translators.v407be_to_v408be.Register_v407be_to_v408be;
import au.com.grieve.reversion.translators.v408be_to_v419be.Register_v408be_to_v419be;
import au.com.grieve.reversion.translators.v419be_to_v422be.Register_v419be_to_v422be;
Expand All @@ -53,6 +55,7 @@ public class Build {
// Translator from an older Education to a Newer Bedrock Server
Register_v390ee_to_v408be.TRANSLATOR,
Register_v391ee_to_v408be.TRANSLATOR,
Register_v392ee_to_v408be.TRANSLATOR,

// Translate from an older Bedrock to a Newer Bedrock Server
Register_v407be_to_v408be.TRANSLATOR,
Expand All @@ -73,6 +76,7 @@ public class Build {
Bedrock_v422.V422_CODEC,
Education_v390.V390_CODEC,
Education_v391.V391_CODEC,
Education_v392.V392_CODEC,

// Betas
Bedrock_v423.V423_CODEC
Expand Down
47 changes: 47 additions & 0 deletions protocol/education-v392/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ MIT License
~
~ Copyright (c) 2021 Reversion Developers
~
~ Permission is hereby granted, free of charge, to any person obtaining a copy
~ of this software and associated documentation files (the "Software"), to deal
~ in the Software without restriction, including without limitation the rights
~ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
~ copies of the Software, and to permit persons to whom the Software is
~ furnished to do so, subject to the following conditions:
~
~ The above copyright notice and this permission notice shall be included in all
~ copies or substantial portions of the Software.
~
~ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
~ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
~ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
~ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
~ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
~ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
~ SOFTWARE.
-->

<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>protocol</artifactId>
<groupId>au.com.grieve.reversion</groupId>
<version>1.1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>education-v392</artifactId>

<dependencies>
<dependency>
<groupId>au.com.grieve.reversion</groupId>
<artifactId>education-v391</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>


</project>
Loading

0 comments on commit 0044234

Please sign in to comment.