Skip to content

Commit

Permalink
Custom 86Box path + Run multi VMs at the same time
Browse files Browse the repository at this point in the history
  • Loading branch information
Moonif committed May 1, 2023
1 parent 313600a commit 9358f8d
Show file tree
Hide file tree
Showing 11 changed files with 296 additions and 18 deletions.
8 changes: 6 additions & 2 deletions MacBox.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

/* Begin PBXBuildFile section */
F918A5A129F19CE500E15E32 /* Templates in Resources */ = {isa = PBXBuildFile; fileRef = F918A5A029F19CE500E15E32 /* Templates */; };
F92DF7CE2A00021800450E04 /* RunningVMProcess.swift in Sources */ = {isa = PBXBuildFile; fileRef = F92DF7CD2A00021800450E04 /* RunningVMProcess.swift */; };
F934D58B29E41BDB00F0D450 /* AddVMViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F934D58A29E41BDB00F0D450 /* AddVMViewController.swift */; };
F934D58D29E424EE00F0D450 /* VM.swift in Sources */ = {isa = PBXBuildFile; fileRef = F934D58C29E424EE00F0D450 /* VM.swift */; };
F99FFC5629F5364300099CAB /* Shaders in Resources */ = {isa = PBXBuildFile; fileRef = F99FFC5529F5364300099CAB /* Shaders */; };
Expand All @@ -25,6 +26,7 @@

/* Begin PBXFileReference section */
F918A5A029F19CE500E15E32 /* Templates */ = {isa = PBXFileReference; lastKnownFileType = folder; path = Templates; sourceTree = "<group>"; };
F92DF7CD2A00021800450E04 /* RunningVMProcess.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunningVMProcess.swift; sourceTree = "<group>"; };
F934D58A29E41BDB00F0D450 /* AddVMViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddVMViewController.swift; sourceTree = "<group>"; };
F934D58C29E424EE00F0D450 /* VM.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VM.swift; sourceTree = "<group>"; };
F99FFC5529F5364300099CAB /* Shaders */ = {isa = PBXFileReference; lastKnownFileType = folder; path = Shaders; sourceTree = "<group>"; };
Expand Down Expand Up @@ -59,6 +61,7 @@
F934D58C29E424EE00F0D450 /* VM.swift */,
F9BB907529F14C7E000B4C5F /* VMTemplate.swift */,
F9DC6A4129F874770076FC50 /* SpecsParser.swift */,
F92DF7CD2A00021800450E04 /* RunningVMProcess.swift */,
);
path = Classes;
sourceTree = "<group>";
Expand Down Expand Up @@ -216,6 +219,7 @@
F9D6078529E2BABE002541BF /* MainViewController.swift in Sources */,
F9BB907629F14C7E000B4C5F /* VMTemplate.swift in Sources */,
F934D58B29E41BDB00F0D450 /* AddVMViewController.swift in Sources */,
F92DF7CE2A00021800450E04 /* RunningVMProcess.swift in Sources */,
F9A04BB129EF0F5400DC813D /* FileManager.swift in Sources */,
F934D58D29E424EE00F0D450 /* VM.swift in Sources */,
F9B09E6429E9DBC800C86A0F /* IniParser.swift in Sources */,
Expand Down Expand Up @@ -376,7 +380,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.14;
MARKETING_VERSION = 0.2.4;
MARKETING_VERSION = 0.2.5;
PRODUCT_BUNDLE_IDENTIFIER = Moonif.MacBox;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down Expand Up @@ -410,7 +414,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.14;
MARKETING_VERSION = 0.2.4;
MARKETING_VERSION = 0.2.5;
PRODUCT_BUNDLE_IDENTIFIER = Moonif.MacBox;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
Binary file not shown.
12 changes: 12 additions & 0 deletions MacBox/Assets.xcassets/logos/NEC_logo.imageset/Contents.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"images" : [
{
"filename" : "NEC_logo.svg",
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions MacBox/Assets.xcassets/logos/Pb_logo_old.imageset/Contents.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"images" : [
{
"filename" : "Pb_logo_old.svg",
"idiom" : "universal"
},
{
"appearances" : [
{
"appearance" : "luminosity",
"value" : "dark"
}
],
"filename" : "Pb_logo_old 1.svg",
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
107 changes: 107 additions & 0 deletions MacBox/Assets.xcassets/logos/Pb_logo_old.imageset/Pb_logo_old 1.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions MacBox/Assets.xcassets/logos/Pb_logo_old.imageset/Pb_logo_old.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions MacBox/Classes/RunningVMProcess.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
//
// RunningVMProcess.swift
// MacBox
//
// Created by Moonif on 5/1/23.
//

struct RunningVMProcess {
var vmProcessID: Int32?
var vmRowNumber: Int?
}
1 change: 1 addition & 0 deletions MacBox/Classes/VM.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ struct VM: Codable {
var description: String?
var path: String?
var logo: String?
var appPath: String?
}
Loading

0 comments on commit 9358f8d

Please sign in to comment.