Skip to content

Commit

Permalink
Merge branch 'release/0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
Pascal Baltazar committed Jan 26, 2015
2 parents 524f00f + 16b61b7 commit ca6ac3c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 10 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -325,11 +325,11 @@ if(UNIX)
set(CPACK_PACKAGE_ICON "${CMAKE_SOURCE_DIR}/resources/images/i-score.icns")

install(DIRECTORY installer_data/examples
DESTINATION Examples)
DESTINATION .)
install(DIRECTORY installer_data/documentation
DESTINATION Documentation)
DESTINATION .)
install(DIRECTORY installer_data/Licenses
DESTINATION Licenses)
DESTINATION .)

install(CODE "execute_process(COMMAND ${CMAKE_SOURCE_DIR}/deploy_osx.sh)")
else()
Expand Down
2 changes: 1 addition & 1 deletion deploy_osx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ cp -rf /usr/local/lib/libportmidi.dylib $ISCORE_BUNDLE/Contents/Frameworks/
install_name_tool -change /usr/local/lib/libportmidi.dylib @executable_path/../Frameworks/libportmidi.dylib $ISCORE_BUNDLE/Contents/Frameworks/jamoma/extensions/MIDI.ttdylib

# Gecode linking
GECODE_DIR=$(dirname $(find /usr/ -name libgecodekernel*.dylib))
GECODE_DIR=$(dirname $(find /usr -name libgecodekernel.dylib ! -path "*Cellar*"|head -1))
declare -a gecodelibs=("kernel" "support" "int" "set" "driver" "flatzinc" "minimodel" "search" "float")
for GECODE_LIB in "${gecodelibs[@]}"
do
Expand Down
5 changes: 0 additions & 5 deletions src/GUI/DeviceEdit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,6 @@ void DeviceEdit::setCorrespondingProtocolLayout()
{
if(_protocolsComboBox->currentText() == "OSC")
{
defaultName = "OSCdevice";
defaultPort = 9997;
defaultInputPort = 9996;

Expand All @@ -354,23 +353,19 @@ void DeviceEdit::setCorrespondingProtocolLayout()
}
else if (_protocolsComboBox->currentText() == "Minuit")
{
defaultName = "MinuitDevice";
defaultPort = 9998;
defaultInputPort = 13579;
setMinuitLayout();

}
else if (_protocolsComboBox->currentText() == "MIDI")
{
defaultName = "MIDIDevice";
setMidiLayout();
}

_localHostBox->setText(defaultLocalHost);
_portOutputBox->setValue(defaultPort);
_portInputBox->setValue(defaultInputPort);
checkName(defaultName);
_nameEdit->setText(defaultName);
_nameEdit->setFocus();
}

Expand Down
2 changes: 1 addition & 1 deletion src/GUI/TriggerPointEdit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ TriggerPointEdit::TriggerPointEdit(AbstractTriggerPoint *abstract, QWidget *pare
: QDialog(parent)
{
setModal(true);

setWindowFlags(Qt::WindowStaysOnTopHint);
_abstract = abstract;
_expressionChanged = false;
_autoTriggerChanged = false;
Expand Down

0 comments on commit ca6ac3c

Please sign in to comment.