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
12 changes: 6 additions & 6 deletions AirCasting.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -4094,7 +4094,7 @@
CODE_SIGN_ENTITLEMENTS = AirCasting/AirCasting.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 5;
CURRENT_PROJECT_VERSION = 6;
DEBUG_INFORMATION_FORMAT = dwarf;
DEVELOPMENT_TEAM = LXAGXH6CF6;
ENABLE_PREVIEWS = YES;
Expand All @@ -4104,7 +4104,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.24.0;
MARKETING_VERSION = 1.24.1;
PRODUCT_BUNDLE_IDENTIFIER = org.habitatmap.AirCasting;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand All @@ -4122,7 +4122,7 @@
CODE_SIGN_ENTITLEMENTS = AirCasting/AirCasting.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 5;
CURRENT_PROJECT_VERSION = 6;
DEVELOPMENT_TEAM = LXAGXH6CF6;
ENABLE_PREVIEWS = YES;
INFOPLIST_FILE = AirCasting/Info.plist;
Expand All @@ -4131,7 +4131,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.24.0;
MARKETING_VERSION = 1.24.1;
PRODUCT_BUNDLE_IDENTIFIER = org.habitatmap.AirCasting;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down Expand Up @@ -4210,7 +4210,7 @@
CODE_SIGN_ENTITLEMENTS = AirCasting/AirCasting.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 5;
CURRENT_PROJECT_VERSION = 6;
DEVELOPMENT_TEAM = LXAGXH6CF6;
ENABLE_PREVIEWS = YES;
INFOPLIST_FILE = AirCasting/Info.plist;
Expand All @@ -4219,7 +4219,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.24.0;
MARKETING_VERSION = 1.24.1;
PRODUCT_BUNDLE_IDENTIFIER = org.habitatmap.AirCasting;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
4 changes: 3 additions & 1 deletion AirCasting/Models/AirBeamCellularSessionCreator.swift
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ final class AirBeamCellularSessionCreator: SessionCreator {
startTime: DateBuilder.getFakeUTCDate(),
followedAt: DateBuilder.getFakeUTCDate(),
isIndoor: isIndoor,
tags: sessionContext.sessionTags)
tags: sessionContext.sessionTags,
status: .FINISHED
)

// if session is fixed: create an empty session on server,
// then send AB auth data to connect to web session and data needed to start recording
Expand Down
4 changes: 3 additions & 1 deletion AirCasting/Models/AirBeamFixedWifiSessionCreator.swift
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ final class AirBeamFixedWifiSessionCreator: SessionCreator {
startTime: DateBuilder.getFakeUTCDate(),
followedAt: DateBuilder.getFakeUTCDate(),
isIndoor: isIndoor,
tags: sessionContext.sessionTags)
tags: sessionContext.sessionTags,
status: .FINISHED
)

// if session is fixed: create an empty session on server,
// then send AB auth data to connect to web session and data needed to start recording
Expand Down
Loading