Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:

- name: Archive Failed Tests artifacts
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: FailureDiff
path: .build/Logs/Test/
8 changes: 8 additions & 0 deletions swiftchan.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
/* Begin PBXBuildFile section */
950846FC2751E3DA0098DF73 /* DeepLinker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 950846FB2751E3DA0098DF73 /* DeepLinker.swift */; };
950846FE2752CA260098DF73 /* BoardSection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 950846FD2752CA260098DF73 /* BoardSection.swift */; };
950CC7582DF481DD00C2704B /* ThreadDestination.swift in Sources */ = {isa = PBXBuildFile; fileRef = 950CC7572DF481DD00C2704B /* ThreadDestination.swift */; };
950E3940255CDA3B00A00A74 /* MediaView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 950E393F255CDA3B00A00A74 /* MediaView.swift */; };
95105369256600C9002E4051 /* Post.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95105368256600C9002E4051 /* Post.swift */; };
951053712566018D002E4051 /* Board.swift in Sources */ = {isa = PBXBuildFile; fileRef = 951053702566018D002E4051 /* Board.swift */; };
Expand Down Expand Up @@ -126,6 +127,7 @@
76EE6EC133F7354F9C641B0D /* libPods-swiftchan.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-swiftchan.a"; sourceTree = BUILT_PRODUCTS_DIR; };
950846FB2751E3DA0098DF73 /* DeepLinker.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeepLinker.swift; sourceTree = "<group>"; };
950846FD2752CA260098DF73 /* BoardSection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BoardSection.swift; sourceTree = "<group>"; };
950CC7572DF481DD00C2704B /* ThreadDestination.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ThreadDestination.swift; sourceTree = "<group>"; };
950E393F255CDA3B00A00A74 /* MediaView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MediaView.swift; sourceTree = "<group>"; };
95105368256600C9002E4051 /* Post.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Post.swift; sourceTree = "<group>"; };
951053702566018D002E4051 /* Board.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Board.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -271,6 +273,7 @@
9510536725660071002E4051 /* Models */ = {
isa = PBXGroup;
children = (
950CC7572DF481DD00C2704B /* ThreadDestination.swift */,
95978F112CA795E000C520EF /* Tabs.swift */,
95105368256600C9002E4051 /* Post.swift */,
951053702566018D002E4051 /* Board.swift */,
Expand Down Expand Up @@ -661,10 +664,14 @@
inputFileListPaths = (
"${PODS_ROOT}/Target Support Files/Pods-swiftchan/Pods-swiftchan-frameworks-${CONFIGURATION}-input-files.xcfilelist",
);
inputPaths = (
);
name = "[CP] Embed Pods Frameworks";
outputFileListPaths = (
"${PODS_ROOT}/Target Support Files/Pods-swiftchan/Pods-swiftchan-frameworks-${CONFIGURATION}-output-files.xcfilelist",
);
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-swiftchan/Pods-swiftchan-frameworks.sh\"\n";
Expand Down Expand Up @@ -755,6 +762,7 @@
95CFC2FA2734B66E0053D62A /* Media.swift in Sources */,
95C01FE727382AD5000D64B1 /* VLCMediaListPlayerUIView.swift in Sources */,
95A94EFC2554F8D1001D155E /* GalleryView.swift in Sources */,
950CC7582DF481DD00C2704B /* ThreadDestination.swift in Sources */,
9574CE07255E34E8000C99B6 /* CatalogViewModel.swift in Sources */,
958D2C99254D2DF200E54C41 /* ContentView.swift in Sources */,
95B7BE51256CBC4A00F75BC9 /* FavoriteStar.swift in Sources */,
Expand Down
3 changes: 3 additions & 0 deletions swiftchan.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions swiftchan.xcworkspace/xcshareddata/swiftpm/Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion swiftchan/Services/AccessibilityIdentifiers.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,4 @@ class AccessibilityIdentifiers {
static let saveToFilesButton: String = "Save to Files Button"
static let copyToPasteboardButton: String = "Copy to Pasteboard Button"
static let successToastText: String = "Success Toast Text"

}
Loading