
Due to a countless number of changes made to the core that were not fully understood, tested, or documented, it was decided to roll everything back to the last known stable version (2.6.2). Changes dropped include: - Witness needed - Shake - Frame SFX - Multiple custom objections - Multithreaded thumbnail generation - Looping - Various translation additions - "Mirror IC" - Color in IC log - An invocation of clang-format Next time, work together and split your big fork into independently testable feature branches.
23 lines
720 B
Bash
Executable File
23 lines
720 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This script prepares the compiled bundle for shipping as a standalone release
|
|
# Assumes the Qt bin folder is in PATH
|
|
# Should be used on a "Release" build from QT creator
|
|
# Note that this DOES NOT add the base/ folder
|
|
|
|
# Exit on errors and unset variables
|
|
set -eu
|
|
|
|
ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/"
|
|
|
|
cd ${ROOT_DIR}
|
|
|
|
# This thing basically does all the work
|
|
macdeployqt ../bin/Attorney_Online.app
|
|
|
|
# Need to add the dependencies
|
|
cp ../lib/* ../bin/Attorney_Online.app/Contents/Frameworks
|
|
|
|
# libbass has a funny path for some reason, just use rpath
|
|
install_name_tool -change @loader_path/libbass.dylib @rpath/libbass.dylib ../bin/Attorney_Online.app/Contents/MacOS/Attorney_Online
|