mirror of
https://github.com/SistemaRayoXP/Virtual-Mac.git
synced 2024-12-01 03:49:23 +00:00
8b3286fe05
New Mac Wizard working, and revamped, so now you choose emulator and OS. Thank to adespoton for the Mac compatibility matrix. (https://docs.google.com/spreadsheets/d/1us6SCBgVs8NqbxofJXTmHDeK3nKQJpcgya2nWC9_t2w/edit#gid=0) Now PearPC files can be loaded and saved (I've taken code from PearPC Config File Generator and adapted it to Virtual Mac) Still getting the challenge of dealing with BII and SheepShaver config files. Will upload new versions of files when they work. Updated to 0.6.1 in file version, but technically it's 0.6.1 Beta (Or 0.6.1 RC, 0.6.0, not the final 0.6.1) Now with some investigation, the app is "translated" to Spanish and German (Please forgive the bad German translation, I used GTranslate and Virtual PC as reference points for this). To change the language, go to File > Options > Language and select the new language. Note that German(de-DE) or Spanish(es-MX) might be loaded by default if you are using these languages in you Windows installation. Note that the translation is crap, and is not complete, so many parts are still in English. Will try to fix this in 0.7.1 Still need to fix Saving BII and SS files, so this is not final 0.6.1, will release a "revision" later.
44 lines
1.8 KiB
VB.net
44 lines
1.8 KiB
VB.net
'------------------------------------------------------------------------------
|
|
' <auto-generated>
|
|
' Este código fue generado por una herramienta.
|
|
' Versión de runtime:4.0.30319.42000
|
|
'
|
|
' Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si
|
|
' se vuelve a generar el código.
|
|
' </auto-generated>
|
|
'------------------------------------------------------------------------------
|
|
|
|
Option Strict On
|
|
Option Explicit On
|
|
|
|
|
|
Namespace My
|
|
|
|
'NOTA: este archivo se genera de forma automática; no lo modifique directamente. Para realizar cambios,
|
|
' o si detecta errores de compilación en este archivo, vaya al Diseñador de proyectos
|
|
' (vaya a Propiedades del proyecto o haga doble clic en el nodo My Project en el
|
|
' Explorador de soluciones) y realice cambios en la ficha Aplicación.
|
|
'
|
|
Partial Friend Class MyApplication
|
|
|
|
<Global.System.Diagnostics.DebuggerStepThroughAttribute()> _
|
|
Public Sub New()
|
|
MyBase.New(Global.Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.Windows)
|
|
Me.IsSingleInstance = true
|
|
Me.EnableVisualStyles = true
|
|
Me.SaveMySettingsOnExit = true
|
|
Me.ShutDownStyle = Global.Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterMainFormCloses
|
|
End Sub
|
|
|
|
<Global.System.Diagnostics.DebuggerStepThroughAttribute()> _
|
|
Protected Overrides Sub OnCreateMainForm()
|
|
Me.MainForm = Global.VirtualMac.frmMain
|
|
End Sub
|
|
|
|
<Global.System.Diagnostics.DebuggerStepThroughAttribute()> _
|
|
Protected Overrides Sub OnCreateSplashScreen()
|
|
Me.SplashScreen = Global.VirtualMac.frmSplash
|
|
End Sub
|
|
End Class
|
|
End Namespace
|