diff options
| author | TheUltimateHacker <[email protected]> | 2015-03-22 10:45:19 -0400 |
|---|---|---|
| committer | TheUltimateHacker <[email protected]> | 2015-03-22 10:45:19 -0400 |
| commit | d556f57a1fd140362d19baea107d98524427a45e (patch) | |
| tree | 22848514fd9e34beece0a49c24d237e488464de0 /ShiftOS/ShiftOS.vbproj | |
| parent | a276b027fb14540aaae66b1e0f42706174b77938 (diff) | |
| download | shiftos-d556f57a1fd140362d19baea107d98524427a45e.tar.gz shiftos-d556f57a1fd140362d19baea107d98524427a45e.tar.bz2 shiftos-d556f57a1fd140362d19baea107d98524427a45e.zip | |
#1 - File Skimmer bug fix + Fullscreen Login Screen
Fixed a bug with the File Skimmer, as well as adding a FullScreen Login
Screen test that can be utilized using the "test fullscreen login"
terminal command. There's also a "test fullscreen login customizer"
command to test the Customization Options for the login screen, though I
haven't even gotten close to completing that.
I've also referenced another DLL, one that I made called
"MichaelsMovableControlSuite.dll" that contains movable variations of
Windows Forms Controls. By movable, I mean that at run-time, the user
can drag these controls around, however some functions (such as the
ability to type in a MovableTextBox) have been disabled. These controls
are used for the Login Screen customizer.
Diffstat (limited to 'ShiftOS/ShiftOS.vbproj')
| -rw-r--r-- | ShiftOS/ShiftOS.vbproj | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/ShiftOS/ShiftOS.vbproj b/ShiftOS/ShiftOS.vbproj index 6480482..53a4a08 100644 --- a/ShiftOS/ShiftOS.vbproj +++ b/ShiftOS/ShiftOS.vbproj @@ -85,6 +85,9 @@ <ApplicationIcon>ShiftOSLogo.ico</ApplicationIcon> </PropertyGroup> <ItemGroup> + <Reference Include="MichaelsMovableControlSuite"> + <HintPath>..\..\..\MovableControls\MichaelsMovableControlSuite\MichaelsMovableControlSuite\bin\Debug\MichaelsMovableControlSuite.dll</HintPath> + </Reference> <Reference Include="System" /> <Reference Include="System.Data" /> <Reference Include="System.Deployment" /> @@ -151,6 +154,18 @@ <Compile Include="Catalyst_Main.vb"> <SubType>Form</SubType> </Compile> + <Compile Include="FullScreenLogin Customizer.Designer.vb"> + <DependentUpon>FullScreenLogin Customizer.vb</DependentUpon> + </Compile> + <Compile Include="FullScreenLogin Customizer.vb"> + <SubType>Form</SubType> + </Compile> + <Compile Include="FullScreenLogin.Designer.vb"> + <DependentUpon>FullScreenLogin.vb</DependentUpon> + </Compile> + <Compile Include="FullScreenLogin.vb"> + <SubType>Form</SubType> + </Compile> <Compile Include="loginform.Designer.vb"> <DependentUpon>loginform.vb</DependentUpon> </Compile> @@ -474,6 +489,12 @@ <EmbeddedResource Include="coherencemodeform.resx"> <DependentUpon>coherencemodeform.vb</DependentUpon> </EmbeddedResource> + <EmbeddedResource Include="FullScreenLogin Customizer.resx"> + <DependentUpon>FullScreenLogin Customizer.vb</DependentUpon> + </EmbeddedResource> + <EmbeddedResource Include="FullScreenLogin.resx"> + <DependentUpon>FullScreenLogin.vb</DependentUpon> + </EmbeddedResource> <EmbeddedResource Include="loginform.resx"> <DependentUpon>loginform.vb</DependentUpon> </EmbeddedResource> |
