Skip to content

Commit 95048d1

Browse files
committed
Changed license to GNU GPL v3
1 parent 8c73ac6 commit 95048d1

File tree

28 files changed

+944
-52
lines changed

28 files changed

+944
-52
lines changed

LICENSE

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.

LICENSE.md

Lines changed: 0 additions & 21 deletions
This file was deleted.

README.md

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,16 @@
1313

1414
## About
1515

16-
This monorepo contains the source code of [os.prozilla.dev][demo] as well as multiple packages. You can find the main package at [`prozilla-os`][prozilla-os].
16+
This repository contains the source code of [os.prozilla.dev][demo] as well as multiple packages. You can find the main package at [`prozilla-os`][prozilla-os].
1717

1818
ProzillaOS is a web-based operating system inspired by Ubuntu Linux and Windows. It is made with React, Vite and TypeScript by [Prozilla][prozilla].
1919

20+
<div align="center">
21+
<br />
22+
<a href="https://os.prozilla.dev/"><img src="https://os.prozilla.dev/assets/screenshots/screenshot-files-info-taskbar-desktop.png" width="720" alt="Screenshot of ProzillaOS" /></a>
23+
<br />
24+
</div>
25+
2026
## Packages
2127

2228
### Libraries (public)
@@ -108,13 +114,14 @@ ProzillaOS uses the package manager [pnpm](https://pnpm.io/) to run scripts.
108114

109115
These resources can help you get started with ProzillaOS.
110116

117+
- [Getting started guide](https://os.prozilla.dev/docs/guides/getting-started)
111118
- [prozilla-os/ProzillaOS-boilerplate][boilerplate]: Boilerplate code for a React Vite app implementing ProzillaOS
112119

113-
<div align="center">
114-
<br />
115-
<a href="https://os.prozilla.dev/"><img src="https://os.prozilla.dev/assets/screenshots/screenshot-files-info-taskbar-desktop.png" width="720" alt="Screenshot of ProzillaOS" /></a>
116-
<br />
117-
</div>
120+
121+
## License
122+
123+
ProzillaOS is licensed under the [GNU General Public License][license].
124+
118125

119126
[demo]: https://os.prozilla.dev/
120127
[docs]: https://os.prozilla.dev/docs
@@ -136,4 +143,5 @@ These resources can help you get started with ProzillaOS.
136143
[media-viewer]: ./packages/apps/media-viewer/
137144
[browser]: ./packages/apps/browser/
138145
[calculator]: ./packages/apps/calculator/
139-
[logic-sim]: ./packages/apps/logic-sim/
146+
[logic-sim]: ./packages/apps/logic-sim/
147+
[license]: ./LICENSE

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
},
99
"homepage": "https://os.prozilla.dev/",
1010
"type": "module",
11+
"license": "GPL-3.0-only",
1112
"scripts": {
1213
"preinstall": "npx only-allow pnpm",
1314
"start": "pnpm run demo:start",

packages/apps/browser/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# @prozilla-os/browser
22

3+
## 1.1.0
4+
5+
### Minor Changes
6+
7+
- Changed license to GNU General Public License
8+
9+
### Patch Changes
10+
11+
- Updated dependencies
12+
- @prozilla-os/core@1.2.0
13+
14+
## 1.0.5
15+
16+
### Patch Changes
17+
18+
- Added link to documentation site
19+
- Updated dependencies
20+
- @prozilla-os/core@1.1.2
21+
322
## 1.0.4
423

524
### Patch Changes

packages/apps/browser/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@prozilla-os/browser",
33
"description": "A ProzillaOS application for browsing the internet.",
4-
"version": "1.0.4",
4+
"version": "1.1.0",
55
"homepage": "https://os.prozilla.dev/browser",
66
"author": {
77
"name": "Prozilla",
@@ -19,7 +19,7 @@
1919
"url": "git+https://github.com/prozilla-os/ProzillaOS.git",
2020
"directory": "packages/apps/browser"
2121
},
22-
"license": "MIT",
22+
"license": "GPL-3.0-only",
2323
"dependencies": {
2424
"@prozilla-os/core": "workspace:*",
2525
"react": "^18.3.1"

packages/apps/calculator/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# @prozilla-os/calculator
22

3+
## 1.1.0
4+
5+
### Minor Changes
6+
7+
- Changed license to GNU General Public License
8+
9+
### Patch Changes
10+
11+
- Updated dependencies
12+
- @prozilla-os/core@1.2.0
13+
14+
## 1.0.5
15+
16+
### Patch Changes
17+
18+
- Added link to documentation site
19+
- Updated dependencies
20+
- @prozilla-os/core@1.1.2
21+
322
## 1.0.4
423

524
### Patch Changes

packages/apps/calculator/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@prozilla-os/calculator",
33
"description": "A ProzillaOS application for making basic calculations.",
4-
"version": "1.0.4",
4+
"version": "1.1.0",
55
"homepage": "https://os.prozilla.dev/calculator",
66
"author": {
77
"name": "Prozilla",
@@ -19,7 +19,7 @@
1919
"url": "git+https://github.com/prozilla-os/ProzillaOS.git",
2020
"directory": "packages/apps/calculator"
2121
},
22-
"license": "MIT",
22+
"license": "GPL-3.0-only",
2323
"dependencies": {
2424
"@prozilla-os/core": "workspace:*",
2525
"react": "^18.3.1"

packages/apps/file-explorer/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# @prozilla-os/file-explorer
22

3+
## 1.1.0
4+
5+
### Minor Changes
6+
7+
- Changed license to GNU General Public License
8+
9+
### Patch Changes
10+
11+
- Updated dependencies
12+
- @prozilla-os/core@1.2.0
13+
14+
## 1.0.16
15+
16+
### Patch Changes
17+
18+
- Added link to documentation site
19+
- Updated dependencies
20+
- @prozilla-os/core@1.1.2
21+
322
## 1.0.15
423

524
### Patch Changes

packages/apps/file-explorer/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@prozilla-os/file-explorer",
33
"description": "A standard ProzillaOS application for browsing files.",
4-
"version": "1.0.15",
4+
"version": "1.1.0",
55
"homepage": "https://os.prozilla.dev/file-explorer",
66
"author": {
77
"name": "Prozilla",
@@ -19,7 +19,7 @@
1919
"url": "git+https://github.com/prozilla-os/ProzillaOS.git",
2020
"directory": "packages/apps/file-explorer"
2121
},
22-
"license": "MIT",
22+
"license": "GPL-3.0-only",
2323
"dependencies": {
2424
"@fortawesome/fontawesome-svg-core": "^6.5.2",
2525
"@fortawesome/free-solid-svg-icons": "^6.5.2",

0 commit comments

Comments
 (0)