mirror of
https://github.com/ivabus/gui
synced 2025-06-08 00:00:27 +03:00
revise welcome text
This commit is contained in:
parent
349a2529f2
commit
d05e545ec1
2 changed files with 13 additions and 7 deletions
10
README.md
10
README.md
|
@ -25,8 +25,10 @@ xc build # only required if you modify the backend
|
||||||
xc dev # opens the app in dev mode
|
xc dev # opens the app in dev mode
|
||||||
```
|
```
|
||||||
|
|
||||||
Creating a locally built installer for local usage will not need codesigning and notarization, to skip the 2-steps:
|
Creating a locally built installer for local usage will not need code-signing
|
||||||
```
|
and notarization. To skip the 2-steps:
|
||||||
|
|
||||||
|
```sh
|
||||||
$ export CSC_IDENTITY_AUTO_DISCOVERY=false
|
$ export CSC_IDENTITY_AUTO_DISCOVERY=false
|
||||||
$ xc dist
|
$ xc dist
|
||||||
```
|
```
|
||||||
|
@ -40,7 +42,7 @@ If you have suggestions or ideas, start a [discussion]. If we agree, we’ll mov
|
||||||
Tag any commit in the main branch, then push directly to the main branch.
|
Tag any commit in the main branch, then push directly to the main branch.
|
||||||
Lets follow the [semver] versioning standard, prefixed with `v`:
|
Lets follow the [semver] versioning standard, prefixed with `v`:
|
||||||
|
|
||||||
```
|
```sh
|
||||||
$ git tag v1.0.0
|
$ git tag v1.0.0
|
||||||
$ git push origin tag v1.0.0
|
$ git push origin tag v1.0.0
|
||||||
```
|
```
|
||||||
|
@ -60,6 +62,7 @@ contribute to them:
|
||||||
The following can be run with [`xc`], eg. `xc build`
|
The following can be run with [`xc`], eg. `xc build`
|
||||||
|
|
||||||
## Setup
|
## Setup
|
||||||
|
|
||||||
Setup ensures that required configuration placeholder files are present and installs dependencies.
|
Setup ensures that required configuration placeholder files are present and installs dependencies.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
|
@ -70,6 +73,7 @@ fi
|
||||||
if [ ! -e modules/desktop/.env ]; then
|
if [ ! -e modules/desktop/.env ]; then
|
||||||
cp modules/desktop/.env.example modules/desktop/.env
|
cp modules/desktop/.env.example modules/desktop/.env
|
||||||
fi
|
fi
|
||||||
|
|
||||||
pnpm install
|
pnpm install
|
||||||
pnpm run -r prepare
|
pnpm run -r prepare
|
||||||
```
|
```
|
||||||
|
|
|
@ -16,11 +16,13 @@
|
||||||
<img class="object-contain" src="/images/welcome-bg.png" alt="welcome" />
|
<img class="object-contain" src="/images/welcome-bg.png" alt="welcome" />
|
||||||
</figure>
|
</figure>
|
||||||
<div class="relative mt-20 flex-grow px-12">
|
<div class="relative mt-20 flex-grow px-12">
|
||||||
<h1 class="text-primary mb-4 text-4xl">Welcome to the tea app!</h1>
|
<h1 class="text-primary mb-4 text-4xl">tea, the open store</h1>
|
||||||
<p class="font-inter mb-4">
|
<p class="font-inter mb-4">
|
||||||
This app is your gateway into the world of open-source software. Easily explore and manage
|
tea is your gateway to the vibrant world of open-source software;
|
||||||
packages with a click of a button. This app will notify you of any available software
|
a treasure-trove of apps, frameworks, libraries, tools, utilities and games.
|
||||||
updates to ensure you’re safe and secure. Under the hood is the powerful tea cli.
|
previously only accessible to the tech-savvy, tea unleashes the power of open source for everyone.
|
||||||
|
install packages, get updates and stay secure—all in the click of a button.
|
||||||
|
under the hood is the invisible yet powerful tea/cli.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<Button type="plain" color="secondary" class="w-7/12" onClick={() => close()}>
|
<Button type="plain" color="secondary" class="w-7/12" onClick={() => close()}>
|
||||||
|
|
Loading…
Reference in a new issue