Skip to content

Commit

Permalink
fix baseItem mouse event flow
Browse files Browse the repository at this point in the history
  • Loading branch information
benkuper committed Nov 13, 2024
1 parent bbe1b33 commit 03f21a3
Show file tree
Hide file tree
Showing 16 changed files with 382 additions and 231 deletions.
9 changes: 8 additions & 1 deletion Blux.jucer
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>

<JUCERPROJECT id="aq6sUu" name="Blux" projectType="guiapp" jucerFormatVersion="1"
version="1.3.0b1" headerPath="../../Source" cppLanguageStandard="17"
version="1.3.0b2" headerPath="../../Source" cppLanguageStandard="17"
projectLineFeed="&#10;" bundleIdentifier="benkuper.Blux" defines="OSC_REMOTE_CONTROL_PORT=43000"
companyName="Ben Kuper" companyCopyright="Ben Kuper" companyWebsite="https://benjamin.kuperberg.fr/blux">
<MAINGROUP id="JrFmSt" name="Blux">
Expand Down Expand Up @@ -841,6 +841,7 @@
<MODULEPATH id="juce_cryptography"/>
<MODULEPATH id="juce_dmx" path="Modules"/>
<MODULEPATH id="juce_serial" path="Modules"/>
<MODULEPATH id="juce_javascript" path="../JUCE/modules"/>
</MODULEPATHS>
</VS2022>
<VS2022 targetFolder="Builds/VisualStudio2022_CI" extraCompilerFlags="/bigobj"
Expand Down Expand Up @@ -874,6 +875,7 @@
<MODULEPATH id="juce_serial" path="Modules"/>
<MODULEPATH id="juce_simpleweb" path="Modules"/>
<MODULEPATH id="juce_timeline" path="Modules"/>
<MODULEPATH id="juce_javascript" path="../JUCE/modules"/>
</MODULEPATHS>
</VS2022>
<XCODE_MAC targetFolder="Builds/MacOSX_CI" externalLibraries="Servus" smallIcon="kxAIe6"
Expand Down Expand Up @@ -910,6 +912,7 @@
<MODULEPATH id="juce_cryptography" path="JUCE/modules"/>
<MODULEPATH id="juce_dmx" path="Modules"/>
<MODULEPATH id="juce_serial" path="Modules"/>
<MODULEPATH id="juce_javascript" path="../JUCE/modules"/>
</MODULEPATHS>
</XCODE_MAC>
<LINUX_MAKE targetFolder="Builds/LinuxMakefile" extraLinkerFlags="-Wl,-rpath,&quot;lib&quot;&#10;-Wl,--as-needed"
Expand Down Expand Up @@ -940,6 +943,7 @@
<MODULEPATH id="juce_cryptography" path="JUCE/modules"/>
<MODULEPATH id="juce_dmx" path="Modules"/>
<MODULEPATH id="juce_serial" path="Modules"/>
<MODULEPATH id="juce_javascript" path="../JUCE/modules"/>
</MODULEPATHS>
</LINUX_MAKE>
<LINUX_MAKE targetFolder="Builds/Raspberry" externalLibraries="bluetooth&#10;Servus&#10;curl&#10;usb-1.0&#10;pthread&#10;atomic&#10;stdc++"
Expand Down Expand Up @@ -973,6 +977,7 @@
<MODULEPATH id="juce_cryptography" path="JUCE/modules"/>
<MODULEPATH id="juce_dmx" path="Modules"/>
<MODULEPATH id="juce_serial" path="Modules"/>
<MODULEPATH id="juce_javascript" path="../JUCE/modules"/>
</MODULEPATHS>
</LINUX_MAKE>
<LINUX_MAKE targetFolder="Builds/Raspberry64" smallIcon="kxAIe6" bigIcon="kxAIe6"
Expand Down Expand Up @@ -1005,6 +1010,7 @@
<MODULEPATH id="juce_serial" path="Modules"/>
<MODULEPATH id="juce_simpleweb" path="Modules"/>
<MODULEPATH id="juce_timeline" path="Modules"/>
<MODULEPATH id="juce_javascript" path="../JUCE/modules"/>
</MODULEPATHS>
</LINUX_MAKE>
</EXPORTFORMATS>
Expand All @@ -1022,6 +1028,7 @@
<MODULE id="juce_graphics" showAllCode="1" useLocalCopy="0" useGlobalPath="0"/>
<MODULE id="juce_gui_basics" showAllCode="1" useLocalCopy="0" useGlobalPath="0"/>
<MODULE id="juce_gui_extra" showAllCode="1" useLocalCopy="0" useGlobalPath="0"/>
<MODULE id="juce_javascript" showAllCode="1" useLocalCopy="0" useGlobalPath="0"/>
<MODULE id="juce_opengl" showAllCode="1" useLocalCopy="0" useGlobalPath="0"/>
<MODULE id="juce_organicui" showAllCode="1" useLocalCopy="0" useGlobalPath="0"/>
<MODULE id="juce_osc" showAllCode="1" useLocalCopy="0" useGlobalPath="0"/>
Expand Down
10 changes: 8 additions & 2 deletions Builds/LinuxMakefile/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ ifeq ($(CONFIG),Debug)
TARGET_ARCH :=
endif

JUCE_CPPFLAGS := $(DEPFLAGS) "-DLINUX=1" "-DDEBUG=1" "-D_DEBUG=1" "-DOSC_REMOTE_CONTROL_PORT=43000" "-DJUCER_LINUX_MAKE_6D53C8B4=1" "-DJUCE_APP_VERSION=1.3.0b1" "-DJUCE_APP_VERSION_HEX=0x10300" $(shell $(PKG_CONFIG) --cflags $(shell ($(PKG_CONFIG) --exists webkit2gtk-4.1 && echo webkit2gtk-4.1) || echo webkit2gtk-4.0) alsa freetype2 fontconfig gl libcurl gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../JUCE/modules -I../../Modules -I../../External/serial/include -I../../External/servus/include -I../../External/dnssd/include -I../../External/libusb/include/libusb-1.0 -I../../Source $(CPPFLAGS)
JUCE_CPPFLAGS := $(DEPFLAGS) "-DLINUX=1" "-DDEBUG=1" "-D_DEBUG=1" "-DOSC_REMOTE_CONTROL_PORT=43000" "-DJUCER_LINUX_MAKE_6D53C8B4=1" "-DJUCE_APP_VERSION=1.3.0b2" "-DJUCE_APP_VERSION_HEX=0x10300" $(shell $(PKG_CONFIG) --cflags $(shell ($(PKG_CONFIG) --exists webkit2gtk-4.1 && echo webkit2gtk-4.1) || echo webkit2gtk-4.0) alsa freetype2 fontconfig gl libcurl gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../JUCE/modules -I../../Modules -I../../../JUCE/modules -I../../External/serial/include -I../../External/servus/include -I../../External/dnssd/include -I../../External/libusb/include/libusb-1.0 -I../../Source $(CPPFLAGS)
JUCE_CPPFLAGS_APP := "-DJucePlugin_Build_VST=0" "-DJucePlugin_Build_VST3=0" "-DJucePlugin_Build_AU=0" "-DJucePlugin_Build_AUv3=0" "-DJucePlugin_Build_AAX=0" "-DJucePlugin_Build_Standalone=0" "-DJucePlugin_Build_Unity=0" "-DJucePlugin_Build_LV2=0"
JUCE_TARGET_APP := Blux

Expand All @@ -60,7 +60,7 @@ ifeq ($(CONFIG),Release)
TARGET_ARCH :=
endif

JUCE_CPPFLAGS := $(DEPFLAGS) "-DLINUX=1" "-DNDEBUG=1" "-DOSC_REMOTE_CONTROL_PORT=43000" "-DJUCER_LINUX_MAKE_6D53C8B4=1" "-DJUCE_APP_VERSION=1.3.0b1" "-DJUCE_APP_VERSION_HEX=0x10300" $(shell $(PKG_CONFIG) --cflags $(shell ($(PKG_CONFIG) --exists webkit2gtk-4.1 && echo webkit2gtk-4.1) || echo webkit2gtk-4.0) alsa freetype2 fontconfig gl libcurl gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../JUCE/modules -I../../Modules -I../../External/serial/include -I../../External/servus/include -I../../External/dnssd/include -I../../External/libusb/include/libusb-1.0 -I../../Source $(CPPFLAGS)
JUCE_CPPFLAGS := $(DEPFLAGS) "-DLINUX=1" "-DNDEBUG=1" "-DOSC_REMOTE_CONTROL_PORT=43000" "-DJUCER_LINUX_MAKE_6D53C8B4=1" "-DJUCE_APP_VERSION=1.3.0b2" "-DJUCE_APP_VERSION_HEX=0x10300" $(shell $(PKG_CONFIG) --cflags $(shell ($(PKG_CONFIG) --exists webkit2gtk-4.1 && echo webkit2gtk-4.1) || echo webkit2gtk-4.0) alsa freetype2 fontconfig gl libcurl gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../JUCE/modules -I../../Modules -I../../../JUCE/modules -I../../External/serial/include -I../../External/servus/include -I../../External/dnssd/include -I../../External/libusb/include/libusb-1.0 -I../../Source $(CPPFLAGS)
JUCE_CPPFLAGS_APP := "-DJucePlugin_Build_VST=0" "-DJucePlugin_Build_VST3=0" "-DJucePlugin_Build_AU=0" "-DJucePlugin_Build_AUv3=0" "-DJucePlugin_Build_AAX=0" "-DJucePlugin_Build_Standalone=0" "-DJucePlugin_Build_Unity=0" "-DJucePlugin_Build_LV2=0"
JUCE_TARGET_APP := Blux

Expand Down Expand Up @@ -103,6 +103,7 @@ OBJECTS_APP := \
$(JUCE_OBJDIR)/include_juce_graphics_Sheenbidi_c310974d.o \
$(JUCE_OBJDIR)/include_juce_gui_basics_e3f79785.o \
$(JUCE_OBJDIR)/include_juce_gui_extra_6dee1c1a.o \
$(JUCE_OBJDIR)/include_juce_javascript_84e88969.o \
$(JUCE_OBJDIR)/include_juce_opengl_a8a032b.o \
$(JUCE_OBJDIR)/include_juce_organicui_2c36794d.o \
$(JUCE_OBJDIR)/include_juce_organicui2_5ab8c64f.o \
Expand Down Expand Up @@ -283,6 +284,11 @@ $(JUCE_OBJDIR)/include_juce_gui_extra_6dee1c1a.o: ../../JuceLibraryCode/include_
@echo "Compiling include_juce_gui_extra.cpp"
$(V_AT)$(CXX) $(JUCE_CXXFLAGS) $(JUCE_CPPFLAGS_APP) $(JUCE_CFLAGS_APP) -o "$@" -c "$<"

$(JUCE_OBJDIR)/include_juce_javascript_84e88969.o: ../../JuceLibraryCode/include_juce_javascript.cpp
-$(V_AT)mkdir -p $(@D)
@echo "Compiling include_juce_javascript.cpp"
$(V_AT)$(CXX) $(JUCE_CXXFLAGS) $(JUCE_CPPFLAGS_APP) $(JUCE_CFLAGS_APP) -o "$@" -c "$<"

$(JUCE_OBJDIR)/include_juce_opengl_a8a032b.o: ../../JuceLibraryCode/include_juce_opengl.cpp
-$(V_AT)mkdir -p $(@D)
@echo "Compiling include_juce_opengl.cpp"
Expand Down
21 changes: 15 additions & 6 deletions Builds/MacOSX_CI/Blux.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
035E3FED88A00F4B6B54FA57 /* include_juce_gui_basics.mm */ = {isa = PBXBuildFile; fileRef = A079914B7A28CE1E5A59B53F; };
0490EC280AA07B22E5D5CB53 /* Metal.framework */ = {isa = PBXBuildFile; fileRef = 3268CD6145CC40F591DE8588; settings = { ATTRIBUTES = (Weak, ); }; };
056936DE2FFCBA2723FE5F98 /* EffectIncludes.cpp */ = {isa = PBXBuildFile; fileRef = BFFF9D37219BF1BFEE26B24C; };
0F5F543AA9A9C0B8CB13F071 /* include_juce_javascript.cpp */ = {isa = PBXBuildFile; fileRef = 089131943A1807512A1CC744; };
10EA515C3226184043546018 /* ChainViz.cpp */ = {isa = PBXBuildFile; fileRef = 72254717BC83E321C9FCDE58; };
114E43F97D82C1DF73FB3E86 /* IOKit.framework */ = {isa = PBXBuildFile; fileRef = AF50F8CC1E4CFCE11D7B7525; };
169BD0462B92A23E06E0C979 /* include_juce_graphics_Sheenbidi.c */ = {isa = PBXBuildFile; fileRef = 83BE795111D5212FFDB682AE; };
Expand Down Expand Up @@ -87,6 +88,7 @@
05FBFE3D06DAAE42C4804D82 /* EffectManager.cpp */ /* EffectManager.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EffectManager.cpp; path = ../../Source/Effect/EffectManager.cpp; sourceTree = SOURCE_ROOT; };
08877713E1BB4663B2C9D17E /* AutomationEffectEditor.h */ /* AutomationEffectEditor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AutomationEffectEditor.h; path = ../../Source/Effect/effects/time/automation/ui/AutomationEffectEditor.h; sourceTree = SOURCE_ROOT; };
088DE01CBA69E8FEAE0FBF07 /* GenericAction.h */ /* GenericAction.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = GenericAction.h; path = ../../Source/Engine/GenericAction.h; sourceTree = SOURCE_ROOT; };
089131943A1807512A1CC744 /* include_juce_javascript.cpp */ /* include_juce_javascript.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = include_juce_javascript.cpp; path = ../../JuceLibraryCode/include_juce_javascript.cpp; sourceTree = SOURCE_ROOT; };
0AD023E539094E9404F6C1F1 /* EffectManager.h */ /* EffectManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = EffectManager.h; path = ../../Source/Effect/EffectManager.h; sourceTree = SOURCE_ROOT; };
0AEFE197A55CC4FA3B4EE1FE /* BluxSequenceManager.h */ /* BluxSequenceManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = BluxSequenceManager.h; path = ../../Source/Sequence/BluxSequenceManager.h; sourceTree = SOURCE_ROOT; };
0B4ABDC12406D18323EB376A /* juce_data_structures */ /* juce_data_structures */ = {isa = PBXFileReference; lastKnownFileType = folder; name = juce_data_structures; path = ../../JUCE/modules/juce_data_structures; sourceTree = SOURCE_ROOT; };
Expand All @@ -113,6 +115,7 @@
169E31B759069A038FB7AF3F /* ObjectManagerUI.cpp */ /* ObjectManagerUI.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ObjectManagerUI.cpp; path = ../../Source/Object/ui/ObjectManagerUI.cpp; sourceTree = SOURCE_ROOT; };
16E52562C8E640D793776AF7 /* OSCOutputEditor.cpp */ /* OSCOutputEditor.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = OSCOutputEditor.cpp; path = ../../Source/Interface/interfaces/osc/ui/OSCOutputEditor.cpp; sourceTree = SOURCE_ROOT; };
174FD188B87C29397A5DBE1A /* QuartzCore.framework */ /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
180AAE5D6387B9980BFC3AF6 /* juce_javascript */ /* juce_javascript */ = {isa = PBXFileReference; lastKnownFileType = folder; name = juce_javascript; path = ../../../JUCE/modules/juce_javascript; sourceTree = SOURCE_ROOT; };
18823A2EA33470C00ADBA12A /* Filter.h */ /* Filter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = Filter.h; path = ../../Source/Effect/Filter/Filter.h; sourceTree = SOURCE_ROOT; };
1884ABE418F49D47EFBB44AE /* Security.framework */ /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
191A42B4289F42E9DEC514CD /* ColorSourceOverrideEffectEditor.h */ /* ColorSourceOverrideEffectEditor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ColorSourceOverrideEffectEditor.h; path = ../../Source/Effect/effects/color/override/ui/ColorSourceOverrideEffectEditor.h; sourceTree = SOURCE_ROOT; };
Expand Down Expand Up @@ -814,6 +817,7 @@
A3311C31C46FEB77CADF3596,
167623348D43C60D9A891E70,
E375886F1ED0C7CEDF4E7076,
180AAE5D6387B9980BFC3AF6,
D7B9DC945ABF2D7230D89FF6,
69208D8485C1CB9E8AB276F9,
85D3C5F10C3FECC73E1BA306,
Expand Down Expand Up @@ -1721,6 +1725,7 @@
83BE795111D5212FFDB682AE,
A079914B7A28CE1E5A59B53F,
7539F3BFFB1F9451C222C130,
089131943A1807512A1CC744,
471E240554E3A9946C1D64F2,
EEB3B19E57DBCFFD69BA86F8,
CFDA35C76602682CC9A4C8CD,
Expand Down Expand Up @@ -1973,6 +1978,7 @@
169BD0462B92A23E06E0C979,
035E3FED88A00F4B6B54FA57,
1C07AA8B9CF4906ADCEB1642,
0F5F543AA9A9C0B8CB13F071,
AD972DA58333EFC71D240A95,
187B7184398FD03345F45EC6,
D8E8FC19FE0873A1B4A636C4,
Expand Down Expand Up @@ -2056,7 +2062,7 @@
"OSC_REMOTE_CONTROL_PORT=43000",
"JUCE_COREGRAPHICS_DRAW_ASYNC=1",
"JUCER_XCODE_MAC_2F3811D6=1",
"JUCE_APP_VERSION=1.3.0b1",
"JUCE_APP_VERSION=1.3.0b2",
"JUCE_APP_VERSION_HEX=0x10300",
"JucePlugin_Build_VST=0",
"JucePlugin_Build_VST3=0",
Expand All @@ -2072,6 +2078,7 @@
"$(SRCROOT)/../../JuceLibraryCode",
"$(SRCROOT)/../../JUCE/modules",
"$(SRCROOT)/../../Modules",
"$(SRCROOT)/../../../JUCE/modules",
"$(SRCROOT)/../../External/servus/include",
"$(SRCROOT)/../../External/dnssd/include",
"$(SRCROOT)/../../Source",
Expand All @@ -2089,7 +2096,7 @@
"\"../../Modules/juce_simpleweb/libs/MacOSX/${CURRENT_ARCH}\"",
);
MACOSX_DEPLOYMENT_TARGET = 10.11;
MTL_HEADER_SEARCH_PATHS = "$(SRCROOT)/../../JuceLibraryCode $(SRCROOT)/../../JUCE/modules $(SRCROOT)/../../Modules $(SRCROOT)/../../External/servus/include $(SRCROOT)/../../External/dnssd/include $(SRCROOT)/../../Source";
MTL_HEADER_SEARCH_PATHS = "$(SRCROOT)/../../JuceLibraryCode $(SRCROOT)/../../JUCE/modules $(SRCROOT)/../../Modules $(SRCROOT)/../../../JUCE/modules $(SRCROOT)/../../External/servus/include $(SRCROOT)/../../External/dnssd/include $(SRCROOT)/../../Source";
OTHER_LDFLAGS = "-lServus -lserial -lssl -lcrypto -lz";
PRODUCT_BUNDLE_IDENTIFIER = benkuper.Blux;
PRODUCT_NAME = "Blux";
Expand Down Expand Up @@ -2165,7 +2172,7 @@
"OSC_REMOTE_CONTROL_PORT=43000",
"JUCE_COREGRAPHICS_DRAW_ASYNC=1",
"JUCER_XCODE_MAC_2F3811D6=1",
"JUCE_APP_VERSION=1.3.0b1",
"JUCE_APP_VERSION=1.3.0b2",
"JUCE_APP_VERSION_HEX=0x10300",
"JucePlugin_Build_VST=0",
"JucePlugin_Build_VST3=0",
Expand All @@ -2181,6 +2188,7 @@
"$(SRCROOT)/../../JuceLibraryCode",
"$(SRCROOT)/../../JUCE/modules",
"$(SRCROOT)/../../Modules",
"$(SRCROOT)/../../../JUCE/modules",
"$(SRCROOT)/../../External/servus/include",
"$(SRCROOT)/../../External/dnssd/include",
"$(SRCROOT)/../../Source",
Expand All @@ -2199,7 +2207,7 @@
);
LLVM_LTO = YES;
MACOSX_DEPLOYMENT_TARGET = 10.11;
MTL_HEADER_SEARCH_PATHS = "$(SRCROOT)/../../JuceLibraryCode $(SRCROOT)/../../JUCE/modules $(SRCROOT)/../../Modules $(SRCROOT)/../../External/servus/include $(SRCROOT)/../../External/dnssd/include $(SRCROOT)/../../Source";
MTL_HEADER_SEARCH_PATHS = "$(SRCROOT)/../../JuceLibraryCode $(SRCROOT)/../../JUCE/modules $(SRCROOT)/../../Modules $(SRCROOT)/../../../JUCE/modules $(SRCROOT)/../../External/servus/include $(SRCROOT)/../../External/dnssd/include $(SRCROOT)/../../Source";
OTHER_LDFLAGS = "-lServus -lserial -lssl -lcrypto -lz";
PRODUCT_BUNDLE_IDENTIFIER = benkuper.Blux;
PRODUCT_NAME = "Blux";
Expand Down Expand Up @@ -2227,7 +2235,7 @@
"OSC_REMOTE_CONTROL_PORT=43000",
"JUCE_COREGRAPHICS_DRAW_ASYNC=1",
"JUCER_XCODE_MAC_2F3811D6=1",
"JUCE_APP_VERSION=1.3.0b1",
"JUCE_APP_VERSION=1.3.0b2",
"JUCE_APP_VERSION_HEX=0x10300",
"JucePlugin_Build_VST=0",
"JucePlugin_Build_VST3=0",
Expand All @@ -2243,6 +2251,7 @@
"$(SRCROOT)/../../JuceLibraryCode",
"$(SRCROOT)/../../JUCE/modules",
"$(SRCROOT)/../../Modules",
"$(SRCROOT)/../../../JUCE/modules",
"$(SRCROOT)/../../External/servus/include",
"$(SRCROOT)/../../External/dnssd/include",
"$(SRCROOT)/../../Source",
Expand All @@ -2261,7 +2270,7 @@
);
LLVM_LTO = YES;
MACOSX_DEPLOYMENT_TARGET = 10.11;
MTL_HEADER_SEARCH_PATHS = "$(SRCROOT)/../../JuceLibraryCode $(SRCROOT)/../../JUCE/modules $(SRCROOT)/../../Modules $(SRCROOT)/../../External/servus/include $(SRCROOT)/../../External/dnssd/include $(SRCROOT)/../../Source";
MTL_HEADER_SEARCH_PATHS = "$(SRCROOT)/../../JuceLibraryCode $(SRCROOT)/../../JUCE/modules $(SRCROOT)/../../Modules $(SRCROOT)/../../../JUCE/modules $(SRCROOT)/../../External/servus/include $(SRCROOT)/../../External/dnssd/include $(SRCROOT)/../../Source";
OTHER_LDFLAGS = "-lServus -lserial -lssl -lcrypto -lz";
PRODUCT_BUNDLE_IDENTIFIER = benkuper.Blux;
PRODUCT_NAME = "Blux";
Expand Down
4 changes: 2 additions & 2 deletions Builds/MacOSX_CI/Info-App.plist
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleShortVersionString</key>
<string>1.3.0b1</string>
<string>1.3.0b2</string>
<key>CFBundleVersion</key>
<string>1.3.0b1</string>
<string>1.3.0b2</string>
<key>NSHumanReadableCopyright</key>
<string>Ben Kuper</string>
<key>NSHighResolutionCapable</key>
Expand Down
Loading

0 comments on commit 03f21a3

Please sign in to comment.