From 3c0cedbe922c9fcacd0d171423f83e375f66e178 Mon Sep 17 00:00:00 2001 From: iamgoofball Date: Fri, 18 Jan 2019 19:08:56 -0800 Subject: Add screenshake, frame-specific effects, looping SFX, and clientside music looping Committed by patch since Goof is currently banned on GitHub for no good reason. --- Attorney_Online.pro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Attorney_Online.pro') diff --git a/Attorney_Online.pro b/Attorney_Online.pro index 39366c04..73d3534c 100644 --- a/Attorney_Online.pro +++ b/Attorney_Online.pro @@ -11,7 +11,7 @@ OBJECTS_DIR = $$PWD/build MOC_DIR = $$PWD/build SOURCES += $$files($$PWD/src/*.cpp) -HEADERS += $$files($$PWD/include/*.h) +HEADERS += $$files($$PWD/include/*.h) $$PWD/include/aomusicplayer.h $$PWD/include/aosfxplayer.h LIBS += -L$$PWD/lib -lbass -ldiscord-rpc CONFIG += c++11 -- cgit From 0dcf8a7f179069dabae8aa61ba69675ad5182d76 Mon Sep 17 00:00:00 2001 From: iamgoofball Date: Fri, 1 Feb 2019 17:20:08 -0800 Subject: bump the version number to 2.7.2 --- Attorney_Online.pro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Attorney_Online.pro') diff --git a/Attorney_Online.pro b/Attorney_Online.pro index 73d3534c..8f15ad0d 100644 --- a/Attorney_Online.pro +++ b/Attorney_Online.pro @@ -3,7 +3,7 @@ QT += core gui widgets multimedia network TARGET = Attorney_Online TEMPLATE = app -VERSION = 2.6.1.0 +VERSION = 2.7.2.0 INCLUDEPATH += $$PWD/include DESTDIR = $$PWD/bin -- cgit From abbbb43c985271c6d66b94ee384c6a401e43de8d Mon Sep 17 00:00:00 2001 From: sD Date: Thu, 26 Dec 2019 16:34:47 +0100 Subject: redundant headers in projectfile --- Attorney_Online.pro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Attorney_Online.pro') diff --git a/Attorney_Online.pro b/Attorney_Online.pro index 8f15ad0d..c11b5fd6 100644 --- a/Attorney_Online.pro +++ b/Attorney_Online.pro @@ -11,7 +11,7 @@ OBJECTS_DIR = $$PWD/build MOC_DIR = $$PWD/build SOURCES += $$files($$PWD/src/*.cpp) -HEADERS += $$files($$PWD/include/*.h) $$PWD/include/aomusicplayer.h $$PWD/include/aosfxplayer.h +HEADERS += $$files($$PWD/include/*.h) LIBS += -L$$PWD/lib -lbass -ldiscord-rpc CONFIG += c++11 -- cgit From b5c514100787d630c7d4f6eadad16734186c80f7 Mon Sep 17 00:00:00 2001 From: sD Date: Fri, 21 Feb 2020 18:47:46 +0100 Subject: make network debug depend on if its a debug build or not --- Attorney_Online.pro | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Attorney_Online.pro') diff --git a/Attorney_Online.pro b/Attorney_Online.pro index 488ddd1d..941f89b5 100644 --- a/Attorney_Online.pro +++ b/Attorney_Online.pro @@ -34,6 +34,10 @@ contains(DEFINES, QTAUDIO) { QT += multimedia } +contains(CONFIG, qml_debug) { +DEFINES += DEBUG_NETWORK +} + macx:LIBS += -framework CoreFoundation -framework Foundation -framework CoreServices -- cgit