The GitButler version control client, backed by Git, powered by Tauri/Rust/Svelte
Go to file
Kiril Videlov a9d74fdc48 🔨 Refactor timeline page components
- Update project timeline page to display date and time in a different format
- Add functions for path name and icon SVG
- Calculate session duration and display list of session files with icons

[src/routes/projects/[projectId]/timeline/+page.svelte]
- Update import paths to use double quotes
- Change the format of the date and time displayed
- Add a path to name function
- Add a path to icon SVG function
- Add a session duration calculation
- Add a session files list with icons
2023-02-24 22:15:53 +01:00
.github/workflows lint and check frontend on push 2023-02-24 11:01:23 +01:00
.vscode simple tauri example 2023-01-31 15:55:57 +01:00
scripts disable debug in release script 2023-02-20 17:01:33 +01:00
src 🔨 Refactor timeline page components 2023-02-24 22:15:53 +01:00
src-tauri more logs for watcher loops 2023-02-24 15:27:11 +01:00
static simple tauri example 2023-01-31 15:55:57 +01:00
.env.development Posthog integration GB-36 (#18) 2023-02-22 14:38:45 +01:00
.env.production Posthog integration GB-36 (#18) 2023-02-22 14:38:45 +01:00
.eslintignore sort out lint/format setup 2023-02-24 10:46:41 +01:00
.eslintrc.cjs fix remaining eslint issues 2023-02-24 11:00:17 +01:00
.gitignore get api url from .env file 2023-02-21 09:17:31 +01:00
.npmrc simple tauri example 2023-01-31 15:55:57 +01:00
.prettierignore sort out lint/format setup 2023-02-24 10:46:41 +01:00
.prettierrc sort out lint/format setup 2023-02-24 10:46:41 +01:00
package.json Found this nice way of doing async derived stores 2023-02-24 21:46:09 +01:00
pnpm-lock.yaml Found this nice way of doing async derived stores 2023-02-24 21:46:09 +01:00
postcss.config.cjs sort out lint/format setup 2023-02-24 10:46:41 +01:00
README.md dynamic release versioning 2023-02-17 16:09:24 +01:00
svelte.config.js sort out lint/format setup 2023-02-24 10:46:41 +01:00
tailwind.config.cjs sort out lint/format setup 2023-02-24 10:46:41 +01:00
tsconfig.json fix remaining eslint issues 2023-02-24 11:00:17 +01:00
vite.config.js sort out lint/format setup 2023-02-24 10:46:41 +01:00

development

prerequisites

see here for the list of software required to build / develope the app.

setup

then, make sure to install app dependencies:

$ pnpm install

run

now you should be able to run the app in development mode:

$ pnpm tauri dev

building

to build the app in production mode, run:

$ pnpm tauri build

releasing

Building is done via GitHub Action. Go to the link and select Run workflow from the desired branch.

versioning

When running the release action, you will have to choose one of major, minor, or patch release type. Action will generate a new version based on your input and current version found at https://app.gitbutler.com/releases.

publishing

To publish a version that you've just build, use Release Manager.

runners

Note that to build an arm64 macos app, you need to make sure that there is at least one self-hosted runner with macos-aarch64 label is online here.

If you are a lucky owner of an arm64 macos machine, feel free to run it yourself. Make sure to label it with macos-aarch64.