iniquity 0.0.3 → 0.0.4
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/bin/iniquity +4 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2f283315be4fa1be7f430b73ef4746e8e6dc5b83
|
4
|
+
data.tar.gz: b9ccf01ea9d4e7d33d44b8a7e3e531f030b2117f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8799bbf7e26dde9a4c40c66f68dadc087f47ccf1799f5cdedfb41a9770881471b361dbff291bdae8d166c0fff321bdec6f2d310d9bd553a3287f88325e08768a
|
7
|
+
data.tar.gz: 4f6994ddb1656b381b6af352a63017b113c746e89d53986c7c26205ada456418397233cf58504d2442fb84d40f081b5039ccdc3f5de4342b8dd95126dbf6d1ec
|
data/bin/iniquity
CHANGED
@@ -18,6 +18,7 @@ if File.exists?(HOME+ "/iniquity.ini")
|
|
18
18
|
CONFIG = IniFile.load(HOME+ "/iniquity.ini")
|
19
19
|
else
|
20
20
|
abort "An Iniquity system must have an iniquity.ini file."
|
21
|
+
end
|
21
22
|
|
22
23
|
if CONFIG["tor"]["enabled"] == "yes"
|
23
24
|
TCPSocket::socks_server = CONFIG["tor"]["address"]
|
@@ -28,12 +29,12 @@ class Telnet < EM::Connection
|
|
28
29
|
|
29
30
|
def initialize
|
30
31
|
super
|
31
|
-
send_data "\nIniquity BBS 0.0.
|
32
|
+
send_data "\nIniquity BBS 0.0.4 - Telnet/UTF_8\n"
|
32
33
|
end
|
33
34
|
|
34
35
|
def post_init
|
35
36
|
|
36
|
-
puts "-- Someone connected to the Iniquity
|
37
|
+
puts "-- Someone connected to the Iniquity..."
|
37
38
|
|
38
39
|
#IO.readlines("./modules/welcome.ans").each do |line|
|
39
40
|
# send_data line.force_encoding(Encoding::IBM437).encode(Encoding::UTF_8)
|
@@ -52,7 +53,7 @@ class Telnet < EM::Connection
|
|
52
53
|
end
|
53
54
|
|
54
55
|
def unbind
|
55
|
-
puts "-- Someone disconnected from the Iniquity
|
56
|
+
puts "-- Someone disconnected from the Iniquity..."
|
56
57
|
end
|
57
58
|
end
|
58
59
|
|