Skip to content

Commit 3659685

Browse files
authored
Merge pull request #14 from studyplus/change_appstore_url
StudyplusのAppStoreのURLを変更
2 parents 632ed99 + 2f8c3c1 commit 3659685

File tree

5 files changed

+23
-8
lines changed

5 files changed

+23
-8
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
1.3.2 Release notes (2019-06-21)
2+
=============================================================
3+
4+
### API Breaking Changes
5+
6+
* None.
7+
8+
### Enhancements
9+
10+
* change url of app store
11+
12+
### Bugfixes
13+
14+
* None.
15+
116
1.3.1 Release notes (2019-06-17)
217
=============================================================
318

Demo/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>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.3.1</string>
18+
<string>1.3.2</string>
1919
<key>CFBundleURLTypes</key>
2020
<array>
2121
<dict>

StudyplusSDK-V2.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "StudyplusSDK-V2"
3-
s.version = "1.3.1"
3+
s.version = "1.3.2"
44
s.summary = "StudyplusSDK-V2 is Studyplus iOS SDK for Swift"
55
s.homepage = "http://info.studyplus.jp"
66
s.license = { :type => "MIT", :file => "LICENSE" }

StudyplusSDK/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>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.3.1</string>
18+
<string>1.3.2</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSPrincipalClass</key>

StudyplusSDK/Studyplus.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -263,8 +263,8 @@ final public class Studyplus {
263263
let consumerKey = data["consumerKey"],
264264
let consumerSecret = data["consumerSecret"] else {
265265

266-
assert(false, "StudyplusSDK: *** Pleease set consumerKey and consumerSecret in your Info.plist. ***")
267-
print("StudyplusSDK: *** Pleease set consumerKey and consumerSecret in your Info.plist. ***")
266+
assert(false, "StudyplusSDK: *** Please set consumerKey and consumerSecret in your Info.plist. ***")
267+
print("StudyplusSDK: *** Please set consumerKey and consumerSecret in your Info.plist. ***")
268268

269269
self.consumerKey = ""
270270
self.consumerSecret = ""
@@ -273,8 +273,8 @@ final public class Studyplus {
273273

274274
if consumerKey == "set_your_consumerKey" || consumerSecret == "set_your_consumerSecret" {
275275

276-
assert(false, "StudyplusSDK: *** Pleease set consumerKey and consumerSecret in Info.plist. ***")
277-
print("StudyplusSDK: *** Pleease set consumerKey and consumerSecret in your Info.plist. ***")
276+
assert(false, "StudyplusSDK: *** Please set consumerKey and consumerSecret in Info.plist. ***")
277+
print("StudyplusSDK: *** Please set consumerKey and consumerSecret in your Info.plist. ***")
278278

279279
self.consumerKey = ""
280280
self.consumerSecret = ""
@@ -303,7 +303,7 @@ final public class Studyplus {
303303

304304
if self.openAppStoreIfNotInstalled {
305305

306-
let appStoreURLString: String = "https://itunes.apple.com/jp/app/mian-qiangga-leshiku-xuku!/id505410049?mt=8"
306+
let appStoreURLString: String = "https://apps.apple.com/jp/app/id505410049?mt=8"
307307
guard let appStoreURL = URL(string: appStoreURLString) else { return }
308308
applicationOpen(appStoreURL)
309309
}

0 commit comments

Comments
 (0)