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

Add auto-update workflow #786

Merged
merged 27 commits into from
May 29, 2024
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
c3f8562
Add auto-update workflow
garrettmflynn May 20, 2024
6e1d109
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] May 20, 2024
5078d88
Intelligently render bytes
garrettmflynn May 20, 2024
3aa665f
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] May 20, 2024
dc25d64
Merge branch 'main' into autoupdate
garrettmflynn May 20, 2024
60d9e73
Merge branch 'main' into autoupdate
CodyCBakerPhD May 21, 2024
c5d237f
attempt to resolve conflict
CodyCBakerPhD May 29, 2024
bacbce8
Merge branch 'main' into autoupdate
CodyCBakerPhD May 29, 2024
1ed277b
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] May 29, 2024
230e491
fix improper conflicts
CodyCBakerPhD May 29, 2024
8f2ec90
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] May 29, 2024
ea768a9
remove getting started page; correct relative path to assets
CodyCBakerPhD May 29, 2024
6e2c586
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] May 29, 2024
c52f4d6
swap to base 10
CodyCBakerPhD May 29, 2024
b093a70
Merge branch 'autoupdate' of https://github.com/neurodatawithoutborde…
CodyCBakerPhD May 29, 2024
c45b055
fix relative paths again
CodyCBakerPhD May 29, 2024
96d5c89
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] May 29, 2024
c36b461
fix relative paths again
CodyCBakerPhD May 29, 2024
391bca4
fix relative paths again
CodyCBakerPhD May 29, 2024
d6cd1b7
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] May 29, 2024
be5a4eb
Merge branch 'main' into autoupdate
garrettmflynn May 29, 2024
a78b4d7
Update SettingsPage.js
garrettmflynn May 29, 2024
43b1ed6
Update SettingsPage.js
garrettmflynn May 29, 2024
4aa5384
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] May 29, 2024
de0dd02
Merge branch 'main' into autoupdate
CodyCBakerPhD May 29, 2024
e28a5e7
Merge branch 'main' into autoupdate
CodyCBakerPhD May 29, 2024
d0f90ad
Merge branch 'main' into autoupdate
CodyCBakerPhD May 29, 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
Prev Previous commit
Next Next commit
swap to base 10
CodyCBakerPhD committed May 29, 2024
commit c52f4d6ca8590983f1050250acc9f898c31f44ed
4 changes: 2 additions & 2 deletions src/electron/frontend/core/components/ProgressBar.ts
Original file line number Diff line number Diff line change
@@ -26,8 +26,8 @@ export function humanReadableBytes(size: number | string) {
size = parseFloat(size);

// Loop until the size is less than 1024 and increment the unit
while (size >= 1024 && index < units.length - 1) {
size /= 1024;
while (size >= 1000 && index < units.length - 1) {
size /= 1000;
index += 1;
}