From ae4650aaae2efe7062e83b31a5de047cd865e849 Mon Sep 17 00:00:00 2001 From: Jaswanth Ch Date: Sat, 24 Dec 2022 15:31:37 +0530 Subject: [PATCH 01/40] Update README.md --- README.md | 24 ++---------------------- 1 file changed, 2 insertions(+), 22 deletions(-) diff --git a/README.md b/README.md index d8dcb3f0..14df8e43 100644 --- a/README.md +++ b/README.md @@ -1,28 +1,8 @@ -> 🛑🛑 Note: This is the new iteration of macOS Web written in Svelte. Previous version written in Preact is available at [PuruVJ/macos-preact](https://github.com/puruvj/macos-preact) 🛑🛑 - # Mac OS Ventura Web This open source project aims to replicate some of the Mac OS(Monterey, at the time of writing)'s desktop experience on web, using Svelte! 🔗🔗 [macos-web.app](https://macos.now.sh) -# Why - -I've always been very fascinated with macOS, and have never owned a Mac/book. So I'm making the most beautiful aspect of macOS, its desktop, myself. For web. Inspired from [WinXP](https://winxp.now.sh/). - -# Stack - -- Framework - Svelte (Earlier Preact) -- Bundler - Vite, for super fast development. -- Component Library - None!! -- Styling Solution - SCSS. - -# When will it be ready? - -![Who knows?](https://i.imgur.com/6xfbPzs.gif) - -# Can I contribute? - -Sure, open an issue, point out errors, and what not. Wanna fix something yourselves, you're welcome to open a PR and I appreciate it. - -[![Hosted on Vercel](https://www.datocms-assets.com/31049/1618983297-powered-by-vercel.svg)](https://vercel.com/?utm_source=purus-projects&utm_campaign=oss) +Right now creating a notes app. +Notes app by Jaswanth. From 77a8a88ba4e9dd906cdd04f1824110b1e191c656 Mon Sep 17 00:00:00 2001 From: Jaswanth Ch Date: Sun, 25 Dec 2022 11:28:55 +0530 Subject: [PATCH 02/40] Update apps.store.ts --- src/stores/apps.store.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/stores/apps.store.ts b/src/stores/apps.store.ts index 771d272a..8dbf5448 100644 --- a/src/stores/apps.store.ts +++ b/src/stores/apps.store.ts @@ -8,6 +8,7 @@ export const openApps = writable>({ wallpapers: false, finder: true, vscode: false, + notes: false, calculator: false, // safari: false, appstore: false, @@ -35,6 +36,7 @@ export const appZIndices = writable>({ wallpapers: 0, finder: 0, vscode: 0, + notes: 0, calculator: 0, // safari: 0, appstore: 0, @@ -55,6 +57,7 @@ export const appsInFullscreen = writable>({ wallpapers: false, finder: false, vscode: false, + notes: false, calculator: false, // safari: false, appstore: false, From e89fed1f165ff36371433e4d36b6d479926ec71e Mon Sep 17 00:00:00 2001 From: Jaswanth Ch Date: Sun, 25 Dec 2022 11:30:53 +0530 Subject: [PATCH 03/40] Update apps-config.ts --- src/configs/apps/apps-config.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/configs/apps/apps-config.ts b/src/configs/apps/apps-config.ts index cf494b19..8445e598 100644 --- a/src/configs/apps/apps-config.ts +++ b/src/configs/apps/apps-config.ts @@ -25,6 +25,11 @@ const calendar = createAppConfig({ resizable: true, }); +const notes = createAppConfig({ + title: 'Notes', + resizable: true, +}); + const vscode = createAppConfig({ title: 'VSCode', resizable: true, @@ -100,6 +105,7 @@ export const appsConfig = { wallpapers, calculator, calendar, + notes, vscode, appstore, // safari, From bde2d81415598c61f2969117b2b2ef82dfca07e0 Mon Sep 17 00:00:00 2001 From: Jaswanth Ch Date: Sun, 25 Dec 2022 11:33:02 +0530 Subject: [PATCH 04/40] Update AppNexus.svelte --- src/components/apps/AppNexus.svelte | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/apps/AppNexus.svelte b/src/components/apps/AppNexus.svelte index 286b1eee..f49b021c 100644 --- a/src/components/apps/AppNexus.svelte +++ b/src/components/apps/AppNexus.svelte @@ -1,5 +1,6 @@ + +
+
+ + +
+ + + + +
+
+ + + +
+ +
+