Skip to content

Commit

Permalink
Version 1.0.9 - fixing auto-answer, setting video as enabled by defau…
Browse files Browse the repository at this point in the history
…lt with CIF resolution
  • Loading branch information
ianblenke committed Oct 6, 2015
1 parent 5c112a3 commit 7f1ee9f
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .semver
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
:major: 1
:minor: 0
:patch: 8
:patch: 9
:special: ''
:metadata: ''
4 changes: 2 additions & 2 deletions Classes/LinphoneCoreSettingsStore.m
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ - (void)transformLinphoneCoreToKeys {
} else if ((vsize.width == MS_VIDEO_SIZE_QVGA_W) && (vsize.height == MS_VIDEO_SIZE_QVGA_H)) {
index = 3;
} else {
index = 3;
index = 2;
}
[self setInteger:index forKey:@"video_preferred_size_preference"];
[self setInteger:linphone_core_get_preferred_framerate(lc) forKey:@"video_preferred_fps_preference"];
Expand Down Expand Up @@ -645,7 +645,7 @@ - (BOOL)synchronize {
}
linphone_core_set_preferred_video_size(lc, vsize);
if (![videoPreset isEqualToString:@"custom"]) {
[self setInteger:0 forKey:@"video_preferred_fps_preference"];
[self setInteger:6 forKey:@"video_preferred_fps_preference"];
[self setInteger:bw forKey:@"download_bandwidth_preference"];
}
linphone_core_set_preferred_framerate(lc, [self integerForKey:@"video_preferred_fps_preference"]);
Expand Down
6 changes: 3 additions & 3 deletions Resources/linphonerc
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ rtcp_xr_voip_metrics_enabled=1
[video]
display=1
capture=1
show_local=0
show_local=1
enabled=1
size=vga
size=cif
automatically_initiate=1
automatically_accept=1
preset=high-fps
Expand All @@ -58,7 +58,7 @@ edge_opt_preference=0
use_system_contacts=0
start_at_boot_preference=1
backgroundmode_preference=1
autoanswer_notif_preference=0
autoanswer_notif_preference=1
voiceproc_preference=1
enable_log_collect=0
repeat_call_notification=1
Expand Down
2 changes: 1 addition & 1 deletion Settings/InAppSettings.bundle/Video.plist
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
<integer>30</integer>
</array>
<key>DefaultValue</key>
<string>0</string>
<string>6</string>
</dict>
<dict>
<key>Key</key>
Expand Down
3 changes: 2 additions & 1 deletion Tools/release.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/bin/bash
set -e

# Only deploy master branch builds

Expand Down Expand Up @@ -39,6 +38,8 @@ if [ -z "${PROVISIONING_PROFILE}" ]; then
echo "Missing PROVISIONING_PROFILE"
fi

set -e

# Generate an archive for this project

XCARCHIVE_FILE=/tmp/ace-ios.xcarchive
Expand Down
4 changes: 2 additions & 2 deletions linphone-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0.8</string>
<string>1.0.9</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
Expand Down Expand Up @@ -53,7 +53,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>2</string>
<string>1</string>
<key>Fabric</key>
<dict>
<key>APIKey</key>
Expand Down

0 comments on commit 7f1ee9f

Please sign in to comment.