Skip to content

Commit

Permalink
Build with SDK 5.1.0.GA, change draggable default
Browse files Browse the repository at this point in the history
  • Loading branch information
hansemannn committed Nov 22, 2015
1 parent b874749 commit 488b12c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion iphone/Classes/DeHansknoechelGooglemapsMarkerProxy.m
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ -(NSNumber*)flat
-(void)setDraggable:(id)value
{
ENSURE_UI_THREAD_1_ARG(value);
[[self marker] setDraggable:[TiUtils boolValue:value def:YES]];
[[self marker] setDraggable:[TiUtils boolValue:value def:NO]];
}

-(NSNumber*)draggable
Expand Down
3 changes: 2 additions & 1 deletion iphone/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,8 @@ def package_module(manifest,mf,config):
zf.write(mf,'%s/manifest' % modulepath)
libname = 'lib%s.a' % moduleid
zf.write('build/%s' % libname, '%s/%s' % (modulepath,libname))
docs = generate_doc(config)
# Currently no manual docs existing
docs = None
if docs!=None:
for doc in docs:
for file, html in doc.iteritems():
Expand Down
2 changes: 1 addition & 1 deletion iphone/manifest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# this is your module manifest and used by Titanium
# during compilation, packaging, distribution, etc.
#
version: 1.0.1
version: 1.0.2
apiversion: 2
architectures: armv7 arm64 i386 x86_64
description: ti.googlemaps
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion iphone/titanium.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// OF YOUR TITANIUM SDK YOU'RE BUILDING FOR
//
//
TITANIUM_SDK_VERSION = 5.0.2.GA
TITANIUM_SDK_VERSION = 5.1.0.GA


//
Expand Down

0 comments on commit 488b12c

Please sign in to comment.