Bump ver number and increase chat log size

This commit is contained in:
unknown 2017-12-30 14:57:54 -06:00
parent ea01016d8c
commit 0504d2b5d7
3 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ RC_ICONS = logo.ico
TARGET = Attorney_Online_remake
TEMPLATE = app
VERSION = 2.4.6.0
VERSION = 2.4.7.0
SOURCES += main.cpp\
lobby.cpp \

View File

@ -139,7 +139,7 @@ public:
private:
const int RELEASE = 2;
const int MAJOR_VERSION = 4;
const int MINOR_VERSION = 6;
const int MINOR_VERSION = 7;
QString user_theme = "default";

View File

@ -70,7 +70,7 @@ void AOTextArea::auto_truncate()
{
QTextCursor temp_cursor = this->textCursor();
if (this->document()->characterCount() > 100000)
if (this->document()->characterCount() > 500000)
{
temp_cursor.movePosition(QTextCursor::Start);
temp_cursor.select(QTextCursor::LineUnderCursor);