Skip to content

Commit 4e0eba1

Browse files
committed
Update file authorship to reflect correct creator in VibeScribe project
- Changed the author name from "System" to "Pavel Frankov" in multiple files for accurate attribution. - This update ensures proper credit is given for the code contributions, enhancing maintainability and clarity in the project history. These changes improve the overall integrity of the codebase by ensuring that authorship is correctly represented.
1 parent bf02f56 commit 4e0eba1

21 files changed

+348
-219
lines changed

VibeScribe.xcodeproj/project.pbxproj

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
/* Begin PBXBuildFile section */
1010
7A8E8A6B2C88EC9F00DC14A4 /* (null) in Sources */ = {isa = PBXBuildFile; };
11-
8D5AD7B22DFF789C008A9AFB /* EventSource in Frameworks */ = {isa = PBXBuildFile; productRef = 8D5AD7B12DFF789C008A9AFB /* EventSource */; };
1211
/* End PBXBuildFile section */
1312

1413
/* Begin PBXFileReference section */
@@ -41,7 +40,6 @@
4140
isa = PBXFrameworksBuildPhase;
4241
buildActionMask = 2147483647;
4342
files = (
44-
8D5AD7B22DFF789C008A9AFB /* EventSource in Frameworks */,
4543
);
4644
runOnlyForDeploymentPostprocessing = 0;
4745
};
@@ -84,7 +82,6 @@
8482
);
8583
name = VibeScribe;
8684
packageProductDependencies = (
87-
8D5AD7B12DFF789C008A9AFB /* EventSource */,
8885
);
8986
productName = VibeScribe;
9087
productReference = 8DC158442DAC281A00BECEAC /* VibeScribe.app */;
@@ -115,7 +112,6 @@
115112
mainGroup = 8DC1583B2DAC281A00BECEAC;
116113
minimizedProjectReferenceProxies = 1;
117114
packageReferences = (
118-
8D5AD7B02DFF789C008A9AFB /* XCRemoteSwiftPackageReference "EventSource" */,
119115
);
120116
preferredProjectObjectVersion = 77;
121117
productRefGroup = 8DC158452DAC281A00BECEAC /* Products */;
@@ -351,25 +347,6 @@
351347
defaultConfigurationName = Release;
352348
};
353349
/* End XCConfigurationList section */
354-
355-
/* Begin XCRemoteSwiftPackageReference section */
356-
8D5AD7B02DFF789C008A9AFB /* XCRemoteSwiftPackageReference "EventSource" */ = {
357-
isa = XCRemoteSwiftPackageReference;
358-
repositoryURL = "https://github.com/Recouse/EventSource.git";
359-
requirement = {
360-
kind = upToNextMajorVersion;
361-
minimumVersion = 0.1.4;
362-
};
363-
};
364-
/* End XCRemoteSwiftPackageReference section */
365-
366-
/* Begin XCSwiftPackageProductDependency section */
367-
8D5AD7B12DFF789C008A9AFB /* EventSource */ = {
368-
isa = XCSwiftPackageProductDependency;
369-
package = 8D5AD7B02DFF789C008A9AFB /* XCRemoteSwiftPackageReference "EventSource" */;
370-
productName = EventSource;
371-
};
372-
/* End XCSwiftPackageProductDependency section */
373350
};
374351
rootObject = 8DC1583C2DAC281A00BECEAC /* Project object */;
375352
}

VibeScribe.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 0 additions & 15 deletions
This file was deleted.

VibeScribe/Managers/AudioFileImportManager.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// AudioFileImportManager.swift
33
// VibeScribe
44
//
5-
// Created by System on 13.04.2025.
5+
// Created by Pavel Frankov on 13.04.2025.
66
//
77

88
import Foundation

VibeScribe/Managers/AudioPlayerManager.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// AudioPlayerManager.swift
33
// VibeScribe
44
//
5-
// Created by System on 13.04.2025.
5+
// Created by Pavel Frankov on 13.04.2025.
66
//
77

88
import Foundation

VibeScribe/Managers/AudioRecorderManager.swift

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,12 @@
22
// AudioRecorderManager.swift
33
// VibeScribe
44
//
5-
// Created by System on 13.04.2025.
5+
// Created by Pavel Frankov on 13.04.2025.
66
//
77

88
import Foundation
99
import AVFoundation
1010

11-
#if os(macOS)
12-
import AVKit // Make sure we have AVKit for AVCaptureDevice on macOS
13-
#endif
14-
1511
// --- Audio Recorder Logic ---
1612
class AudioRecorderManager: NSObject, ObservableObject, AVAudioRecorderDelegate {
1713
@Published var isRecording = false
@@ -158,9 +154,7 @@ class AudioRecorderManager: NSObject, ObservableObject, AVAudioRecorderDelegate
158154
// Recording failed to start, even though setup was successful
159155
print("Error: recorder.record() returned false.")
160156
self.error = NSError(domain: "AudioRecorderError", code: 7, userInfo: [NSLocalizedDescriptionKey: "Failed to start recording after setup."])
161-
isRecording = false
162-
// Clean up recorder instance if start failed? Maybe not necessary here, handled by stop/cancel.
163-
// audioRecorder = nil
157+
isRecording = false
164158
}
165159
}
166160

VibeScribe/Managers/CombinedAudioRecorderManager.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// CombinedAudioRecorderManager.swift
33
// VibeScribe
44
//
5-
// Created by System on 15.04.2025.
5+
// Created by Pavel Frankov on 15.04.2025.
66
//
77

88
import Foundation

VibeScribe/Managers/ModelService.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// ModelService.swift
33
// VibeScribe
44
//
5-
// Created by System on 14.04.2025.
5+
// Created by Pavel Frankov on 14.04.2025.
66
//
77

88
import Foundation

VibeScribe/Managers/SystemAudioRecorderManager.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// SystemAudioRecorderManager.swift
33
// VibeScribe
44
//
5-
// Created by Your Name on \(Date()) // Or replace with actual logic if needed
5+
// Created by Pavel Frankov on 15.04.2025.
66
//
77

88
import Foundation

0 commit comments

Comments
 (0)