Skip to content

Commit a23dd81

Browse files
committed
+ fixed pinch gesture bug
+ set v1.1 version in info plist
1 parent d46077d commit a23dd81

File tree

2 files changed

+9
-11
lines changed

2 files changed

+9
-11
lines changed

OpenGpxTracker/Info.plist

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0</string>
18+
<string>1.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>2</string>
22+
<string>1</string>
2323
<key>LSRequiresIPhoneOS</key>
2424
<true/>
2525
<key>NSLocationAlwaysUsageDescription</key>
@@ -51,12 +51,10 @@
5151
<string>UIInterfaceOrientationLandscapeLeft</string>
5252
<string>UIInterfaceOrientationLandscapeRight</string>
5353
</array>
54-
<!-- allow all connections -->
55-
<key>NSAppTransportSecurity</key>
56-
<dict>
57-
<key>NSAllowsArbitraryLoads</key>
58-
<true/>
59-
</dict>
60-
<!-- end allow all connections -->
54+
<key>NSAppTransportSecurity</key>
55+
<dict>
56+
<key>NSAllowsArbitraryLoads</key>
57+
<true/>
58+
</dict>
6159
</dict>
6260
</plist>

OpenGpxTracker/ViewController.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,8 +232,8 @@ class ViewController: UIViewController, MKMapViewDelegate,CLLocationManagerDeleg
232232
map.addGestureRecognizer(panGesture)
233233

234234

235-
let pinchGesture = UIPinchGestureRecognizer(target: self, action: "pinchGesture")
236-
map.addGestureRecognizer(pinchGesture)
235+
//let pinchGesture = UIPinchGestureRecognizer(target: self, action: "pinchGesture")
236+
//map.addGestureRecognizer(pinchGesture)
237237

238238
//Set Tile Server
239239
let defaults = NSUserDefaults.standardUserDefaults()

0 commit comments

Comments
 (0)