Skip to content
This repository has been archived by the owner on May 5, 2022. It is now read-only.

Commit

Permalink
upd
Browse files Browse the repository at this point in the history
  • Loading branch information
Formak21 committed Nov 20, 2021
1 parent d13afeb commit ecc2718
Show file tree
Hide file tree
Showing 15 changed files with 126,425 additions and 3 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,3 @@ do what writed in note
start exe file

profit

test
3 changes: 3 additions & 0 deletions bin/1.0/Windows/Client/readme.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
For client:
just download Client.7z, unpack and use
note: pic.png isnt required, but if u want u can change it or leave her, and in main menu u will see a DESIGN ELEMENT
Binary file modified bin/1.0/Windows/Server/Database/messages_db.sqlite
Binary file not shown.
3 changes: 3 additions & 0 deletions bin/1.0/Windows/Server/readme.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
For server:
just download Server.7z, unpack and use
note: DO NOT FORGET OPEN TCP PORT, and Database Folder is required to be with exe file.
Binary file added doc/Client_2.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added doc/How_it_works.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added doc/Presentation1.pdf
Binary file not shown.
Binary file added doc/Presentation1.pptx
Binary file not shown.
Binary file added doc/Server_1.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
126,418 changes: 126,418 additions & 0 deletions doc/note.rtf

Large diffs are not rendered by default.

Binary file added doc/Сlient_1.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/Client/MainWindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def on_error(self, text):
def send(self):
if 0 < len(bytearray(self.NameEdit.text(), encoding='utf-8')) <= 16 and 0 < len(
bytearray(self.TextLine.text(), encoding='utf-8')) <= 256:
code = self.Server.send_message({'name': self.NameEdit.text(), 'message': self.TextLine.text()})
code = self.Server.send_message({'name': self.NameEdit.text(), 'message': self.TextLine.text().replace('"', '\"')})

if code == 'success':
self.reload()
Expand Down
Binary file modified src/Server/Database/messages_db.sqlite
Binary file not shown.

0 comments on commit ecc2718

Please sign in to comment.