Skip to content

Commit ddfc057

Browse files
committed
(v0.3.9-beta) Removed Settings + Others
The CHROMEBOOK finally dropped! i m now getting things ready to ship! i think i can do this by tmrw if not today. Anyways i removed the settings app for now.
1 parent c00fc7e commit ddfc057

File tree

4 files changed

+13
-12
lines changed

4 files changed

+13
-12
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ Your PC has been compromised by a group called the "HackClub". Can you regain co
5252
- [X] Animation (like transform into a small rectangle) on minimize! (Done v0.1.6.3)
5353
- [X] Make the system tray on the taskbar(right) more accurate to windows. (Done in v0.1.5.1)
5454
- [ ] Explorer App. (Started in v0.1.5.1). Sidebar (v0.1.5.2)
55+
- [ ] Make Settings app: Change wallpaper, show About, Brightness
5556
- [X] Tabs v0.1.5.3 BUG: TITLE IS OVERFLOWING (Fixed v0.1.5.4)
5657
- [X] Universal tab feature (generalised) using `tabs: true` in App.js (Added in v0.1.5.4)
5758
- [X] Notepad App. (Made in v0.1.5.5)
@@ -80,7 +81,7 @@ Your PC has been compromised by a group called the "HackClub". Can you regain co
8081
- [ ] Lock some apps (Hacked yk)
8182
- [ ] Stress test the terminal.
8283
- [X] Add games like MC(https://classic.minecraft.net/) and sm others. (Added v0.3.2)
83-
- [X] the grid snapping is offset from the place where icons snap when u release (Snxhit_)
84+
- [X] the grid snapping is offset from the place where icons snap when u release (Snxhit_) (Fixed v0.3.8)
8485
- [ ] Cmd opens on login and then the notepad opens automatically, remove the alert thing.
8586
- [X] WINDOW_DEFAULTS: Now the position of the windows change with the width and height, added the vars in App.js (Done v0.3.7)
8687

src/apps/explorer.jsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ function Explorer() {
6161
</div>
6262
</div>
6363

64-
<div className={"explorer-sidebar-separator"}><p></p></div>
64+
<div className={"explorer-sidebar-separator"}></div>
6565

6666
<div className={"explorer-sidebar-container"}>
6767
<div className={"explorer-sidebar-icon-container sidebar-desktop-icon"}>
@@ -94,7 +94,7 @@ function Explorer() {
9494
</div>
9595
</div>
9696

97-
<div className={"explorer-sidebar-separator"}><p></p></div>
97+
<div className={"explorer-sidebar-separator"}></div>
9898

9999
<div className={"explorer-sidebar-container"}>
100100
<div className={"explorer-sidebar-icon-container sidebar-this-pc-icon"}>
@@ -110,11 +110,11 @@ function Explorer() {
110110
</div>
111111
<div className="explorer-main">
112112
<div className={"explorer-grid"}>
113-
113+
<p>Coming in the next update!</p>
114114
</div>
115115
</div>
116116
<div className="explorer-details">
117-
<p>Details</p>
117+
{/*<p>Details</p>*/}
118118
</div>
119119
</div>
120120
</div>

src/apps/settings.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ function Settings() {
44

55
return (
66
<>
7-
<p>Settings</p>
7+
<p>Coming soon!</p>
88
</>
99
)
1010
}

src/routes/desktop.jsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ function Desktop() {
5555

5656
const [iconPositions, setIconPositions] = useState({
5757
explorer: { col: 1, row: 1 },
58-
vscode: { col: 1, row: 2 },
59-
settings: { col: 1, row: 3 },
60-
chrome: { col: 2, row: 1 },
61-
terminal: { col: 2, row: 2 },
58+
vscode: { col: 1, row: 3 },
59+
// settings: { col: 1, row: 3 },
60+
chrome: { col: 1, row: 2 },
61+
terminal: { col: 1, row: 4 },
6262
readme_txt: { col: 3, row: 3 },
63-
minecraft: { col: 3, row: 4 },
64-
forlorn: { col: 3, row: 5 },
63+
minecraft: { col: 2, row: 1 },
64+
forlorn: { col: 2, row: 2 },
6565
});
6666

6767
const [selectedIcon, setSelectedIcon] = useState(null);

0 commit comments

Comments
 (0)