aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-04-11Use /bin/sh and exit immediately if a command fails.nnoodle
2019-01-21Update Attorney_Online.pro for C++14oldmud0
2019-01-08Fix #57perplexedMurfy
2019-01-07Merge pull request #56 from OmniTroid/masteroldmud0
Small fixes, decluttering + better build scripts
2019-01-06updated macos build scriptDavid Skoland
2019-01-06fixed opus plugin load for macOSDavid Skoland
2019-01-05version bump in .pro fileDavid Skoland
2019-01-05Merge remote-tracking branch 'upstream/master'David Skoland
2019-01-05remove old mac scriptDavid Skoland
2019-01-03Bump version to 2.6.1oldmud0
2019-01-03Fix APNG preanimations not working (#52)oldmud0
2019-01-03Add theme changes that weren't committed (??)oldmud0
2019-01-03Show ban reason with BD packetperplexedMurfy
This fully fixes issue 39 with tsuserver3 (https://github.com/AttorneyOnline/tsuserver3/issues/39)
2019-01-03declutter pro fileDavid Skoland
2019-01-03added icns file for macosDavid Skoland
2019-01-03added the last few icons to prevent warnings in iconutilDavid Skoland
2019-01-03removed redundant QTPLUGIN declaration and added macx icon fileDavid Skoland
2019-01-03adjusted macos post build scriptDavid Skoland
2019-01-03added macos post build scriptDavid Skoland
2019-01-02yOu nEEd tO HaVe iCoNs oF ALl kINdS oF SIzeS -sincerely, appleDavid Skoland
2019-01-02fixed a crash condition where blip rate is less than 1David Skoland
2019-01-02Merge pull request #54 from OmniTroid/masteroldmud0
Restructuring + better cross-platform support
2018-12-26added dynamic linking fix script for macosDavid Skoland
2018-12-26Merge branch 'master' of github.com:OmniTroid/AO2-ClientDavid Skoland
2018-12-26Update README_BUILD.mdDavid Skoland
2018-12-26added dynamic loading of qapng and fixed mac soundDavid Skoland
2018-12-26muh macos supportDavid Skoland
2018-12-26removed redundant statement from ubuntu config scriptDavid Skoland
2018-12-26Merge branch 'master' of github.com:OmniTroid/AO2-ClientDavid Skoland
2018-12-26same LIBS for unix and win32 is fine. and RC_ICONS is only relevant for windowsDavid Skoland
2018-12-26discord-rpc actually has prebuilt static librariesDavid Skoland
2018-12-26clarified readme build docDavid Skoland
2018-12-26added building instructionsDavid Skoland
2018-12-26it's the official version, no need for numbersDavid Skoland
2018-12-26renamed pro file to nicer nameDavid Skoland
2018-12-26remove kebabDavid Skoland
2018-12-26adjusted gitignore filesDavid Skoland
2018-12-26added lib folder to ubuntu configure scriptDavid Skoland
2018-12-26finished ubuntu build script and made default plugin mode dynamic linkingDavid Skoland
2018-12-26added ubuntu config scriptDavid Skoland
2018-12-26including the bass header file is fine honestlyDavid Skoland
2018-12-26simplified the project fileDavid Skoland
2018-12-26moved headers into include and cpp files into src + logo into resourceDavid Skoland
2018-12-19Fixed an issue with overlapping SFXes.Cerapter
The `BASS_ChannelStop()` line existed in 2.4.10, but disappeared in 2.6. This fixes #50 .
2018-12-18Moved realisation to `start_chat_ticking()`.Cerapter
Since the realisation could have been called from two paths that were previously one and the same (previously, the pre ending was the same as the text starting -- with the inclusion of non-interrupting preanims, these became different), in some select cases, the realisation could have played twice. As a solution to this, handling realisation is now done when the text starts ticking, as that guarantees that the realisation happens only once.
2018-12-18Fixed a theme issue where evidence didn't appear.Cerapter
2018-12-18Merge pull request #49 from Cerapter/vanilla-big-boi-buttonCerapter
Changed the left and right buttons across the default theme to be bigger.
2018-12-18Fixed a bug with the rainbow colour and inline colours.Cerapter
You can now use all the inline commands when your overall text colour is rainbow, like with every other overall text colour.
2018-12-17Fixed a bug in the insensitive file searcher function.Cerapter
This bug couldn't find files with parentheses in them, because it looked for these files according to regex rules. That is, if you had, say, `Apollo Justice ~ Objection! (UNLIMITED).mp3`, that would be looking for `Apollo Justice ~ Objection! ` + one occurence of `UNLIMITED` followed by a single, custom character, followed by `mp3`. Note that this search would always fail, since parentheses are grouping characters, and as such, they'd never be acknowledged in the search as characters. `QRegExp::FixedString` forces the search to consider the input as a String, however, escaping characters as needed, which fixes this problem.
2018-12-17Changed the left and right buttons across the default theme to be bigger.Cerapter