From 9b78120f0efb3e5fa050c6a5c399f8c228a78357 Mon Sep 17 00:00:00 2001 From: chinons098 Date: Sun, 27 Oct 2024 15:13:29 -0400 Subject: [PATCH] about added --- package-lock.json | 4 +- package.json | 2 +- src/app/app.component.ts | 2 + src/app/app.module.ts | 4 +- src/app/system-apps/about/about.component.css | 28 ---- .../system-apps/about/about.component.html | 10 -- src/app/system-apps/about/about.component.ts | 97 -------------- .../system-apps/cheetah/cheetah.component.css | 123 ++++++++++++++++++ .../cheetah/cheetah.component.html | 31 +++++ .../system-apps/cheetah/cheetah.component.ts | 70 ++++++++++ src/app/system-files/app.directory.ts | 2 +- src/osdrive.json | 2 +- src/osdrive/AppData/StartMenu/about.url | 6 + src/osdrive/Users/Desktop/about.url | 6 + src/osdrive/Users/Desktop/heat.url | 2 +- src/osdrive/Users/Desktop/hello.url | 2 +- src/osdrive/Users/Desktop/taskmanager.url | 2 +- src/osdrive/Users/Desktop/terminal.url | 2 +- 18 files changed, 249 insertions(+), 146 deletions(-) delete mode 100644 src/app/system-apps/about/about.component.css delete mode 100644 src/app/system-apps/about/about.component.html delete mode 100644 src/app/system-apps/about/about.component.ts create mode 100644 src/app/system-apps/cheetah/cheetah.component.css create mode 100644 src/app/system-apps/cheetah/cheetah.component.html create mode 100644 src/app/system-apps/cheetah/cheetah.component.ts create mode 100644 src/osdrive/AppData/StartMenu/about.url create mode 100644 src/osdrive/Users/Desktop/about.url diff --git a/package-lock.json b/package-lock.json index 7efe6f53..5b7eab76 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "cheetah-os", - "version": "2.10.05", + "version": "2.10.27", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "cheetah-os", - "version": "2.10.05", + "version": "2.10.27", "license": "MIT", "dependencies": { "@angular/animations": "^18.0.0", diff --git a/package.json b/package.json index d221b69c..925283d6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cheetah-os", - "version": "2.10.05", + "version": "2.10.27", "description": "Desktop environment in the browser", "author": "CM", "license": "MIT", diff --git a/src/app/app.component.ts b/src/app/app.component.ts index a25b0c58..c95442a5 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -16,6 +16,7 @@ import { AppDirectory } from './system-files/app.directory'; import { Constants } from 'src/app/system-files/constants'; import { BaseComponent } from './system-base/base/base.component'; +import { CheetahComponent } from './system-apps/cheetah/cheetah.component'; import { TitleComponent } from './user-apps/title/title.component'; import { GreetingComponent } from './user-apps/greeting/greeting.component'; import { FileExplorerComponent } from './system-apps/fileexplorer/fileexplorer.component'; @@ -88,6 +89,7 @@ export class AppComponent implements OnDestroy, AfterViewInit { //appname private apps: {type: Type}[] =[ {type: AudioPlayerComponent}, + {type: CheetahComponent}, {type: FileExplorerComponent}, {type: TaskmanagerComponent}, {type: TerminalComponent}, diff --git a/src/app/app.module.ts b/src/app/app.module.ts index da636bf3..1d233bb1 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -35,7 +35,7 @@ import { CodeEditorComponent } from './user-apps/codeeditor/codeeditor.component import { PropertiesComponent } from './shared/system-component/properties/properties.component'; import { MarkDownViewerComponent } from './user-apps/markdownviewer/markdownviewer.component'; import { FileTreeViewComponent } from './shared/system-component/filetreeview/filetreeview.component'; -import { AboutComponent } from './system-apps/about/about.component'; +import { CheetahComponent } from './system-apps/cheetah/cheetah.component'; import { SafeUrlPipe } from './shared/system-pipes/safe.resource.url.pipe'; import { TruncatePipe } from './shared/system-pipes/string.shorten.pipe'; @@ -78,7 +78,7 @@ import { KeyPressCaptureDirective } from './system-apps/terminal/key.press.captu CodeEditorComponent, MarkDownViewerComponent, FileTreeViewComponent, - AboutComponent, + CheetahComponent, HighlightDirective, diff --git a/src/app/system-apps/about/about.component.css b/src/app/system-apps/about/about.component.css deleted file mode 100644 index 4fa744df..00000000 --- a/src/app/system-apps/about/about.component.css +++ /dev/null @@ -1,28 +0,0 @@ -.cheetah-main-contianer{ - height: 100%; - width: 100%; - background-color: #f0f0f0; -} - -.os-info{ - height: 100%; - width: 100%; - padding:8px 8px 4px 8px; -} - -.os-image{ - width: 626px; - height: 235px; - margin-inline: auto; -} - -.os-name{ - font-size: 30px; - text-align: center; - color: #000; -} -.os-version{ - font-size: 15px; - text-align: center; - color: #000; -} \ No newline at end of file diff --git a/src/app/system-apps/about/about.component.html b/src/app/system-apps/about/about.component.html deleted file mode 100644 index 400ba2a5..00000000 --- a/src/app/system-apps/about/about.component.html +++ /dev/null @@ -1,10 +0,0 @@ -
-
-
- -
-

CheetahOS

-

Version: 2.10.27

-
- -
\ No newline at end of file diff --git a/src/app/system-apps/about/about.component.ts b/src/app/system-apps/about/about.component.ts deleted file mode 100644 index 4a3a21c9..00000000 --- a/src/app/system-apps/about/about.component.ts +++ /dev/null @@ -1,97 +0,0 @@ -import { Component, ElementRef, ViewChild, OnDestroy, AfterViewInit } from '@angular/core'; -import { Subscription } from 'rxjs'; -import { ProcessIDService } from 'src/app/shared/system-service/process.id.service'; -import { RunningProcessService } from 'src/app/shared/system-service/running.process.service'; -import { BaseComponent } from 'src/app/system-base/base/base.component'; -import { ComponentType } from 'src/app/system-files/component.types'; -import { Process } from 'src/app/system-files/process'; -import * as htmlToImage from 'html-to-image'; -import { TaskBarPreviewImage } from 'src/app/system-apps/taskbarpreview/taskbar.preview'; -import { Constants } from "src/app/system-files/constants"; - -@Component({ - selector:'cos-about', - templateUrl: './about.component.html', - styleUrls: ["./about.component.css"] -}) - -export class AboutComponent implements BaseComponent, OnDestroy, AfterViewInit{ - - @ViewChild('titleContent', {static: true}) titleContent!: ElementRef; - - private _processIdService:ProcessIDService; - private _runningProcessService:RunningProcessService; - private _maximizeWindowSub!: Subscription; - - private _consts:Constants = new Constants(); - SECONDS_DELAY = 250; - - - hasWindow = true; - icon = `${this._consts.IMAGE_BASE_PATH}cheetah.png`; - name = 'hello'; - processId = 0; - type = ComponentType.User; - displayName = 'Hello'; - - constructor( processIdService:ProcessIDService,runningProcessService:RunningProcessService) { - this._processIdService = processIdService; - this._runningProcessService = runningProcessService; - - this.processId = this._processIdService.getNewProcessId() - this._runningProcessService.addProcess(this.getComponentDetail()); - - this._maximizeWindowSub = this._runningProcessService.maximizeProcessWindowNotify.subscribe(() =>{this.maximizeWindow()}); - } - - - ngAfterViewInit(): void { - this.setTitleWindowToFocus(this.processId); - - setTimeout(()=>{ - this.captureComponentImg(); - },this.SECONDS_DELAY) - } - - ngOnDestroy():void{ - this._maximizeWindowSub?.unsubscribe(); - } - - captureComponentImg():void{ - htmlToImage.toPng(this.titleContent.nativeElement).then(htmlImg =>{ - //console.log('img data:',htmlImg); - - const cmpntImg:TaskBarPreviewImage = { - pid: this.processId, - imageData: htmlImg - } - this._runningProcessService.addProcessImage(this.name, cmpntImg); - }) - } - - maximizeWindow():void{ - - const uid = `${this.name}-${this.processId}`; - const evtOriginator = this._runningProcessService.getEventOrginator(); - - if(uid === evtOriginator){ - - this._runningProcessService.removeEventOriginator(); - const mainWindow = document.getElementById('vanta'); - //window title and button bar, and windows taskbar height - const pixelTosubtract = 30 + 40; - this.titleContent.nativeElement.style.height = `${(mainWindow?.offsetHeight || 0) - pixelTosubtract}px`; - this.titleContent.nativeElement.style.width = `${mainWindow?.offsetWidth}px`; - - } - } - - setTitleWindowToFocus(pid:number):void{ - this._runningProcessService.focusOnCurrentProcessNotify.next(pid); - } - - private getComponentDetail():Process{ - return new Process(this.processId, this.name, this.icon, this.hasWindow, this.type) - } - -} \ No newline at end of file diff --git a/src/app/system-apps/cheetah/cheetah.component.css b/src/app/system-apps/cheetah/cheetah.component.css new file mode 100644 index 00000000..a2a911d8 --- /dev/null +++ b/src/app/system-apps/cheetah/cheetah.component.css @@ -0,0 +1,123 @@ +.cheetah-main-container{ + font-size: 1rem; + text-align: center; + box-shadow: 0 0 20px 0 rgba(0, 0, 0, 50%); + position: absolute; + top: 25%; + left: 25%; + /* transform: translate(-50%, -50%); Move the element back by 50% of its own width and height */ + transform: translate(431px, -914px); /* Move the element back by 50% of its own width and height */ + outline: 1px hsl(0deg 0% 20%/70%); + z-index: 2; + height: fit-content; + width: fit-content; +} + +/*Head Section*/ +.cheetah-header-container{ + background-color: #ffffff; + width: 100%; + position: relative; + display: flex; +} + +.cheetah-left-header-section{ + width:calc(100% - 45px); + height: 30px; + left: 0; +} + +.cheetah-right-header-section{ + height: 30px; + right: 0; +} + +.cheetah-h1{ + color: #fff; + font-size: 13px; + font-weight: normal; + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; + height: 29px; + border-bottom: 1px transparent blue; + width: fit-content; + flex-grow: 1; + display: flex; + left: 0; +} + +.cheetah-img{ + height: 18px; + width: 18px; + position: relative; + left: -5px; + margin: 0 6px 0 8px; +} + +.cheetah-figure{ + padding-left: 6px; + display: flex; + align-items: center; + height: 30px; +} + +.cheetah-figcaption{ + color: #000; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.cheetah-button{ + border-left: 1px transparent blue; + box-sizing: content-box; + color: #fff; + display: flex; + font-size: 20px; + width: 45px; + place-content: center; + place-items: center; +} + +.cheetah-svg{ + fill: #ababab; + margin-bottom: 2px; + /* width: 10px; */ +} + +.cheetah-nav{ + display: flex; + position: absolute; + width: fit-content; + right: 0; + height: 30px; +} + + +.cheetah-body-container{ + height: 100%; + width: 100%; + background-color: #f0f0f0; +} + +.os-info{ + height: 100%; + width: 100%; + padding:8px 8px 4px 8px; +} + +.os-image{ + width: 626px; + height: 235px; + margin-inline: auto; +} + +.os-name{ + font-size: 30px; + text-align: center; + color: #000; +} +.os-version{ + font-size: 15px; + text-align: center; + color: #000; +} diff --git a/src/app/system-apps/cheetah/cheetah.component.html b/src/app/system-apps/cheetah/cheetah.component.html new file mode 100644 index 00000000..3a11a661 --- /dev/null +++ b/src/app/system-apps/cheetah/cheetah.component.html @@ -0,0 +1,31 @@ +
+
+
+

+
+ +
{{name}}
+
+

+
+
+ +
+
+
+
+
+ +
+

CheetahOS

+

Version: 2.10.27

+

{{year}}

+
+
+
\ No newline at end of file diff --git a/src/app/system-apps/cheetah/cheetah.component.ts b/src/app/system-apps/cheetah/cheetah.component.ts new file mode 100644 index 00000000..102d173f --- /dev/null +++ b/src/app/system-apps/cheetah/cheetah.component.ts @@ -0,0 +1,70 @@ +import { Component} from '@angular/core'; +import { ComponentType } from 'src/app/system-files/component.types'; +import { Constants } from "src/app/system-files/constants"; +import { MenuService } from 'src/app/shared/system-service/menu.services'; +import { BaseComponent } from 'src/app/system-base/base/base.component'; + +@Component({ + selector:'cos-cheetah', + templateUrl: './cheetah.component.html', + styleUrls: ["./cheetah.component.css"] +}) + +export class CheetahComponent implements BaseComponent { + private _menuService:MenuService; + private _consts:Constants = new Constants(); + + hasWindow = true; + icon = `${this._consts.IMAGE_BASE_PATH}cheetah.png`; + cheetahIcon = `${this._consts.IMAGE_BASE_PATH}cheetah-midsprint-dash.jpg`; + processId = 0; + type = ComponentType.System; + displayName = 'CheetahOS'; + name = 'CheetahOS'; + year = `\u00A9 ${new Date().getFullYear()}`; + + constructor( menuService:MenuService) { + this._menuService = menuService; + this.processId = 11000; + } + + + + onClosePropertyView():void{ + this._menuService.closePropertiesView.next(this.processId); + } + + + + + + // private _fileService:FileService; + + // private _consts:Constants = new Constants(); + + // URL = this._consts.URL; + + // propertyId = 0; + // type = ComponentType.System; + // displayMgs = ''; + // name = ''; + // location = ''; + // icon = ''; + + // constructor(fileInfoService:FileService, menuService:MenuService){ + // this._fileService = fileInfoService; + // this._menuService = menuService; + // this.propertyId = this.generatePropertyId(); + // } + + // ngOnChanges(changes: SimpleChanges):void{ + // //console.log('DIALOG onCHANGES:',changes); + // this.displayMgs = `${this.fileInput.getFileName} `; + // this.name = this.fileInput.getFileName; + // this.location = dirname(this.fileInput.getCurrentPath); + // this.icon = this._fileService.getAppAssociaton(this.fileInput.getOpensWith); + // } + + + +} \ No newline at end of file diff --git a/src/app/system-files/app.directory.ts b/src/app/system-files/app.directory.ts index 47e6d05c..a3bd96f9 100644 --- a/src/app/system-files/app.directory.ts +++ b/src/app/system-files/app.directory.ts @@ -16,7 +16,7 @@ export class AppDirectory { } private fetchSystemApp(): string[]{ - this._systemProcessList = ["audioplayer","fileexplorer","taskmanager","terminal","videoplayer","photoviewer","texteditor"]; + this._systemProcessList = ["audioplayer","cheetah","fileexplorer","taskmanager","terminal","videoplayer","photoviewer","texteditor"]; return this._systemProcessList; } diff --git a/src/osdrive.json b/src/osdrive.json index dc956ac2..2520f1e8 100644 --- a/src/osdrive.json +++ b/src/osdrive.json @@ -1 +1 @@ -{"3d-objects.url":null,"AppData":{"StartMenu":{"audioplayer.url":null,"fileexplorer.url":null,"js-dos.url":null,"markdown.url":null,"photoviewer.url":null,"ruffle.url":null,"taskmanager.url":null,"terminal.url":null,"texteditor.url":null,"videoplayer.url":null,"vscode.url":null}},"Cheetah":{"System":{"BrowserFS":{"browserfs.d.ts":null,"browserfs.js":null,"browserfs.js.map":null,"browserfs.min.js":null,"browserfs.min.js.map":null,"node":{"backend":{"AsyncMirror.d.ts":null,"AsyncMirror.js":null,"AsyncMirror.js.map":null,"Dropbox.d.ts":null,"Dropbox.js":null,"Dropbox.js.map":null,"Emscripten.d.ts":null,"Emscripten.js":null,"Emscripten.js.map":null,"FolderAdapter.d.ts":null,"FolderAdapter.js":null,"FolderAdapter.js.map":null,"HTML5FS.d.ts":null,"HTML5FS.js":null,"HTML5FS.js.map":null,"InMemory.d.ts":null,"InMemory.js":null,"InMemory.js.map":null,"IndexedDB.d.ts":null,"IndexedDB.js":null,"IndexedDB.js.map":null,"IsoFS.d.ts":null,"IsoFS.js":null,"IsoFS.js.map":null,"LocalStorage.d.ts":null,"LocalStorage.js":null,"LocalStorage.js.map":null,"MountableFileSystem.d.ts":null,"MountableFileSystem.js":null,"MountableFileSystem.js.map":null,"OverlayFS.d.ts":null,"OverlayFS.js":null,"OverlayFS.js.map":null,"WorkerFS.d.ts":null,"WorkerFS.js":null,"WorkerFS.js.map":null,"XmlHttpRequest.d.ts":null,"XmlHttpRequest.js":null,"XmlHttpRequest.js.map":null,"ZipFS.d.ts":null,"ZipFS.js":null,"ZipFS.js.map":null},"core":{"FS.d.ts":null,"FS.js":null,"FS.js.map":null,"api_error.d.ts":null,"api_error.js":null,"api_error.js.map":null,"backends.d.ts":null,"backends.js":null,"backends.js.map":null,"browserfs.d.ts":null,"browserfs.js":null,"browserfs.js.map":null,"file.d.ts":null,"file.js":null,"file.js.map":null,"file_flag.d.ts":null,"file_flag.js":null,"file_flag.js.map":null,"file_system.d.ts":null,"file_system.js":null,"file_system.js.map":null,"global.d.ts":null,"global.js":null,"global.js.map":null,"levenshtein.d.ts":null,"levenshtein.js":null,"levenshtein.js.map":null,"node_fs.d.ts":null,"node_fs.js":null,"node_fs.js.map":null,"node_fs_stats.d.ts":null,"node_fs_stats.js":null,"node_fs_stats.js.map":null,"util.d.ts":null,"util.js":null,"util.js.map":null},"generic":{"emscripten_fs.d.ts":null,"emscripten_fs.js":null,"emscripten_fs.js.map":null,"extended_ascii.d.ts":null,"extended_ascii.js":null,"extended_ascii.js.map":null,"file_index.d.ts":null,"file_index.js":null,"file_index.js.map":null,"inode.d.ts":null,"inode.js":null,"inode.js.map":null,"key_value_filesystem.d.ts":null,"key_value_filesystem.js":null,"key_value_filesystem.js.map":null,"locked_fs.d.ts":null,"locked_fs.js":null,"locked_fs.js.map":null,"mutex.d.ts":null,"mutex.js":null,"mutex.js.map":null,"preload_file.d.ts":null,"preload_file.js":null,"preload_file.js.map":null,"setImmediate.d.ts":null,"setImmediate.js":null,"setImmediate.js.map":null,"xhr.d.ts":null,"xhr.js":null,"xhr.js.map":null},"index.d.ts":null,"index.js":null,"index.js.map":null,"typedoc.d.ts":null,"typedoc.js":null,"typedoc.js.map":null},"scripts":{"make_http_index.js":null,"make_xhrfs_index.js":null,"make_xhrfs_index.js.map":null},"shims":{"buffer.js":null,"bufferGlobal.js":null,"fs.js":null,"path.js":null,"process.js":null}},"Fluent Effect":{"LICENSE":null,"README.md":null,"fs-src":{"LICENSE.txt":null,"fluentRevealEffect.d.ts":null,"helpers":{"index.d.ts":null},"main.d.ts":null,"main.js":null,"main.js.map":null,"types.d.ts":null},"package.json":null},"Imageres":{"3d-objects_folder.png":null,"3d-objects_folder_small.png":null,"arrow_down.png":null,"arrow_next.png":null,"arrow_next_1.png":null,"arrow_up.png":null,"audioplayer.png":null,"camera.png":null,"chkmark26.png":null,"chkmark32.png":null,"chkmark32_blk.png":null,"circle.png":null,"circle_blk.png":null,"cmd.png":null,"code_file.png":null,"config.png":null,"content_view.png":null,"cross_mark_32.png":null,"desktop_folder.png":null,"desktop_folder_small.png":null,"details_pane.png":null,"details_view.ico":null,"details_view.png":null,"documents.png":null,"documents_folder.png":null,"documents_folder_small.png":null,"downloads_folder.png":null,"downloads_folder_small.png":null,"econo.png":null,"empty_folder.png":null,"empty_recycle.ico":null,"emulator_2.png":null,"extra_large_image.png":null,"file.png":null,"file_explorer.png":null,"folder.png":null,"folder_folder_small.png":null,"games_folder.png":null,"games_folder_small.png":null,"generic_program.png":null,"grey_history_32.png":null,"grey_nav_expand_32.png":null,"grey_nav_forward_32.png":null,"grey_nav_refresh_32.png":null,"image_file.png":null,"info.png":null,"js-dos_emulator.png":null,"js-dos_file.png":null,"large_image.png":null,"list_of_thumbnails_view.png":null,"markdown.png":null,"markdown_file.png":null,"medium_icons_view.png":null,"music_file.png":null,"music_folder.png":null,"music_folder_small.png":null,"my_computer.png":null,"navigation_pane.png":null,"os_disk.png":null,"pdf.png":null,"photoviewer.png":null,"pictures.png":null,"pictures_folder.png":null,"pictures_folder_small.png":null,"pin_24.png":null,"preview_pane.png":null,"question.png":null,"quick_access.png":null,"quick_access_small.png":null,"quill.png":null,"red_x.png":null,"ruffle.png":null,"search_32.png":null,"shell32_51380.ico":null,"shortcut.png":null,"sm_file.png":null,"sm_folder.png":null,"sm_hamburger_menu.png":null,"sm_music.png":null,"sm_picture.png":null,"sm_power.png":null,"sm_settings.png":null,"small_icons_view.png":null,"swf_file.png":null,"taskmanager.png":null,"taskmanger_2.png":null,"terminal.png":null,"text_editor.png":null,"this_pc.png":null,"tiles_view.png":null,"unknown.png":null,"unpin_24.png":null,"unpin_32.png":null,"video_file.png":null,"videoplayer.png":null,"videos.png":null,"videos_folder.png":null,"videos_folder_small.png":null,"vs_code.png":null,"warning.png":null,"wasm_file.png":null,"white_history_32.png":null,"x_32.png":null}}},"Program-Files":{"3D-Model-Viewer":{"3D-Viewer":{"js-3d-model-viewer.js":null,"js-3d-model-viewer.js.map":null,"js-3d-model-viewer.min.js":null,"js-3d-model-viewer.min.js.map":null},"LICENSE":null,"README.md":null,"assets":{"avocado.glb":null,"duck.glb":null,"helmet.glb":null,"sample.obj":null,"sample_02.mtl":null,"sample_02.obj":null,"sample_03.mtl":null,"sample_03.obj":null,"sneakers.usdz":null},"index.html":null,"rollup.config.js":null},"Backgrounds":{"vanta.birds.min.js":null,"vanta.globe.min.js":null,"vanta.halo.min.js":null,"vanta.rings.min.js":null,"vanta.waves.min.js":null},"Howler":{"howler.min.js":null,"siriwave.umd.min.js":null},"JS-DOS":{"emulators-ui-loader.png":null,"js-dos.js":null,"js-dos.js.map":null,"wdosbox.js":null,"wdosbox.js.symbols":null,"wdosbox.wasm":null},"Marked":{"marked.min.js":null},"PDF-JS":{"pdf.mjs":null,"pdf.mjs.map":null,"pdf.sandbox.mjs":null,"pdf.sandbox.mjs.map":null,"pdf.worker.mjs":null,"pdf.worker.mjs.map":null,"web":{"cmaps":{"78-EUC-H.bcmap":null,"78-EUC-V.bcmap":null,"78-H.bcmap":null,"78-RKSJ-H.bcmap":null,"78-RKSJ-V.bcmap":null,"78-V.bcmap":null,"78ms-RKSJ-H.bcmap":null,"78ms-RKSJ-V.bcmap":null,"83pv-RKSJ-H.bcmap":null,"90ms-RKSJ-H.bcmap":null,"90ms-RKSJ-V.bcmap":null,"90msp-RKSJ-H.bcmap":null,"90msp-RKSJ-V.bcmap":null,"90pv-RKSJ-H.bcmap":null,"90pv-RKSJ-V.bcmap":null,"Add-H.bcmap":null,"Add-RKSJ-H.bcmap":null,"Add-RKSJ-V.bcmap":null,"Add-V.bcmap":null,"Adobe-CNS1-0.bcmap":null,"Adobe-CNS1-1.bcmap":null,"Adobe-CNS1-2.bcmap":null,"Adobe-CNS1-3.bcmap":null,"Adobe-CNS1-4.bcmap":null,"Adobe-CNS1-5.bcmap":null,"Adobe-CNS1-6.bcmap":null,"Adobe-CNS1-UCS2.bcmap":null,"Adobe-GB1-0.bcmap":null,"Adobe-GB1-1.bcmap":null,"Adobe-GB1-2.bcmap":null,"Adobe-GB1-3.bcmap":null,"Adobe-GB1-4.bcmap":null,"Adobe-GB1-5.bcmap":null,"Adobe-GB1-UCS2.bcmap":null,"Adobe-Japan1-0.bcmap":null,"Adobe-Japan1-1.bcmap":null,"Adobe-Japan1-2.bcmap":null,"Adobe-Japan1-3.bcmap":null,"Adobe-Japan1-4.bcmap":null,"Adobe-Japan1-5.bcmap":null,"Adobe-Japan1-6.bcmap":null,"Adobe-Japan1-UCS2.bcmap":null,"Adobe-Korea1-0.bcmap":null,"Adobe-Korea1-1.bcmap":null,"Adobe-Korea1-2.bcmap":null,"Adobe-Korea1-UCS2.bcmap":null,"B5-H.bcmap":null,"B5-V.bcmap":null,"B5pc-H.bcmap":null,"B5pc-V.bcmap":null,"CNS-EUC-H.bcmap":null,"CNS-EUC-V.bcmap":null,"CNS1-H.bcmap":null,"CNS1-V.bcmap":null,"CNS2-H.bcmap":null,"CNS2-V.bcmap":null,"ETHK-B5-H.bcmap":null,"ETHK-B5-V.bcmap":null,"ETen-B5-H.bcmap":null,"ETen-B5-V.bcmap":null,"ETenms-B5-H.bcmap":null,"ETenms-B5-V.bcmap":null,"EUC-H.bcmap":null,"EUC-V.bcmap":null,"Ext-H.bcmap":null,"Ext-RKSJ-H.bcmap":null,"Ext-RKSJ-V.bcmap":null,"Ext-V.bcmap":null,"GB-EUC-H.bcmap":null,"GB-EUC-V.bcmap":null,"GB-H.bcmap":null,"GB-V.bcmap":null,"GBK-EUC-H.bcmap":null,"GBK-EUC-V.bcmap":null,"GBK2K-H.bcmap":null,"GBK2K-V.bcmap":null,"GBKp-EUC-H.bcmap":null,"GBKp-EUC-V.bcmap":null,"GBT-EUC-H.bcmap":null,"GBT-EUC-V.bcmap":null,"GBT-H.bcmap":null,"GBT-V.bcmap":null,"GBTpc-EUC-H.bcmap":null,"GBTpc-EUC-V.bcmap":null,"GBpc-EUC-H.bcmap":null,"GBpc-EUC-V.bcmap":null,"H.bcmap":null,"HKdla-B5-H.bcmap":null,"HKdla-B5-V.bcmap":null,"HKdlb-B5-H.bcmap":null,"HKdlb-B5-V.bcmap":null,"HKgccs-B5-H.bcmap":null,"HKgccs-B5-V.bcmap":null,"HKm314-B5-H.bcmap":null,"HKm314-B5-V.bcmap":null,"HKm471-B5-H.bcmap":null,"HKm471-B5-V.bcmap":null,"HKscs-B5-H.bcmap":null,"HKscs-B5-V.bcmap":null,"Hankaku.bcmap":null,"Hiragana.bcmap":null,"KSC-EUC-H.bcmap":null,"KSC-EUC-V.bcmap":null,"KSC-H.bcmap":null,"KSC-Johab-H.bcmap":null,"KSC-Johab-V.bcmap":null,"KSC-V.bcmap":null,"KSCms-UHC-H.bcmap":null,"KSCms-UHC-HW-H.bcmap":null,"KSCms-UHC-HW-V.bcmap":null,"KSCms-UHC-V.bcmap":null,"KSCpc-EUC-H.bcmap":null,"KSCpc-EUC-V.bcmap":null,"Katakana.bcmap":null,"LICENSE":null,"NWP-H.bcmap":null,"NWP-V.bcmap":null,"RKSJ-H.bcmap":null,"RKSJ-V.bcmap":null,"Roman.bcmap":null,"UniCNS-UCS2-H.bcmap":null,"UniCNS-UCS2-V.bcmap":null,"UniCNS-UTF16-H.bcmap":null,"UniCNS-UTF16-V.bcmap":null,"UniCNS-UTF32-H.bcmap":null,"UniCNS-UTF32-V.bcmap":null,"UniCNS-UTF8-H.bcmap":null,"UniCNS-UTF8-V.bcmap":null,"UniGB-UCS2-H.bcmap":null,"UniGB-UCS2-V.bcmap":null,"UniGB-UTF16-H.bcmap":null,"UniGB-UTF16-V.bcmap":null,"UniGB-UTF32-H.bcmap":null,"UniGB-UTF32-V.bcmap":null,"UniGB-UTF8-H.bcmap":null,"UniGB-UTF8-V.bcmap":null,"UniJIS-UCS2-H.bcmap":null,"UniJIS-UCS2-HW-H.bcmap":null,"UniJIS-UCS2-HW-V.bcmap":null,"UniJIS-UCS2-V.bcmap":null,"UniJIS-UTF16-H.bcmap":null,"UniJIS-UTF16-V.bcmap":null,"UniJIS-UTF32-H.bcmap":null,"UniJIS-UTF32-V.bcmap":null,"UniJIS-UTF8-H.bcmap":null,"UniJIS-UTF8-V.bcmap":null,"UniJIS2004-UTF16-H.bcmap":null,"UniJIS2004-UTF16-V.bcmap":null,"UniJIS2004-UTF32-H.bcmap":null,"UniJIS2004-UTF32-V.bcmap":null,"UniJIS2004-UTF8-H.bcmap":null,"UniJIS2004-UTF8-V.bcmap":null,"UniJISPro-UCS2-HW-V.bcmap":null,"UniJISPro-UCS2-V.bcmap":null,"UniJISPro-UTF8-V.bcmap":null,"UniJISX0213-UTF32-H.bcmap":null,"UniJISX0213-UTF32-V.bcmap":null,"UniJISX02132004-UTF32-H.bcmap":null,"UniJISX02132004-UTF32-V.bcmap":null,"UniKS-UCS2-H.bcmap":null,"UniKS-UCS2-V.bcmap":null,"UniKS-UTF16-H.bcmap":null,"UniKS-UTF16-V.bcmap":null,"UniKS-UTF32-H.bcmap":null,"UniKS-UTF32-V.bcmap":null,"UniKS-UTF8-H.bcmap":null,"UniKS-UTF8-V.bcmap":null,"V.bcmap":null,"WP-Symbol.bcmap":null},"compressed.tracemonkey-pldi-09.pdf":null,"debugger.css":null,"debugger.mjs":null,"images":{"altText_add.svg":null,"altText_done.svg":null,"annotation-check.svg":null,"annotation-comment.svg":null,"annotation-help.svg":null,"annotation-insert.svg":null,"annotation-key.svg":null,"annotation-newparagraph.svg":null,"annotation-noicon.svg":null,"annotation-note.svg":null,"annotation-paperclip.svg":null,"annotation-paragraph.svg":null,"annotation-pushpin.svg":null,"cursor-editorFreeHighlight.svg":null,"cursor-editorFreeText.svg":null,"cursor-editorInk.svg":null,"cursor-editorTextHighlight.svg":null,"editor-toolbar-delete.svg":null,"findbarButton-next.svg":null,"findbarButton-previous.svg":null,"gv-toolbarButton-download.svg":null,"loading-icon.gif":null,"loading.svg":null,"secondaryToolbarButton-documentProperties.svg":null,"secondaryToolbarButton-firstPage.svg":null,"secondaryToolbarButton-handTool.svg":null,"secondaryToolbarButton-lastPage.svg":null,"secondaryToolbarButton-rotateCcw.svg":null,"secondaryToolbarButton-rotateCw.svg":null,"secondaryToolbarButton-scrollHorizontal.svg":null,"secondaryToolbarButton-scrollPage.svg":null,"secondaryToolbarButton-scrollVertical.svg":null,"secondaryToolbarButton-scrollWrapped.svg":null,"secondaryToolbarButton-selectTool.svg":null,"secondaryToolbarButton-spreadEven.svg":null,"secondaryToolbarButton-spreadNone.svg":null,"secondaryToolbarButton-spreadOdd.svg":null,"toolbarButton-bookmark.svg":null,"toolbarButton-currentOutlineItem.svg":null,"toolbarButton-download.svg":null,"toolbarButton-editorFreeText.svg":null,"toolbarButton-editorHighlight.svg":null,"toolbarButton-editorInk.svg":null,"toolbarButton-editorStamp.svg":null,"toolbarButton-menuArrow.svg":null,"toolbarButton-openFile.svg":null,"toolbarButton-pageDown.svg":null,"toolbarButton-pageUp.svg":null,"toolbarButton-presentationMode.svg":null,"toolbarButton-print.svg":null,"toolbarButton-search.svg":null,"toolbarButton-secondaryToolbarToggle.svg":null,"toolbarButton-sidebarToggle.svg":null,"toolbarButton-viewAttachments.svg":null,"toolbarButton-viewLayers.svg":null,"toolbarButton-viewOutline.svg":null,"toolbarButton-viewThumbnail.svg":null,"toolbarButton-zoomIn.svg":null,"toolbarButton-zoomOut.svg":null,"treeitem-collapsed.svg":null,"treeitem-expanded.svg":null},"locale":{"ach":{"viewer.ftl":null},"af":{"viewer.ftl":null},"an":{"viewer.ftl":null},"ar":{"viewer.ftl":null},"ast":{"viewer.ftl":null},"az":{"viewer.ftl":null},"be":{"viewer.ftl":null},"bg":{"viewer.ftl":null},"bn":{"viewer.ftl":null},"bo":{"viewer.ftl":null},"br":{"viewer.ftl":null},"brx":{"viewer.ftl":null},"bs":{"viewer.ftl":null},"ca":{"viewer.ftl":null},"cak":{"viewer.ftl":null},"ckb":{"viewer.ftl":null},"cs":{"viewer.ftl":null},"cy":{"viewer.ftl":null},"da":{"viewer.ftl":null},"de":{"viewer.ftl":null},"dsb":{"viewer.ftl":null},"el":{"viewer.ftl":null},"en-CA":{"viewer.ftl":null},"en-GB":{"viewer.ftl":null},"en-US":{"viewer.ftl":null},"eo":{"viewer.ftl":null},"es-AR":{"viewer.ftl":null},"es-CL":{"viewer.ftl":null},"es-ES":{"viewer.ftl":null},"es-MX":{"viewer.ftl":null},"et":{"viewer.ftl":null},"eu":{"viewer.ftl":null},"fa":{"viewer.ftl":null},"ff":{"viewer.ftl":null},"fi":{"viewer.ftl":null},"fr":{"viewer.ftl":null},"fur":{"viewer.ftl":null},"fy-NL":{"viewer.ftl":null},"ga-IE":{"viewer.ftl":null},"gd":{"viewer.ftl":null},"gl":{"viewer.ftl":null},"gn":{"viewer.ftl":null},"gu-IN":{"viewer.ftl":null},"he":{"viewer.ftl":null},"hi-IN":{"viewer.ftl":null},"hr":{"viewer.ftl":null},"hsb":{"viewer.ftl":null},"hu":{"viewer.ftl":null},"hy-AM":{"viewer.ftl":null},"hye":{"viewer.ftl":null},"ia":{"viewer.ftl":null},"id":{"viewer.ftl":null},"is":{"viewer.ftl":null},"it":{"viewer.ftl":null},"ja":{"viewer.ftl":null},"ka":{"viewer.ftl":null},"kab":{"viewer.ftl":null},"kk":{"viewer.ftl":null},"km":{"viewer.ftl":null},"kn":{"viewer.ftl":null},"ko":{"viewer.ftl":null},"lij":{"viewer.ftl":null},"lo":{"viewer.ftl":null},"locale.json":null,"lt":{"viewer.ftl":null},"ltg":{"viewer.ftl":null},"lv":{"viewer.ftl":null},"meh":{"viewer.ftl":null},"mk":{"viewer.ftl":null},"mr":{"viewer.ftl":null},"ms":{"viewer.ftl":null},"my":{"viewer.ftl":null},"nb-NO":{"viewer.ftl":null},"ne-NP":{"viewer.ftl":null},"nl":{"viewer.ftl":null},"nn-NO":{"viewer.ftl":null},"oc":{"viewer.ftl":null},"pa-IN":{"viewer.ftl":null},"pl":{"viewer.ftl":null},"pt-BR":{"viewer.ftl":null},"pt-PT":{"viewer.ftl":null},"rm":{"viewer.ftl":null},"ro":{"viewer.ftl":null},"ru":{"viewer.ftl":null},"sat":{"viewer.ftl":null},"sc":{"viewer.ftl":null},"scn":{"viewer.ftl":null},"sco":{"viewer.ftl":null},"si":{"viewer.ftl":null},"sk":{"viewer.ftl":null},"skr":{"viewer.ftl":null},"sl":{"viewer.ftl":null},"son":{"viewer.ftl":null},"sq":{"viewer.ftl":null},"sr":{"viewer.ftl":null},"sv-SE":{"viewer.ftl":null},"szl":{"viewer.ftl":null},"ta":{"viewer.ftl":null},"te":{"viewer.ftl":null},"tg":{"viewer.ftl":null},"th":{"viewer.ftl":null},"tl":{"viewer.ftl":null},"tr":{"viewer.ftl":null},"trs":{"viewer.ftl":null},"uk":{"viewer.ftl":null},"ur":{"viewer.ftl":null},"uz":{"viewer.ftl":null},"vi":{"viewer.ftl":null},"wo":{"viewer.ftl":null},"xh":{"viewer.ftl":null},"zh-CN":{"viewer.ftl":null},"zh-TW":{"viewer.ftl":null}},"standard_fonts":{"FoxitDingbats.pfb":null,"FoxitFixed.pfb":null,"FoxitFixedBold.pfb":null,"FoxitFixedBoldItalic.pfb":null,"FoxitFixedItalic.pfb":null,"FoxitSerif.pfb":null,"FoxitSerifBold.pfb":null,"FoxitSerifBoldItalic.pfb":null,"FoxitSerifItalic.pfb":null,"FoxitSymbol.pfb":null,"LICENSE_FOXIT":null,"LICENSE_LIBERATION":null,"LiberationSans-Bold.ttf":null,"LiberationSans-BoldItalic.ttf":null,"LiberationSans-Italic.ttf":null,"LiberationSans-Regular.ttf":null},"viewer.css":null,"viewer.html":null,"viewer.mjs":null,"viewer.mjs.map":null}},"Quill":{"quill.js":null},"Ruffle":{"318626a8878622d4730e.wasm":null,"42f8dbf7f8b1cca631d0.wasm":null,"core.ruffle.199108ce0aa8adfdc8f0.js":null,"core.ruffle.e88cc385ca3824332d82.js":null,"ruffle.js":null},"Videojs":{"video.min.js":null},"simple.txt":null},"Users":{"3D-Objects":{},"Desktop":{"fileexplorer.url":null,"heat.url":null,"hello.url":null,"surfs.url":null,"taskmanager.url":null,"terminal.url":null,"titanium.url":null},"Documents":{"Credits.md":null,"Dynamic Programming.txt":null,"PDFs":{"CyberPower_UM_EC650LCD 2.pdf":null,"MotherBoard":{"PRO-B650-P-WIFI.pdf":null}},"Screen-Shots":{"Sample ScreenShot.png":null},"simple.txt":null,"starting a new proj in VSCode.txt":null},"Downloads":{"anothertest.txt":null},"Games":{"D3D.url":null,"Data":{"D3D.jsdos":null,"Digger.jsdos":null,"Doom.jsdos":null,"Jill of the Jungle.jsdos":null,"Machine Nation.jsdos":null,"Shadow Knight.jsdos":null},"Diggers.url":null,"Doom.url":null,"Flash-Games":{"logo-anim.swf":null},"icons":{"d3d.png":null,"diggers.png":null,"doom.png":null,"doom1.png":null}},"Music":{"jazz-club-in-new-orleans.mp3":null,"titanium.mp3":null,"watr-fluid.mp3":null},"Pictures":{"Samples":{"Chill on the Moon.jpg":null,"Sparkling Water.jpg":null,"Sunset Car.jpg":null,"Sunset.jpg":null,"mystical.jpg":null,"no_img.jpeg":null},"favicon.ico":null,"favicon1.ico":null,"favicon_nice.png":null,"heat.png":null},"Videos":{"nuts.mp4":null,"surfs.mp4":null}},"desktop.url":null,"documents.url":null,"downloads.url":null,"games.url":null,"music.url":null,"pictures.url":null,"videos.url":null} +{"3d-objects.url":null,"AppData":{"StartMenu":{"about.url":null,"audioplayer.url":null,"fileexplorer.url":null,"js-dos.url":null,"markdown.url":null,"photoviewer.url":null,"ruffle.url":null,"taskmanager.url":null,"terminal.url":null,"texteditor.url":null,"videoplayer.url":null,"vscode.url":null}},"Cheetah":{"System":{"BrowserFS":{"browserfs.d.ts":null,"browserfs.js":null,"browserfs.js.map":null,"browserfs.min.js":null,"browserfs.min.js.map":null,"node":{"backend":{"AsyncMirror.d.ts":null,"AsyncMirror.js":null,"AsyncMirror.js.map":null,"Dropbox.d.ts":null,"Dropbox.js":null,"Dropbox.js.map":null,"Emscripten.d.ts":null,"Emscripten.js":null,"Emscripten.js.map":null,"FolderAdapter.d.ts":null,"FolderAdapter.js":null,"FolderAdapter.js.map":null,"HTML5FS.d.ts":null,"HTML5FS.js":null,"HTML5FS.js.map":null,"InMemory.d.ts":null,"InMemory.js":null,"InMemory.js.map":null,"IndexedDB.d.ts":null,"IndexedDB.js":null,"IndexedDB.js.map":null,"IsoFS.d.ts":null,"IsoFS.js":null,"IsoFS.js.map":null,"LocalStorage.d.ts":null,"LocalStorage.js":null,"LocalStorage.js.map":null,"MountableFileSystem.d.ts":null,"MountableFileSystem.js":null,"MountableFileSystem.js.map":null,"OverlayFS.d.ts":null,"OverlayFS.js":null,"OverlayFS.js.map":null,"WorkerFS.d.ts":null,"WorkerFS.js":null,"WorkerFS.js.map":null,"XmlHttpRequest.d.ts":null,"XmlHttpRequest.js":null,"XmlHttpRequest.js.map":null,"ZipFS.d.ts":null,"ZipFS.js":null,"ZipFS.js.map":null},"core":{"FS.d.ts":null,"FS.js":null,"FS.js.map":null,"api_error.d.ts":null,"api_error.js":null,"api_error.js.map":null,"backends.d.ts":null,"backends.js":null,"backends.js.map":null,"browserfs.d.ts":null,"browserfs.js":null,"browserfs.js.map":null,"file.d.ts":null,"file.js":null,"file.js.map":null,"file_flag.d.ts":null,"file_flag.js":null,"file_flag.js.map":null,"file_system.d.ts":null,"file_system.js":null,"file_system.js.map":null,"global.d.ts":null,"global.js":null,"global.js.map":null,"levenshtein.d.ts":null,"levenshtein.js":null,"levenshtein.js.map":null,"node_fs.d.ts":null,"node_fs.js":null,"node_fs.js.map":null,"node_fs_stats.d.ts":null,"node_fs_stats.js":null,"node_fs_stats.js.map":null,"util.d.ts":null,"util.js":null,"util.js.map":null},"generic":{"emscripten_fs.d.ts":null,"emscripten_fs.js":null,"emscripten_fs.js.map":null,"extended_ascii.d.ts":null,"extended_ascii.js":null,"extended_ascii.js.map":null,"file_index.d.ts":null,"file_index.js":null,"file_index.js.map":null,"inode.d.ts":null,"inode.js":null,"inode.js.map":null,"key_value_filesystem.d.ts":null,"key_value_filesystem.js":null,"key_value_filesystem.js.map":null,"locked_fs.d.ts":null,"locked_fs.js":null,"locked_fs.js.map":null,"mutex.d.ts":null,"mutex.js":null,"mutex.js.map":null,"preload_file.d.ts":null,"preload_file.js":null,"preload_file.js.map":null,"setImmediate.d.ts":null,"setImmediate.js":null,"setImmediate.js.map":null,"xhr.d.ts":null,"xhr.js":null,"xhr.js.map":null},"index.d.ts":null,"index.js":null,"index.js.map":null,"typedoc.d.ts":null,"typedoc.js":null,"typedoc.js.map":null},"scripts":{"make_http_index.js":null,"make_xhrfs_index.js":null,"make_xhrfs_index.js.map":null},"shims":{"buffer.js":null,"bufferGlobal.js":null,"fs.js":null,"path.js":null,"process.js":null}},"Fluent Effect":{"LICENSE":null,"README.md":null,"fs-src":{"LICENSE.txt":null,"fluentRevealEffect.d.ts":null,"helpers":{"index.d.ts":null},"main.d.ts":null,"main.js":null,"main.js.map":null,"types.d.ts":null},"package.json":null},"Imageres":{"3d-objects_folder.png":null,"3d-objects_folder_small.png":null,"angular.png":null,"arrow_down.png":null,"arrow_next.png":null,"arrow_next_1.png":null,"arrow_up.png":null,"audioplayer.png":null,"camera.png":null,"cheetah-midsprint-dash.jpg":null,"cheetah.png":null,"chkmark26.png":null,"chkmark32.png":null,"chkmark32_blk.png":null,"circle.png":null,"circle_blk.png":null,"cmd.png":null,"code_file.png":null,"config.png":null,"content_view.png":null,"cross_mark_32.png":null,"desktop_folder.png":null,"desktop_folder_small.png":null,"details_pane.png":null,"details_view.png":null,"documents.png":null,"documents_folder.png":null,"documents_folder_small.png":null,"downloads_folder.png":null,"downloads_folder_small.png":null,"econo.png":null,"empty_folder.png":null,"emulator_2.png":null,"extra_large_image.png":null,"file.png":null,"file_explorer.png":null,"folder.png":null,"folder_folder_small.png":null,"games_folder.png":null,"games_folder_small.png":null,"generic_program.png":null,"grey_history_32.png":null,"grey_nav_expand_32.png":null,"grey_nav_forward_32.png":null,"grey_nav_refresh_32.png":null,"image_file.png":null,"imgviewer.png":null,"info.png":null,"js-dos_emulator.png":null,"js-dos_file.png":null,"large_image.png":null,"list_of_thumbnails_view.png":null,"markdown.png":null,"markdown_file.png":null,"medium_icons_view.png":null,"music_file.png":null,"music_folder.png":null,"music_folder_small.png":null,"my_computer.png":null,"navigation_pane.png":null,"os_disk.png":null,"pdf.png":null,"photoviewer.png":null,"pictures.png":null,"pictures_folder.png":null,"pictures_folder_small.png":null,"pin_24.png":null,"preview_pane.png":null,"question.png":null,"quick_access.png":null,"quick_access_small.png":null,"quill.png":null,"red_x.png":null,"ruffle.png":null,"search_32.png":null,"shortcut.png":null,"sm_file.png":null,"sm_folder.png":null,"sm_hamburger_menu.png":null,"sm_music.png":null,"sm_picture.png":null,"sm_power.png":null,"sm_settings.png":null,"small_icons_view.png":null,"swf_file.png":null,"taskmanager.png":null,"taskmanger_2.png":null,"terminal.png":null,"text_editor.png":null,"this_pc.png":null,"tiles_view.png":null,"unknown.png":null,"unpin_24.png":null,"unpin_32.png":null,"vertical_stacks.png":null,"video_file.png":null,"videoplayer.png":null,"videos.png":null,"videos_folder.png":null,"videos_folder_small.png":null,"vs_code.png":null,"warning.png":null,"wasm_file.png":null,"white_history_32.png":null,"x_32.png":null},"ThreeJS":{"three.min.js":null}}},"Program-Files":{"3D-Model-Viewer":{"3D-Viewer":{"js-3d-model-viewer.js":null,"js-3d-model-viewer.js.map":null,"js-3d-model-viewer.min.js":null,"js-3d-model-viewer.min.js.map":null},"LICENSE":null,"README.md":null,"assets":{"avocado.glb":null,"duck.glb":null,"helmet.glb":null,"sample.obj":null,"sample_02.mtl":null,"sample_02.obj":null,"sample_03.mtl":null,"sample_03.obj":null,"sneakers.usdz":null},"index.html":null,"rollup.config.js":null},"Backgrounds":{"vanta.birds.min.js":null,"vanta.globe.min.js":null,"vanta.halo.min.js":null,"vanta.rings.min.js":null,"vanta.waves.min.js":null},"Howler":{"howler.min.js":null,"siriwave.umd.min.js":null},"JS-DOS":{"emulators-ui-loader.png":null,"js-dos.js":null,"js-dos.js.map":null,"wdosbox.js":null,"wdosbox.js.symbols":null,"wdosbox.wasm":null},"Marked":{"marked.min.js":null},"PDF-JS":{"pdf.mjs":null,"pdf.mjs.map":null,"pdf.sandbox.mjs":null,"pdf.sandbox.mjs.map":null,"pdf.worker.mjs":null,"pdf.worker.mjs.map":null,"web":{"cmaps":{"78-EUC-H.bcmap":null,"78-EUC-V.bcmap":null,"78-H.bcmap":null,"78-RKSJ-H.bcmap":null,"78-RKSJ-V.bcmap":null,"78-V.bcmap":null,"78ms-RKSJ-H.bcmap":null,"78ms-RKSJ-V.bcmap":null,"83pv-RKSJ-H.bcmap":null,"90ms-RKSJ-H.bcmap":null,"90ms-RKSJ-V.bcmap":null,"90msp-RKSJ-H.bcmap":null,"90msp-RKSJ-V.bcmap":null,"90pv-RKSJ-H.bcmap":null,"90pv-RKSJ-V.bcmap":null,"Add-H.bcmap":null,"Add-RKSJ-H.bcmap":null,"Add-RKSJ-V.bcmap":null,"Add-V.bcmap":null,"Adobe-CNS1-0.bcmap":null,"Adobe-CNS1-1.bcmap":null,"Adobe-CNS1-2.bcmap":null,"Adobe-CNS1-3.bcmap":null,"Adobe-CNS1-4.bcmap":null,"Adobe-CNS1-5.bcmap":null,"Adobe-CNS1-6.bcmap":null,"Adobe-CNS1-UCS2.bcmap":null,"Adobe-GB1-0.bcmap":null,"Adobe-GB1-1.bcmap":null,"Adobe-GB1-2.bcmap":null,"Adobe-GB1-3.bcmap":null,"Adobe-GB1-4.bcmap":null,"Adobe-GB1-5.bcmap":null,"Adobe-GB1-UCS2.bcmap":null,"Adobe-Japan1-0.bcmap":null,"Adobe-Japan1-1.bcmap":null,"Adobe-Japan1-2.bcmap":null,"Adobe-Japan1-3.bcmap":null,"Adobe-Japan1-4.bcmap":null,"Adobe-Japan1-5.bcmap":null,"Adobe-Japan1-6.bcmap":null,"Adobe-Japan1-UCS2.bcmap":null,"Adobe-Korea1-0.bcmap":null,"Adobe-Korea1-1.bcmap":null,"Adobe-Korea1-2.bcmap":null,"Adobe-Korea1-UCS2.bcmap":null,"B5-H.bcmap":null,"B5-V.bcmap":null,"B5pc-H.bcmap":null,"B5pc-V.bcmap":null,"CNS-EUC-H.bcmap":null,"CNS-EUC-V.bcmap":null,"CNS1-H.bcmap":null,"CNS1-V.bcmap":null,"CNS2-H.bcmap":null,"CNS2-V.bcmap":null,"ETHK-B5-H.bcmap":null,"ETHK-B5-V.bcmap":null,"ETen-B5-H.bcmap":null,"ETen-B5-V.bcmap":null,"ETenms-B5-H.bcmap":null,"ETenms-B5-V.bcmap":null,"EUC-H.bcmap":null,"EUC-V.bcmap":null,"Ext-H.bcmap":null,"Ext-RKSJ-H.bcmap":null,"Ext-RKSJ-V.bcmap":null,"Ext-V.bcmap":null,"GB-EUC-H.bcmap":null,"GB-EUC-V.bcmap":null,"GB-H.bcmap":null,"GB-V.bcmap":null,"GBK-EUC-H.bcmap":null,"GBK-EUC-V.bcmap":null,"GBK2K-H.bcmap":null,"GBK2K-V.bcmap":null,"GBKp-EUC-H.bcmap":null,"GBKp-EUC-V.bcmap":null,"GBT-EUC-H.bcmap":null,"GBT-EUC-V.bcmap":null,"GBT-H.bcmap":null,"GBT-V.bcmap":null,"GBTpc-EUC-H.bcmap":null,"GBTpc-EUC-V.bcmap":null,"GBpc-EUC-H.bcmap":null,"GBpc-EUC-V.bcmap":null,"H.bcmap":null,"HKdla-B5-H.bcmap":null,"HKdla-B5-V.bcmap":null,"HKdlb-B5-H.bcmap":null,"HKdlb-B5-V.bcmap":null,"HKgccs-B5-H.bcmap":null,"HKgccs-B5-V.bcmap":null,"HKm314-B5-H.bcmap":null,"HKm314-B5-V.bcmap":null,"HKm471-B5-H.bcmap":null,"HKm471-B5-V.bcmap":null,"HKscs-B5-H.bcmap":null,"HKscs-B5-V.bcmap":null,"Hankaku.bcmap":null,"Hiragana.bcmap":null,"KSC-EUC-H.bcmap":null,"KSC-EUC-V.bcmap":null,"KSC-H.bcmap":null,"KSC-Johab-H.bcmap":null,"KSC-Johab-V.bcmap":null,"KSC-V.bcmap":null,"KSCms-UHC-H.bcmap":null,"KSCms-UHC-HW-H.bcmap":null,"KSCms-UHC-HW-V.bcmap":null,"KSCms-UHC-V.bcmap":null,"KSCpc-EUC-H.bcmap":null,"KSCpc-EUC-V.bcmap":null,"Katakana.bcmap":null,"LICENSE":null,"NWP-H.bcmap":null,"NWP-V.bcmap":null,"RKSJ-H.bcmap":null,"RKSJ-V.bcmap":null,"Roman.bcmap":null,"UniCNS-UCS2-H.bcmap":null,"UniCNS-UCS2-V.bcmap":null,"UniCNS-UTF16-H.bcmap":null,"UniCNS-UTF16-V.bcmap":null,"UniCNS-UTF32-H.bcmap":null,"UniCNS-UTF32-V.bcmap":null,"UniCNS-UTF8-H.bcmap":null,"UniCNS-UTF8-V.bcmap":null,"UniGB-UCS2-H.bcmap":null,"UniGB-UCS2-V.bcmap":null,"UniGB-UTF16-H.bcmap":null,"UniGB-UTF16-V.bcmap":null,"UniGB-UTF32-H.bcmap":null,"UniGB-UTF32-V.bcmap":null,"UniGB-UTF8-H.bcmap":null,"UniGB-UTF8-V.bcmap":null,"UniJIS-UCS2-H.bcmap":null,"UniJIS-UCS2-HW-H.bcmap":null,"UniJIS-UCS2-HW-V.bcmap":null,"UniJIS-UCS2-V.bcmap":null,"UniJIS-UTF16-H.bcmap":null,"UniJIS-UTF16-V.bcmap":null,"UniJIS-UTF32-H.bcmap":null,"UniJIS-UTF32-V.bcmap":null,"UniJIS-UTF8-H.bcmap":null,"UniJIS-UTF8-V.bcmap":null,"UniJIS2004-UTF16-H.bcmap":null,"UniJIS2004-UTF16-V.bcmap":null,"UniJIS2004-UTF32-H.bcmap":null,"UniJIS2004-UTF32-V.bcmap":null,"UniJIS2004-UTF8-H.bcmap":null,"UniJIS2004-UTF8-V.bcmap":null,"UniJISPro-UCS2-HW-V.bcmap":null,"UniJISPro-UCS2-V.bcmap":null,"UniJISPro-UTF8-V.bcmap":null,"UniJISX0213-UTF32-H.bcmap":null,"UniJISX0213-UTF32-V.bcmap":null,"UniJISX02132004-UTF32-H.bcmap":null,"UniJISX02132004-UTF32-V.bcmap":null,"UniKS-UCS2-H.bcmap":null,"UniKS-UCS2-V.bcmap":null,"UniKS-UTF16-H.bcmap":null,"UniKS-UTF16-V.bcmap":null,"UniKS-UTF32-H.bcmap":null,"UniKS-UTF32-V.bcmap":null,"UniKS-UTF8-H.bcmap":null,"UniKS-UTF8-V.bcmap":null,"V.bcmap":null,"WP-Symbol.bcmap":null},"compressed.tracemonkey-pldi-09.pdf":null,"debugger.css":null,"debugger.mjs":null,"images":{"altText_add.svg":null,"altText_done.svg":null,"annotation-check.svg":null,"annotation-comment.svg":null,"annotation-help.svg":null,"annotation-insert.svg":null,"annotation-key.svg":null,"annotation-newparagraph.svg":null,"annotation-noicon.svg":null,"annotation-note.svg":null,"annotation-paperclip.svg":null,"annotation-paragraph.svg":null,"annotation-pushpin.svg":null,"cursor-editorFreeHighlight.svg":null,"cursor-editorFreeText.svg":null,"cursor-editorInk.svg":null,"cursor-editorTextHighlight.svg":null,"editor-toolbar-delete.svg":null,"findbarButton-next.svg":null,"findbarButton-previous.svg":null,"gv-toolbarButton-download.svg":null,"loading-icon.gif":null,"loading.svg":null,"secondaryToolbarButton-documentProperties.svg":null,"secondaryToolbarButton-firstPage.svg":null,"secondaryToolbarButton-handTool.svg":null,"secondaryToolbarButton-lastPage.svg":null,"secondaryToolbarButton-rotateCcw.svg":null,"secondaryToolbarButton-rotateCw.svg":null,"secondaryToolbarButton-scrollHorizontal.svg":null,"secondaryToolbarButton-scrollPage.svg":null,"secondaryToolbarButton-scrollVertical.svg":null,"secondaryToolbarButton-scrollWrapped.svg":null,"secondaryToolbarButton-selectTool.svg":null,"secondaryToolbarButton-spreadEven.svg":null,"secondaryToolbarButton-spreadNone.svg":null,"secondaryToolbarButton-spreadOdd.svg":null,"toolbarButton-bookmark.svg":null,"toolbarButton-currentOutlineItem.svg":null,"toolbarButton-download.svg":null,"toolbarButton-editorFreeText.svg":null,"toolbarButton-editorHighlight.svg":null,"toolbarButton-editorInk.svg":null,"toolbarButton-editorStamp.svg":null,"toolbarButton-menuArrow.svg":null,"toolbarButton-openFile.svg":null,"toolbarButton-pageDown.svg":null,"toolbarButton-pageUp.svg":null,"toolbarButton-presentationMode.svg":null,"toolbarButton-print.svg":null,"toolbarButton-search.svg":null,"toolbarButton-secondaryToolbarToggle.svg":null,"toolbarButton-sidebarToggle.svg":null,"toolbarButton-viewAttachments.svg":null,"toolbarButton-viewLayers.svg":null,"toolbarButton-viewOutline.svg":null,"toolbarButton-viewThumbnail.svg":null,"toolbarButton-zoomIn.svg":null,"toolbarButton-zoomOut.svg":null,"treeitem-collapsed.svg":null,"treeitem-expanded.svg":null},"locale":{"ach":{"viewer.ftl":null},"af":{"viewer.ftl":null},"an":{"viewer.ftl":null},"ar":{"viewer.ftl":null},"ast":{"viewer.ftl":null},"az":{"viewer.ftl":null},"be":{"viewer.ftl":null},"bg":{"viewer.ftl":null},"bn":{"viewer.ftl":null},"bo":{"viewer.ftl":null},"br":{"viewer.ftl":null},"brx":{"viewer.ftl":null},"bs":{"viewer.ftl":null},"ca":{"viewer.ftl":null},"cak":{"viewer.ftl":null},"ckb":{"viewer.ftl":null},"cs":{"viewer.ftl":null},"cy":{"viewer.ftl":null},"da":{"viewer.ftl":null},"de":{"viewer.ftl":null},"dsb":{"viewer.ftl":null},"el":{"viewer.ftl":null},"en-CA":{"viewer.ftl":null},"en-GB":{"viewer.ftl":null},"en-US":{"viewer.ftl":null},"eo":{"viewer.ftl":null},"es-AR":{"viewer.ftl":null},"es-CL":{"viewer.ftl":null},"es-ES":{"viewer.ftl":null},"es-MX":{"viewer.ftl":null},"et":{"viewer.ftl":null},"eu":{"viewer.ftl":null},"fa":{"viewer.ftl":null},"ff":{"viewer.ftl":null},"fi":{"viewer.ftl":null},"fr":{"viewer.ftl":null},"fur":{"viewer.ftl":null},"fy-NL":{"viewer.ftl":null},"ga-IE":{"viewer.ftl":null},"gd":{"viewer.ftl":null},"gl":{"viewer.ftl":null},"gn":{"viewer.ftl":null},"gu-IN":{"viewer.ftl":null},"he":{"viewer.ftl":null},"hi-IN":{"viewer.ftl":null},"hr":{"viewer.ftl":null},"hsb":{"viewer.ftl":null},"hu":{"viewer.ftl":null},"hy-AM":{"viewer.ftl":null},"hye":{"viewer.ftl":null},"ia":{"viewer.ftl":null},"id":{"viewer.ftl":null},"is":{"viewer.ftl":null},"it":{"viewer.ftl":null},"ja":{"viewer.ftl":null},"ka":{"viewer.ftl":null},"kab":{"viewer.ftl":null},"kk":{"viewer.ftl":null},"km":{"viewer.ftl":null},"kn":{"viewer.ftl":null},"ko":{"viewer.ftl":null},"lij":{"viewer.ftl":null},"lo":{"viewer.ftl":null},"locale.json":null,"lt":{"viewer.ftl":null},"ltg":{"viewer.ftl":null},"lv":{"viewer.ftl":null},"meh":{"viewer.ftl":null},"mk":{"viewer.ftl":null},"mr":{"viewer.ftl":null},"ms":{"viewer.ftl":null},"my":{"viewer.ftl":null},"nb-NO":{"viewer.ftl":null},"ne-NP":{"viewer.ftl":null},"nl":{"viewer.ftl":null},"nn-NO":{"viewer.ftl":null},"oc":{"viewer.ftl":null},"pa-IN":{"viewer.ftl":null},"pl":{"viewer.ftl":null},"pt-BR":{"viewer.ftl":null},"pt-PT":{"viewer.ftl":null},"rm":{"viewer.ftl":null},"ro":{"viewer.ftl":null},"ru":{"viewer.ftl":null},"sat":{"viewer.ftl":null},"sc":{"viewer.ftl":null},"scn":{"viewer.ftl":null},"sco":{"viewer.ftl":null},"si":{"viewer.ftl":null},"sk":{"viewer.ftl":null},"skr":{"viewer.ftl":null},"sl":{"viewer.ftl":null},"son":{"viewer.ftl":null},"sq":{"viewer.ftl":null},"sr":{"viewer.ftl":null},"sv-SE":{"viewer.ftl":null},"szl":{"viewer.ftl":null},"ta":{"viewer.ftl":null},"te":{"viewer.ftl":null},"tg":{"viewer.ftl":null},"th":{"viewer.ftl":null},"tl":{"viewer.ftl":null},"tr":{"viewer.ftl":null},"trs":{"viewer.ftl":null},"uk":{"viewer.ftl":null},"ur":{"viewer.ftl":null},"uz":{"viewer.ftl":null},"vi":{"viewer.ftl":null},"wo":{"viewer.ftl":null},"xh":{"viewer.ftl":null},"zh-CN":{"viewer.ftl":null},"zh-TW":{"viewer.ftl":null}},"standard_fonts":{"FoxitDingbats.pfb":null,"FoxitFixed.pfb":null,"FoxitFixedBold.pfb":null,"FoxitFixedBoldItalic.pfb":null,"FoxitFixedItalic.pfb":null,"FoxitSerif.pfb":null,"FoxitSerifBold.pfb":null,"FoxitSerifBoldItalic.pfb":null,"FoxitSerifItalic.pfb":null,"FoxitSymbol.pfb":null,"LICENSE_FOXIT":null,"LICENSE_LIBERATION":null,"LiberationSans-Bold.ttf":null,"LiberationSans-BoldItalic.ttf":null,"LiberationSans-Italic.ttf":null,"LiberationSans-Regular.ttf":null},"viewer.css":null,"viewer.html":null,"viewer.mjs":null,"viewer.mjs.map":null}},"Quill":{"quill.js":null},"Ruffle":{"318626a8878622d4730e.wasm":null,"42f8dbf7f8b1cca631d0.wasm":null,"core.ruffle.199108ce0aa8adfdc8f0.js":null,"core.ruffle.e88cc385ca3824332d82.js":null,"ruffle.js":null},"Videojs":{"video.min.js":null},"simple.txt":null},"Users":{"Desktop":{"about.url":null,"fileexplorer.url":null,"heat.url":null,"hello.url":null,"surfs.url":null,"taskmanager.url":null,"terminal.url":null,"titanium.url":null},"Documents":{"Credits.md":null,"Dynamic Programming.txt":null,"PDFs":{"CyberPower_UM_EC650LCD 2.pdf":null,"MotherBoard":{"PRO-B650-P-WIFI.pdf":null}},"Screen-Shots":{"Sample ScreenShot.png":null},"simple.txt":null,"starting a new proj in VSCode.txt":null},"Downloads":{"anothertest.txt":null},"Games":{"D3D.url":null,"Data":{"D3D.jsdos":null,"Digger.jsdos":null,"Doom.jsdos":null,"Jill of the Jungle.jsdos":null,"Machine Nation.jsdos":null,"Shadow Knight.jsdos":null},"Diggers.url":null,"Doom.url":null,"Flash-Games":{"logo-anim.swf":null},"icons":{"d3d.png":null,"diggers.png":null,"doom.png":null,"doom1.png":null}},"Music":{"jazz-club-in-new-orleans.mp3":null,"titanium.mp3":null,"watr-fluid.mp3":null},"Pictures":{"Samples":{"Chill on the Moon.jpg":null,"Sparkling Water.jpg":null,"Sunset Car.jpg":null,"Sunset.jpg":null,"mystical.jpg":null,"no_img.jpeg":null},"cheetah-midsprint-dash.jpg":null,"heat-guy-j.jpeg":null},"Videos":{"nuts.mp4":null,"surfs.mp4":null}},"desktop.url":null,"documents.url":null,"downloads.url":null,"games.url":null,"music.url":null,"pictures.url":null,"videos.url":null} diff --git a/src/osdrive/AppData/StartMenu/about.url b/src/osdrive/AppData/StartMenu/about.url new file mode 100644 index 00000000..2fb51674 --- /dev/null +++ b/src/osdrive/AppData/StartMenu/about.url @@ -0,0 +1,6 @@ +[InternetShortcut] +FileName=About +IconPath=osdrive/Cheetah/System/Imageres/cheetah.png +FileType=.url +ContentPath= +OpensWith=cheetah \ No newline at end of file diff --git a/src/osdrive/Users/Desktop/about.url b/src/osdrive/Users/Desktop/about.url new file mode 100644 index 00000000..2fb51674 --- /dev/null +++ b/src/osdrive/Users/Desktop/about.url @@ -0,0 +1,6 @@ +[InternetShortcut] +FileName=About +IconPath=osdrive/Cheetah/System/Imageres/cheetah.png +FileType=.url +ContentPath= +OpensWith=cheetah \ No newline at end of file diff --git a/src/osdrive/Users/Desktop/heat.url b/src/osdrive/Users/Desktop/heat.url index 0efa2cce..c7060b30 100644 --- a/src/osdrive/Users/Desktop/heat.url +++ b/src/osdrive/Users/Desktop/heat.url @@ -1,6 +1,6 @@ [InternetShortcut] FileName=Fire Storm IconPath=osdrive/Cheetah/System/Imageres/imgviewer.png -FileType=.png +FileType=.url ContentPath= OpensWith=imageviewer diff --git a/src/osdrive/Users/Desktop/hello.url b/src/osdrive/Users/Desktop/hello.url index 2c0cafde..e52b9670 100644 --- a/src/osdrive/Users/Desktop/hello.url +++ b/src/osdrive/Users/Desktop/hello.url @@ -1,6 +1,6 @@ [InternetShortcut] FileName=hello IconPath=osdrive/Cheetah/System/Imageres/angular.png -FileType=.png +FileType=.url ContentPath= OpensWith=hello \ No newline at end of file diff --git a/src/osdrive/Users/Desktop/taskmanager.url b/src/osdrive/Users/Desktop/taskmanager.url index 9142e503..f332e877 100644 --- a/src/osdrive/Users/Desktop/taskmanager.url +++ b/src/osdrive/Users/Desktop/taskmanager.url @@ -1,6 +1,6 @@ [InternetShortcut] FileName=Task Manager IconPath=osdrive/Cheetah/System/Imageres/taskmanager.png -FileType=.png +FileType=.url ContentPath=Task Manager OpensWith=taskmanager \ No newline at end of file diff --git a/src/osdrive/Users/Desktop/terminal.url b/src/osdrive/Users/Desktop/terminal.url index 54da70ca..cd6abb21 100644 --- a/src/osdrive/Users/Desktop/terminal.url +++ b/src/osdrive/Users/Desktop/terminal.url @@ -1,6 +1,6 @@ [InternetShortcut] FileName=Terminal IconPath=osdrive/Cheetah/System/Imageres/terminal.png -FileType=.png +FileType=.url ContentPath=Terminal OpensWith=terminal \ No newline at end of file