Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UI #4

Merged
merged 36 commits into from
Oct 10, 2024
Merged

UI #4

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
75e5720
Initial UI Commit
Loudbooks Oct 7, 2024
4b7cd33
Mostly finished implementation
Loudbooks Oct 7, 2024
02f0f28
Create bundle.yml
Loudbooks Oct 7, 2024
94db478
Update bundle.yml
Loudbooks Oct 7, 2024
aeb372f
Update bundle.yml
Loudbooks Oct 7, 2024
6306b83
Add remaining glyphs
Loudbooks Oct 7, 2024
ab8fd5e
Merge
Loudbooks Oct 7, 2024
1b337a9
Add icons
Loudbooks Oct 7, 2024
eb09d5f
Update bundle.yml
Loudbooks Oct 7, 2024
dc9aa89
Update bundle.yml
Loudbooks Oct 8, 2024
9bbecd3
Update bundle.yml
Loudbooks Oct 8, 2024
261f36d
Update bundle.yml
Loudbooks Oct 8, 2024
bba5452
Update bundle.yml
Loudbooks Oct 8, 2024
696aa20
Update bundle.yml
Loudbooks Oct 8, 2024
3cbfb2b
Decrease spacing
Loudbooks Oct 8, 2024
84af124
Merge remote-tracking branch 'origin/ui' into ui
Loudbooks Oct 8, 2024
c0465e5
Create macos-run.sh
Loudbooks Oct 8, 2024
cb9eb32
Delete pnpm-lock.yaml
Loudbooks Oct 8, 2024
2b0d6d7
Fix gray
Loudbooks Oct 8, 2024
68bd795
Merge remote-tracking branch 'refs/remotes/origin/ui' into ui
Loudbooks Oct 8, 2024
7dc08e5
Adjust Padding
Loudbooks Oct 8, 2024
fd796e8
Delete .github/workflows/rust.yml
Loudbooks Oct 8, 2024
02bb19b
Update README.md
Loudbooks Oct 8, 2024
4990534
Reorganize List
Loudbooks Oct 8, 2024
639e056
Merge remote-tracking branch 'refs/remotes/origin/ui' into ui
Loudbooks Oct 8, 2024
d904690
Update Version
Loudbooks Oct 8, 2024
424bac2
Enter
Loudbooks Oct 8, 2024
bc09954
Check disabled
Loudbooks Oct 8, 2024
045cf65
Decrease top margin
Loudbooks Oct 8, 2024
c7aac23
Unlisted
Loudbooks Oct 8, 2024
e66a2a4
Rename bundle.yml to build.yml
Loudbooks Oct 8, 2024
bdf698b
Update README.md
Loudbooks Oct 8, 2024
829ed0e
Update README.md
Loudbooks Oct 8, 2024
4078c41
Update build.yml
Loudbooks Oct 8, 2024
e79affa
Update README.md
Loudbooks Oct 8, 2024
f1ddf90
Merge branch 'master' into ui
Loudbooks Oct 8, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 53 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: Build

on:
push:
branches: [ "ui" ]
pull_request:
branches: [ "ui" ]

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macos-latest]

steps:
- uses: actions/checkout@v4

- name: Install Packages
run: |
npm i
npm install -g pnpm

- name: Run Tauri Build (MacOS)
if: matrix.os == 'macos-latest'
run: |
rustup target add x86_64-apple-darwin
pnpm tauri build --target universal-apple-darwin

- name: Run Tauri Build (Windows)
if: matrix.os == 'windows-latest'
run: pnpm tauri build

- name: Upload Artifact (MacOS Bundle)
if: matrix.os == 'macos-latest'
uses: actions/upload-artifact@v4
with:
name: ReportBook MacOS Bundle
path: ${{github.workspace}}/src-tauri/target/universal-apple-darwin/release/bundle/macos/ReportBook.app

- name: Upload Artifact (MacOS Binary)
if: matrix.os == 'macos-latest'
uses: actions/upload-artifact@v4
with:
name: ReportBook MacOS Binary
path: ${{github.workspace}}/src-tauri/target/universal-apple-darwin/release/reportbook

- name: Upload Artifact (Windows)
if: matrix.os == 'windows-latest'
uses: actions/upload-artifact@v4
with:
name: ReportBook Windows
path: ${{github.workspace}}\src-tauri\target\release\reportbook.exe
Loading