Skip to content

Commit

Permalink
ship it
Browse files Browse the repository at this point in the history
  • Loading branch information
Kesomannen committed Sep 3, 2024
1 parent 9949082 commit 5a1cec5
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 96 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## 0.8.3 (2024-09-03)

### Added

Expand Down
89 changes: 2 additions & 87 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gale",
"version": "0.8.2",
"version": "0.8.3",
"private": true,
"scripts": {
"dev": "vite dev",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gale"
version = "0.8.2"
version = "0.8.3"
description = "A lightweight mod manager for Thunderstore"
authors = ["Kesomannen"]
license = "GPL-3.0"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"productName": "Gale",
"version": "0.8.2",
"version": "0.8.3",
"identifier": "com.kesomannen.gale",
"build": {
"beforeBuildCommand": "npm run build",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/modlist/InstallProgressPopup.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
class="relative w-full h-4 mt-2 bg-gray-900 rounded-full overflow-hidden"
>
<div
class="absolute top-0 left-0 h-full bg-green-600 rounded-full transition-all"
class="absolute top-0 left-0 h-full bg-green-600 rounded-l-full transition-all"
style="width: {progress.totalProgress * 100}%"
/>
</Progress.Root>
Expand Down
6 changes: 3 additions & 3 deletions src/routes/config/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
Loading config...
</div>
{:else if files.length === 0}
<div class="text-center mt-auto mb-auto text-slate-300 text-lg">No config files found</div>
<div class="flex items-center justify-center h-full text-slate-300 text-lg">No config files found</div>
{:else}
<div class="relative mx-2 my-2">
<SearchBar bind:value={searchTerm} placeholder="Search for files..." brightness={800} />
Expand Down Expand Up @@ -221,7 +221,7 @@
{/if}
</svelte:fragment>
</Tooltip>
{#if entry.value.type === 'string'}
{#if entry.value.type === 'string'}
<StringConfig entryId={entryId(entry)} />
{:else if entry.value.type === 'enum'}
<EnumConfig entryId={entryId(entry)} />
Expand All @@ -232,7 +232,7 @@
{:else if entry.value.type == 'other'}
<StringConfig entryId={entryId(entry)} isOther={true} />
{:else if isNum(entry.value)}
{#if entry.value.content.range}
{#if entry.value.content.range !== undefined}
<SliderConfig entryId={entryId(entry)} />
{:else}
<NumberInputConfig entryId={entryId(entry)} />
Expand Down

0 comments on commit 5a1cec5

Please sign in to comment.