Skip to content

Commit 8cf919e

Browse files
committed
Side by Side Feature added
- Side by Side Feature added: you can now run multiple labs and compare the data between sets at the same time - Fixed some bugs that caused errors in the way the data was presented - Fixed some issues that were causing file loading and navigation to be problematic - Fixed an issue where the user was able to click on load/train/test buttons repeatedly eventually causing the system to crash - Fixed some threading issues that were causing the program to be even slower than necessary - Major interface update including moving most views to SwiftUI - Model training and test results data are now visible on the same tab - Removed Redis dependencies, start up is greatly simplified - Removed lots of outdated code and files, that should improve readability of the codebase - Updated the README
1 parent b5306a5 commit 8cf919e

34 files changed

Lines changed: 1604 additions & 9267 deletions

AdversaryLabSwift.xcodeproj/project.pbxproj

Lines changed: 28 additions & 67 deletions
Large diffs are not rendered by default.

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

Lines changed: 165 additions & 149 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

AdversaryLabSwift/AppDelegate.swift

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -68,20 +68,4 @@ class AppDelegate: NSObject, NSApplicationDelegate
6868
print("\nUnable to find the application support directory. This is needed in order to save and unpack model files.")
6969
}
7070
}
71-
72-
func applicationShouldTerminate(_ sender: NSApplication) -> NSApplication.TerminateReply
73-
{
74-
// Quit Redis Server
75-
print("TERMINATE Redis Server. 🤖")
76-
RedisServerController.sharedInstance.shutdownRedisServer()
77-
sleep(1)
78-
return NSApplication.TerminateReply.terminateNow
79-
}
80-
81-
func applicationWillTerminate(_ aNotification: Notification)
82-
{
83-
84-
}
85-
86-
8771
}
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"colors" : [
3+
{
4+
"color" : {
5+
"platform" : "osx",
6+
"reference" : "controlAccentColor"
7+
},
8+
"idiom" : "universal"
9+
},
10+
{
11+
"appearances" : [
12+
{
13+
"appearance" : "luminosity",
14+
"value" : "dark"
15+
}
16+
],
17+
"color" : {
18+
"color-space" : "srgb",
19+
"components" : {
20+
"alpha" : "1.000",
21+
"blue" : "1.000",
22+
"green" : "1.000",
23+
"red" : "1.000"
24+
}
25+
},
26+
"idiom" : "universal"
27+
}
28+
],
29+
"info" : {
30+
"author" : "xcode",
31+
"version" : 1
32+
}
33+
}

0 commit comments

Comments
 (0)