Updated README files

This commit is contained in:
Prozilla 2024-06-18 17:27:48 +02:00
parent 7edb10269d
commit 32155b80d7
No known key found for this signature in database
GPG key ID: 5858DFE71CAF31EE
9 changed files with 34 additions and 119 deletions

View file

@ -1,5 +1,13 @@
# @prozilla-os/file-explorer
## 1.0.7
### Patch Changes
- Fixed typo in README files
- Updated dependencies
- @prozilla-os/core@1.0.10
## 1.0.6
### Patch Changes

View file

@ -1,7 +1,7 @@
<div align="center">
<br />
<p>
<a href="https://os.prozilla.dev/"><img src="https://os.prozilla.dev/assets/logo.png" height="200" alt="ProzillaOS" /></a>
<a href="https://os.prozilla.dev/"><img src="https://os.prozilla.dev/assets/logo.svg" height="200" alt="ProzillaOS" /></a>
</p>
<p>
<a href="https://github.com/prozilla-os/ProzillaOS/blob/main/LICENSE.md"><img alt="License" src="https://img.shields.io/github/license/Prozilla/ProzillaOS?style=flat-square&color=FF4D5B&label=License"></a>
@ -35,7 +35,7 @@ function App() {
return (
<ProzillaOS
systemName="Example"
tagLine="Power by ProzillaOS"
tagLine="Powered by ProzillaOS"
config={{
apps: new AppsConfig({
apps: [ fileExplorer ]
@ -51,116 +51,6 @@ function App() {
}
```
<br />
### `<ProzillaOS>` props
```tsx
{
systemName: string,
tagLine: string,
config: {
apps: {
apps: App[]
},
desktop: {
/** Array of URLs of wallpaper images */
wallpapers: string[];
/** URL of default wallpaper image */
defaultWallpaper: string;
/**
* @default 1
*/
defaultIconSize: 0 | 1 | 2;
/**
* 0: vertical, 1: horizontal
* @default 0
* */
defaultIconDirection: 0 | 1;
},
modals: {
/**
* Default size of a dialog box
* @default new Vector2(400, 200)
*/
defaultDialogSize: Vector2;
/**
* Default size of a file selector
* @default new Vector2(700, 400)
*/
defaultFileSelectorSize: Vector2;
},
taskbar: {
/**
* Height of the taskbar in CSS pixels
* @default 3 * 16
*/
height: number;
},
tracking: {
/**
* Enable tracking
* @default true
*/
enabled: boolean;
/** Google Analytics measurement ID */
GAMeasurementId: string;
},
virtualDrive: {
fileIcon: string;
infoFileIcon: string;
textFileIcon: string;
codeFileIcon: string;
folderIcon: string;
imagesFolderIcon: string;
textFolderIcon: string;
folderLinkIcon: string;
},
windows: {
/**
* @default 32
*/
screenMargin: number;
/**
* @default "-"
*/
titleSeparator: string;
/**
* If the user's screen is smaller than these values, windows will always be maximized
* @default new Vector2(350, 350)
*/
minScreenSize: Vector2;
}
}
}
```
## Links
- [Website/demo][website]

View file

@ -1,7 +1,7 @@
{
"name": "@prozilla-os/file-explorer",
"description": "A standard ProzillaOS application for browsing files.",
"version": "1.0.6",
"version": "1.0.7",
"author": {
"name": "Prozilla",
"email": "business@prozilla.dev",

View file

@ -1,5 +1,13 @@
# @prozilla-os/core
## 1.0.10
### Patch Changes
- Fixed typo in README files
- Updated dependencies
- @prozilla-os/file-explorer@1.0.7
## 1.0.9
### Patch Changes

View file

@ -1,7 +1,7 @@
<div align="center">
<br />
<p>
<a href="https://os.prozilla.dev/"><img src="https://os.prozilla.dev/assets/logo.png" height="200" alt="ProzillaOS" /></a>
<a href="https://os.prozilla.dev/"><img src="https://os.prozilla.dev/assets/logo.svg" height="200" alt="ProzillaOS" /></a>
</p>
<p>
<a href="https://github.com/prozilla-os/ProzillaOS/blob/main/LICENSE.md"><img alt="License" src="https://img.shields.io/github/license/Prozilla/ProzillaOS?style=flat-square&color=FF4D5B&label=License"></a>
@ -30,7 +30,7 @@ import { Desktop, ModalsView, ProzillaOS, Taskbar, WindowsView } from "@prozilla
function App() {
return (
<ProzillaOS systemName="Example" tagLine="Power by ProzillaOS">
<ProzillaOS systemName="Example" tagLine="Powered by ProzillaOS">
<Taskbar/>
<WindowsView/>
<ModalsView/>

View file

@ -1,7 +1,7 @@
{
"name": "@prozilla-os/core",
"description": "A React component library written in TypeScript for building web-based operating systems, made by Prozilla.",
"version": "1.0.9",
"version": "1.0.10",
"author": {
"name": "Prozilla",
"email": "business@prozilla.dev",

View file

@ -1,5 +1,14 @@
# prozilla-os
## 1.0.10
### Patch Changes
- Fixed typo in README files
- Updated dependencies
- @prozilla-os/file-explorer@1.0.7
- @prozilla-os/core@1.0.10
## 1.0.9
### Patch Changes

View file

@ -1,7 +1,7 @@
<div align="center">
<br />
<p>
<a href="https://os.prozilla.dev/"><img src="https://os.prozilla.dev/assets/logo.png" height="200" alt="ProzillaOS" /></a>
<a href="https://os.prozilla.dev/"><img src="https://os.prozilla.dev/assets/logo.svg" height="200" alt="ProzillaOS" /></a>
</p>
<p>
<a href="https://github.com/prozilla-os/ProzillaOS/blob/main/LICENSE.md"><img alt="License" src="https://img.shields.io/github/license/Prozilla/ProzillaOS?style=flat-square&color=FF4D5B&label=License"></a>
@ -30,7 +30,7 @@ import { Desktop, ModalsView, ProzillaOS, Taskbar, WindowsView } from "prozilla-
function App() {
return (
<ProzillaOS systemName="Example" tagLine="Power by ProzillaOS">
<ProzillaOS systemName="Example" tagLine="Powered by ProzillaOS">
<Taskbar/>
<WindowsView/>
<ModalsView/>

View file

@ -1,7 +1,7 @@
{
"name": "prozilla-os",
"description": "a React component library written in TypeScript for building web-based operating systems, made by Prozilla.",
"version": "1.0.9",
"version": "1.0.10",
"homepage": "https://os.prozilla.dev/",
"author": {
"name": "Prozilla",