Skip to content

Commit 5426c72

Browse files
committed
Update README.md
1 parent d07ecf9 commit 5426c72

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ This SDK enables you to create and modify xmind(`.xmind`) files, and it's writte
66

77
Supported Platforms:
88

9-
- iOS
10-
- macOS
9+
- iOS 9+
10+
- macOS 10.11+
1111

1212
## Structure of XMind files
1313

14-
XMind file is a zip file which contains several components, including manifest, metadata, sheets and resources
14+
XMind file is a zip file which contains several components, including manifest, metadata, sheets and resources.
1515

1616
Resources contains all the resources of this xmind file that like images.
1717

@@ -37,7 +37,7 @@ import XMindSDK
3737
...
3838
...
3939

40-
let wb = try Workbook.open(filePath: filePath)// This file path which contains a existing xmind file.
40+
let wb = try Workbook.open(filePath: filePath)// This file path which contains an existing xmind file.
4141
try wb.loadManifest()
4242
try wb.loadContent(password: "123456")
4343

@@ -64,17 +64,17 @@ try wb.save(to: filePath, password: "123456")
6464
- Carthage
6565

6666
```
67-
github ""
67+
github "xmindltd/xmind-sdk-swift"
6868
```
6969

7070
- Swift Package Manager
7171

7272
```
73-
.package(url: "", .upToNextMinor(from: "1.0"))
73+
.package(url: "https://github.com/xmindltd/xmind-sdk-swift.git", .upToNextMinor(from: "1.0.0"))
7474
```
7575

7676

7777

7878
## License
7979

80-
This SDK is released under the MIT license. See LICENSE for details.
80+
This SDK is released under the MIT license. See LICENSE for details.

Sources/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0</string>
18+
<string>$(MARKETING_VERSION)</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
</dict>

XMindSDK.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,7 @@
361361
"@loader_path/Frameworks",
362362
);
363363
MACOSX_DEPLOYMENT_TARGET = 10.11;
364+
MARKETING_VERSION = 1.0.0;
364365
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
365366
MTL_FAST_MATH = YES;
366367
ONLY_ACTIVE_ARCH = YES;
@@ -451,6 +452,7 @@
451452
"@loader_path/Frameworks",
452453
);
453454
MACOSX_DEPLOYMENT_TARGET = 10.11;
455+
MARKETING_VERSION = 1.0.0;
454456
MTL_ENABLE_DEBUG_INFO = NO;
455457
MTL_FAST_MATH = YES;
456458
PRODUCT_BUNDLE_IDENTIFIER = net.xmind.XMindSDK;

0 commit comments

Comments
 (0)