Skip to content

Commit

Permalink
4.2.0 release - experimental support for PacketEvents
Browse files Browse the repository at this point in the history
  • Loading branch information
unldenis committed Nov 3, 2024
1 parent bf35768 commit 78afa28
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docs/changelog/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ <h2 class="uk-h2 uk-margin-medium" id="v420">v4.2.0</h2>

<hr class="uk-divider-icon" />

<h2 class="uk-h2 uk-margin-medium" id="410">v4.1.0</h2>
<h2 class="uk-h2 uk-margin-medium" id="410">v4.2.0</h2>
<p class="uk-paragraph"><strong>October 6, 2024</strong></p>
<p class="uk-paragraph"><strong>Minor changes:</strong></p>
<ul class="uk-margin uk-list uk-list-bullet">
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ <h1 class="uk-h1">Introduction</h1>
<h2 class="uk-h2 uk-margin-medium">What is HoloEasy</h2>
<p class="uk-paragraph">
HoloEasy is an open-source library for creating holograms in Minecraft that uses <a class="uk-link" href="https://github.com/dmulloy2/ProtocolLib">ProtocolLib</a> (or <a class="uk-link" href="https://docs.packetevents.com/">PacketEvents</a>) to handle packets.
This allows for efficient and flexible communication between the client and server.
This allows for greater performance as the server does not have to manage these entities.
</p>

<!-- <p class="uk-paragraph">-->
Expand Down
6 changes: 3 additions & 3 deletions docs/installation/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ <h1 class="uk-h1">Requirements</h1>
</div>

<blockquote class="uk-blockquote">
If you opt for PacketEvents, the <a class="uk-link" href="https://docs.packetevents.com/getting-started">library</a> is not included by HoloEasy and neither is the instance <a class="uk-link" href="https://docs.packetevents.com/creating-your-packetevents-instance">registration</a>.
If you opt for PacketEvents, the <a class="uk-link" href="https://docs.packetevents.com/getting-started">dependency</a> is not included by HoloEasy and neither is the instance <a class="uk-link" href="https://docs.packetevents.com/creating-your-packetevents-instance">registration</a>.
<br>
More information in the <a class="uk-link" href="https://github.com/unldenis/holoeasy/tree/master/holoeasy-example-packetevents">example</a>.
</blockquote>
Expand Down Expand Up @@ -180,7 +180,7 @@ <h2 class="uk-h2 uk-margin-medium">Installation via Maven</h2>
<pre><code class="language-xml">&lt;dependency&gt;
&lt;groupId&gt;com.github.unldenis.holoeasy&lt;/groupId&gt;
&lt;artifactId&gt;holoeasy-core&lt;/artifactId&gt;
&lt;version&gt;4.1.0&lt;/version&gt;
&lt;version&gt;4.2.0&lt;/version&gt;
&lt;/dependency&gt;</code></pre>
</div>

Expand Down Expand Up @@ -225,7 +225,7 @@ <h2 class="uk-h2 uk-margin-medium">Installation via Gradle</h2>
</p>

<div class="uk-paragraph">
<pre><code class="language-groovy">implementation 'com.github.unldenis.holoeasy:holoeasy-core:4.1.0'</code></pre>
<pre><code class="language-groovy">implementation 'com.github.unldenis.holoeasy:holoeasy-core:4.2.0'</code></pre>
</div>


Expand Down
2 changes: 1 addition & 1 deletion holoeasy-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.holoeasy</groupId>
<artifactId>holoeasy</artifactId>
<version>4.1.0</version>
<version>4.2.0</version>
</parent>

<artifactId>holoeasy-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion holoeasy-example-packetevents/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.holoeasy</groupId>
<artifactId>holoeasy</artifactId>
<version>4.1.0</version>
<version>4.2.0</version>
</parent>
<artifactId>holoeasy-example-packetevents</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion holoeasy-example-protocollib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.holoeasy</groupId>
<artifactId>holoeasy</artifactId>
<version>4.1.0</version>
<version>4.2.0</version>
</parent>

<artifactId>holoeasy-example-protocollib</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

<groupId>org.holoeasy</groupId>
<artifactId>holoeasy</artifactId>
<version>4.1.0</version>
<version>4.2.0</version>
<packaging>pom</packaging>
<modules>
<module>holoeasy-core</module>
Expand Down

0 comments on commit 78afa28

Please sign in to comment.