A command-line utility to manage Apple Voice Memos recordings.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Initial commit

Tomoki Aonuma 448d93e3

+83
+1
.gitignore
··· 1 + /.build/
+6
.swift-format
··· 1 + { 2 + "version": 1, 3 + "indentation": { 4 + "spaces": 4 5 + } 6 + }
+1
.swift-version
··· 1 + 6.2
+14
Justfile
··· 1 + _default: 2 + @just --list 3 + 4 + build: 5 + swift build 6 + 7 + build-release: 8 + swift build --configuration release 9 + 10 + format: 11 + swift format format --in-place --recursive Package.swift Sources 12 + 13 + lint: 14 + swift format lint --recursive Package.swift Sources
+14
LICENSE
··· 1 + BSD Zero Clause License 2 + 3 + Copyright (c) 2025 Tomoki Aonuma 4 + 5 + Permission to use, copy, modify, and/or distribute this software for any 6 + purpose with or without fee is hereby granted. 7 + 8 + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 9 + REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 10 + AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 11 + INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 12 + LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 13 + OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 14 + PERFORMANCE OF THIS SOFTWARE.
+15
Package.resolved
··· 1 + { 2 + "originHash" : "975d061a435c8da598a0b129740cbd5afe7ec6919293a3be9ebbede6fc7bef62", 3 + "pins" : [ 4 + { 5 + "identity" : "swift-argument-parser", 6 + "kind" : "remoteSourceControl", 7 + "location" : "https://github.com/apple/swift-argument-parser.git", 8 + "state" : { 9 + "revision" : "c5d11a805e765f52ba34ec7284bd4fcd6ba68615", 10 + "version" : "1.7.0" 11 + } 12 + } 13 + ], 14 + "version" : 3 15 + }
+22
Package.swift
··· 1 + // swift-tools-version: 6.2 2 + // SPDX-License-Identifier: 0BSD 3 + 4 + import PackageDescription 5 + 6 + let package = Package( 7 + name: "voicememosutil", 8 + platforms: [ 9 + .macOS(.v15) 10 + ], 11 + dependencies: [ 12 + .package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.7.0") 13 + ], 14 + targets: [ 15 + .executableTarget( 16 + name: "voicememosutil", 17 + dependencies: [ 18 + .product(name: "ArgumentParser", package: "swift-argument-parser") 19 + ] 20 + ) 21 + ] 22 + )
+10
Sources/voicememosutil/VoiceMemosUtil.swift
··· 1 + // SPDX-License-Identifier: 0BSD 2 + 3 + import ArgumentParser 4 + 5 + @main 6 + struct VoiceMemosUtil: ParsableCommand { 7 + mutating func run() throws { 8 + print("Hello, world!") 9 + } 10 + }