├── .gitattributes ├── .gitignore ├── Art ├── logo_dark.png ├── logo_dark_small.png ├── logo_light.png ├── logo_light_small.png ├── screenshot_1.png ├── screenshot_10.png ├── screenshot_11.png ├── screenshot_2.png ├── screenshot_3.png ├── screenshot_4.png ├── screenshot_5.png ├── screenshot_6.png ├── screenshot_7.png ├── screenshot_8.png └── screenshot_9.png ├── LICENSE ├── Pages ├── images │ ├── favicon.png │ ├── favicons │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── mstile-150x150.png │ │ ├── safari-pinned-tab.svg │ │ └── site.webmanifest │ ├── logo.png │ ├── mesh1.png │ ├── mesh2.png │ ├── mesh3.png │ ├── mountain.jpg │ ├── screenshot1.jpg │ └── screenshot2.jpg ├── index.html └── style.css ├── README.md ├── SECURITY.md ├── SphereOS.sln └── SphereOS ├── Boot └── BootManager.cs ├── Commands ├── Command.cs ├── CommandManager.cs ├── FilesTopic │ ├── Al.cs │ ├── Audit.cs │ ├── Cat.cs │ ├── Cd.cs │ ├── Copy.cs │ ├── Del.cs │ ├── Edit.cs │ ├── Ff.cs │ ├── Fsinfo.cs │ ├── Ls.cs │ ├── Mkdir.cs │ ├── Mkhome.cs │ ├── Mv.cs │ ├── Rmdir.cs │ └── Touch.cs ├── GamesTopic │ └── Hangman.cs ├── GeneralTopic │ ├── About.cs │ ├── Asyscfg.cs │ ├── Clear.cs │ ├── Crash.cs │ ├── Echo.cs │ ├── Gui.cs │ ├── Help.cs │ ├── Hist.cs │ ├── Histc.cs │ ├── License.cs │ ├── Logs.cs │ ├── Lsproc.cs │ ├── Name.cs │ ├── Pci.cs │ ├── Rs.cs │ ├── Sysinfo.cs │ └── Wd.cs ├── NetworkTopic │ ├── Ip.cs │ ├── Ping.cs │ └── Resolve.cs ├── PowerTopic │ ├── Reboot.cs │ └── Shutdown.cs ├── ReturnCode.cs ├── TimeTopic │ ├── Clock.cs │ └── Date.cs └── UsersTopic │ ├── Adduser.cs │ ├── Admin.cs │ ├── Broadcast.cs │ ├── Deluser.cs │ ├── Expire.cs │ ├── Lock.cs │ ├── Logout.cs │ ├── Lsuser.cs │ ├── Pass.cs │ ├── Send.cs │ └── Su.cs ├── ConsoleApps ├── Hangman │ ├── Hangman.cs │ └── WordList.txt ├── RiverScript │ ├── Lexer.cs │ ├── Repl.cs │ ├── Script.cs │ ├── StandardLibrary │ │ ├── StandardLibrary.IO.cs │ │ ├── StandardLibrary.Maths.cs │ │ ├── StandardLibrary.Types.cs │ │ └── StandardLibrary.cs │ ├── Tokens │ │ ├── AdditionOperator.cs │ │ ├── AndOperator.cs │ │ ├── Assignment.cs │ │ ├── Block.cs │ │ ├── Comma.cs │ │ ├── ContainerToken.cs │ │ ├── DivisionOperator.cs │ │ ├── EqualsOperator.cs │ │ ├── GreaterEqualOperator.cs │ │ ├── GreaterOperator.cs │ │ ├── IUnaryOperator.cs │ │ ├── Identifier.cs │ │ ├── Keyword.cs │ │ ├── LessEqualOperator.cs │ │ ├── LessOperator.cs │ │ ├── MultiplicationOperator.cs │ │ ├── NotEqualsOperator.cs │ │ ├── NotOperator.cs │ │ ├── NumberLiteral.cs │ │ ├── Operator.cs │ │ ├── OrOperator.cs │ │ ├── Parentheses.cs │ │ ├── RangeOperator.cs │ │ ├── RemainderOperator.cs │ │ ├── StringLiteral.cs │ │ ├── SubtractionOperator.cs │ │ └── Token.cs │ └── VM │ │ ├── Interpreter.cs │ │ ├── VMBaseFunction.cs │ │ ├── VMBoolean.cs │ │ ├── VMFunction.cs │ │ ├── VMNativeFunction.cs │ │ ├── VMNull.cs │ │ ├── VMNumber.cs │ │ ├── VMObject.cs │ │ ├── VMRange.cs │ │ └── VMString.cs └── TextEditor.cs ├── Core ├── CrashScreen.cs ├── Crypto │ └── Sha256.cs ├── Drivers │ └── VMWareSVGAII.cs ├── Extensions.cs ├── FileSecurity.cs ├── FsManager.cs ├── Kernel.cs ├── MemService.cs ├── Memory │ ├── MemoryStatistics.cs │ └── MemoryStatisticsProvider.cs ├── PathSanitiser.cs ├── PathUtil.cs ├── PciUtils.cs ├── Power.cs ├── Process.cs ├── ProcessManager.cs ├── ProcessType.cs ├── SysCfg.cs └── Text │ ├── IniBuilder.cs │ └── IniReader.cs ├── Gui ├── App.cs ├── AppManager.cs ├── Apps │ ├── Calculator.cs │ ├── Calendar.cs │ ├── Clock.cs │ ├── CodeStudio │ │ ├── CodeStudio.cs │ │ └── Ide.cs │ ├── DemoLauncher.cs │ ├── Demos │ │ ├── Mandelbrot.cs │ │ └── Starfield.cs │ ├── Files.cs │ ├── Info.cs │ ├── Logs.cs │ ├── MemoryStatistics.cs │ ├── Notepad.cs │ ├── Paint │ │ ├── ColourPicker.cs │ │ ├── Paint.cs │ │ ├── Tool.cs │ │ ├── ToolBox.cs │ │ └── Tools │ │ │ ├── CircleBrush.cs │ │ │ └── Pencil.cs │ ├── Settings.cs │ ├── Stopwatch.cs │ └── Tasks.cs ├── Asc16.cs ├── BitmapExtensions.cs ├── CursorType.cs ├── Gui.cs ├── ProtocolHandler.cs ├── Resources │ ├── AppIcons │ │ ├── Calculator.bmp │ │ ├── Calendar.bmp │ │ ├── Clock.bmp │ │ ├── CodeStudio.bmp │ │ ├── Default.bmp │ │ ├── DemoLauncher.bmp │ │ ├── Demos │ │ │ ├── Mandelbrot.bmp │ │ │ └── Starfield.bmp │ │ ├── Files.bmp │ │ ├── Info.bmp │ │ ├── Logs.bmp │ │ ├── MemoryStatistics.bmp │ │ ├── Notepad.bmp │ │ ├── Paint.bmp │ │ ├── Settings.bmp │ │ ├── Stopwatch.bmp │ │ └── Tasks.bmp │ ├── ButtonBackground.bmp │ ├── Calculator │ │ ├── Display.bmp │ │ └── GridButton.bmp │ ├── Check.bmp │ ├── Clock │ │ └── ClockBackground.bmp │ ├── Close.bmp │ ├── Close_aero.bmp │ ├── Close_flat.bmp │ ├── CodeStudio │ │ ├── Run.bmp │ │ └── Splash.bmp │ ├── Cursor.bmp │ ├── Cursor_noshadow.bmp │ ├── Dock │ │ └── StartMenu.bmp │ ├── Files │ │ ├── Directory.bmp │ │ ├── Drive.bmp │ │ ├── File.bmp │ │ ├── File_Config.bmp │ │ ├── File_Rs.bmp │ │ ├── File_Text.bmp │ │ ├── Home.bmp │ │ └── Up.bmp │ ├── Lock │ │ ├── Background.bmp │ │ ├── Background_small.bmp │ │ ├── Gradient.bmp │ │ ├── Key.bmp │ │ ├── ShutDown.bmp │ │ ├── User.bmp │ │ └── UserArrow.bmp │ ├── Logs │ │ ├── Error.bmp │ │ ├── Info.bmp │ │ └── Warning.bmp │ ├── Maximise.bmp │ ├── Maximise_aero.bmp │ ├── Maximise_flat.bmp │ ├── Minimise.bmp │ ├── Minimise_aero.bmp │ ├── Minimise_flat.bmp │ ├── Restore.bmp │ ├── Restore_aero.bmp │ ├── Restore_flat.bmp │ ├── ScrollbarDown.bmp │ ├── ScrollbarUp.bmp │ ├── Settings │ │ ├── Admin.bmp │ │ ├── Info.bmp │ │ └── User.bmp │ ├── Sounds │ │ ├── Alert.wav │ │ └── Login.wav │ ├── Start.bmp │ ├── StartMenu │ │ └── User.bmp │ ├── Start_old.bmp │ ├── SwitchKnob.bmp │ ├── SwitchOff.bmp │ ├── SwitchOn.bmp │ ├── TitlebarBackground.bmp │ ├── WaitCursor.bmp │ ├── Wallpaper_1024_640_old2.bmp │ ├── Wallpaper_1024_768_old2.bmp │ ├── Wallpaper_1280_800.bmp │ ├── Wallpaper_1280_800_old2.bmp │ ├── Wallpaper_old.bmp │ └── Wallpaper_old_HD.bmp ├── RiverScriptUIConsole.cs ├── SettingsService.cs ├── ShellComponents │ ├── Dock │ │ ├── AppDockIcon.cs │ │ ├── BaseDockIcon.cs │ │ ├── Dock.cs │ │ └── StartMenuDockIcon.cs │ ├── Lock.cs │ ├── StartMenu.cs │ └── Taskbar.cs ├── SmoothMono │ ├── FontData.cs │ └── TextRenderer.cs ├── Sound │ ├── SoundService.cs │ └── SystemSound.cs ├── UILib │ ├── Alignment.cs │ ├── Animations │ │ ├── Animation.cs │ │ ├── Easing.cs │ │ ├── EasingDirection.cs │ │ ├── EasingType.cs │ │ └── MovementAnimation.cs │ ├── AppWindow.cs │ ├── Button.cs │ ├── Calendar.cs │ ├── CheckBox.cs │ ├── Control.cs │ ├── Extensions.cs │ ├── ImageBlock.cs │ ├── MessageBox.cs │ ├── PromptBox.cs │ ├── RangeSlider.cs │ ├── ShortcutBar.cs │ ├── ShortcutBarCell.cs │ ├── Switch.cs │ ├── Table.cs │ ├── TableCell.cs │ ├── TextBlock.cs │ └── TextBox.cs ├── Window.cs └── WindowManager.cs ├── Logging ├── Log.cs ├── LogEvent.cs └── LogPriority.cs ├── Shell ├── BootMenu.cs ├── LoginPrompt.cs ├── ReadLineExResult.cs ├── Shell.cs └── Util.cs ├── SphereOS.csproj └── Users ├── Message.cs ├── User.cs └── UserManager.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/.gitignore -------------------------------------------------------------------------------- /Art/logo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Art/logo_dark.png -------------------------------------------------------------------------------- /Art/logo_dark_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Art/logo_dark_small.png -------------------------------------------------------------------------------- /Art/logo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Art/logo_light.png -------------------------------------------------------------------------------- /Art/logo_light_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Art/logo_light_small.png -------------------------------------------------------------------------------- /Art/screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Art/screenshot_1.png -------------------------------------------------------------------------------- /Art/screenshot_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Art/screenshot_10.png -------------------------------------------------------------------------------- /Art/screenshot_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Art/screenshot_11.png -------------------------------------------------------------------------------- /Art/screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Art/screenshot_2.png -------------------------------------------------------------------------------- /Art/screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Art/screenshot_3.png -------------------------------------------------------------------------------- /Art/screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Art/screenshot_4.png -------------------------------------------------------------------------------- /Art/screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Art/screenshot_5.png -------------------------------------------------------------------------------- /Art/screenshot_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Art/screenshot_6.png -------------------------------------------------------------------------------- /Art/screenshot_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Art/screenshot_7.png -------------------------------------------------------------------------------- /Art/screenshot_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Art/screenshot_8.png -------------------------------------------------------------------------------- /Art/screenshot_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Art/screenshot_9.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/LICENSE -------------------------------------------------------------------------------- /Pages/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Pages/images/favicon.png -------------------------------------------------------------------------------- /Pages/images/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Pages/images/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /Pages/images/favicons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Pages/images/favicons/android-chrome-512x512.png -------------------------------------------------------------------------------- /Pages/images/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Pages/images/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /Pages/images/favicons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Pages/images/favicons/browserconfig.xml -------------------------------------------------------------------------------- /Pages/images/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Pages/images/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /Pages/images/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Pages/images/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /Pages/images/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Pages/images/favicons/favicon.ico -------------------------------------------------------------------------------- /Pages/images/favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Pages/images/favicons/mstile-150x150.png -------------------------------------------------------------------------------- /Pages/images/favicons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Pages/images/favicons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /Pages/images/favicons/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Pages/images/favicons/site.webmanifest -------------------------------------------------------------------------------- /Pages/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Pages/images/logo.png -------------------------------------------------------------------------------- /Pages/images/mesh1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Pages/images/mesh1.png -------------------------------------------------------------------------------- /Pages/images/mesh2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Pages/images/mesh2.png -------------------------------------------------------------------------------- /Pages/images/mesh3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Pages/images/mesh3.png -------------------------------------------------------------------------------- /Pages/images/mountain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Pages/images/mountain.jpg -------------------------------------------------------------------------------- /Pages/images/screenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Pages/images/screenshot1.jpg -------------------------------------------------------------------------------- /Pages/images/screenshot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Pages/images/screenshot2.jpg -------------------------------------------------------------------------------- /Pages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Pages/index.html -------------------------------------------------------------------------------- /Pages/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/Pages/style.css -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SphereOS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS.sln -------------------------------------------------------------------------------- /SphereOS/Boot/BootManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Boot/BootManager.cs -------------------------------------------------------------------------------- /SphereOS/Commands/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/Command.cs -------------------------------------------------------------------------------- /SphereOS/Commands/CommandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/CommandManager.cs -------------------------------------------------------------------------------- /SphereOS/Commands/FilesTopic/Al.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/FilesTopic/Al.cs -------------------------------------------------------------------------------- /SphereOS/Commands/FilesTopic/Audit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/FilesTopic/Audit.cs -------------------------------------------------------------------------------- /SphereOS/Commands/FilesTopic/Cat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/FilesTopic/Cat.cs -------------------------------------------------------------------------------- /SphereOS/Commands/FilesTopic/Cd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/FilesTopic/Cd.cs -------------------------------------------------------------------------------- /SphereOS/Commands/FilesTopic/Copy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/FilesTopic/Copy.cs -------------------------------------------------------------------------------- /SphereOS/Commands/FilesTopic/Del.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/FilesTopic/Del.cs -------------------------------------------------------------------------------- /SphereOS/Commands/FilesTopic/Edit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/FilesTopic/Edit.cs -------------------------------------------------------------------------------- /SphereOS/Commands/FilesTopic/Ff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/FilesTopic/Ff.cs -------------------------------------------------------------------------------- /SphereOS/Commands/FilesTopic/Fsinfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/FilesTopic/Fsinfo.cs -------------------------------------------------------------------------------- /SphereOS/Commands/FilesTopic/Ls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/FilesTopic/Ls.cs -------------------------------------------------------------------------------- /SphereOS/Commands/FilesTopic/Mkdir.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/FilesTopic/Mkdir.cs -------------------------------------------------------------------------------- /SphereOS/Commands/FilesTopic/Mkhome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/FilesTopic/Mkhome.cs -------------------------------------------------------------------------------- /SphereOS/Commands/FilesTopic/Mv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/FilesTopic/Mv.cs -------------------------------------------------------------------------------- /SphereOS/Commands/FilesTopic/Rmdir.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/FilesTopic/Rmdir.cs -------------------------------------------------------------------------------- /SphereOS/Commands/FilesTopic/Touch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/FilesTopic/Touch.cs -------------------------------------------------------------------------------- /SphereOS/Commands/GamesTopic/Hangman.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/GamesTopic/Hangman.cs -------------------------------------------------------------------------------- /SphereOS/Commands/GeneralTopic/About.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/GeneralTopic/About.cs -------------------------------------------------------------------------------- /SphereOS/Commands/GeneralTopic/Asyscfg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/GeneralTopic/Asyscfg.cs -------------------------------------------------------------------------------- /SphereOS/Commands/GeneralTopic/Clear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/GeneralTopic/Clear.cs -------------------------------------------------------------------------------- /SphereOS/Commands/GeneralTopic/Crash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/GeneralTopic/Crash.cs -------------------------------------------------------------------------------- /SphereOS/Commands/GeneralTopic/Echo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/GeneralTopic/Echo.cs -------------------------------------------------------------------------------- /SphereOS/Commands/GeneralTopic/Gui.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/GeneralTopic/Gui.cs -------------------------------------------------------------------------------- /SphereOS/Commands/GeneralTopic/Help.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/GeneralTopic/Help.cs -------------------------------------------------------------------------------- /SphereOS/Commands/GeneralTopic/Hist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/GeneralTopic/Hist.cs -------------------------------------------------------------------------------- /SphereOS/Commands/GeneralTopic/Histc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/GeneralTopic/Histc.cs -------------------------------------------------------------------------------- /SphereOS/Commands/GeneralTopic/License.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/GeneralTopic/License.cs -------------------------------------------------------------------------------- /SphereOS/Commands/GeneralTopic/Logs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/GeneralTopic/Logs.cs -------------------------------------------------------------------------------- /SphereOS/Commands/GeneralTopic/Lsproc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/GeneralTopic/Lsproc.cs -------------------------------------------------------------------------------- /SphereOS/Commands/GeneralTopic/Name.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/GeneralTopic/Name.cs -------------------------------------------------------------------------------- /SphereOS/Commands/GeneralTopic/Pci.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/GeneralTopic/Pci.cs -------------------------------------------------------------------------------- /SphereOS/Commands/GeneralTopic/Rs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/GeneralTopic/Rs.cs -------------------------------------------------------------------------------- /SphereOS/Commands/GeneralTopic/Sysinfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/GeneralTopic/Sysinfo.cs -------------------------------------------------------------------------------- /SphereOS/Commands/GeneralTopic/Wd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/GeneralTopic/Wd.cs -------------------------------------------------------------------------------- /SphereOS/Commands/NetworkTopic/Ip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/NetworkTopic/Ip.cs -------------------------------------------------------------------------------- /SphereOS/Commands/NetworkTopic/Ping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/NetworkTopic/Ping.cs -------------------------------------------------------------------------------- /SphereOS/Commands/NetworkTopic/Resolve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/NetworkTopic/Resolve.cs -------------------------------------------------------------------------------- /SphereOS/Commands/PowerTopic/Reboot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/PowerTopic/Reboot.cs -------------------------------------------------------------------------------- /SphereOS/Commands/PowerTopic/Shutdown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/PowerTopic/Shutdown.cs -------------------------------------------------------------------------------- /SphereOS/Commands/ReturnCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/ReturnCode.cs -------------------------------------------------------------------------------- /SphereOS/Commands/TimeTopic/Clock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/TimeTopic/Clock.cs -------------------------------------------------------------------------------- /SphereOS/Commands/TimeTopic/Date.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/TimeTopic/Date.cs -------------------------------------------------------------------------------- /SphereOS/Commands/UsersTopic/Adduser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/UsersTopic/Adduser.cs -------------------------------------------------------------------------------- /SphereOS/Commands/UsersTopic/Admin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/UsersTopic/Admin.cs -------------------------------------------------------------------------------- /SphereOS/Commands/UsersTopic/Broadcast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/UsersTopic/Broadcast.cs -------------------------------------------------------------------------------- /SphereOS/Commands/UsersTopic/Deluser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/UsersTopic/Deluser.cs -------------------------------------------------------------------------------- /SphereOS/Commands/UsersTopic/Expire.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/UsersTopic/Expire.cs -------------------------------------------------------------------------------- /SphereOS/Commands/UsersTopic/Lock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/UsersTopic/Lock.cs -------------------------------------------------------------------------------- /SphereOS/Commands/UsersTopic/Logout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/UsersTopic/Logout.cs -------------------------------------------------------------------------------- /SphereOS/Commands/UsersTopic/Lsuser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/UsersTopic/Lsuser.cs -------------------------------------------------------------------------------- /SphereOS/Commands/UsersTopic/Pass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/UsersTopic/Pass.cs -------------------------------------------------------------------------------- /SphereOS/Commands/UsersTopic/Send.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/UsersTopic/Send.cs -------------------------------------------------------------------------------- /SphereOS/Commands/UsersTopic/Su.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Commands/UsersTopic/Su.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/Hangman/Hangman.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/Hangman/Hangman.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/Hangman/WordList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/Hangman/WordList.txt -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/Lexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/Lexer.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/Repl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/Repl.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/Script.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/Script.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/StandardLibrary/StandardLibrary.IO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/StandardLibrary/StandardLibrary.IO.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/StandardLibrary/StandardLibrary.Maths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/StandardLibrary/StandardLibrary.Maths.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/StandardLibrary/StandardLibrary.Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/StandardLibrary/StandardLibrary.Types.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/StandardLibrary/StandardLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/StandardLibrary/StandardLibrary.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/Tokens/AdditionOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/Tokens/AdditionOperator.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/Tokens/AndOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/Tokens/AndOperator.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/Tokens/Assignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/Tokens/Assignment.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/Tokens/Block.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/Tokens/Block.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/Tokens/Comma.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/Tokens/Comma.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/Tokens/ContainerToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/Tokens/ContainerToken.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/Tokens/DivisionOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/Tokens/DivisionOperator.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/Tokens/EqualsOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/Tokens/EqualsOperator.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/Tokens/GreaterEqualOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/Tokens/GreaterEqualOperator.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/Tokens/GreaterOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/Tokens/GreaterOperator.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/Tokens/IUnaryOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/Tokens/IUnaryOperator.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/Tokens/Identifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/Tokens/Identifier.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/Tokens/Keyword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/Tokens/Keyword.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/Tokens/LessEqualOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/Tokens/LessEqualOperator.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/Tokens/LessOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/Tokens/LessOperator.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/Tokens/MultiplicationOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/Tokens/MultiplicationOperator.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/Tokens/NotEqualsOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/Tokens/NotEqualsOperator.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/Tokens/NotOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/Tokens/NotOperator.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/Tokens/NumberLiteral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/Tokens/NumberLiteral.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/Tokens/Operator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/Tokens/Operator.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/Tokens/OrOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/Tokens/OrOperator.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/Tokens/Parentheses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/Tokens/Parentheses.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/Tokens/RangeOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/Tokens/RangeOperator.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/Tokens/RemainderOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/Tokens/RemainderOperator.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/Tokens/StringLiteral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/Tokens/StringLiteral.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/Tokens/SubtractionOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/Tokens/SubtractionOperator.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/Tokens/Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/Tokens/Token.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/VM/Interpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/VM/Interpreter.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/VM/VMBaseFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/VM/VMBaseFunction.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/VM/VMBoolean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/VM/VMBoolean.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/VM/VMFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/VM/VMFunction.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/VM/VMNativeFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/VM/VMNativeFunction.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/VM/VMNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/VM/VMNull.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/VM/VMNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/VM/VMNumber.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/VM/VMObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/VM/VMObject.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/VM/VMRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/VM/VMRange.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/RiverScript/VM/VMString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/RiverScript/VM/VMString.cs -------------------------------------------------------------------------------- /SphereOS/ConsoleApps/TextEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/ConsoleApps/TextEditor.cs -------------------------------------------------------------------------------- /SphereOS/Core/CrashScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Core/CrashScreen.cs -------------------------------------------------------------------------------- /SphereOS/Core/Crypto/Sha256.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Core/Crypto/Sha256.cs -------------------------------------------------------------------------------- /SphereOS/Core/Drivers/VMWareSVGAII.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Core/Drivers/VMWareSVGAII.cs -------------------------------------------------------------------------------- /SphereOS/Core/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Core/Extensions.cs -------------------------------------------------------------------------------- /SphereOS/Core/FileSecurity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Core/FileSecurity.cs -------------------------------------------------------------------------------- /SphereOS/Core/FsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Core/FsManager.cs -------------------------------------------------------------------------------- /SphereOS/Core/Kernel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Core/Kernel.cs -------------------------------------------------------------------------------- /SphereOS/Core/MemService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Core/MemService.cs -------------------------------------------------------------------------------- /SphereOS/Core/Memory/MemoryStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Core/Memory/MemoryStatistics.cs -------------------------------------------------------------------------------- /SphereOS/Core/Memory/MemoryStatisticsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Core/Memory/MemoryStatisticsProvider.cs -------------------------------------------------------------------------------- /SphereOS/Core/PathSanitiser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Core/PathSanitiser.cs -------------------------------------------------------------------------------- /SphereOS/Core/PathUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Core/PathUtil.cs -------------------------------------------------------------------------------- /SphereOS/Core/PciUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Core/PciUtils.cs -------------------------------------------------------------------------------- /SphereOS/Core/Power.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Core/Power.cs -------------------------------------------------------------------------------- /SphereOS/Core/Process.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Core/Process.cs -------------------------------------------------------------------------------- /SphereOS/Core/ProcessManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Core/ProcessManager.cs -------------------------------------------------------------------------------- /SphereOS/Core/ProcessType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Core/ProcessType.cs -------------------------------------------------------------------------------- /SphereOS/Core/SysCfg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Core/SysCfg.cs -------------------------------------------------------------------------------- /SphereOS/Core/Text/IniBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Core/Text/IniBuilder.cs -------------------------------------------------------------------------------- /SphereOS/Core/Text/IniReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Core/Text/IniReader.cs -------------------------------------------------------------------------------- /SphereOS/Gui/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/App.cs -------------------------------------------------------------------------------- /SphereOS/Gui/AppManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/AppManager.cs -------------------------------------------------------------------------------- /SphereOS/Gui/Apps/Calculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Apps/Calculator.cs -------------------------------------------------------------------------------- /SphereOS/Gui/Apps/Calendar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Apps/Calendar.cs -------------------------------------------------------------------------------- /SphereOS/Gui/Apps/Clock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Apps/Clock.cs -------------------------------------------------------------------------------- /SphereOS/Gui/Apps/CodeStudio/CodeStudio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Apps/CodeStudio/CodeStudio.cs -------------------------------------------------------------------------------- /SphereOS/Gui/Apps/CodeStudio/Ide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Apps/CodeStudio/Ide.cs -------------------------------------------------------------------------------- /SphereOS/Gui/Apps/DemoLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Apps/DemoLauncher.cs -------------------------------------------------------------------------------- /SphereOS/Gui/Apps/Demos/Mandelbrot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Apps/Demos/Mandelbrot.cs -------------------------------------------------------------------------------- /SphereOS/Gui/Apps/Demos/Starfield.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Apps/Demos/Starfield.cs -------------------------------------------------------------------------------- /SphereOS/Gui/Apps/Files.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Apps/Files.cs -------------------------------------------------------------------------------- /SphereOS/Gui/Apps/Info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Apps/Info.cs -------------------------------------------------------------------------------- /SphereOS/Gui/Apps/Logs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Apps/Logs.cs -------------------------------------------------------------------------------- /SphereOS/Gui/Apps/MemoryStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Apps/MemoryStatistics.cs -------------------------------------------------------------------------------- /SphereOS/Gui/Apps/Notepad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Apps/Notepad.cs -------------------------------------------------------------------------------- /SphereOS/Gui/Apps/Paint/ColourPicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Apps/Paint/ColourPicker.cs -------------------------------------------------------------------------------- /SphereOS/Gui/Apps/Paint/Paint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Apps/Paint/Paint.cs -------------------------------------------------------------------------------- /SphereOS/Gui/Apps/Paint/Tool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Apps/Paint/Tool.cs -------------------------------------------------------------------------------- /SphereOS/Gui/Apps/Paint/ToolBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Apps/Paint/ToolBox.cs -------------------------------------------------------------------------------- /SphereOS/Gui/Apps/Paint/Tools/CircleBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Apps/Paint/Tools/CircleBrush.cs -------------------------------------------------------------------------------- /SphereOS/Gui/Apps/Paint/Tools/Pencil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Apps/Paint/Tools/Pencil.cs -------------------------------------------------------------------------------- /SphereOS/Gui/Apps/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Apps/Settings.cs -------------------------------------------------------------------------------- /SphereOS/Gui/Apps/Stopwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Apps/Stopwatch.cs -------------------------------------------------------------------------------- /SphereOS/Gui/Apps/Tasks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Apps/Tasks.cs -------------------------------------------------------------------------------- /SphereOS/Gui/Asc16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Asc16.cs -------------------------------------------------------------------------------- /SphereOS/Gui/BitmapExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/BitmapExtensions.cs -------------------------------------------------------------------------------- /SphereOS/Gui/CursorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/CursorType.cs -------------------------------------------------------------------------------- /SphereOS/Gui/Gui.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Gui.cs -------------------------------------------------------------------------------- /SphereOS/Gui/ProtocolHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/ProtocolHandler.cs -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/AppIcons/Calculator.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/AppIcons/Calculator.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/AppIcons/Calendar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/AppIcons/Calendar.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/AppIcons/Clock.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/AppIcons/Clock.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/AppIcons/CodeStudio.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/AppIcons/CodeStudio.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/AppIcons/Default.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/AppIcons/Default.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/AppIcons/DemoLauncher.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/AppIcons/DemoLauncher.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/AppIcons/Demos/Mandelbrot.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/AppIcons/Demos/Mandelbrot.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/AppIcons/Demos/Starfield.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/AppIcons/Demos/Starfield.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/AppIcons/Files.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/AppIcons/Files.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/AppIcons/Info.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/AppIcons/Info.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/AppIcons/Logs.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/AppIcons/Logs.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/AppIcons/MemoryStatistics.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/AppIcons/MemoryStatistics.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/AppIcons/Notepad.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/AppIcons/Notepad.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/AppIcons/Paint.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/AppIcons/Paint.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/AppIcons/Settings.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/AppIcons/Settings.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/AppIcons/Stopwatch.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/AppIcons/Stopwatch.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/AppIcons/Tasks.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/AppIcons/Tasks.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/ButtonBackground.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/ButtonBackground.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Calculator/Display.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Calculator/Display.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Calculator/GridButton.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Calculator/GridButton.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Check.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Check.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Clock/ClockBackground.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Clock/ClockBackground.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Close.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Close.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Close_aero.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Close_aero.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Close_flat.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Close_flat.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/CodeStudio/Run.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/CodeStudio/Run.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/CodeStudio/Splash.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/CodeStudio/Splash.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Cursor.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Cursor.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Cursor_noshadow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Cursor_noshadow.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Dock/StartMenu.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Dock/StartMenu.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Files/Directory.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Files/Directory.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Files/Drive.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Files/Drive.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Files/File.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Files/File.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Files/File_Config.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Files/File_Config.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Files/File_Rs.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Files/File_Rs.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Files/File_Text.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Files/File_Text.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Files/Home.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Files/Home.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Files/Up.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Files/Up.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Lock/Background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Lock/Background.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Lock/Background_small.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Lock/Background_small.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Lock/Gradient.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Lock/Gradient.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Lock/Key.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Lock/Key.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Lock/ShutDown.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Lock/ShutDown.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Lock/User.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Lock/User.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Lock/UserArrow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Lock/UserArrow.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Logs/Error.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Logs/Error.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Logs/Info.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Logs/Info.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Logs/Warning.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Logs/Warning.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Maximise.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Maximise.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Maximise_aero.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Maximise_aero.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Maximise_flat.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Maximise_flat.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Minimise.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Minimise.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Minimise_aero.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Minimise_aero.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Minimise_flat.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Minimise_flat.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Restore.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Restore.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Restore_aero.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Restore_aero.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Restore_flat.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Restore_flat.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/ScrollbarDown.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/ScrollbarDown.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/ScrollbarUp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/ScrollbarUp.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Settings/Admin.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Settings/Admin.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Settings/Info.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Settings/Info.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Settings/User.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Settings/User.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Sounds/Alert.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Sounds/Alert.wav -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Sounds/Login.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Sounds/Login.wav -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Start.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Start.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/StartMenu/User.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/StartMenu/User.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Start_old.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Start_old.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/SwitchKnob.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/SwitchKnob.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/SwitchOff.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/SwitchOff.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/SwitchOn.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/SwitchOn.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/TitlebarBackground.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/TitlebarBackground.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/WaitCursor.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/WaitCursor.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Wallpaper_1024_640_old2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Wallpaper_1024_640_old2.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Wallpaper_1024_768_old2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Wallpaper_1024_768_old2.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Wallpaper_1280_800.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Wallpaper_1280_800.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Wallpaper_1280_800_old2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Wallpaper_1280_800_old2.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Wallpaper_old.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Wallpaper_old.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/Resources/Wallpaper_old_HD.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Resources/Wallpaper_old_HD.bmp -------------------------------------------------------------------------------- /SphereOS/Gui/RiverScriptUIConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/RiverScriptUIConsole.cs -------------------------------------------------------------------------------- /SphereOS/Gui/SettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/SettingsService.cs -------------------------------------------------------------------------------- /SphereOS/Gui/ShellComponents/Dock/AppDockIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/ShellComponents/Dock/AppDockIcon.cs -------------------------------------------------------------------------------- /SphereOS/Gui/ShellComponents/Dock/BaseDockIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/ShellComponents/Dock/BaseDockIcon.cs -------------------------------------------------------------------------------- /SphereOS/Gui/ShellComponents/Dock/Dock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/ShellComponents/Dock/Dock.cs -------------------------------------------------------------------------------- /SphereOS/Gui/ShellComponents/Dock/StartMenuDockIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/ShellComponents/Dock/StartMenuDockIcon.cs -------------------------------------------------------------------------------- /SphereOS/Gui/ShellComponents/Lock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/ShellComponents/Lock.cs -------------------------------------------------------------------------------- /SphereOS/Gui/ShellComponents/StartMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/ShellComponents/StartMenu.cs -------------------------------------------------------------------------------- /SphereOS/Gui/ShellComponents/Taskbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/ShellComponents/Taskbar.cs -------------------------------------------------------------------------------- /SphereOS/Gui/SmoothMono/FontData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/SmoothMono/FontData.cs -------------------------------------------------------------------------------- /SphereOS/Gui/SmoothMono/TextRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/SmoothMono/TextRenderer.cs -------------------------------------------------------------------------------- /SphereOS/Gui/Sound/SoundService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Sound/SoundService.cs -------------------------------------------------------------------------------- /SphereOS/Gui/Sound/SystemSound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Sound/SystemSound.cs -------------------------------------------------------------------------------- /SphereOS/Gui/UILib/Alignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/UILib/Alignment.cs -------------------------------------------------------------------------------- /SphereOS/Gui/UILib/Animations/Animation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/UILib/Animations/Animation.cs -------------------------------------------------------------------------------- /SphereOS/Gui/UILib/Animations/Easing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/UILib/Animations/Easing.cs -------------------------------------------------------------------------------- /SphereOS/Gui/UILib/Animations/EasingDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/UILib/Animations/EasingDirection.cs -------------------------------------------------------------------------------- /SphereOS/Gui/UILib/Animations/EasingType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/UILib/Animations/EasingType.cs -------------------------------------------------------------------------------- /SphereOS/Gui/UILib/Animations/MovementAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/UILib/Animations/MovementAnimation.cs -------------------------------------------------------------------------------- /SphereOS/Gui/UILib/AppWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/UILib/AppWindow.cs -------------------------------------------------------------------------------- /SphereOS/Gui/UILib/Button.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/UILib/Button.cs -------------------------------------------------------------------------------- /SphereOS/Gui/UILib/Calendar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/UILib/Calendar.cs -------------------------------------------------------------------------------- /SphereOS/Gui/UILib/CheckBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/UILib/CheckBox.cs -------------------------------------------------------------------------------- /SphereOS/Gui/UILib/Control.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/UILib/Control.cs -------------------------------------------------------------------------------- /SphereOS/Gui/UILib/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/UILib/Extensions.cs -------------------------------------------------------------------------------- /SphereOS/Gui/UILib/ImageBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/UILib/ImageBlock.cs -------------------------------------------------------------------------------- /SphereOS/Gui/UILib/MessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/UILib/MessageBox.cs -------------------------------------------------------------------------------- /SphereOS/Gui/UILib/PromptBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/UILib/PromptBox.cs -------------------------------------------------------------------------------- /SphereOS/Gui/UILib/RangeSlider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/UILib/RangeSlider.cs -------------------------------------------------------------------------------- /SphereOS/Gui/UILib/ShortcutBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/UILib/ShortcutBar.cs -------------------------------------------------------------------------------- /SphereOS/Gui/UILib/ShortcutBarCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/UILib/ShortcutBarCell.cs -------------------------------------------------------------------------------- /SphereOS/Gui/UILib/Switch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/UILib/Switch.cs -------------------------------------------------------------------------------- /SphereOS/Gui/UILib/Table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/UILib/Table.cs -------------------------------------------------------------------------------- /SphereOS/Gui/UILib/TableCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/UILib/TableCell.cs -------------------------------------------------------------------------------- /SphereOS/Gui/UILib/TextBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/UILib/TextBlock.cs -------------------------------------------------------------------------------- /SphereOS/Gui/UILib/TextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/UILib/TextBox.cs -------------------------------------------------------------------------------- /SphereOS/Gui/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/Window.cs -------------------------------------------------------------------------------- /SphereOS/Gui/WindowManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Gui/WindowManager.cs -------------------------------------------------------------------------------- /SphereOS/Logging/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Logging/Log.cs -------------------------------------------------------------------------------- /SphereOS/Logging/LogEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Logging/LogEvent.cs -------------------------------------------------------------------------------- /SphereOS/Logging/LogPriority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Logging/LogPriority.cs -------------------------------------------------------------------------------- /SphereOS/Shell/BootMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Shell/BootMenu.cs -------------------------------------------------------------------------------- /SphereOS/Shell/LoginPrompt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Shell/LoginPrompt.cs -------------------------------------------------------------------------------- /SphereOS/Shell/ReadLineExResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Shell/ReadLineExResult.cs -------------------------------------------------------------------------------- /SphereOS/Shell/Shell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Shell/Shell.cs -------------------------------------------------------------------------------- /SphereOS/Shell/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Shell/Util.cs -------------------------------------------------------------------------------- /SphereOS/SphereOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/SphereOS.csproj -------------------------------------------------------------------------------- /SphereOS/Users/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Users/Message.cs -------------------------------------------------------------------------------- /SphereOS/Users/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Users/User.cs -------------------------------------------------------------------------------- /SphereOS/Users/UserManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumaTechnologies/SphereOS/HEAD/SphereOS/Users/UserManager.cs --------------------------------------------------------------------------------