forked from MightyPirates/OpenComputers
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #119 from asiekierka/gtnh-oc-1.8.4-20240407
Minor fixes from upstream
- Loading branch information
Showing
13 changed files
with
73 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
## Fixes/improvements | ||
|
||
* Reworked Internet Card filtering rules. | ||
* Implemented a new, more powerful system and improved default configuration. | ||
* Internet Card rules are now stored in the "internet.filteringRules" configuration key. | ||
* The old keys ("internet.whitelist", "internet.blacklist") are no longer used; an automatic migration is done upon upgrading the mod. | ||
* [#3635] ArrayIndexOutOfBoundsException when using servers with 3 network cards | ||
* [#3634] Internet card selector update logic erroneously drops non-ready keys | ||
* (1.12.2) [#3659] Fixed bug when programatically transferring fluids from specific tanks. (yut23) | ||
* [#3664] Fixed client-side errors when using third-party mod energy integration on an integrated server. | ||
* [#3677] Fixed crash when showing error containing a percent sign with the Analyzer item. | ||
* [#3698] Fixed documentation for the Screen's "turnOn" and "turnOff" functions. (Hawk777, DCNick3) | ||
* [#3691] Improved documentation for software bundled with the "network" floppy. (Computerdores) | ||
* [#3644] Improved forged packet protection with regards to configuring server racks. (Glease) | ||
|
||
## List of contributors | ||
|
||
asie, Fingercomp | ||
asie, Computerdores, Glease, Hawk777, yut23 |
8 changes: 8 additions & 0 deletions
8
src/main/resources/assets/opencomputers/loot/network/data/usr/man/arp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
NAME | ||
arp - Inspect local address resolution | ||
|
||
SYNOPSIS | ||
arp | ||
|
||
DESCRIPTION | ||
Displays the address of each network interface |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
src/main/resources/assets/opencomputers/loot/network/data/usr/man/nc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
NAME | ||
nc - Connect STDIN and STDOUT to the network | ||
|
||
SYNOPSIS | ||
nc [-l] port [addr] | ||
|
||
DESCRIPTION | ||
Connect STDIN and STDOUT to a network socket so that data can be received from and sent to that socket via STDIN and STDOUT | ||
|
||
EXAMPLES | ||
nc -l 1337 | ||
Open a socket on port 1337. If another program connects, it can receive from STDIN and send to STDOUT. | ||
|
||
nc 1337 host1 | ||
Connect to an open socket at address 'host1' on port 1337. The running program can send to STDOUT and receive from STDIN |
8 changes: 8 additions & 0 deletions
8
src/main/resources/assets/opencomputers/loot/network/data/usr/man/route
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
NAME | ||
route - Show routing information | ||
|
||
SYNOPSIS | ||
route | ||
|
||
DESCRIPTION | ||
Displays the contents of the routing table |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters