<feed xmlns='http://www.w3.org/2005/Atom'>
<title>github/GT5-Unofficial.git/src/main/java/gregtech/api/events, branch master</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/GT5-Unofficial.git/'/>
<entry>
<title>Forge direction (#1895)</title>
<updated>2023-04-23T05:33:35+00:00</updated>
<author>
<name>Jason Mitchell</name>
<email>mitchej@gmail.com</email>
</author>
<published>2023-04-23T05:33:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/GT5-Unofficial.git/commit/?id=56f2269f4af6d2130bdb2b6e6ac6e13bce89e47b'/>
<id>56f2269f4af6d2130bdb2b6e6ac6e13bce89e47b</id>
<content type='text'>
* ForgeDirection

Also refactor the clusterfuck that was `getCoordinateScan`

Co-authored by: Jason Mitchell &lt;mitchej@gmail.com&gt;

* Fix rendering of Frame Boxes

Frame boxes needed their own implementation of getTexture with int connexion mask,
which is returning an error texture for the MetaTileEntity, because pipes (FrameBox
**is** a pipe) do use this method to return different textures based on connexion
status.

---------

Co-authored-by: Léa Gris &lt;lea.gris@noiraude.net&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* ForgeDirection

Also refactor the clusterfuck that was `getCoordinateScan`

Co-authored by: Jason Mitchell &lt;mitchej@gmail.com&gt;

* Fix rendering of Frame Boxes

Frame boxes needed their own implementation of getTexture with int connexion mask,
which is returning an error texture for the MetaTileEntity, because pipes (FrameBox
**is** a pipe) do use this method to return different textures based on connexion
status.

---------

Co-authored-by: Léa Gris &lt;lea.gris@noiraude.net&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Update spotless config to 0.2.2</title>
<updated>2023-04-10T16:49:16+00:00</updated>
<author>
<name>Raven Szewczyk</name>
<email>git@eigenraven.me</email>
</author>
<published>2023-04-10T16:49:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/GT5-Unofficial.git/commit/?id=8ac58626bd4caa9e49f58acc6b97ac031f6c2107'/>
<id>8ac58626bd4caa9e49f58acc6b97ac031f6c2107</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[ci skip] spotlessApply with the new settings</title>
<updated>2023-01-30T18:56:42+00:00</updated>
<author>
<name>Jason Mitchell</name>
<email>mitchej@gmail.com</email>
</author>
<published>2023-01-30T18:56:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/GT5-Unofficial.git/commit/?id=0d9aab72aa570f13dc3e32e0d32b3f3a95f95e0a'/>
<id>0d9aab72aa570f13dc3e32e0d32b3f3a95f95e0a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update buildscript &amp; apply spotless (#1306)</title>
<updated>2022-08-27T09:19:57+00:00</updated>
<author>
<name>Raven Szewczyk</name>
<email>git@eigenraven.me</email>
</author>
<published>2022-08-27T09:19:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/GT5-Unofficial.git/commit/?id=6f31720697bcc351421a4d86ba3bf749375dd12c'/>
<id>6f31720697bcc351421a4d86ba3bf749375dd12c</id>
<content type='text'>
* Update dependencies

* Update buildscript, apply spotless</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Update dependencies

* Update buildscript, apply spotless</pre>
</div>
</content>
</entry>
<entry>
<title>fix(textfiles): add missing neline at end of files</title>
<updated>2021-04-27T21:13:38+00:00</updated>
<author>
<name>Léa Gris</name>
<email>lea.gris@noiraude.net</email>
</author>
<published>2021-04-27T21:13:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/GT5-Unofficial.git/commit/?id=4c8cf9986d75f91b13281de1d9d476d6dd392d50'/>
<id>4c8cf9986d75f91b13281de1d9d476d6dd392d50</id>
<content type='text'>
git and diff tools will complain if text file does not end with a newline.

Fixed all text files in the repository with Linux bash shell:

```sh
git ls-files -z |
while IFS= read -rd '' f; do
  mime="$(file --brief --mime "$f")";
  if [ -z "${mime##text/*}" ]; then
    tail -c1 "$f" |
      read -r _ || printf '\n' &gt;&gt;"$f";
  fi;
done
```
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git and diff tools will complain if text file does not end with a newline.

Fixed all text files in the repository with Linux bash shell:

```sh
git ls-files -z |
while IFS= read -rd '' f; do
  mime="$(file --brief --mime "$f")";
  if [ -z "${mime##text/*}" ]; then
    tail -c1 "$f" |
      read -r _ || printf '\n' &gt;&gt;"$f";
  fi;
done
```
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactored BlockScanningEvent.java</title>
<updated>2020-03-17T18:04:34+00:00</updated>
<author>
<name>bartimaeusnek</name>
<email>33183715+bartimaeusnek@users.noreply.github.com</email>
</author>
<published>2020-03-17T18:04:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/GT5-Unofficial.git/commit/?id=c10ecd6a3cb6ca75c1099eecd2654ca2a350d7e3'/>
<id>c10ecd6a3cb6ca75c1099eecd2654ca2a350d7e3</id>
<content type='text'>
Signed-off-by: bartimaeusnek &lt;33183715+bartimaeusnek@users.noreply.github.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: bartimaeusnek &lt;33183715+bartimaeusnek@users.noreply.github.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Reformat code</title>
<updated>2015-10-22T02:15:09+00:00</updated>
<author>
<name>Shawn Buckley</name>
<email>shawntbuckley@gmail.com</email>
</author>
<published>2015-10-22T02:15:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/GT5-Unofficial.git/commit/?id=123aa6ed288b2f67b0d47177f4d27cd6893daf3a'/>
<id>123aa6ed288b2f67b0d47177f4d27cd6893daf3a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Move source directory</title>
<updated>2015-10-19T03:04:39+00:00</updated>
<author>
<name>Shawn Buckley</name>
<email>shawntbuckley@gmail.com</email>
</author>
<published>2015-10-19T03:04:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/GT5-Unofficial.git/commit/?id=85c804fa112fd1f19c91e45d150a787cfbf0f7a8'/>
<id>85c804fa112fd1f19c91e45d150a787cfbf0f7a8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
