minestat 2.3.0 → 3.0.1

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.
Files changed (8) hide show
  1. checksums.yaml +4 -4
  2. data/.yardopts +8 -0
  3. data/ChangeLog.md +61 -0
  4. data/License.txt +674 -0
  5. data/ReadMe.md +64 -0
  6. data/example.rb +18 -0
  7. data/lib/minestat.rb +466 -201
  8. metadata +16 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0edcad23af3b5a770f9711cf137a82e060e74cbd50d53a50bad64f86a94e2dcb
4
- data.tar.gz: cce9bd821aea062f9cc84fa68750b4a6ea1f9028bd68bd11c075ae721e6a0dee
3
+ metadata.gz: e8a29b7c1a834e40e6a63b451abc0cd67018ca48b8efcdcd04a6ca365390cec0
4
+ data.tar.gz: 609d3ed8ccfdff65d6c317b25066012eeafb7e206dd347923088fe4108588add
5
5
  SHA512:
6
- metadata.gz: 06a145da313fe0700857906b36c51a7a2a5b2d12f95b40090a04bedc7c261aad39319805ebf2c4c7b13840162cbffe556c1e23753c055ea49321c7ff87b1cbc1
7
- data.tar.gz: 8d86892695c1cd890d08b4934a4dc769482a7ee815d8cbf98c5dd63c770064d535a7f8a29ef958c07a92bc2eb8d9a275f0a9b3a39b0b0c726e2440dbde0c122a
6
+ metadata.gz: 5b27f9e97df7fc7f2f38d0d18ae1f4c14015845ca0590cc8a33d269642697d41001c130ba36b6c7e0c39a5e39020b28b64bc02b78333ecfd1c3047a430d43555
7
+ data.tar.gz: f7e487a9a821c8b2aa83b8120c55eeb08b7229797bf6f62aff18937c4875db238ad88e3b6be08e6948303b79f74494d5ae60725fb9917d58729535d57aa33175
data/.yardopts ADDED
@@ -0,0 +1,8 @@
1
+ --readme ReadMe.md
2
+ --title "MineStat API Documentation"
3
+ --charset utf-8
4
+ --markup markdown
5
+ --no-private
6
+ -
7
+ ChangeLog.md
8
+ License.txt
data/ChangeLog.md ADDED
@@ -0,0 +1,61 @@
1
+ ## 3.0.1 (February 5, 2023)
2
+ - Added configurable DNS SRV resolution
3
+ - Added request type that attempts all SLP protocols
4
+ - Improved debug messages
5
+
6
+ ## 3.0.0 (January 31, 2023)
7
+ - Added UT3/GS4 query support
8
+ - Added debug mode
9
+ - Refactored code
10
+ - Added YARD documentation
11
+
12
+ ## 2.3.0 (January 21, 2023)
13
+ - Added support to resolve SRV records
14
+
15
+ ## 2.2.4 (December 2, 2022)
16
+ - Fixed Bedrock connection attempt condition
17
+
18
+ ## 2.2.3 (November 20, 2022)
19
+ - Fixed connection status and request type being overwritten
20
+
21
+ ## 2.2.2 (November 12, 2022)
22
+ - Added favicon support
23
+ - Exposed connection status
24
+ - Prevented Bedrock connection attempt if preceding SLP request was successful
25
+
26
+ ## 2.2.1 (May 5, 2022)
27
+ - Updated documentation
28
+ - Fixed an issue regarding the default UDP port not being set
29
+
30
+ ## 2.2.0 (April 26, 2022)
31
+ - Added Bedrock/Pocket Edition support
32
+
33
+ ## 2.1.1 (September 27, 2021)
34
+ - Fixed MotD array/string issue
35
+
36
+ ## 2.1.0 (September 7, 2021)
37
+ - Added stripped MotD support
38
+ - Fixed SLP 1.6/1.7 detection issue
39
+
40
+ ## 2.0.0 (March 2, 2021)
41
+ - Changed SLP protocol attempt order
42
+ - Added request type
43
+
44
+ ## 0.3.0 (May 17, 2020)
45
+ - Added SLP 1.7 (JSON) support
46
+
47
+ ## 0.2.1 (January 27, 2019)
48
+ - Added SLP 1.8b/1.3 (beta) support
49
+ - Added latency
50
+
51
+ ## 0.2.0 (January 23, 2019)
52
+ - Added SLP 1.6 (extended) support
53
+
54
+ ## 0.1.2 (January 22, 2019)
55
+ - Added timeout
56
+
57
+ ## 0.1.1 (December 13, 2016)
58
+ - Removed null characters from output
59
+
60
+ ## 0.1.0 (April 18, 2014)
61
+ - Initial release