Skip to content

Commit

Permalink
Merge pull request platinum-browser#6 from michaeleldar/develop
Browse files Browse the repository at this point in the history
Fix inspect keyboard shortcuts and add build.sh
  • Loading branch information
redstone-dev authored Nov 6, 2022
2 parents 2cfa290 + f652675 commit 0d19940
Show file tree
Hide file tree
Showing 6 changed files with 12,071 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ node_modules
out
out/*
# developers can build tailwind themselves
output/
output/
.DS_Store
25 changes: 24 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,29 @@ Platinum is a hobby project entirely managed and written by the community. It is
3. Scroll down and click on the file for your specific platform (Windows = `.exe`, Debian Linux distros = `.deb`, etc.)
4. Open the downloaded file then let Platinum install!

## Building from source
### Windows
Run
```
git clone https://github.com/redstone-scratch/Platinum && cd Platinum
npm/pnpm install
npm/pnpm run tailwind:once
npm/pnpm run make
```
The output is in the out directory.

### Linux
Run
```
git clone https://github.com/redstone-scratch/Platinum && cd Platinum
bash build.sh
```
The output is in the out directory.

## About this fork
This fork is meant to be a way to easily test and review new features before they reach stable Platinum.
If you care even a bit about stability, don't use this as your daily driver. Instead use [stable platinum](https://github.com/redstone-scratch/Platinum).

## Contributors

This section will update automatically as we get contribut*o*rs.
This section will update automatically as we get contribut*o*rs.
3 changes: 3 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
npm install
npm run tailwind:once
npm run make
Loading

0 comments on commit 0d19940

Please sign in to comment.