Skip to content

Commit f57c742

Browse files
committed
update copyrights
Signed-off-by: Lessica <82flex@gmail.com>
1 parent 74bceaf commit f57c742

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 Lessica
3+
Copyright (c) 2024-2025 Lessica
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

TrollFools/AppListView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ struct AppListView: View {
2727

2828
var appString: String {
2929
String(format: """
30-
%@ %@ %@ © 2024
30+
%@ %@ %@ © 2024-2025
3131
%@
3232
""", appNameString, appVersionString, NSLocalizedString("Copyright", comment: ""), NSLocalizedString("Made with ♥ by OwnGoal Studio", comment: ""))
3333
}

TrollFools/InjectorV3+Bundle.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ extension InjectorV3 {
5959
options: [.skipsHiddenFiles]
6060
) {
6161
for case let itemURL as URL in enumerator {
62-
if checkIsInjectedBundle(itemURL) {
62+
if checkIsInjectedBundle(itemURL) || enumerator.level > 2 {
6363
enumerator.skipDescendants()
6464
continue
6565
}
66-
if linkedDylibs.contains(itemURL) && itemURL.deletingLastPathComponent().pathExtension == "framework" {
66+
if enumerator.level == 2 && linkedDylibs.contains(itemURL) {
6767
machOs.append(itemURL)
6868
}
6969
}

0 commit comments

Comments
 (0)