mirror of
https://github.com/AlignPixel-Dev/Pixel-Chat-App.git
synced 2025-07-07 16:47:00 +08:00
Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
82aa69af42 | |||
e14f540640 | |||
0eac5d7938 | |||
3cc31bce56 | |||
8b5f9ae1e2 | |||
371f06d6ac | |||
7c13fa6556 | |||
b62f3230d7 |
@ -16,12 +16,12 @@
|
|||||||
###### 在服务器上运行服务端
|
###### 在服务器上运行服务端
|
||||||
|
|
||||||
1. 在用作服务端的服务器或计算机上安装[Python环境](https://python.org)
|
1. 在用作服务端的服务器或计算机上安装[Python环境](https://python.org)
|
||||||
2. 在Release页面下载 `Pixel-Chat Server`,下载完成后运行
|
2. 在[Release](https://github.com/AlignPixel/Pixel-Chat-App/releases)页面下载 `Pixel-Chat Server`,下载完成后运行
|
||||||
3. VOILA! 现在邀请你的用户通过 `Pixel-Chat Client` 或 `Pixel-Chat Desktop` 访问服务器/计算机IP地址即可聊天
|
3. VOILA! 现在邀请你的用户通过 `Pixel-Chat Client` 或 `Pixel-Chat Desktop` 访问服务器/计算机IP地址即可聊天
|
||||||
|
|
||||||
###### 访问您喜欢的聊天服务器
|
###### 访问您喜欢的聊天服务器
|
||||||
|
|
||||||
1. 在Release页面下载 `Pixel-Chat-Desktop`,下载完成后运行
|
1. 在[Release](https://github.com/AlignPixel/Pixel-Chat-App/releases)页面下载 `Pixel-Chat-Desktop`,下载完成后运行
|
||||||
2. 输入您喜欢的聊天服务器IP
|
2. 输入您喜欢的聊天服务器IP
|
||||||
3. VOILA! 现在是聊天时间
|
3. VOILA! 现在是聊天时间
|
||||||
|
|
||||||
@ -37,8 +37,8 @@
|
|||||||
|
|
||||||
| AVATAR | NAME | WORK |
|
| AVATAR | NAME | WORK |
|
||||||
| ------------------------------------------------------------ | ------------------------------------------------------- | --------------- |
|
| ------------------------------------------------------------ | ------------------------------------------------------- | --------------- |
|
||||||
| <img src="https://avatars.githubusercontent.com/u/120368045?s=400&u=ac60326a41a0d41faaf82ad25bcd143d85224791&v=4" alt="BunDragon's Github AVATAR" width="50px" /> | [磅豆龙(FrederickBun)](https://github.com/FrederickBun) | AUTHOR(Creator) |
|
| <img src="https://avatars.githubusercontent.com/u/120368045?s=400&u=ac60326a41a0d41faaf82ad25bcd143d85224791&v=4" alt="BunDragon's Github AVATAR" width="50px" /> | [磅豆龙(FrederickBun)](https://github.com/FrederickBun) | Author(Creator) |
|
||||||
| <img src="https://avatars.githubusercontent.com/u/98998872" alt="Rayminn's Github AVATAR" width="50px"/> | [Yiming Lei(Rayminn)](https://github.com/Rayminn) | AUTHOR(Editor) |
|
| <img src="https://avatars.githubusercontent.com/u/98998872" alt="Rayminn's Github AVATAR" width="50px"/> | [Yiming Lei(Rayminn)](https://github.com/Rayminn) | Author(Editor) |
|
||||||
|
|
||||||
### 📦特供版本与特殊版本使用者
|
### 📦特供版本与特殊版本使用者
|
||||||
|
|
||||||
|
@ -274,6 +274,22 @@ class ChattingHandler:
|
|||||||
"UNBAN: 解除封禁某个IP\r\n"\
|
"UNBAN: 解除封禁某个IP\r\n"\
|
||||||
"BANLIST: 查看封禁IP列表\r\n"\
|
"BANLIST: 查看封禁IP列表\r\n"\
|
||||||
"HELP: 查看操作帮助")
|
"HELP: 查看操作帮助")
|
||||||
|
elif ip == '.an':
|
||||||
|
user = input("请输入要发布的内容:")
|
||||||
|
self.broadcast_system_msg(user)
|
||||||
|
elif ip == '.online':
|
||||||
|
login_list = "[ 输出 ] 在线用户 : "
|
||||||
|
for key in self.__socket_to_user_name:
|
||||||
|
login_list += self.__socket_to_user_name[key] + ' | '
|
||||||
|
print(login_list)
|
||||||
|
elif ip == '.help':
|
||||||
|
print("BAN: 封禁某个IP\r\n"\
|
||||||
|
"UNBAN: 解除封禁某个IP\r\n"\
|
||||||
|
"BANLIST: 查看封禁IP列表\r\n"\
|
||||||
|
"KICK: 踢出某个用户\r\n"\
|
||||||
|
"AN: 以系统身份发布消息\r\n"\
|
||||||
|
"ONELINE: 查看在线用户\r\n"\
|
||||||
|
"HELP: 查看操作帮助")
|
||||||
else:
|
else:
|
||||||
print("不存在的命令!")
|
print("不存在的命令!")
|
||||||
|
|
Reference in New Issue
Block a user