Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion demos/demo-android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ dependencies {
implementation 'com.jakewharton.timber:timber:5.0.1'
implementation 'io.coil-kt:coil-compose:2.2.2'
implementation "io.ktor:ktor-client-cio:$ktor_version"
implementation "com.ricoh360.thetaclient:theta-client:1.14.0"
implementation "com.ricoh360.thetaclient:theta-client:1.14.1"

testImplementation 'org.junit.jupiter:junit-jupiter:5.9.0'
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:$coroutines_version"
Expand Down
2 changes: 1 addition & 1 deletion demos/demo-ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ target 'SdkSample' do
use_frameworks!

# Pods for SdkSample
pod 'THETAClient', '1.14.0'
pod 'THETAClient', '1.14.1'
end
8 changes: 8 additions & 0 deletions demos/demo-react-native/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,13 @@ target 'DemoReactNative' do
:mac_catalyst_enabled => false,
# :ccache_enabled => true
)

installer.pods_project.targets.each do |target|
if target.name == 'fmt'
target.build_configurations.each do |config|
config.build_settings['CLANG_CXX_LANGUAGE_STANDARD'] = 'c++17'
end
end
end
end
end
2 changes: 1 addition & 1 deletion demos/demo-react-native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"postinstall": "./scripts/copy-npm-module-to-web-bundles.sh"
},
"dependencies": {
"theta-client-react-native": "1.14.0",
"theta-client-react-native": "1.14.1",
"marzipano": "0.10.2",
"react": "19.0.0",
"react-native": "0.78.2",
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial-android.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

- モジュールの`build.gradle`の`dependencies`に次を追加します。
```
implementation "com.ricoh360.thetaclient:theta-client:1.14.0"
implementation "com.ricoh360.thetaclient:theta-client:1.14.1"
```
- 本 SDK を使用したアプリケーションが動作するスマートフォンと THETA を無線 LAN 接続しておきます。

Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial-android.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
- Add following descriptions to the `dependencies` of your module's `build.gradle`.

```
implementation "com.ricoh360.thetaclient:theta-client:1.14.0"
implementation "com.ricoh360.thetaclient:theta-client:1.14.1"
```

- Connect the wireless LAN between THETA and the smartphone that runs on the application using this SDK.
Expand Down
2 changes: 1 addition & 1 deletion flutter/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ android {
testImplementation("org.mockito:mockito-core:5.0.0")

implementation("com.soywiz.korlibs.krypto:krypto:4.0.10")
implementation("com.ricoh360.thetaclient:theta-client:1.14.0")
implementation("com.ricoh360.thetaclient:theta-client:1.14.1")
}

testOptions {
Expand Down
4 changes: 2 additions & 2 deletions flutter/ios/theta_client_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
Pod::Spec.new do |s|
s.name = 'theta_client_flutter'
s.version = '1.14.0'
s.version = '1.14.1'
s.summary = 'theta-client plugin project.'
s.description = <<-DESC
theta-client Flutter plugin project.
Expand All @@ -17,7 +17,7 @@ Pod::Spec.new do |s|
s.dependency 'Flutter'
s.platform = :ios, '15.0'

s.dependency 'THETAClient', '1.14.0'
s.dependency 'THETAClient', '1.14.1'

# Flutter.framework does not contain a i386 slice.
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
Expand Down
2 changes: 1 addition & 1 deletion flutter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: theta_client_flutter
description: THETA Client Flutter plugin project.
version: 1.14.0
version: 1.14.1
homepage:

environment:
Expand Down
2 changes: 1 addition & 1 deletion kotlin-multiplatform/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies {
dokkaPlugin("org.jetbrains.dokka:versioning-plugin:1.9.20")
}

val thetaClientVersion = "1.14.0"
val thetaClientVersion = "1.14.1"
group = "com.ricoh360.thetaclient"
version = thetaClientVersion

Expand Down
2 changes: 1 addition & 1 deletion react-native/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ dependencies {
implementation "com.facebook.react:react-native:+"
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3"
implementation "com.ricoh360.thetaclient:theta-client:1.14.0"
implementation "com.ricoh360.thetaclient:theta-client:1.14.1"
}

react {
Expand Down
10 changes: 8 additions & 2 deletions react-native/ios/ThetaClientReactNative.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2205,7 +2205,7 @@ class ThetaClientReactNative: RCTEventEmitter {
@objc(setAccessPointConnectionPriority:connectionPriority:ssidStealth:resolve:reject:)
func setAccessPointConnectionPriority(
ssid: String,
connectionPriority: Int,
connectionPriority: Double,
ssidStealth: Bool,
resolve: @escaping RCTPromiseResolveBlock,
reject: @escaping RCTPromiseRejectBlock
Expand All @@ -2214,9 +2214,15 @@ class ThetaClientReactNative: RCTEventEmitter {
reject(ERROR_CODE_ERROR, MESSAGE_NOT_INIT, nil)
return
}

guard let priority = Int32(exactly:connectionPriority) else {
reject(ERROR_CODE_ERROR, MESSAGE_NO_ARGUMENT, nil)
return
}

do {
thetaRepository.setAccessPointConnectionPriority(
ssid: ssid, connectionPriority: Int32(clamping: connectionPriority),
ssid: ssid, connectionPriority: priority,
ssidStealth: ssidStealth
) { error in
if let error {
Expand Down
2 changes: 1 addition & 1 deletion react-native/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "theta-client-react-native",
"version": "1.14.0",
"version": "1.14.1",
"description": "This library provides a way to control RICOH THETA using.",
"main": "lib/commonjs/index",
"module": "lib/module/index",
Expand Down
2 changes: 1 addition & 1 deletion react-native/theta-client-react-native.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Pod::Spec.new do |s|

s.source_files = "ios/**/*.{h,m,mm,swift,cpp}"

s.dependency "THETAClient", "1.14.0"
s.dependency "THETAClient", "1.14.1"

install_modules_dependencies(s)
end
6 changes: 6 additions & 0 deletions react-native/verification-tool/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,12 @@ target 'ThetaClientVerificationTool' do
config.build_settings['CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES'] = 'YES'
end
end

if target.name == 'fmt'
target.build_configurations.each do |config|
config.build_settings['CLANG_CXX_LANGUAGE_STANDARD'] = 'c++17'
end
end
end
end
end
Loading