├── .htaccess ├── Public ├── Desktop │ ├── credits.txt │ └── placeholder ├── Documents │ ├── credits.js │ └── credits.txt ├── Music │ └── placeholder ├── Pictures │ └── placeholder └── Videos │ └── placeholder ├── WFS.php ├── credits.txt ├── credits_min.txt ├── index.html ├── legalcode.txt ├── license.txt ├── otherlicenses.txt ├── package.json ├── popup.html ├── programs ├── AeroJoinInfo │ ├── AJFCI.js │ └── AJFCI.png ├── CircuitSimulator │ ├── c-sim.js │ └── c-sim.png ├── DOND │ └── index.js ├── Discord │ ├── discord.html │ ├── discord.ico │ └── discord.js ├── Docs │ ├── 1.png │ └── we.js ├── Doom3 │ ├── d3.htm │ ├── d3.ico │ └── d3.js ├── Email │ ├── email.html │ ├── email.ico │ └── email.js ├── FCoffice │ ├── 1.png │ ├── Launcher.js │ ├── code.js │ ├── code.png │ ├── credits.js │ ├── excel.ico │ ├── excel.js │ ├── launcher.png │ ├── office.ico │ ├── office.js │ ├── office.png │ ├── powerpoint.ico │ ├── powerpoint.js │ ├── spreadsheet.js │ ├── word.ico │ ├── word.js │ └── word_doc.png ├── FCtools │ ├── 1.png │ ├── 2.png │ ├── ArmorCraftingRecipe.js │ ├── BannerCrafting.js │ ├── BeconCrafting.js │ ├── BookEditor.js │ ├── ColorCodes.js │ ├── CoordinateCalculator.js │ ├── Crafting.js │ ├── CustomPotions.js │ ├── CustomSignGenerator.js │ ├── CustomizedWorldPresetGenerator.js │ ├── EnchantCalculator.js │ ├── FireworkCrafting.js │ ├── FlatWorldSeedGen.js │ ├── HTMLcontent │ │ ├── ArmorCraftingRecipe.html │ │ ├── BannerCrafting.html │ │ ├── BeconCrafting.html │ │ ├── BookEditor.html │ │ ├── ColorCodes.html │ │ ├── CoordinateCalculator.html │ │ ├── Crafting.html │ │ ├── CustomPotions.html │ │ ├── CustomSignGenerator.html │ │ ├── CustomizedWorldPresetGenerator.htm │ │ ├── EnchantCalculator.html │ │ ├── FireworkCrafting.html │ │ ├── FlatWorldSeedGen.html │ │ ├── JSONTextGenerator.html │ │ ├── LootTableGenerator.html │ │ ├── MOTDedit.html │ │ ├── MobSpawnerAndSummonCommandGenerator.html │ │ ├── ShieldCrafting.html │ │ ├── SkinStealer.html │ │ ├── StyledText.html │ │ ├── TargetSelector.html │ │ ├── TellRawEditor.html │ │ └── TitleGenerator.html │ ├── JSONTextGenerator.js │ ├── Launcher.js │ ├── LootTableGenerator.js │ ├── MOTDedit.js │ ├── MobSpawnerAndSummonCommandGenerator.js │ ├── ShieldCrafting.js │ ├── SkinStealer.js │ ├── StyledText.js │ ├── TargetSelector.js │ ├── TellRawEditor.js │ ├── TitleGenerator.js │ └── icons │ │ ├── ArmorCraftingRecipe.png │ │ ├── BannerCrafting.png │ │ ├── BeconCrafting.png │ │ ├── BookEditor.png │ │ ├── ColorCodes.png │ │ ├── CoordinateCalculator.png │ │ ├── Crafting.png │ │ ├── CustomPotions.png │ │ ├── CustomSignGenerator.png │ │ ├── CustomizedWorldPresetGenerator.png │ │ ├── EnchantCalculator.png │ │ ├── FCTools.png │ │ ├── FireworkCrafting.png │ │ ├── FlatWorldSeedGen.png │ │ ├── JSONTextGenerator.png │ │ ├── LootTableGenerator.png │ │ ├── MOTDedit.png │ │ ├── MobSpawnerAndSummonCommandGenerator.png │ │ ├── ShieldCrafting.png │ │ ├── SkinStealer.png │ │ ├── StyledText.png │ │ ├── TargetSelector.png │ │ ├── TellRawEditor.png │ │ └── TitleGenerator.png ├── Fence │ ├── Fence.png │ ├── Main.js │ ├── excel.ico │ ├── icon.png │ ├── launcher.png │ ├── office.png │ ├── powerpoint.ico │ ├── topframe.png │ └── word.ico ├── FileManager │ ├── fman.js │ └── fman.png ├── Forum │ ├── 1.png │ ├── forum.js │ └── forumv1.js ├── Game │ ├── Build │ │ ├── New folder.asm.code.unityweb │ │ ├── New folder.asm.framework.unityweb │ │ ├── New folder.asm.memory.unityweb │ │ ├── New folder.data.unityweb │ │ ├── New folder.json │ │ └── UnityLoader.js │ └── index.js ├── Google │ ├── Earth.js │ └── Earth.png ├── Gravity │ └── gravity.js ├── Help │ ├── 1.png │ └── help.js ├── Map76 │ ├── map76.js │ └── map76.png ├── MapApp │ ├── FCMaps.ico │ └── mapapp.js ├── MineBlock │ ├── mine.js │ └── mine.png ├── Minecraft │ ├── mcc.ico │ └── mcc.js ├── NovaSkin │ ├── skin.ico │ └── skin.js ├── PacMan │ ├── pac.js │ └── pac.png ├── Photopea │ ├── photopea.js │ ├── photopea.png │ ├── photopea2.js │ └── photopeaLauncher.js ├── Play │ ├── play.ico │ ├── play.js │ └── play.png ├── Projects │ ├── 1.png │ ├── proj.htm │ ├── proj.js │ └── projv1.js ├── Quake │ ├── qjs.ico │ └── qjs.js ├── Rules │ ├── rules.js │ ├── rules.png │ └── rulesv1.js ├── SculptGL │ ├── SculptGL.js │ └── SculptGL.png ├── Solitaire │ ├── sol.htm │ ├── sol.ico │ └── sol.js ├── Speech │ ├── TTS.ico │ └── TTS.js ├── SpiderSolitaire │ ├── spider.htm │ ├── spider.ico │ └── spider.js ├── Terminal │ ├── term.ico │ └── term.js ├── UWPcalc │ ├── HTMLcontent │ │ └── UWPcalc.html │ ├── UWPcalc.js │ └── UWPcalc.png ├── Unity │ ├── 1.png │ ├── 2.png │ ├── CN.js │ ├── CN.png │ ├── Launcher.js │ ├── WBC.js │ ├── WBC.png │ ├── m.jpg │ ├── madcar.js │ └── unity.ico ├── Web Explorer │ ├── 1.png │ ├── we.js │ ├── we.js.bak │ └── wev1.js ├── Webassembly │ ├── Studio.js │ └── Studio.png ├── Website │ ├── 1.png │ ├── wsite.js │ └── wsitev1.js ├── YATerm │ ├── term.js │ └── term.png ├── YouTube │ ├── logo.png │ ├── ytube.js │ └── ytube.png ├── audiomass │ ├── amass.js │ └── amass.png ├── display │ ├── info.js │ └── info.png ├── genact │ ├── term.js │ └── term.png ├── minipaint │ ├── mpaint.js │ └── mpaint.png ├── paint │ ├── paint.ico │ └── paint.js └── winamp │ ├── winamp.html │ ├── winamp.ico │ └── winamp.js ├── readme.md ├── readme ├── 13.gif ├── 14.gif ├── compressed replacements │ ├── 13.gif │ ├── 14.gif │ ├── p2.gif │ ├── p3c.gif │ ├── p4.gif │ └── p6.gif ├── p1.gif ├── p10.gif ├── p11.gif ├── p12.gif ├── p2.gif ├── p3.gif ├── p4.gif ├── p5.gif ├── p6.gif ├── p7.gif ├── p8.gif └── p9.gif ├── test.js ├── version.txt └── webdows ├── belowaverage ├── explorer │ ├── piwik.js │ └── popup.js └── system │ ├── cordova_check.js │ └── piwik.js ├── calc.js ├── cmd.js ├── config ├── explorer.startup.js ├── registry.json ├── registry.json.bak ├── registryWithTools.json └── wfs.json ├── explorer.js ├── explorer_ext.js ├── notepad.js ├── paint.js.Droped.For.JSPaint ├── personalize.js ├── regedit.js ├── res.jsp ├── resources ├── errorpages │ └── generic.html ├── explorer │ ├── 1.ogg │ ├── 1.png │ ├── 1.woff │ ├── 10.png │ ├── 2.png │ ├── 4.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── animation.js │ ├── basic │ │ ├── FCWebOS.png │ │ ├── index.css │ │ └── thumbnail.png │ ├── bglos.png │ ├── classic │ │ ├── FCWebOS.png │ │ ├── clo.png │ │ ├── cur.png │ │ ├── index.css │ │ ├── max.png │ │ ├── min.png │ │ ├── mmax.png │ │ ├── sta.png │ │ └── thumbnail.png │ ├── explorer.css │ ├── mobile │ │ ├── FCWebOS.png │ │ ├── bg.jpg │ │ ├── bg_alt.jpg │ │ ├── bglos.svg │ │ ├── cur.png │ │ ├── exi.png │ │ ├── index.css │ │ ├── max.png │ │ ├── min.png │ │ ├── mmax.png │ │ ├── sb1.png │ │ ├── sb2.png │ │ ├── sba1.png │ │ ├── sba2.png │ │ ├── sba3.png │ │ ├── sba4.png │ │ ├── so1.png │ │ ├── so2.png │ │ ├── so3.png │ │ └── thumbnail.png │ ├── webdows │ │ ├── FCWebOS.png │ │ ├── bg.jpg │ │ ├── bg_alt.jpg │ │ ├── bglos.svg │ │ ├── cur.png │ │ ├── exi.png │ │ ├── index.css │ │ ├── max.png │ │ ├── min.png │ │ ├── mmax.png │ │ ├── sb1.png │ │ ├── sb2.png │ │ ├── sba1.png │ │ ├── sba2.png │ │ ├── sba3.png │ │ ├── sba4.png │ │ ├── so1.png │ │ ├── so2.png │ │ ├── so3.png │ │ └── thumbnail.png │ └── wire │ │ └── index.css ├── icons │ ├── WebLink.png │ ├── aler.ico │ ├── balg.svg │ ├── bmpi.ico │ ├── bvlg.svg │ ├── calc.ico │ ├── clos.png │ ├── cont.ico │ ├── desk.ico │ ├── docs.png │ ├── driv.ico │ ├── email.ico │ ├── exei.ico │ ├── file.ico │ ├── fold.ico │ ├── folder.png │ ├── ghub.png │ ├── gifi.ico │ ├── info.ico │ ├── jpgi.ico │ ├── logo.png │ ├── mapapp.ico │ ├── maxi.png │ ├── medi.ico │ ├── micr.ico │ ├── mini.png │ ├── misc.ico │ ├── mous.ico │ ├── netw.ico │ ├── note.ico │ ├── pain.ico │ ├── pers.ico │ ├── plog.png │ ├── pngi.ico │ ├── projects.ico │ ├── ques.ico │ ├── rami.ico │ ├── rege.ico │ ├── rest.png │ ├── rogo.png │ ├── rules.ico │ ├── runi.ico │ ├── scre.ico │ ├── scre_ALT.ico │ ├── stck.ico │ ├── task.ico │ ├── tscr.ico │ ├── uaci.ico │ ├── umlg.png │ ├── warn.ico │ ├── wpad.ico │ └── wsite.png └── welcome │ ├── 1.png │ └── 2.png ├── run.js ├── services └── explorer │ └── time.js ├── system.js ├── system32 ├── kernel.js ├── loadscrn.js └── webldr.js ├── taskmgr.js ├── webver.js └── welcome.js /.htaccess: -------------------------------------------------------------------------------- 1 | 2 | 3 | order allow,deny 4 | allow from all 5 | 6 | 7 | deny from 204.83.75.81 8 | deny from 86.125.92.18 9 | -------------------------------------------------------------------------------- /Public/Desktop/credits.txt: -------------------------------------------------------------------------------- 1 | KERNEL.JS: 2 | jQuery v3.1.1 JQ Lisc. 3 | General Usage throughout. 4 | 5 | PLATFORM.JS v1.3.1 MIT Lisc. 6 | Used for browser detection. 7 | 8 | SHELL.JS: 9 | jQuery UI v1.11.4 JQ Lisc. 10 | Used for dragging, dropping, and resizing windows. 11 | 12 | Touch Punch 0.2.3 MIT or GPL Lisc. 13 | Used for touch support for dragging, dropping, and resizing. 14 | 15 | RESOURCES/ICONS: 16 | Windows 9 Icons (dtafalonso @ Deviant Art) 17 | Used for UI Icons. 18 | -------------------------------------------------------------------------------- /Public/Desktop/placeholder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/Public/Desktop/placeholder -------------------------------------------------------------------------------- /Public/Documents/credits.txt: -------------------------------------------------------------------------------- 1 | WebOS - FloydCraft (The Entire browser based operating system 2 | jQuery v3.1.1 (Used for Graphical user interface, functionality and a lot more) 3 | jQuery UI v1.11.4 (used for kernal.js, shell.js & other general usage throughout) 4 | jQuery UI Touch Punch 0.2.3 (allows dragging, dropping, and resizing windows) 5 | Platform.js v1.3.1 (gathers and displays basic system & browser information) 6 | Google APIs (allows communication with google services) 7 | "Windows" 9 icons - dtafalonso. (used throughout the system) 8 | Desktop App Launcher - FloydCraft (custom launcher used as a temporary desktop) 9 | File Manager - elfinder (used to navigate files and folders on the system) 10 | FloydCraft Office - OnlyOffice (provides users with a free online office suite) 11 | Block Browser - FloydCraft (used to browse the web within the web) 12 | FloydCraft eMail - RainLoop (gives access to @m.floydcraft.co.uk eMail accounts) 13 | FloydCraft Discord - WidgetBot (used to access the FloydCraft Discord Server) 14 | Minecraft Tools - minecraft.tools (tool to provide users with a large set of Minecraft Tools ) 15 | FloydCraft MapApp - DynMap (Dynamic Live map for each world on FloydCraft) 16 | Notepad - FloydCraft (A perfect remake of Microsoft's classic Notepad app) 17 | Paint - JSPaint (Clone of Microsoft Paint 18 | MiniPaint - viliusle (Free Photoshop Alternative) 19 | CMD - FloydCraft (CommandPrompt that can be used to execute files and more) 20 | WA Terminal - Wasmer-terminal (Terminal App for WebAssembly) 21 | Spam Terminal - genact (a nonsense activity generator) 22 | Terminal with SSH - cb.vu (Terminal App with SSH Support and more) 23 | Registry Editor - FloydCraft (Tool to view & edit FC WebOS'es Registry) 24 | Classic Calculator - FloydCraft (JavaScript clone of Microsofts classic calculator) 25 | UWP Calculator - Uno (WebAemembly compilation of Microsofts UWP Calculator app) 26 | Youtube APP - JSYoutubeLite (JavaScript YouTube Application) 27 | Winamp - WebAmp (Re-make of the classic WinAmp Media Player from XP) 28 | Audio Mass - pkalogiros (Copy of Audacity used to edit audio files) 29 | Google Earth - Google (Google Earth Client for satellite imagery) 30 | Webasm Studio - wasdk (App Development Utility for C, C++ and Rust) 31 | Minecraft Classic - Mojang/Microsoft (Minecraft Classic full game with Multiplayer) 32 | Quake 3 - Quake3JS (Quake3 game engine remade in JavaScript) 33 | Classic Pacman - JSPacMan (Classic Packan Arcade game in javascript) 34 | Fallout 76 Dynamic Map - Map76 (A datamined map of everything in Fallout 76) 35 | Text to Speech - addcast (Text to Speech Utility with avatars) -------------------------------------------------------------------------------- /Public/Music/placeholder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/Public/Music/placeholder -------------------------------------------------------------------------------- /Public/Pictures/placeholder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/Public/Pictures/placeholder -------------------------------------------------------------------------------- /Public/Videos/placeholder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/Public/Videos/placeholder -------------------------------------------------------------------------------- /WFS.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /credits.txt: -------------------------------------------------------------------------------- 1 | WebOS - FloydCraft (The Entire browser based operating system 2 | jQuery v3.1.1 (Used for Graphical user interface, functionality and a lot more) 3 | jQuery UI v1.11.4 (used for kernal.js, shell.js & other general usage throughout) 4 | jQuery UI Touch Punch 0.2.3 (allows dragging, dropping, and resizing windows) 5 | Platform.js v1.3.1 (gathers and displays basic system & browser information) 6 | Google APIs (allows communication with google services) 7 | "Windows" 9 icons - dtafalonso. (used throughout the system) 8 | Desktop App Launcher - FloydCraft (custom launcher used as a temporary desktop) 9 | File Manager - elfinder (used to navigate files and folders on the system) 10 | FloydCraft Office - OnlyOffice (provides users with a free online office suite) 11 | Block Browser - FloydCraft (used to browse the web within the web) 12 | FloydCraft eMail - RainLoop (gives access to @m.floydcraft.co.uk eMail accounts) 13 | FloydCraft Discord - WidgetBot (used to access the FloydCraft Discord Server) 14 | Minecraft Tools - minecraft.tools (tool to provide users with a large set of Minecraft Tools ) 15 | FloydCraft MapApp - DynMap (Dynamic Live map for each world on FloydCraft) 16 | Notepad - FloydCraft (A perfect remake of Microsoft's classic Notepad app) 17 | Paint - JSPaint (Clone of Microsoft Paint 18 | MiniPaint - viliusle (Free Photoshop Alternative) 19 | CMD - FloydCraft (CommandPrompt that can be used to execute files and more) 20 | WA Terminal - Wasmer-terminal (Terminal App for WebAssembly) 21 | Spam Terminal - genact (a nonsense activity generator) 22 | Terminal with SSH - cb.vu (Terminal App with SSH Support and more) 23 | Registry Editor - FloydCraft (Tool to view & edit FC WebOS'es Registry) 24 | Classic Calculator - FloydCraft (JavaScript clone of Microsofts classic calculator) 25 | UWP Calculator - Uno (WebAemembly compilation of Microsofts UWP Calculator app) 26 | Youtube APP - JSYoutubeLite (JavaScript YouTube Application) 27 | Winamp - WebAmp (Re-make of the classic WinAmp Media Player from XP) 28 | Audio Mass - pkalogiros (Copy of Audacity used to edit audio files) 29 | Google Earth - Google (Google Earth Client for satellite imagery) 30 | Webasm Studio - wasdk (App Development Utility for C, C++ and Rust) 31 | Minecraft Classic - Mojang/Microsoft (Minecraft Classic full game with Multiplayer) 32 | Quake 3 - Quake3JS (Quake3 game engine remade in JavaScript) 33 | Classic Pacman - JSPacMan (Classic Packan Arcade game in javascript) 34 | Fallout 76 Dynamic Map - Map76 (A datamined map of everything in Fallout 76) 35 | Text to Speech - addcast (Text to Speech Utility with avatars) -------------------------------------------------------------------------------- /credits_min.txt: -------------------------------------------------------------------------------- 1 | jQuery v3.1.1 2 | jQuery UI v1.11.4 3 | jQuery UI Touch Punch 0.2.3 4 | Google APIs 5 | "Windows" 9 icons - dtafalonso 6 | esktop App Launcher - FloydCraft 7 | File Manager - elfinder 8 | FloydCraft Office - OnlyOffice 9 | Block Browser - FloydCraft 10 | FloydCraft eMail - RainLoop 11 | Minecraft Tools - minecraft.tools 12 | FloydCraft Discord - WidgetBot 13 | FloydCraft MapApp - DynMap 14 | Notepad - FloydCraft 15 | Paint - JSPaint 16 | MiniPaint - viliusle 17 | CMD - FloydCraft 18 | WA Terminal - Wasmer-terminal 19 | Spam Terminal - genact 20 | Terminal with SSH - cb.vu 21 | Registry Editor - FloydCraft 22 | Classic Calculator - FloydCraft 23 | UWP Calculator - Uno 24 | Youtube APP - JSYoutubeLite 25 | Winamp - WebAmp 26 | Audio Mass - pkalogiros 27 | Google Earth - Google 28 | Webasm Studio - wasdk 29 | Minecraft Classic - Mojang/Microsoft 30 | Quake 3 - Quake3JS 31 | Classic Pacman - JSPacMan 32 | Fallout 76 Dynamic Map - Map76 33 | Text to Speech - addcast -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | FloydCraft WebOS Bootloader 6 | 7 | 8 | 9 | 10 | 24 | 25 |
26 | 27 |
28 | ███████╗ ██████╗    ██╗    ██╗███████╗██████╗  ██████╗ ███████╗
29 | ██╔════╝██╔════╝    ██║    ██║██╔════╝██╔══██╗██╔═══██╗██╔════╝
30 | █████╗  ██║         ██║ █╗ ██║█████╗  ██████╔╝██║   ██║███████╗
31 | ██╔══╝  ██║         ██║███╗██║██╔══╝  ██╔══██╗██║   ██║╚════██║
32 | ██║     ╚██████╗    ╚███╔███╔╝███████╗██████╔╝╚██████╔╝███████║
33 | ╚═╝      ╚═════╝     ╚══╝╚══╝ ╚══════╝╚═════╝  ╚═════╝ ╚══════╝
34 |                                                                
35 | 
36 | FloydCraft (C) 2020
37 | 
38 |    FloydCraft WebOS
39 |    
40 | ---------------------------
41 | 			
42 |
Bootloader...SUCCESS!
43 |
44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- 1 | Webdows (c) by krisdb2009 2 | FloydCraft WebOS (c) rmellis | tallulah95 3 | 4 | Webdows is licensed under a 5 | Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. 6 | 7 | You should have received a copy of the license along with this 8 | work. If not, see . -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "FloydCraft WebOS", 3 | "version": "7.1.00242", 4 | "description": "A dynamic \"Webulation\" of Microsoft Windows forked from Webdows for FloydCraft.", 5 | "main": "webdows/system32/kernel.js", 6 | "dependencies": { 7 | "jquery": "3.2.1", 8 | "platform.js": "1.3.1" 9 | }, 10 | "engines": { 11 | "node": "4.0.0" 12 | }, 13 | "keywords": [ 14 | "FloydCraft", 15 | "Web", 16 | "OS", 17 | "WebOS", 18 | "FCWebOS", 19 | "jquery", 20 | "api", 21 | "windows", 22 | "javascript" 23 | ], 24 | "author": "rmellis", 25 | "contributors": [ 26 | "tallulah95 (http://cdn.floydcraft.co.uk/)" 27 | ], 28 | "license": "MIT" 29 | } -------------------------------------------------------------------------------- /popup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FloydCraft WebOS 5 | 6 | 7 | 8 | 9 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /programs/AeroJoinInfo/AJFCI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/AeroJoinInfo/AJFCI.png -------------------------------------------------------------------------------- /programs/CircuitSimulator/c-sim.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 11/10/20 6 | */ 7 | new explorer.window() 8 | .resize(890, 512) 9 | .center() 10 | .title('Circuit Simulator') 11 | .icon('programs/CircuitSimulator/c-sim.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/CircuitSimulator/c-sim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/CircuitSimulator/c-sim.png -------------------------------------------------------------------------------- /programs/Discord/discord.html: -------------------------------------------------------------------------------- 1 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /programs/Discord/discord.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Discord/discord.ico -------------------------------------------------------------------------------- /programs/Discord/discord.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 12/11/20 6 | */ 7 | new explorer.window() 8 | .resize(640, 480) 9 | .center() 10 | .title('Discord') 11 | .icon('programs/Discord/discord.ico') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/Docs/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Docs/1.png -------------------------------------------------------------------------------- /programs/Doom3/d3.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Doom 3 6 | 7 | 8 |
9 | 11 |
12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /programs/Doom3/d3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Doom3/d3.ico -------------------------------------------------------------------------------- /programs/Doom3/d3.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/11/20 6 | */ 7 | new explorer.window() 8 | .resize(990, 730) 9 | .center() 10 | .title('Doom 3 - Demo - (Keyboard Input is not yet implemented, you can assign extra mouse buttons in Controles)') 11 | .icon('programs/Doom3/d3.ico') 12 | .controls(['min']) 13 | .callback(function() { 14 | var win = this; 15 | this.body 16 | .css({'font-size':'10px'}) 17 | .html(` 18 | 19 | 20 | 29 | 30 | 31 | 32 | 33 | 34 | 41 | 42 | 43 | 46 | 47 |
35 |

36 | 38 | 39 |

40 |
44 | 45 |
48 | 49 | 50 | 51 | `); 52 | }); -------------------------------------------------------------------------------- /programs/Email/email.html: -------------------------------------------------------------------------------- 1 | 14 | -------------------------------------------------------------------------------- /programs/Email/email.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Email/email.ico -------------------------------------------------------------------------------- /programs/Email/email.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 12/11/20 6 | */ 7 | new explorer.window() 8 | .resize(640, 480) 9 | .center() 10 | .title('FloydCraft eMail') 11 | .icon('programs/Email/email.ico') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/FCoffice/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCoffice/1.png -------------------------------------------------------------------------------- /programs/FCoffice/Launcher.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/11/20 6 | */ 7 | new explorer.window() 8 | .title('FloydCraft Office Launcher') 9 | .resize(570, 230) 10 | .center() 11 | .icon('programs/FCoffice/office.ico') 12 | .controls(['min']) 13 | .callback(function() { 14 | var butts = [ 15 | { 16 | text: 'FC Word', 17 | icon: 'programs/FCoffice/word.ico', 18 | callback: function() { 19 | system.loader('programs/FCoffice/word.js'); 20 | } 21 | }, { 22 | text: 'FC PowerPoint', 23 | icon: 'programs/FCoffice/powerpoint.ico', 24 | callback: function() { 25 | system.loader('programs/FCoffice/powerpoint.js'); 26 | } 27 | }, { 28 | text: 'FC Excel', 29 | icon: 'programs/FCoffice/excel.ico', 30 | callback: function() { 31 | system.loader('programs/FCoffice/excel.js'); 32 | } 33 | }, { 34 | text: 'VS Code', 35 | icon: 'programs/FCoffice/code.png', 36 | callback: function() { 37 | system.loader('programs/FCoffice/code.js'); 38 | } 39 | } 40 | ]; 41 | var body = this.body; 42 | body.css({'padding-top':'100px','text-align':'center','overflow-x':'hidden'}); 43 | body.html('




'); 44 | $.each(butts, function() { 45 | var buttID = system.guid(); 46 | body.append(''); 47 | body.find('button[buttID='+buttID+']').click(this.callback); 48 | }); 49 | body.find('.topframe').attr('style', 'top:0px;left:0px;background-repeat:no-repeat;background-size:100px 100px, 100% 100%;position:absolute;height:100px;width:100%;background-image:url(\'programs/FCoffice/2.png\'), url(\'programs/FCoffice/1.png\');'); 50 | body.find('.welc').attr('style', 'color:rgba(255,255,255,0.5);font-size:40px;position:absolute;bottom:0px;right:10px;'); 51 | body.find('.stat').attr('style', 'white-space:nowrap;text-align:left;font-size:12px;margin-top:5px;margin-left:110px;color:white;text-shadow:1px 1px 3px black;'); 52 | body.find('.butt').attr('style', 'line-height:32px;margin:5px;height:35px;width:200px;'); 53 | body.find('.icon').css({'width':'30px','height':'30px','float':'left'}); 54 | }); 55 | -------------------------------------------------------------------------------- /programs/FCoffice/code.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 11/09/20 6 | */ 7 | new explorer.window() 8 | .resize(720, 600) 9 | .center() 10 | .title('Visual Studio Code') 11 | .icon('programs/FCoffice/code.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); 52 | -------------------------------------------------------------------------------- /programs/FCoffice/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCoffice/code.png -------------------------------------------------------------------------------- /programs/FCoffice/credits.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/29/20 6 | */ 7 | new explorer.window() 8 | .resize(720, 600) 9 | .center() 10 | .title('FloydCraft Word - credits.docx') 11 | .icon('programs/FCoffice/word_doc.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); 52 | -------------------------------------------------------------------------------- /programs/FCoffice/excel.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCoffice/excel.ico -------------------------------------------------------------------------------- /programs/FCoffice/excel.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/29/20 6 | */ 7 | new explorer.window() 8 | .resize(720, 600) 9 | .center() 10 | .title('FloydCraft Excel for WebOS') 11 | .icon('programs/FCoffice/excel.ico') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); 52 | -------------------------------------------------------------------------------- /programs/FCoffice/launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCoffice/launcher.png -------------------------------------------------------------------------------- /programs/FCoffice/office.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCoffice/office.ico -------------------------------------------------------------------------------- /programs/FCoffice/office.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/29/20 6 | */ 7 | new explorer.window() 8 | .resize(900, 800) 9 | .center() 10 | .title('FloydCraft Office for WebOS') 11 | .icon('programs/FCoffice/office.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/FCoffice/office.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCoffice/office.png -------------------------------------------------------------------------------- /programs/FCoffice/powerpoint.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCoffice/powerpoint.ico -------------------------------------------------------------------------------- /programs/FCoffice/powerpoint.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/29/20 6 | */ 7 | new explorer.window() 8 | .resize(720, 600) 9 | .center() 10 | .title('FloydCraft Powerpoint for WebOS') 11 | .icon('programs/FCoffice/powerpoint.ico') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); 52 | -------------------------------------------------------------------------------- /programs/FCoffice/spreadsheet.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/29/20 6 | */ 7 | new explorer.window() 8 | .resize(900, 800) 9 | .center() 10 | .title('FloydCraft Excel for WebOS') 11 | .icon('programs/FCoffice/excel.ico') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); 52 | -------------------------------------------------------------------------------- /programs/FCoffice/word.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCoffice/word.ico -------------------------------------------------------------------------------- /programs/FCoffice/word.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/29/20 6 | */ 7 | new explorer.window() 8 | .resize(720, 600) 9 | .center() 10 | .title('FloydCraft Word for WebOS') 11 | .icon('programs/FCoffice/word.ico') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); 52 | -------------------------------------------------------------------------------- /programs/FCoffice/word_doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCoffice/word_doc.png -------------------------------------------------------------------------------- /programs/FCtools/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCtools/1.png -------------------------------------------------------------------------------- /programs/FCtools/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCtools/2.png -------------------------------------------------------------------------------- /programs/FCtools/ArmorCraftingRecipe.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/11/20 6 | */ 7 | new explorer.window() 8 | .resize(808, 486) 9 | .center() 10 | .title('FloydCraft - Armor Crafting Recipe Generator') 11 | .icon('programs/FCtools/icons/ArmorCraftingRecipe.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/FCtools/BannerCrafting.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/11/20 6 | */ 7 | new explorer.window() 8 | .resize(808, 486) 9 | .center() 10 | .title('FloydCraft - Banner Crafting') 11 | .icon('programs/FCtools/icons/BannerCrafting.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/FCtools/BeconCrafting.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/11/20 6 | */ 7 | new explorer.window() 8 | .resize(808, 486) 9 | .center() 10 | .title('FloydCraft - Becon Crafting') 11 | .icon('programs/FCtools/icons/BeconCrafting.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/FCtools/BookEditor.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/11/20 6 | */ 7 | new explorer.window() 8 | .resize(808, 486) 9 | .center() 10 | .title('FloydCraft - Book Editor') 11 | .icon('programs/FCtools/icons/BookEditor.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/FCtools/ColorCodes.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/11/20 6 | */ 7 | new explorer.window() 8 | .resize(808, 486) 9 | .center() 10 | .title('FloydCraft - Color Codes') 11 | .icon('programs/FCtools/icons/ColorCodes.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/FCtools/CoordinateCalculator.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/11/20 6 | */ 7 | new explorer.window() 8 | .resize(808, 486) 9 | .center() 10 | .title('FloydCraft - Coordinate Calculator') 11 | .icon('programs/FCtools/icons/CoordinateCalculator.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/FCtools/Crafting.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/11/20 6 | */ 7 | new explorer.window() 8 | .resize(808, 486) 9 | .center() 10 | .title('FloydCraft - Crafting') 11 | .icon('programs/FCtools/icons/Crafting.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/FCtools/CustomPotions.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/11/20 6 | */ 7 | new explorer.window() 8 | .resize(808, 486) 9 | .center() 10 | .title('FloydCraft - Custom Potions') 11 | .icon('programs/FCtools/icons/CustomPotions.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/FCtools/CustomSignGenerator.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/11/20 6 | */ 7 | new explorer.window() 8 | .resize(808, 486) 9 | .center() 10 | .title('FloydCraft - Custom Sign Generator') 11 | .icon('programs/FCtools/icons/CustomSignGenerator.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/FCtools/CustomizedWorldPresetGenerator.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/11/20 6 | */ 7 | new explorer.window() 8 | .resize(808, 486) 9 | .center() 10 | .title('FloydCraft - Customized World Preset Generator') 11 | .icon('programs/FCtools/icons/CustomizedWorldPresetGenerator.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/FCtools/EnchantCalculator.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/11/20 6 | */ 7 | new explorer.window() 8 | .resize(808, 486) 9 | .center() 10 | .title('FloydCraft - Enchant Calculator') 11 | .icon('programs/FCtools/icons/EnchantCalculator.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/FCtools/FireworkCrafting.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/11/20 6 | */ 7 | new explorer.window() 8 | .resize(808, 486) 9 | .center() 10 | .title('FloydCraft - Firework Crafting') 11 | .icon('programs/FCtools/icons/FireworkCrafting.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/FCtools/FlatWorldSeedGen.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/11/20 6 | */ 7 | new explorer.window() 8 | .resize(808, 486) 9 | .center() 10 | .title('FloydCraft - Flat World Seed Generator') 11 | .icon('programs/FCtools/icons/FlatWorldSeedGen.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/FCtools/HTMLcontent/ArmorCraftingRecipe.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Armor Crafting Recipe 6 | 7 | 8 |
9 | 11 |
12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /programs/FCtools/HTMLcontent/BannerCrafting.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Banner Crafting 6 | 7 | 8 |
9 | 11 |
12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /programs/FCtools/HTMLcontent/BeconCrafting.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Becon Crafting 6 | 7 | 8 |
9 | 11 |
12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /programs/FCtools/HTMLcontent/BookEditor.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | /tellraw editor 6 | 7 | 8 |
9 | 11 |
12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /programs/FCtools/HTMLcontent/ColorCodes.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Color Codes 6 | 7 | 8 |
9 | 11 |
12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /programs/FCtools/HTMLcontent/CoordinateCalculator.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Coordinate Calculator 6 | 7 | 8 |
9 | 11 |
12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /programs/FCtools/HTMLcontent/Crafting.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Crafting 6 | 7 | 8 |
9 | 11 |
12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /programs/FCtools/HTMLcontent/CustomPotions.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Custom Potions 6 | 7 | 8 |
9 | 11 |
12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /programs/FCtools/HTMLcontent/CustomSignGenerator.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Custom Sign Generator 6 | 7 | 8 |
9 | 11 |
12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /programs/FCtools/HTMLcontent/CustomizedWorldPresetGenerator.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Customized World Preset Generator 6 | 7 | 8 |
9 | 11 |
12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /programs/FCtools/HTMLcontent/EnchantCalculator.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Enchant calculator 6 | 7 | 8 |
9 | 11 |
12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /programs/FCtools/HTMLcontent/FireworkCrafting.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Firework Crafting 6 | 7 | 8 |
9 | 11 |
12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /programs/FCtools/HTMLcontent/FlatWorldSeedGen.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Flat World Seed Generator 6 | 7 | 8 |
9 | 11 |
12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /programs/FCtools/HTMLcontent/JSONTextGenerator.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | JSON Text Generator 6 | 7 | 8 |
9 | 11 |
12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /programs/FCtools/HTMLcontent/LootTableGenerator.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Loot Table Generator 6 | 7 | 8 |
9 | 11 |
12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /programs/FCtools/HTMLcontent/MOTDedit.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Message Of The Day (MOTD) Generator 6 | 7 | 8 |
9 | 11 |
12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /programs/FCtools/HTMLcontent/MobSpawnerAndSummonCommandGenerator.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Mob Spawner And /summon Command Generator 6 | 7 | 8 |
9 | 11 |
12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /programs/FCtools/HTMLcontent/ShieldCrafting.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Shield Crafting 6 | 7 | 8 |
9 | 11 |
12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /programs/FCtools/HTMLcontent/SkinStealer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Skin Stealer 6 | 7 | 8 |
9 | 11 |
12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /programs/FCtools/HTMLcontent/StyledText.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Styled Text 6 | 7 | 8 |
9 | 11 |
12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /programs/FCtools/HTMLcontent/TargetSelector.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Target Selector 6 | 7 | 8 |
9 | 11 |
12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /programs/FCtools/HTMLcontent/TellRawEditor.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | /tellraw editor 6 | 7 | 8 |
9 | 11 |
12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /programs/FCtools/HTMLcontent/TitleGenerator.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Title Generator 6 | 7 | 8 |
9 | 11 |
12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /programs/FCtools/JSONTextGenerator.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/11/20 6 | */ 7 | new explorer.window() 8 | .resize(808, 486) 9 | .center() 10 | .title('FloydCraft - JSON Text Generator') 11 | .icon('programs/FCtools/icons/JSONTextGenerator.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/FCtools/LootTableGenerator.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/11/20 6 | */ 7 | new explorer.window() 8 | .resize(808, 486) 9 | .center() 10 | .title('FloydCraft - Loot Table Generator') 11 | .icon('programs/FCtools/icons/LootTableGenerator.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/FCtools/MOTDedit.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/11/20 6 | */ 7 | new explorer.window() 8 | .resize(808, 486) 9 | .center() 10 | .title('FloydCraft - MOTD Edit') 11 | .icon('programs/FCtools/icons/MOTDedit.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/FCtools/MobSpawnerAndSummonCommandGenerator.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/11/20 6 | */ 7 | new explorer.window() 8 | .resize(808, 486) 9 | .center() 10 | .title('FloydCraft - Mob Spawner And /summon Command Generator') 11 | .icon('programs/FCtools/icons/MobSpawnerAndSummonCommandGenerator.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/FCtools/ShieldCrafting.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/11/20 6 | */ 7 | new explorer.window() 8 | .resize(808, 486) 9 | .center() 10 | .title('FloydCraft - Shield Crafting') 11 | .icon('programs/FCtools/icons/ShieldCrafting.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/FCtools/SkinStealer.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/11/20 6 | */ 7 | new explorer.window() 8 | .resize(808, 486) 9 | .center() 10 | .title('FloydCraft - Skin Stealer') 11 | .icon('programs/FCtools/icons/SkinStealer.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/FCtools/StyledText.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/11/20 6 | */ 7 | new explorer.window() 8 | .resize(808, 486) 9 | .center() 10 | .title('FloydCraft - Styled Text') 11 | .icon('programs/FCtools/icons/StyledText.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/FCtools/TargetSelector.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/11/20 6 | */ 7 | new explorer.window() 8 | .resize(808, 486) 9 | .center() 10 | .title('FloydCraft - Target Selector') 11 | .icon('programs/FCtools/icons/TargetSelector.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/FCtools/TellRawEditor.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/11/20 6 | */ 7 | new explorer.window() 8 | .resize(808, 486) 9 | .center() 10 | .title('FloydCraft - Tell Raw Editor (/tellraw)') 11 | .icon('programs/FCtools/icons/TellRawEditor.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/FCtools/TitleGenerator.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/11/20 6 | */ 7 | new explorer.window() 8 | .resize(808, 486) 9 | .center() 10 | .title('FloydCraft - Title Generator (/tellraw)') 11 | .icon('programs/FCtools/icons/TitleGenerator.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/FCtools/icons/ArmorCraftingRecipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCtools/icons/ArmorCraftingRecipe.png -------------------------------------------------------------------------------- /programs/FCtools/icons/BannerCrafting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCtools/icons/BannerCrafting.png -------------------------------------------------------------------------------- /programs/FCtools/icons/BeconCrafting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCtools/icons/BeconCrafting.png -------------------------------------------------------------------------------- /programs/FCtools/icons/BookEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCtools/icons/BookEditor.png -------------------------------------------------------------------------------- /programs/FCtools/icons/ColorCodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCtools/icons/ColorCodes.png -------------------------------------------------------------------------------- /programs/FCtools/icons/CoordinateCalculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCtools/icons/CoordinateCalculator.png -------------------------------------------------------------------------------- /programs/FCtools/icons/Crafting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCtools/icons/Crafting.png -------------------------------------------------------------------------------- /programs/FCtools/icons/CustomPotions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCtools/icons/CustomPotions.png -------------------------------------------------------------------------------- /programs/FCtools/icons/CustomSignGenerator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCtools/icons/CustomSignGenerator.png -------------------------------------------------------------------------------- /programs/FCtools/icons/CustomizedWorldPresetGenerator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCtools/icons/CustomizedWorldPresetGenerator.png -------------------------------------------------------------------------------- /programs/FCtools/icons/EnchantCalculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCtools/icons/EnchantCalculator.png -------------------------------------------------------------------------------- /programs/FCtools/icons/FCTools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCtools/icons/FCTools.png -------------------------------------------------------------------------------- /programs/FCtools/icons/FireworkCrafting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCtools/icons/FireworkCrafting.png -------------------------------------------------------------------------------- /programs/FCtools/icons/FlatWorldSeedGen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCtools/icons/FlatWorldSeedGen.png -------------------------------------------------------------------------------- /programs/FCtools/icons/JSONTextGenerator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCtools/icons/JSONTextGenerator.png -------------------------------------------------------------------------------- /programs/FCtools/icons/LootTableGenerator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCtools/icons/LootTableGenerator.png -------------------------------------------------------------------------------- /programs/FCtools/icons/MOTDedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCtools/icons/MOTDedit.png -------------------------------------------------------------------------------- /programs/FCtools/icons/MobSpawnerAndSummonCommandGenerator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCtools/icons/MobSpawnerAndSummonCommandGenerator.png -------------------------------------------------------------------------------- /programs/FCtools/icons/ShieldCrafting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCtools/icons/ShieldCrafting.png -------------------------------------------------------------------------------- /programs/FCtools/icons/SkinStealer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCtools/icons/SkinStealer.png -------------------------------------------------------------------------------- /programs/FCtools/icons/StyledText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCtools/icons/StyledText.png -------------------------------------------------------------------------------- /programs/FCtools/icons/TargetSelector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCtools/icons/TargetSelector.png -------------------------------------------------------------------------------- /programs/FCtools/icons/TellRawEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCtools/icons/TellRawEditor.png -------------------------------------------------------------------------------- /programs/FCtools/icons/TitleGenerator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FCtools/icons/TitleGenerator.png -------------------------------------------------------------------------------- /programs/Fence/Fence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Fence/Fence.png -------------------------------------------------------------------------------- /programs/Fence/excel.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Fence/excel.ico -------------------------------------------------------------------------------- /programs/Fence/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Fence/icon.png -------------------------------------------------------------------------------- /programs/Fence/launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Fence/launcher.png -------------------------------------------------------------------------------- /programs/Fence/office.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Fence/office.png -------------------------------------------------------------------------------- /programs/Fence/powerpoint.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Fence/powerpoint.ico -------------------------------------------------------------------------------- /programs/Fence/topframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Fence/topframe.png -------------------------------------------------------------------------------- /programs/Fence/word.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Fence/word.ico -------------------------------------------------------------------------------- /programs/FileManager/fman.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 12/11/20 6 | */ 7 | new explorer.window() 8 | .resize(800, 445) 9 | .center() 10 | .title('File Manager') 11 | .icon('programs/FileManager/fman.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/FileManager/fman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/FileManager/fman.png -------------------------------------------------------------------------------- /programs/Forum/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Forum/1.png -------------------------------------------------------------------------------- /programs/Game/Build/New folder.asm.code.unityweb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Game/Build/New folder.asm.code.unityweb -------------------------------------------------------------------------------- /programs/Game/Build/New folder.asm.framework.unityweb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Game/Build/New folder.asm.framework.unityweb -------------------------------------------------------------------------------- /programs/Game/Build/New folder.asm.memory.unityweb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Game/Build/New folder.asm.memory.unityweb -------------------------------------------------------------------------------- /programs/Game/Build/New folder.data.unityweb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Game/Build/New folder.data.unityweb -------------------------------------------------------------------------------- /programs/Game/Build/New folder.json: -------------------------------------------------------------------------------- 1 | { 2 | "TOTAL_MEMORY": 268435456, 3 | "dataUrl": "New folder.data.unityweb", 4 | "asmCodeUrl": "New folder.asm.code.unityweb", 5 | "asmMemoryUrl": "New folder.asm.memory.unityweb", 6 | "asmFrameworkUrl": "New folder.asm.framework.unityweb", 7 | "splashScreenStyle": "Dark", 8 | "backgroundColor": "#222C36" 9 | } -------------------------------------------------------------------------------- /programs/Game/index.js: -------------------------------------------------------------------------------- 1 | system.legacyLoader('programs/Game/Build/UnityLoader.js', function() { 2 | new explorer.window() 3 | .title('Test Game') 4 | .resize(500,400) 5 | .center() 6 | .callback(function() { 7 | var id = system.guid(); 8 | var body = this.body; 9 | body.attr('id', id); 10 | body.attr('style', 'overflow:hidden;'); 11 | gameInstance = UnityLoader.instantiate(id, "programs/Game/Build/New Folder.json"); 12 | body.parent().find('.ui-resizable-handle, span.max').mouseup(function() { 13 | body.find('canvas').attr('style', 'width:100%;height:100%;'); 14 | }); 15 | }); 16 | }); -------------------------------------------------------------------------------- /programs/Google/Earth.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 05/11/20 6 | */ 7 | new explorer.window() 8 | .resize(711, 495) 9 | .center() 10 | .title('Google Earth') 11 | .icon('programs/Google/Earth.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/Google/Earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Google/Earth.png -------------------------------------------------------------------------------- /programs/Gravity/gravity.js: -------------------------------------------------------------------------------- 1 | var win = new explorer.window() 2 | .resize(500, 500) 3 | .toggleMax() 4 | .title('gravity'); 5 | var bod = win.body; 6 | 7 | bod.css({ 8 | overflow: 'hidden' 9 | }); 10 | 11 | var ball = $('
') 12 | .css({ 13 | width: 50, 14 | height: 50, 15 | position: 'absolute', 16 | 'border-radius': '50px', 17 | 'background-color': 'red' 18 | }) 19 | .appendTo(bod); 20 | 21 | var time = 0; //Time in seconds 22 | var initialVelocity = 200; //Initial velocity 23 | var initialAngle = 60; //Angle 24 | var xStart = 0; 25 | var yStart = 0; 26 | var xReverse = false; 27 | 28 | //Constants 29 | var g = 9.81; //Gravity, earth = 9.81 30 | 31 | var interval = setInterval(function() { 32 | time += .1; 33 | 34 | var ballHeight = ball.height(); 35 | var bodyHeight = bod.height(); 36 | var bodyWidth = bod.width(); 37 | 38 | var radian = initialAngle * Math.PI / 180; 39 | 40 | var vx = initialVelocity * Math.cos(radian); 41 | var vy = (initialVelocity * Math.sin(radian)) - (g * time); 42 | 43 | var x = xStart + (vx * time * Math.cos(radian)); 44 | 45 | var y = yStart + (vy * time * Math.sin(radian)) - (.5 * g * Math.pow(time, 2)); 46 | 47 | 48 | 49 | 50 | //Detect Collisions 51 | if(y <= 0) { 52 | time = 0; 53 | xStart = x; 54 | yStart = y; 55 | /*if(initialVelocity > 0) { 56 | initialVelocity -= 20; 57 | }*/ 58 | } 59 | if(x <= 0) { 60 | xReverse = !xReverse; 61 | } 62 | if(x >= bodyWidth) { 63 | xReverse = !xReverse; 64 | } 65 | if(xReverse) { 66 | x = (bodyWidth * 2) + (x * -1); 67 | } 68 | 69 | //Update ball... 70 | ball.css({ 71 | top: bodyHeight - ballHeight + (y * -1), 72 | left: x 73 | }); 74 | }, 10); 75 | 76 | win.on.close = function() { 77 | clearInterval(interval); 78 | }; -------------------------------------------------------------------------------- /programs/Help/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Help/1.png -------------------------------------------------------------------------------- /programs/Map76/map76.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 11/06/20 6 | */ 7 | new explorer.window() 8 | .resize(983, 480) 9 | .center() 10 | .title('Map76 - A datamined map of every object, resource, vein, and deposit in Fallout 76.') 11 | .icon('programs/Map76/map76.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/Map76/map76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Map76/map76.png -------------------------------------------------------------------------------- /programs/MapApp/FCMaps.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/MapApp/FCMaps.ico -------------------------------------------------------------------------------- /programs/MineBlock/mine.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 12/11/20 6 | */ 7 | new explorer.window() 8 | .resize(800, 482) 9 | .center() 10 | .title('MineBlock') 11 | .icon('programs/MineBlock/mine.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/MineBlock/mine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/MineBlock/mine.png -------------------------------------------------------------------------------- /programs/Minecraft/mcc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Minecraft/mcc.ico -------------------------------------------------------------------------------- /programs/Minecraft/mcc.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/14/20 6 | */ 7 | new explorer.window() 8 | .resize(856, 482) 9 | .center() 10 | .title('Minecraft') 11 | .icon('programs/Minecraft/mcc.ico') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/NovaSkin/skin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/NovaSkin/skin.ico -------------------------------------------------------------------------------- /programs/NovaSkin/skin.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 12/11/20 6 | */ 7 | new explorer.window() 8 | .resize(863, 600) 9 | .center() 10 | .title('NovaSkin') 11 | .icon('programs/NovaSkin/skin.ico') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/PacMan/pac.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 12/11/20 6 | */ 7 | new explorer.window() 8 | .resize(479, 611) 9 | .center() 10 | .controls([]) 11 | .title('PanMan') 12 | .icon('programs/PacMan/pac.png') 13 | .callback(function() { 14 | var win = this; 15 | this.body 16 | .css({'font-size':'10px'}) 17 | .html(` 18 | 19 | 20 | 29 | 30 | 31 | 32 | 33 | 34 | 41 | 42 | 43 | 46 | 47 |
35 |

36 | 38 | 39 |

40 |
44 | 45 |
48 | 49 | 50 | 51 | `); 52 | }); -------------------------------------------------------------------------------- /programs/PacMan/pac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/PacMan/pac.png -------------------------------------------------------------------------------- /programs/Photopea/photopea.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/22/20 6 | */ 7 | new explorer.window() 8 | .resize(820, 580) 9 | .center() 10 | .title('Mini Paint') 11 | .icon('programs/minipaint/mpaint.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/Photopea/photopea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Photopea/photopea.png -------------------------------------------------------------------------------- /programs/Photopea/photopea2.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 11/20/20 6 | */ 7 | new explorer.window() 8 | .resize(820, 580) 9 | .center() 10 | .title('PhotoPea Paint') 11 | .icon('programs/Photopea/photopea.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/Photopea/photopeaLauncher.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 11/20/20 6 | */ 7 | new explorer.window() 8 | .resize(958, 666) 9 | .center() 10 | .title('PhotoPea - Photoshop Clone') 11 | .icon('programs/Photopea/photopea.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/Play/play.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Play/play.ico -------------------------------------------------------------------------------- /programs/Play/play.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/25/20 6 | */ 7 | new explorer.window() 8 | .resize(863, 510) 9 | .center() 10 | .title('Play FloydCraft') 11 | .icon('programs/Play/play.ico') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/Play/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Play/play.png -------------------------------------------------------------------------------- /programs/Projects/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Projects/1.png -------------------------------------------------------------------------------- /programs/Projects/proj.htm: -------------------------------------------------------------------------------- 1 |

-------------------------------------------------------------------------------- /programs/Quake/qjs.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Quake/qjs.ico -------------------------------------------------------------------------------- /programs/Quake/qjs.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/15/20 6 | */ 7 | new explorer.window() 8 | .resize(856, 482) 9 | .center() 10 | .title('Quake') 11 | .icon('programs/Quake/qjs.ico') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/Rules/rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Rules/rules.png -------------------------------------------------------------------------------- /programs/SculptGL/SculptGL.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 11/10/20 6 | */ 7 | new explorer.window() 8 | .resize(890, 512) 9 | .center() 10 | .title('Sculpt Studio') 11 | .icon('programs/SculptGL/SculptGL.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/SculptGL/SculptGL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/SculptGL/SculptGL.png -------------------------------------------------------------------------------- /programs/Solitaire/sol.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Solitaire 6 | 7 | 8 |
9 | 11 |
12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /programs/Solitaire/sol.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Solitaire/sol.ico -------------------------------------------------------------------------------- /programs/Solitaire/sol.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/11/20 6 | */ 7 | new explorer.window() 8 | .resize(880, 800) 9 | .center() 10 | .title('Spider Solitaire') 11 | .icon('programs/Solitaire/sol.ico') 12 | .controls(['min']) 13 | .callback(function() { 14 | var win = this; 15 | this.body 16 | .css({'font-size':'10px'}) 17 | .html(` 18 | 19 | 20 | 29 | 30 | 31 | 32 | 33 | 34 | 41 | 42 | 43 | 46 | 47 |
35 |

36 | 38 | 39 |

40 |
44 | 45 |
48 | 49 | 50 | 51 | `); 52 | }); -------------------------------------------------------------------------------- /programs/Speech/TTS.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Speech/TTS.ico -------------------------------------------------------------------------------- /programs/Speech/TTS.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 12/11/20 6 | */ 7 | new explorer.window() 8 | .resize(365, 560) 9 | .center() 10 | .title('Text to Speech') 11 | .icon('programs/Speech/TTS.ico') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/SpiderSolitaire/spider.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Spider Solitaire 6 | 7 | 8 |
9 | 11 |
12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /programs/SpiderSolitaire/spider.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/SpiderSolitaire/spider.ico -------------------------------------------------------------------------------- /programs/SpiderSolitaire/spider.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/11/20 6 | */ 7 | new explorer.window() 8 | .resize(900, 595) 9 | .center() 10 | .title('Spider Solitaire') 11 | .icon('programs/SpiderSolitaire/spider.ico') 12 | .controls(['min']) 13 | .callback(function() { 14 | var win = this; 15 | this.body 16 | .css({'font-size':'10px'}) 17 | .html(` 18 | 19 | 20 | 29 | 30 | 31 | 32 | 33 | 34 | 41 | 42 | 43 | 46 | 47 |
35 |

36 | 38 | 39 |

40 |
44 | 45 |
48 | 49 | 50 | 51 | `); 52 | }); -------------------------------------------------------------------------------- /programs/Terminal/term.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Terminal/term.ico -------------------------------------------------------------------------------- /programs/Terminal/term.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/14/20 6 | */ 7 | new explorer.window() 8 | .resize(856, 482) 9 | .center() 10 | .title('Termianal') 11 | .icon('programs/Terminal/term.ico') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/UWPcalc/HTMLcontent/UWPcalc.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | UWP Calculator 6 | 13 | 14 |
15 | 17 |
18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /programs/UWPcalc/UWPcalc.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/11/20 6 | */ 7 | new explorer.window() 8 | .resize(743, 561) 9 | .center() 10 | .title('UWP Calculator') 11 | .icon('programs/UWPcalc/UWPcalc.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/UWPcalc/UWPcalc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/UWPcalc/UWPcalc.png -------------------------------------------------------------------------------- /programs/Unity/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Unity/1.png -------------------------------------------------------------------------------- /programs/Unity/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Unity/2.png -------------------------------------------------------------------------------- /programs/Unity/CN.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/14/20 6 | */ 7 | new explorer.window() 8 | .resize(640, 480) 9 | .center() 10 | .title('Craftnite (Fortnite + Minecraft Mix)') 11 | .icon('programs/Unity/CN.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/Unity/CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Unity/CN.png -------------------------------------------------------------------------------- /programs/Unity/Launcher.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/11/20 6 | */ 7 | new explorer.window() 8 | .title('Unity Game Launcher') 9 | .resize(570, 230) 10 | .center() 11 | .icon('programs/Unity/unity.ico') 12 | .controls(['min']) 13 | .callback(function() { 14 | var butts = [ 15 | { 16 | text: 'Madalin Cars', 17 | icon: 'programs/Unity/m.jpg', 18 | callback: function() { 19 | system.loader('programs/Unity/madcar.js'); 20 | } 21 | }, { 22 | text: 'War Brokers', 23 | icon: 'programs/Unity/WBC.png', 24 | callback: function() { 25 | system.loader('programs/Unity/WBC.js'); 26 | } 27 | }, { 28 | text: 'Craftnite', 29 | icon: 'programs/Unity/CN.png', 30 | callback: function() { 31 | system.loader('programs/Unity/CN.js'); 32 | } 33 | } 34 | ]; 35 | var body = this.body; 36 | body.css({'padding-top':'100px','text-align':'center','overflow-x':'hidden'}); 37 | body.html('
Unity Games
'+platform.name+' '+platform.version+'
'+platform.layout+'
'+platform.os+'
'+location.hostname+'
'); 38 | $.each(butts, function() { 39 | var buttID = system.guid(); 40 | body.append(''); 41 | body.find('button[buttID='+buttID+']').click(this.callback); 42 | }); 43 | body.find('.topframe').attr('style', 'top:0px;left:0px;background-repeat:no-repeat;background-size:100px 100px, 100% 100%;position:absolute;height:100px;width:100%;background-image:url(\'programs/Unity/2.png\'), url(\'programs/Unity/1.png\');'); 44 | body.find('.welc').attr('style', 'color:rgba(255,255,255,0.5);font-size:40px;position:absolute;bottom:0px;right:10px;'); 45 | body.find('.stat').attr('style', 'white-space:nowrap;text-align:left;font-size:12px;margin-top:5px;margin-left:110px;color:white;text-shadow:1px 1px 3px black;'); 46 | body.find('.butt').attr('style', 'line-height:32px;margin:5px;height:35px;width:200px;'); 47 | body.find('.icon').css({'width':'30px','height':'30px','float':'left'}); 48 | }); 49 | -------------------------------------------------------------------------------- /programs/Unity/WBC.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/14/20 6 | */ 7 | new explorer.window() 8 | .resize(640, 480) 9 | .center() 10 | .title('War Brokers') 11 | .icon('programs/Unity/WBC.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/Unity/WBC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Unity/WBC.png -------------------------------------------------------------------------------- /programs/Unity/m.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Unity/m.jpg -------------------------------------------------------------------------------- /programs/Unity/madcar.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/13/20 6 | */ 7 | new explorer.window() 8 | .resize(640, 480) 9 | .center() 10 | .title('Madalin Cars') 11 | .icon('programs/Unity/unity.ico') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/Unity/unity.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Unity/unity.ico -------------------------------------------------------------------------------- /programs/Web Explorer/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Web Explorer/1.png -------------------------------------------------------------------------------- /programs/Webassembly/Studio.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 05/11/20 6 | */ 7 | new explorer.window() 8 | .resize(711, 495) 9 | .center() 10 | .title('Webassembly Studio') 11 | .icon('programs/Webassembly/Studio.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/Webassembly/Studio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Webassembly/Studio.png -------------------------------------------------------------------------------- /programs/Website/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/Website/1.png -------------------------------------------------------------------------------- /programs/YATerm/term.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 11/05/20 6 | */ 7 | new explorer.window() 8 | .resize(856, 482) 9 | .center() 10 | .title('Yet Another Terminal Program') 11 | .icon('programs/YATerm/term.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/YATerm/term.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/YATerm/term.png -------------------------------------------------------------------------------- /programs/YouTube/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/YouTube/logo.png -------------------------------------------------------------------------------- /programs/YouTube/ytube.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/26/20 6 | */ 7 | new explorer.window() 8 | .title('YouTube') 9 | .resize(856, 582) 10 | .icon(loader.folder+'logo.png') 11 | .center() 12 | .callback(function() { 13 | var bod = this.body; 14 | var win = this; 15 | this.body 16 | .css({'font-size':'10px'}) 17 | .html(` 18 | 19 | 20 | 29 | 30 | 31 | 32 | 33 | 34 | 41 | 42 | 43 | 46 | 47 |
35 |

36 | 38 | 39 |

40 |
44 | 45 |
48 | 49 | 50 | 51 | `); 52 | var dis = this; 53 | dis.menuBar([ 54 | { 55 | 'title': 'View', 56 | context: [ 57 | { 58 | title: 'Minimize', 59 | callback: function() { dis.front().toggleMin(); } 60 | }, {}, { 61 | title: 'Exit', 62 | callback: function() { dis.close(); } 63 | } 64 | ] 65 | }, { 66 | 'title': 'Help', 67 | context: [ 68 | { 69 | title: 'Help', 70 | callback: function() { system.loader('webdows/welcome.js') } 71 | }, {}, { 72 | title: 'About this YouTube app', 73 | callback: function() { new explorer.window().title('About Youtube').body.html('

FloydCraft WebOS, YouTube App
WebOS App created by rmellis using This GitHub Project
No ads, No distractions and No recommendations. Just an easy way to find the video you want to watch on youtube.

'); } 74 | } 75 | ] 76 | } 77 | ]); 78 | }); -------------------------------------------------------------------------------- /programs/YouTube/ytube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/YouTube/ytube.png -------------------------------------------------------------------------------- /programs/audiomass/amass.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 11/07/20 6 | */ 7 | new explorer.window() 8 | .resize(856, 482) 9 | .center() 10 | .title('Audio Mass') 11 | .icon('programs/audiomass/amass.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/audiomass/amass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/audiomass/amass.png -------------------------------------------------------------------------------- /programs/display/info.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 11/08/20 6 | */ 7 | new explorer.window() 8 | .title('Display Settings') 9 | .resize(500, 330) 10 | .icon(loader.folder+'info.png') 11 | .center() 12 | .controls(['min']) 13 | .callback(function() { 14 | var bod = this.body; 15 | var win = this; 16 | this.body 17 | .css({'font-size':'10px'}) 18 | .html(` 19 | 20 | 21 | 30 | 31 | 32 | 33 | 34 | 35 | 42 | 43 | 44 | 46 | 47 |
36 |

37 | 39 | 40 |

41 |
45 |
48 | 49 | 50 | 51 | `); 52 | var dis = this; 53 | dis.menuBar([ 54 | { 55 | 'title': 'File', 56 | context: [ 57 | { 58 | title: 'Detect Resolution', 59 | callback: function() { dis.front().toggleMin(); } 60 | }, {}, { 61 | title: 'Scale', 62 | callback: function() {} 63 | }, { 64 | title: 'Zoom', 65 | callback: function() {} 66 | }, {}, { 67 | title: 'Apply', 68 | callback: function() { dis.close(); } 69 | }, {}, { 70 | title: 'Exit', 71 | callback: function() { dis.close(); } 72 | } 73 | ] 74 | }, { 75 | 'title': 'Help', 76 | context: [ 77 | { 78 | title: 'Help', 79 | callback: function() { system.loader('webdows/welcome.js') } 80 | }, {}, { 81 | title: 'About Display Settings', 82 | callback: function() { new explorer.window().title('About Youtube').body.html('

FloydCraft WebOS, Screen Res App
WebOS App created by rmellis

'); } 83 | } 84 | ] 85 | } 86 | ]); 87 | }); -------------------------------------------------------------------------------- /programs/display/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/display/info.png -------------------------------------------------------------------------------- /programs/genact/term.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 11/05/20 6 | */ 7 | new explorer.window() 8 | .resize(856, 482) 9 | .center() 10 | .title('Genact - a nonsense activity generator') 11 | .icon('programs/genact/term.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/genact/term.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/genact/term.png -------------------------------------------------------------------------------- /programs/minipaint/mpaint.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 10/22/20 6 | */ 7 | new explorer.window() 8 | .resize(820, 580) 9 | .center() 10 | .title('Mini Paint') 11 | .icon('programs/minipaint/mpaint.png') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/minipaint/mpaint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/minipaint/mpaint.png -------------------------------------------------------------------------------- /programs/paint/paint.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/paint/paint.ico -------------------------------------------------------------------------------- /programs/paint/paint.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 12/11/20 6 | */ 7 | new explorer.window() 8 | .resize(863, 600) 9 | .center() 10 | .title('Paint') 11 | .icon('programs/paint/paint.ico') 12 | .callback(function() { 13 | var win = this; 14 | this.body 15 | .css({'font-size':'10px'}) 16 | .html(` 17 | 18 | 19 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 45 | 46 |
34 |

35 | 37 | 38 |

39 |
43 | 44 |
47 | 48 | 49 | 50 | `); 51 | }); -------------------------------------------------------------------------------- /programs/winamp/winamp.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 13 | 14 | 15 |
16 | 17 |
18 | 19 | 20 | 21 | 53 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /programs/winamp/winamp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/programs/winamp/winamp.ico -------------------------------------------------------------------------------- /programs/winamp/winamp.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Date: 11/01/20 6 | */ 7 | new explorer.window() 8 | .resize(727, 495) 9 | .center() 10 | .controls(['min']) 11 | .title('Winamp') 12 | .icon('programs/winamp/winamp.ico') 13 | .callback(function() { 14 | var win = this; 15 | this.body 16 | .css({'font-size':'10px'}) 17 | .html(` 18 | 19 | 20 | 29 | 30 | 31 | 32 | 33 | 34 | 41 | 42 | 43 | 46 | 47 |
35 |

36 | 38 | 39 |

40 |
44 | 45 |
48 | 49 | 50 | 51 | `); 52 | }); -------------------------------------------------------------------------------- /readme/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/readme/13.gif -------------------------------------------------------------------------------- /readme/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/readme/14.gif -------------------------------------------------------------------------------- /readme/compressed replacements/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/readme/compressed replacements/13.gif -------------------------------------------------------------------------------- /readme/compressed replacements/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/readme/compressed replacements/14.gif -------------------------------------------------------------------------------- /readme/compressed replacements/p2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/readme/compressed replacements/p2.gif -------------------------------------------------------------------------------- /readme/compressed replacements/p3c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/readme/compressed replacements/p3c.gif -------------------------------------------------------------------------------- /readme/compressed replacements/p4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/readme/compressed replacements/p4.gif -------------------------------------------------------------------------------- /readme/compressed replacements/p6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/readme/compressed replacements/p6.gif -------------------------------------------------------------------------------- /readme/p1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/readme/p1.gif -------------------------------------------------------------------------------- /readme/p10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/readme/p10.gif -------------------------------------------------------------------------------- /readme/p11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/readme/p11.gif -------------------------------------------------------------------------------- /readme/p12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/readme/p12.gif -------------------------------------------------------------------------------- /readme/p2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/readme/p2.gif -------------------------------------------------------------------------------- /readme/p3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/readme/p3.gif -------------------------------------------------------------------------------- /readme/p4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/readme/p4.gif -------------------------------------------------------------------------------- /readme/p5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/readme/p5.gif -------------------------------------------------------------------------------- /readme/p6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/readme/p6.gif -------------------------------------------------------------------------------- /readme/p7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/readme/p7.gif -------------------------------------------------------------------------------- /readme/p8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/readme/p8.gif -------------------------------------------------------------------------------- /readme/p9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/readme/p9.gif -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- 1 | var win = new explorer.window();var body = win.body;body.html(`
`);body.find('input').on('change', function(e) { body.find('.progress').attr('max', 100).attr('value', $(e.target).val()); body.find('button').click(function() { body.find('progress').removeAttr('value'); });}); -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 7.2.10242 -------------------------------------------------------------------------------- /webdows/belowaverage/explorer/piwik.js: -------------------------------------------------------------------------------- 1 | var interval = setInterval(function() { 2 | if(typeof system.belowaverage.piwik !== 'undefined') { 3 | var track = system.belowaverage.piwik; 4 | clearInterval(interval); 5 | window.explorer.replacedWindow = window.explorer.window; 6 | window.explorer.window = function() { 7 | var win = new window.explorer.replacedWindow(); 8 | setTimeout(function() { 9 | if(win.properties.title !== '') { 10 | track.trackEvent('Window', 'Opened: '+win.properties.title); 11 | } 12 | }); 13 | return win; 14 | }; 15 | } 16 | }, 100); -------------------------------------------------------------------------------- /webdows/belowaverage/explorer/popup.js: -------------------------------------------------------------------------------- 1 | window.explorer.replacedWindow = window.explorer.window; 2 | window.explorer.window = function() { 3 | var expwin = new window.explorer.replacedWindow(); 4 | var extwin = window.open(document.URL+'popup.html', expwin.id, 'width=200, height=200, resizable=yes, status=no, scrollbars=yes, menubar=no, titlebar=no, top=100, left=100'); 5 | expwin.jq.hide(); 6 | function replace() { 7 | expwin.jq.show(); 8 | var initWidth = expwin.jq.width(); 9 | var initHeight = expwin.jq.height(); 10 | expwin.center('top left'); 11 | if(!expwin.is.maximized) { 12 | expwin.toggleMax(); 13 | } 14 | extwin.onunload = function() { 15 | expwin.close(); 16 | }; 17 | expwin.replacedToggleMin = expwin.toggleMin; 18 | expwin.toggleMin = function() { 19 | expwin.front(); 20 | }; 21 | expwin.replacedTitle = expwin.title; 22 | expwin.title = function(title) { 23 | expwin.replacedTitle(title); 24 | $(extwin.document).find('title').text(title); 25 | return this; 26 | }; 27 | expwin.replacedIcon = expwin.icon; 28 | expwin.icon = function(icon) { 29 | expwin.replacedIcon(icon); 30 | $(extwin.document).find('link[rel=icon]').attr('href', icon); 31 | return this; 32 | }; 33 | expwin.replacedClose = expwin.close; 34 | expwin.close = function() { 35 | expwin.replacedClose(); 36 | extwin.close(); 37 | return this; 38 | }; 39 | expwin.replacedCenter = expwin.center; 40 | expwin.center = function(ignored, x, y) { 41 | extwin.moveTo(x, y); 42 | return this; 43 | }; 44 | expwin.replacedResize = expwin.resize; 45 | expwin.resize = function(x, y) { 46 | extwin.resizeTo(x + 10, y + 35); 47 | return this; 48 | }; 49 | expwin.replacedFront = expwin.front; 50 | expwin.front = function() { 51 | extwin.focus(); 52 | return this; 53 | }; 54 | expwin.resize(initWidth, initHeight); 55 | expwin.title(expwin.properties.title); 56 | expwin.icon(expwin.properties.icon); 57 | $(extwin.document.body).append(expwin.jq); 58 | }; 59 | var interval = setInterval(function() { 60 | if($(extwin.document.head).find('title').text() == 'Webdows') { 61 | clearInterval(interval); 62 | delete interval; 63 | replace(); 64 | } 65 | }, 5); 66 | return expwin; 67 | }; -------------------------------------------------------------------------------- /webdows/belowaverage/system/cordova_check.js: -------------------------------------------------------------------------------- 1 | $.ajax({ 2 | url: "cordova.js", 3 | global: false, 4 | dataType: 'text', 5 | success: function(data) { 6 | eval(data); 7 | } 8 | }); -------------------------------------------------------------------------------- /webdows/belowaverage/system/piwik.js: -------------------------------------------------------------------------------- 1 | var _paq = _paq || []; 2 | _paq.push(['trackPageView']); 3 | _paq.push(['enableLinkTracking']); 4 | (function() { 5 | var u="http://api.floydcraft.co.uk/v4/piwik/"; 6 | _paq.push(['setTrackerUrl', u+'piwik.php']); 7 | _paq.push(['setSiteId', '1']); 8 | var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; 9 | g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s); 10 | })(); 11 | system.belowaverage = {}; 12 | var interval = setInterval(function() { 13 | if(typeof Piwik !== 'undefined') { 14 | clearInterval(interval); 15 | system.belowaverage.piwik = Piwik.getAsyncTracker(); 16 | system.errorReplaced = system.error; 17 | system.error = function(errorMessage, filePath) { 18 | system.belowaverage.piwik.trackEvent('System', 'Error: '+filePath, errorMessage); 19 | system.errorReplaced(errorMessage, filePath); 20 | }; 21 | } 22 | }, 100); 23 | 24 | -------------------------------------------------------------------------------- /webdows/config/wfs.json: -------------------------------------------------------------------------------- 1 | {"Public":{"Desktop":["placeholder"],"Documents":["credits.txt"],"Music":["placeholder"],"Pictures":["placeholder"],"Videos":["placeholder"]},"0":"credits.txt","1":"index.html","2":"legalcode.txt","3":"license.txt","4":"otherlicenses.txt","5":"package.json","6":"popup.html","programs":{"DOND":["index.js"],"ForkMe":["index.js"],"Game":{"Build":["New folder.asm.code.unityweb","New folder.asm.framework.unityweb","New folder.asm.memory.unityweb","New folder.data.unityweb","New folder.json","UnityLoader.js"],"0":"index.js"},"StartupSound":[],"WS":["index.js"],"Web Explorer":["1.png","we.js"],"Youtube Extractor":["hourglass.gif","index.js","logo.png"],"belowaverage-org":{"weblogon":["service.js","weblogon.js"]},"nate":["1.png","satan.js"],"youtube-sync":{"0":".gitattributes","1":"config.json","img":["bull.png","chan.png","full.png","hide.png","icon.png","loa1.png","loa2.png","logs.png","mute.png","next.png","plpa.png","prev.png","que.png","stop.png","umut.png"],"2":"index.js","js":["login.js","queue.js"],"plyr":["icon.png","plyr.css","plyr.html","plyr.js","plyr.svg"]}},"7":"test.js","8":"version.txt","webdows":{"belowaverage":{"explorer":["piwik.js","popup.js"],"system":["piwik.js"]},"0":"calc.js","1":"cmd.js","config":["explorer.startup.js","registry.json","wfs.json"],"2":"explorer.js","3":"explorer_ext.js","4":"notepad.js","5":"personalize.js","6":"regedit.js","resources":{"explorer":{"0":"1.ogg","1":"1.png","2":"1.woff","3":"10.png","4":"2.png","5":"4.png","6":"6.png","7":"7.png","8":"8.png","9":"9.png","10":"animation.js","basic":["index.css","thumbnail.png"],"classic":["clo.png","cur.png","index.css","max.png","min.png","mmax.png","sta.png","thumbnail.png"],"11":"explorer.css","webdows":["bg.jpg","bglos.svg","cur.png","exi.png","index.css","max.png","min.png","mmax.png","sb1.png","sb2.png","sba1.png","sba2.png","sba3.png","sba4.png","so1.png","so2.png","so3.png","thumbnail.png"],"wire":["index.css"]},"icons":["aler.ico","balg.svg","bmpi.ico","bvlg.svg","calc.ico","clos.png","cont.ico","desk.ico","driv.ico","exei.ico","file.ico","fold.ico","ghub.png","gifi.ico","info.ico","jpgi.ico","logo.png","maxi.png","medi.ico","micr.ico","mini.png","misc.ico","mous.ico","netw.ico","note.ico","pain.ico","pers.ico","plog.png","pngi.ico","ques.ico","rami.ico","rege.ico","rest.png","rogo.png","runi.ico","scre.ico","stck.ico","task.ico","tscr.ico","uaci.ico","umlg.png","warn.ico","wpad.ico"],"welcome":["1.png","2.png"]},"7":"run.js","services":{"explorer":["time.js"]},"8":"system.js","system32":["kernel.js","loadscrn.js","webldr.js"],"9":"taskmgr.js","10":"webver.js","11":"welcome.js"}} -------------------------------------------------------------------------------- /webdows/notepad.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Origional Script: krisdb2009 6 | Date: 10/11/20 7 | */ 8 | new explorer.window() 9 | .title('Notepad') 10 | .icon('webdows/resources/icons/note.ico') 11 | .resize(500, 300) 12 | .center() 13 | .callback(function() { 14 | var bod = this.body; 15 | var win = this; 16 | var bar = [ 17 | { 18 | title: 'File', 19 | context: [ 20 | { 21 | title: 'New' 22 | }, { 23 | title: 'Open...' 24 | }, { 25 | title: 'Save' 26 | }, {}, { 27 | title: 'Print...', 28 | callback: function() { 29 | var text = bod.find('textarea').val(); 30 | var pre = $('
').html(text).attr('style', 'margin:0;display:block;background-color:white;position:fixed;top:0px;left:0px;width:100%;height:100%;z-index:1010').appendTo('#desktop.explorer');
31 | 						window.print();
32 | 						pre.remove();
33 | 					}
34 | 				}, {}, {
35 | 					title: 'Exit',
36 | 					callback: function() { win.close(); }
37 | 				}
38 | 			]
39 | 		}, {
40 | 			title: 'Edit',
41 | 			context: [
42 | 				{
43 | 					title: 'Undo'
44 | 				}, {}, {
45 | 					title: 'Cut'
46 | 				}, {
47 | 					title: 'Copy'
48 | 				}, {
49 | 					title: 'Paste'
50 | 				}, {
51 | 					title: 'Delete'
52 | 				}, {}, {
53 | 					title: 'Find...'
54 | 				}, {}, {
55 | 					title: 'Select All'
56 | 				}, {
57 | 					title: 'Time/Date'
58 | 				}
59 | 			]
60 | 		}, {
61 | 			title: 'Format',
62 | 			context: [
63 | 				{
64 | 					title: 'Word Wrap'
65 | 				}
66 | 			]
67 | 		}, {
68 | 			title: 'Help',
69 | 			context: [
70 | 				{
71 | 					title: 'About Notepad',
72 | 					callback: function() { system.loader('webdows/webver.js'); }
73 | 				}
74 | 			]
75 | 		}
76 | 	];
77 | 	this.menuBar(bar);
78 | 	bod.html('');
79 | 	bod.find('textarea').attr('style', 'overflow:scroll;top:0px;left:0px;position:absolute;border:0;margin:0;width:100%;height:100%;margin:0;padding:0;resize:none;');
80 | });


--------------------------------------------------------------------------------
/webdows/paint.js.Droped.For.JSPaint:
--------------------------------------------------------------------------------
 1 | var win = new explorer.window()
 2 | .title('Paint')
 3 | .resize(800, 500)
 4 | .center();
 5 | win.on.close = function() {
 6 | 	clearInterval(resizeInterval);
 7 | };
 8 | var bod = win.body;
 9 | var canvas = $('').appendTo(win.body)[0];
10 | var resizeInterval = 0;
11 | window.canvas = canvas;
12 | window.ctx = ctx;
13 | window.bod = bod;
14 | 
15 | bod[0].onresize = function() {
16 | 	console.log('asdf');
17 | 	canvas.width = bod.width();
18 | 	canvas.height = bod.height();
19 | };
20 | var lastWidth = 0;
21 | var lastHeight = 0;
22 | resizeInterval = setInterval(function() {
23 | 	var width = bod.outerWidth();
24 | 	if(width !== lastWidth) {
25 | 		lastWidth = width;
26 | 		canvas.width = width;
27 | 	}
28 | 	var height = bod.outerHeight();
29 | 	if(height !== lastHeight) {
30 | 		lastHeight = height;
31 | 		canvas.height = height;
32 | 	}
33 | 	
34 | }, 60);
35 | 
36 | var ctx = canvas.getContext('2d');
37 | ctx.fillStyle = 'rgb(0, 0, 0)';
38 | ctx.beginPath();
39 | ctx.lineTo(100, 100);
40 | ctx.lineTo(200, 200);
41 | ctx.stroke();


--------------------------------------------------------------------------------
/webdows/resources/errorpages/generic.html:
--------------------------------------------------------------------------------
 1 | 
 2 | 
 3 | 	
 4 | 		Webdows Error
 5 | 		
 6 | 		
30 | 	
31 | 	
32 | 		Logo	
33 | 		

FloydCraft WebOS

34 |
35 |

36 | FloydCraft WebOS is not able to display this resource...
37 | Ensure the resource path is correct, If you're making
38 | your own resource ensure there are no syntax errors.

39 |
40 |
Floydraft 2011 - 2020 ©
41 | 42 | -------------------------------------------------------------------------------- /webdows/resources/explorer/1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/1.ogg -------------------------------------------------------------------------------- /webdows/resources/explorer/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/1.png -------------------------------------------------------------------------------- /webdows/resources/explorer/1.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/1.woff -------------------------------------------------------------------------------- /webdows/resources/explorer/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/10.png -------------------------------------------------------------------------------- /webdows/resources/explorer/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/2.png -------------------------------------------------------------------------------- /webdows/resources/explorer/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/4.png -------------------------------------------------------------------------------- /webdows/resources/explorer/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/6.png -------------------------------------------------------------------------------- /webdows/resources/explorer/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/7.png -------------------------------------------------------------------------------- /webdows/resources/explorer/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/8.png -------------------------------------------------------------------------------- /webdows/resources/explorer/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/9.png -------------------------------------------------------------------------------- /webdows/resources/explorer/basic/FCWebOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/basic/FCWebOS.png -------------------------------------------------------------------------------- /webdows/resources/explorer/basic/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/basic/thumbnail.png -------------------------------------------------------------------------------- /webdows/resources/explorer/bglos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/bglos.png -------------------------------------------------------------------------------- /webdows/resources/explorer/classic/FCWebOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/classic/FCWebOS.png -------------------------------------------------------------------------------- /webdows/resources/explorer/classic/clo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/classic/clo.png -------------------------------------------------------------------------------- /webdows/resources/explorer/classic/cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/classic/cur.png -------------------------------------------------------------------------------- /webdows/resources/explorer/classic/max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/classic/max.png -------------------------------------------------------------------------------- /webdows/resources/explorer/classic/min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/classic/min.png -------------------------------------------------------------------------------- /webdows/resources/explorer/classic/mmax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/classic/mmax.png -------------------------------------------------------------------------------- /webdows/resources/explorer/classic/sta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/classic/sta.png -------------------------------------------------------------------------------- /webdows/resources/explorer/classic/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/classic/thumbnail.png -------------------------------------------------------------------------------- /webdows/resources/explorer/explorer.css: -------------------------------------------------------------------------------- 1 | #desktop { 2 | position:absolute; 3 | top:0px; 4 | left:0px; 5 | width:100%; 6 | height:100%; 7 | -webkit-tap-highlight-color:transparent; 8 | -webkit-touch-callout:none; 9 | -webkit-user-select:none; 10 | -khtml-user-select:none; 11 | -moz-user-select:none; 12 | -ms-user-select:none; 13 | user-select:none; 14 | cursor:default; 15 | min-height:510px; 16 | min-width:410px; 17 | overflow:hidden; 18 | } 19 | button { 20 | height:21px; 21 | line-height:15px; 22 | padding-left:5px; 23 | padding-right:5px; 24 | } 25 | input[type=text] { 26 | height:18px; 27 | } 28 | * { 29 | outline:none; 30 | } 31 | @font-face { 32 | font-family: NotoSans; 33 | src: url('1.woff'); 34 | } 35 | #taskbar #middleframe .button.drag:not(.clone) { 36 | opacity:0; 37 | } 38 | #taskbar #middleframe .button.clone { 39 | position:absolute; 40 | margin-left:0px; 41 | pointer-events:none; 42 | } 43 | .icon { 44 | background-image:url('../icons/exei.ico'); 45 | background-size:100% 100%; 46 | width:16px; 47 | height:16px; 48 | display:inline-block; 49 | } 50 | .input.radio { 51 | margin: 3px 3px 0px 5px; 52 | } -------------------------------------------------------------------------------- /webdows/resources/explorer/mobile/FCWebOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/mobile/FCWebOS.png -------------------------------------------------------------------------------- /webdows/resources/explorer/mobile/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/mobile/bg.jpg -------------------------------------------------------------------------------- /webdows/resources/explorer/mobile/bg_alt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/mobile/bg_alt.jpg -------------------------------------------------------------------------------- /webdows/resources/explorer/mobile/bglos.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webdows/resources/explorer/mobile/cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/mobile/cur.png -------------------------------------------------------------------------------- /webdows/resources/explorer/mobile/exi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/mobile/exi.png -------------------------------------------------------------------------------- /webdows/resources/explorer/mobile/max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/mobile/max.png -------------------------------------------------------------------------------- /webdows/resources/explorer/mobile/min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/mobile/min.png -------------------------------------------------------------------------------- /webdows/resources/explorer/mobile/mmax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/mobile/mmax.png -------------------------------------------------------------------------------- /webdows/resources/explorer/mobile/sb1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/mobile/sb1.png -------------------------------------------------------------------------------- /webdows/resources/explorer/mobile/sb2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/mobile/sb2.png -------------------------------------------------------------------------------- /webdows/resources/explorer/mobile/sba1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/mobile/sba1.png -------------------------------------------------------------------------------- /webdows/resources/explorer/mobile/sba2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/mobile/sba2.png -------------------------------------------------------------------------------- /webdows/resources/explorer/mobile/sba3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/mobile/sba3.png -------------------------------------------------------------------------------- /webdows/resources/explorer/mobile/sba4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/mobile/sba4.png -------------------------------------------------------------------------------- /webdows/resources/explorer/mobile/so1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/mobile/so1.png -------------------------------------------------------------------------------- /webdows/resources/explorer/mobile/so2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/mobile/so2.png -------------------------------------------------------------------------------- /webdows/resources/explorer/mobile/so3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/mobile/so3.png -------------------------------------------------------------------------------- /webdows/resources/explorer/mobile/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/mobile/thumbnail.png -------------------------------------------------------------------------------- /webdows/resources/explorer/webdows/FCWebOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/webdows/FCWebOS.png -------------------------------------------------------------------------------- /webdows/resources/explorer/webdows/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/webdows/bg.jpg -------------------------------------------------------------------------------- /webdows/resources/explorer/webdows/bg_alt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/webdows/bg_alt.jpg -------------------------------------------------------------------------------- /webdows/resources/explorer/webdows/bglos.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webdows/resources/explorer/webdows/cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/webdows/cur.png -------------------------------------------------------------------------------- /webdows/resources/explorer/webdows/exi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/webdows/exi.png -------------------------------------------------------------------------------- /webdows/resources/explorer/webdows/max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/webdows/max.png -------------------------------------------------------------------------------- /webdows/resources/explorer/webdows/min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/webdows/min.png -------------------------------------------------------------------------------- /webdows/resources/explorer/webdows/mmax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/webdows/mmax.png -------------------------------------------------------------------------------- /webdows/resources/explorer/webdows/sb1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/webdows/sb1.png -------------------------------------------------------------------------------- /webdows/resources/explorer/webdows/sb2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/webdows/sb2.png -------------------------------------------------------------------------------- /webdows/resources/explorer/webdows/sba1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/webdows/sba1.png -------------------------------------------------------------------------------- /webdows/resources/explorer/webdows/sba2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/webdows/sba2.png -------------------------------------------------------------------------------- /webdows/resources/explorer/webdows/sba3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/webdows/sba3.png -------------------------------------------------------------------------------- /webdows/resources/explorer/webdows/sba4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/webdows/sba4.png -------------------------------------------------------------------------------- /webdows/resources/explorer/webdows/so1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/webdows/so1.png -------------------------------------------------------------------------------- /webdows/resources/explorer/webdows/so2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/webdows/so2.png -------------------------------------------------------------------------------- /webdows/resources/explorer/webdows/so3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/webdows/so3.png -------------------------------------------------------------------------------- /webdows/resources/explorer/webdows/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/explorer/webdows/thumbnail.png -------------------------------------------------------------------------------- /webdows/resources/icons/WebLink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/WebLink.png -------------------------------------------------------------------------------- /webdows/resources/icons/aler.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/aler.ico -------------------------------------------------------------------------------- /webdows/resources/icons/bmpi.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/bmpi.ico -------------------------------------------------------------------------------- /webdows/resources/icons/calc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/calc.ico -------------------------------------------------------------------------------- /webdows/resources/icons/clos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/clos.png -------------------------------------------------------------------------------- /webdows/resources/icons/cont.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/cont.ico -------------------------------------------------------------------------------- /webdows/resources/icons/desk.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/desk.ico -------------------------------------------------------------------------------- /webdows/resources/icons/docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/docs.png -------------------------------------------------------------------------------- /webdows/resources/icons/driv.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/driv.ico -------------------------------------------------------------------------------- /webdows/resources/icons/email.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/email.ico -------------------------------------------------------------------------------- /webdows/resources/icons/exei.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/exei.ico -------------------------------------------------------------------------------- /webdows/resources/icons/file.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/file.ico -------------------------------------------------------------------------------- /webdows/resources/icons/fold.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/fold.ico -------------------------------------------------------------------------------- /webdows/resources/icons/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/folder.png -------------------------------------------------------------------------------- /webdows/resources/icons/ghub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/ghub.png -------------------------------------------------------------------------------- /webdows/resources/icons/gifi.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/gifi.ico -------------------------------------------------------------------------------- /webdows/resources/icons/info.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/info.ico -------------------------------------------------------------------------------- /webdows/resources/icons/jpgi.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/jpgi.ico -------------------------------------------------------------------------------- /webdows/resources/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/logo.png -------------------------------------------------------------------------------- /webdows/resources/icons/mapapp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/mapapp.ico -------------------------------------------------------------------------------- /webdows/resources/icons/maxi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/maxi.png -------------------------------------------------------------------------------- /webdows/resources/icons/medi.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/medi.ico -------------------------------------------------------------------------------- /webdows/resources/icons/micr.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/micr.ico -------------------------------------------------------------------------------- /webdows/resources/icons/mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/mini.png -------------------------------------------------------------------------------- /webdows/resources/icons/misc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/misc.ico -------------------------------------------------------------------------------- /webdows/resources/icons/mous.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/mous.ico -------------------------------------------------------------------------------- /webdows/resources/icons/netw.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/netw.ico -------------------------------------------------------------------------------- /webdows/resources/icons/note.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/note.ico -------------------------------------------------------------------------------- /webdows/resources/icons/pain.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/pain.ico -------------------------------------------------------------------------------- /webdows/resources/icons/pers.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/pers.ico -------------------------------------------------------------------------------- /webdows/resources/icons/plog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/plog.png -------------------------------------------------------------------------------- /webdows/resources/icons/pngi.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/pngi.ico -------------------------------------------------------------------------------- /webdows/resources/icons/projects.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/projects.ico -------------------------------------------------------------------------------- /webdows/resources/icons/ques.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/ques.ico -------------------------------------------------------------------------------- /webdows/resources/icons/rami.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/rami.ico -------------------------------------------------------------------------------- /webdows/resources/icons/rege.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/rege.ico -------------------------------------------------------------------------------- /webdows/resources/icons/rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/rest.png -------------------------------------------------------------------------------- /webdows/resources/icons/rogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/rogo.png -------------------------------------------------------------------------------- /webdows/resources/icons/rules.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/rules.ico -------------------------------------------------------------------------------- /webdows/resources/icons/runi.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/runi.ico -------------------------------------------------------------------------------- /webdows/resources/icons/scre.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/scre.ico -------------------------------------------------------------------------------- /webdows/resources/icons/scre_ALT.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/scre_ALT.ico -------------------------------------------------------------------------------- /webdows/resources/icons/stck.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/stck.ico -------------------------------------------------------------------------------- /webdows/resources/icons/task.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/task.ico -------------------------------------------------------------------------------- /webdows/resources/icons/tscr.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/tscr.ico -------------------------------------------------------------------------------- /webdows/resources/icons/uaci.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/uaci.ico -------------------------------------------------------------------------------- /webdows/resources/icons/umlg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/umlg.png -------------------------------------------------------------------------------- /webdows/resources/icons/warn.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/warn.ico -------------------------------------------------------------------------------- /webdows/resources/icons/wpad.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/wpad.ico -------------------------------------------------------------------------------- /webdows/resources/icons/wsite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/icons/wsite.png -------------------------------------------------------------------------------- /webdows/resources/welcome/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/welcome/1.png -------------------------------------------------------------------------------- /webdows/resources/welcome/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmellis/FC-WebOS/21da8a232a937b85e3b4cc049c63038700c10f00/webdows/resources/welcome/2.png -------------------------------------------------------------------------------- /webdows/run.js: -------------------------------------------------------------------------------- 1 | new explorer.window() 2 | .title('Run') 3 | .icon('webdows/resources/icons/runi.ico') 4 | .resize(400,200) 5 | .controls([]) 6 | .center('bottom left', 25, -50) 7 | .callback(function() { 8 | function run() { 9 | system.loader(body.find('input').val(), function() { 10 | if(this == true) { 11 | window.close(); 12 | } 13 | }); 14 | } 15 | var body = this.body; 16 | var window = this; 17 | body.html('
Type the name of a program or resource and FC WebOS will open it for you.
Open:
'); 18 | body.css('font-size', '12px'); 19 | body.find('button').attr('style','float:right;width:84px;height:24px;margin-top:20px;margin-right:8px;'); 20 | body.find('.can').click(function() { 21 | window.close(); 22 | }); 23 | body.find('.ok').click(run); 24 | body.find('input').keyup(function(e) { 25 | if(e.keyCode == 13) { 26 | run(); 27 | } 28 | }); 29 | if(!system.is.mobile()) { 30 | body.find('input').focus(); 31 | } 32 | }); -------------------------------------------------------------------------------- /webdows/services/explorer/time.js: -------------------------------------------------------------------------------- 1 | var date = new Date(); 2 | $('#taskbar #time').html(system.formatAMPM(date)); -------------------------------------------------------------------------------- /webdows/system.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Project: FloydCraft WebOS 3 | Liscense: MIT 4 | Author: rmellis | tallulah95 5 | Origional Script: krisdb2009 6 | Date: 12/11/20 7 | */ 8 | new explorer.window() 9 | .title('System') 10 | .icon('webdows/resources/icons/scre.ico') 11 | .resize(500, 300) 12 | .center() 13 | .callback(function() { 14 | var win = this; 15 | function test() { 16 | var i = 0; 17 | try { 18 | for(i = 100; i <= 50000; i += 100) { 19 | localStorage.setItem('test', new Array((i * 1024) + 1).join('a')); 20 | } 21 | } catch(e) { 22 | localStorage.removeItem('test'); 23 | i = i - 100; 24 | } 25 | return i; 26 | } 27 | this.body.html('Local Storage:
  

Browser UA:
'+navigator.userAgent); 28 | this.body.find('button.lst').click(function() { 29 | if(localStorage && !localStorage.getItem('capacity')) { 30 | var CACHE = JSON.parse(JSON.stringify(localStorage)); 31 | localStorage.clear(); 32 | var i = test(); 33 | $.each(CACHE, function(i, v) { 34 | localStorage.setItem(i, v); 35 | }); 36 | localStorage.setItem('capacity', i) 37 | } else if(localStorage) { 38 | var i = localStorage.getItem('capacity'); 39 | } 40 | if(localStorage) { 41 | var j = test(); 42 | } 43 | h = i - j; 44 | g = h / 1000; 45 | f = i / 1000; 46 | win.body.find('span.1').text(g+'/'+f+'MB'); 47 | win.body.find('progress').attr('value', h).attr('max', i); 48 | }); 49 | }); -------------------------------------------------------------------------------- /webdows/system32/loadscrn.js: -------------------------------------------------------------------------------- 1 | var id = system.guid(); 2 | $('#bootlog').append(` 3 | 64 |
65 | 66 |
67 |
68 |
69 |
70 | `); 71 | function cleanup () { 72 | $('#'+id).remove(); 73 | } 74 | $(document).bind('mousedown.bload', '#'+id, function() { 75 | cleanup(); 76 | $(document).unbind('mousedown.bload'); 77 | }); 78 | var timer = setInterval(function() { 79 | $('#'+id+' #progress #progressFill').css('width', (system.bootLoader.current / system.bootLoader.total * 100)+'%'); 80 | if(system.bootLoader.loaded) { 81 | clearInterval(timer); 82 | cleanup(); 83 | } 84 | }, 100); -------------------------------------------------------------------------------- /webdows/taskmgr.js: -------------------------------------------------------------------------------- 1 | new explorer.window() 2 | .title('Task Manager') 3 | .icon('webdows/resources/icons/task.ico') 4 | .callback(function() { 5 | var b = this.body; 6 | var count = 0; 7 | setIntasderval(function() { 8 | b.html(count++); 9 | }, 100); 10 | console.log(script.path); 11 | }); --------------------------------------------------------------------------------