improving icons and fixing pipeline
All checks were successful
Build and Release to Staging / Build Vision Start (push) Successful in 9s
Build and Release to Staging / Build Vision Start Image (push) Successful in 1m4s
Build and Release to Staging / Deploy Vision Start (staging) (push) Successful in 2s
Build and Release / build (push) Successful in 51s
Build and Release / virus-total-check (push) Successful in 54s
Build and Release / release (push) Successful in 7s
Build and Release / Build Vision Start Image (push) Successful in 1m3s
Build and Release / Deploy Vision Start (production) (push) Successful in 2s

This commit is contained in:
2026-07-10 20:58:06 -03:00
parent babd31548c
commit 48ec764880
9 changed files with 8 additions and 8 deletions

View File

@@ -15,7 +15,6 @@ env:
jobs: jobs:
build: build:
name: Build Vision Start name: Build Vision Start
if: gitea.event_name == 'push'
runs-on: ubuntu-amd64 runs-on: ubuntu-amd64
steps: steps:
- name: Check out repository code - name: Check out repository code
@@ -28,11 +27,12 @@ jobs:
run: npm install run: npm install
- name: Run build - name: Run build
run: npm run build run: |
bash scripts/prepare_release.sh
npm run build
- name: Prepare release - name: Prepare release
run: | run: |
bash scripts/prepare_release.sh
mv dist vision-start/ mv dist vision-start/
mv extension vision-start/ mv extension vision-start/
mv manifest.json vision-start/ mv manifest.json vision-start/

View File

@@ -27,11 +27,12 @@ jobs:
run: npm install run: npm install
- name: Run build - name: Run build
run: npm run build run: |
bash scripts/prepare_release.sh
npm run build
- name: Prepare release - name: Prepare release
run: | run: |
bash scripts/prepare_release.sh
mv dist vision-start/ mv dist vision-start/
mv extension vision-start/ mv extension vision-start/
mv manifest.json vision-start/ mv manifest.json vision-start/

View File

@@ -1,5 +1,5 @@
<div style="display: flex; justify-content: center; font-size: 2rem; font-weight: bold;"> <div style="display: flex; justify-content: center; align-items: center; font-size: 2rem; font-weight: bold;">
Vision Start <img src="extension/icons/vision-48.png" alt="Vision Start" width="32" height="32" style="margin-right: 1rem;"> Vision Start
</div> </div>
<div style="display: flex; justify-content: center; font-size: 1.5rem;"> <div style="display: flex; justify-content: center; font-size: 1.5rem;">

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 314 B

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 657 B

After

Width:  |  Height:  |  Size: 7.5 KiB

BIN
icon.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 763 KiB

View File

@@ -88,7 +88,6 @@ vision-start/
├── types.ts # Core domain types (Config, Category, Website, Server, Wallpaper) ├── types.ts # Core domain types (Config, Category, Website, Server, Wallpaper)
├── constants.tsx # DEFAULT_CATEGORIES seed data ├── constants.tsx # DEFAULT_CATEGORIES seed data
├── manifest.json # Chrome MV3 manifest (newtab override, storage permission) ├── manifest.json # Chrome MV3 manifest (newtab override, storage permission)
├── icon.png # Extension icon source
├── components/ ├── components/
│ ├── Clock.tsx # Header clock widget │ ├── Clock.tsx # Header clock widget

Binary file not shown.

Before

Width:  |  Height:  |  Size: 763 KiB

After

Width:  |  Height:  |  Size: 265 KiB