Skip to content

Commit

Permalink
1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pavloshargan committed Dec 29, 2024
1 parent 121c7ef commit 329ebd9
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Android/cliptracer-remote/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ android {
applicationId = "com.cliptracer.ClipTracer"
minSdk = 31
targetSdk = 34
versionCode = 9
versionName = "ClipTracer_1.1"
versionCode = 10
versionName = "ClipTracer_1.2"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -234,9 +234,9 @@ class SilentAudioService : Service() {
}

fun initializeMediaPlayer(beepDuringRecording: Boolean) {
var resourceId = R.raw.pulse_audio
var resourceId = R.raw.beep150min
if(!beepDuringRecording){
resourceId = R.raw.beep150min
resourceId = R.raw.silent_track
}
val afd = applicationContext.resources.openRawResourceFd(resourceId)
if (afd == null) {
Expand Down
9 changes: 5 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@
### 12/19/2024
<p>Added GoPro Time Sync with the Smartphone upon connection </p>

### 12/28/2024
### 12/28/2024 (Release 1.2)
<p>Added an option to enable or disable sound during recording </p>
<p> Automatic correction to Video mode on GoPro in order to prevent accidental switching to Photo/Timelapse </p>

<br>

# Android
### 12/19/2024
<p>Added GoPro Time Sync with the Smartphone upon connection </p>
<p>Added GoPro Time Sync with the Smartphone upon connection

### 12/28/2024
### 12/28/2024 (Release 1.2)
<p>Added an option to enable or disable sound during recording </p>

<p> Automatic correction to Video mode on GoPro in order to prevent accidental switching to Photo/Timelapse </p>
8 changes: 4 additions & 4 deletions IOS/Cliptracer/Cliptracer.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 2;
CURRENT_PROJECT_VERSION = 3;
DEVELOPMENT_ASSET_PATHS = "\"Cliptracer/Preview Content\"";
DEVELOPMENT_TEAM = DW637TJWU3;
ENABLE_PREVIEWS = YES;
Expand All @@ -349,7 +349,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.1;
MARKETING_VERSION = 1.2;
PRODUCT_BUNDLE_IDENTIFIER = com.cliptracer.cliptracer;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand All @@ -366,7 +366,7 @@
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 2;
CURRENT_PROJECT_VERSION = 3;
DEVELOPMENT_ASSET_PATHS = "\"Cliptracer/Preview Content\"";
DEVELOPMENT_TEAM = DW637TJWU3;
ENABLE_PREVIEWS = YES;
Expand All @@ -386,7 +386,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.1;
MARKETING_VERSION = 1.2;
PRODUCT_BUNDLE_IDENTIFIER = com.cliptracer.cliptracer;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down

0 comments on commit 329ebd9

Please sign in to comment.