Update README.md

This commit is contained in:
Internet Addict 2025-02-13 07:23:16 +00:00
parent 61bd6bba74
commit df3e8e3a83

View file

@ -54,6 +54,8 @@ Below is a detailed description of all the flags supported by the Spitfire Build
Skips updating the patches repository. Skips updating the patches repository.
- **`-r`**: - **`-r`**:
Runs the built project after the build process completes successfully. Runs the built project after the build process completes successfully.
- **`--skip-deps`**:
Skip checking for required system dependencies.
### **Compression and Upload Flags** ### **Compression and Upload Flags**
@ -81,24 +83,24 @@ Below is a detailed description of all the flags supported by the Spitfire Build
## Example usage: ## Example usage:
- **All steps**: - **All build steps**:
```sh ```sh
go run . -a go run . -a
``` ```
- **Build only**: - **All build setps without fetching new patches**:
```sh ```sh
go run . -b go run . -a --skip-patch-update
``` ```
- **Upload**: - **Upload**:
```sh ```sh
go run . --upload -c --upload-path=./mozilla-central/obj-x86_64-pc-linux-gnu/dist/bin go run . --upload -c
``` ```
- **Build and upload**: - **Build and upload**:
```sh ```sh
go run . --upload -c --upload-path=./mozilla-central/obj-x86_64-pc-linux-gnu/dist/bin -a go run . --upload -c -a
``` ```
- **Display all flags**: - **Display all flags**:
@ -148,65 +150,46 @@ c:a6af7ebb5c1382084704be0b5714ab026c819d63
## Repository structure ## Repository structure
[Link to repositary](https://sourceforge.net/projects/spitfire-browser/)
``` ```
spitfire-browser/ spitfire-browser/
├── browser/ ├── browser/
│ ├── amd64/ │ ├── amd64/
│ │ ├── stable/ │ │ ├── stable/
│ │ │ ├── latest/deb.tar.gz │ │ │ ├── vx.x.x/deb.tar.gz
│ │ │ ├── x.x.x/deb.tar.gz
│ │ ├── nightly/ │ │ ├── nightly/
│ │ ├── latest/deb.tar.gz
│ │ ├── yyyy-mm-dd/deb.tar.gz │ │ ├── yyyy-mm-dd/deb.tar.gz
│ ├── arm/ │ ├── arm/
│ │ ├── stable/ │ │ ├── stable/
│ │ │ ├── latest/ │ │ │ ├── vx.x.x/
│ │ │ ├── x.x.x/
│ │ ├── nightly/ │ │ ├── nightly/
│ │ ├── latest/
│ │ ├── yyyy-mm-dd/ │ │ ├── yyyy-mm-dd/
├── cli-package-manager/ ├── luncher/
│ ├── stable/ │ ├── stable/
│ │ ├── latest/ │ │ ├── vx.x.x/
│ │ ├── x.x.x/
│ ├── nightly/ │ ├── nightly/
│ ├── latest/
│ ├── yyyy-mm-dd/ │ ├── yyyy-mm-dd/
├── gui-installer/ ├── installer/
│ ├── stable/ │ ├── stable/
│ │ ├── latest/ │ │ ├── vx.x.x/
│ │ ├── x.x.x/
│ ├── nightly/ │ ├── nightly/
│ ├── latest/
│ ├── yyyy-mm-dd/ │ ├── yyyy-mm-dd/
├── gui-package-manager/ ├── addons/ (planned)
│ ├── stable/
│ │ ├── latest/
│ │ ├── x.x.x/
│ ├── nightly/
│ ├── latest/
│ ├── yyyy-mm-dd/
├── addons/
│ ├── themes/ │ ├── themes/
│ │ ├── stable/ │ │ ├── stable/
│ │ │ ├── latest/
│ │ │ ├── x.x.x/ │ │ │ ├── x.x.x/
│ │ ├── nightly/ │ │ ├── nightly/
│ │ ├── latest/
│ │ ├── yyyy-mm-dd/ │ │ ├── yyyy-mm-dd/
│ ├── custom-configs/ │ ├── custom-configs/
│ │ ├── stable/ │ │ ├── stable/
│ │ │ ├── latest/
│ │ │ ├── x.x.x/ │ │ │ ├── x.x.x/
│ │ ├── nightly/ │ │ ├── nightly/
│ │ ├── latest/
│ │ ├── yyyy-mm-dd/ │ │ ├── yyyy-mm-dd/
│ ├── search-engines/ │ ├── search-engines/
│ ├── stable/ │ ├── stable/
│ │ ├── latest/
│ │ ├── x.x.x/ │ │ ├── x.x.x/
│ ├── nightly/ │ ├── nightly/
│ ├── latest/
│ ├── yyyy-mm-dd/ │ ├── yyyy-mm-dd/
├── APPINDEX ├── APPINDEX
``` ```