minestat 2.3.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.yardopts +8 -0
- data/ChangeLog.md +55 -0
- data/License.txt +674 -0
- data/ReadMe.md +60 -0
- data/example.rb +18 -0
- data/lib/minestat.rb +404 -169
- metadata +16 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 82717df75838b6ad324792fe9a77d2546de09ac67d4f29df16d9d5ccdadc7b86
|
4
|
+
data.tar.gz: ebc141d36e1e8873794c1c1f6945b77bdb3578a28ab04098b939725ba2af18a1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1813f254761c46b13d6137fbe992e3deca495ecc3d02d134382970f47a968014806e2076f04ea7258fca05f27b88ae7aa0087de7f3ea1cc137d260694dccbc28
|
7
|
+
data.tar.gz: 04c3aa462ab0ae42d822aa9b67290809c14a9789d7a9adc42a6c7c32bedfb6340e13ed9dc4528577fa1a176fe856ff43f470108acafec21eba5d996d42ccc8db
|
data/.yardopts
ADDED
data/ChangeLog.md
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
## 3.0.0 (January 31, 2023)
|
2
|
+
- Added UT3/GS4 query support
|
3
|
+
- Refactored code
|
4
|
+
- Added YARD documentation
|
5
|
+
|
6
|
+
## 2.3.0 (January 21, 2023)
|
7
|
+
- Added support to resolve SRV records
|
8
|
+
|
9
|
+
## 2.2.4 (December 2, 2022)
|
10
|
+
- Fixed Bedrock connection attempt condition
|
11
|
+
|
12
|
+
## 2.2.3 (November 20, 2022)
|
13
|
+
- Fixed connection status and request type being overwritten
|
14
|
+
|
15
|
+
## 2.2.2 (November 12, 2022)
|
16
|
+
- Added favicon support
|
17
|
+
- Exposed connection status
|
18
|
+
- Prevented Bedrock connection attempt if preceding SLP request was successful
|
19
|
+
|
20
|
+
## 2.2.1 (May 5, 2022)
|
21
|
+
- Updated documentation
|
22
|
+
- Fixed an issue regarding the default UDP port not being set
|
23
|
+
|
24
|
+
## 2.2.0 (April 26, 2022)
|
25
|
+
- Added Bedrock/Pocket Edition support
|
26
|
+
|
27
|
+
## 2.1.1 (September 27, 2021)
|
28
|
+
- Fixed MotD array/string issue
|
29
|
+
|
30
|
+
## 2.1.0 (September 7, 2021)
|
31
|
+
- Added stripped MotD support
|
32
|
+
- Fixed SLP 1.6/1.7 detection issue
|
33
|
+
|
34
|
+
## 2.0.0 (March 2, 2021)
|
35
|
+
- Changed SLP protocol attempt order
|
36
|
+
- Added request type
|
37
|
+
|
38
|
+
## 0.3.0 (May 17, 2020)
|
39
|
+
- Added SLP 1.7 (JSON) support
|
40
|
+
|
41
|
+
## 0.2.1 (January 27, 2019)
|
42
|
+
- Added SLP 1.8b/1.3 (beta) support
|
43
|
+
- Added latency
|
44
|
+
|
45
|
+
## 0.2.0 (January 23, 2019)
|
46
|
+
- Added SLP 1.6 (extended) support
|
47
|
+
|
48
|
+
## 0.1.2 (January 22, 2019)
|
49
|
+
- Added timeout
|
50
|
+
|
51
|
+
## 0.1.1 (December 13, 2016)
|
52
|
+
- Removed null characters from output
|
53
|
+
|
54
|
+
## 0.1.0 (April 18, 2014)
|
55
|
+
- Initial release
|