Skip to content

Commit bedf5f5

Browse files
committed
Update changelog
1 parent 49bab72 commit bedf5f5

File tree

3 files changed

+10
-50
lines changed

3 files changed

+10
-50
lines changed

CHANGELOG.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
## Upcoming [Main] - tbd
5+
## Upcoming [0.6.0] - tbd
66

77
> [!CAUTION]
88
> This update has breaking changes!
@@ -42,9 +42,9 @@ All notable changes to this project will be documented in this file.
4242
- MQTT library updated
4343
- Analytics task was refactored into a loop() function which is called by the ESP32-sveltekit main task.
4444
- Updated PsychicHttp to v1.2.1 incl. patches.
45-
- Updated DaisyUI
45+
- Updated to DaisyUI 5 and Tailwind CSS 4
4646
- Updated Svelte 5 --> see [Svelte 5 Migration Guide](https://svelte.dev/docs/svelte/v5-migration-guide)
47-
- Changed platform to [PIO Arduino](https://github.com/pioarduino/platform-espressif32)
47+
- Changed platform to [PIO Arduino](https://github.com/pioarduino/platform-espressif32) using Arduino 3 Core. Also upgrades ESP-IDF to v5.
4848
- ESPD_LOGx: replace first argument with TAG and define TAG as 🐼 [#85](https://github.com/theelims/ESP32-sveltekit/pull/85)
4949
- Replace rtc_get_reset_reason(0) with esp_reset_reason() [#86](https://github.com/theelims/ESP32-sveltekit/pull/86)
5050

@@ -77,13 +77,13 @@ npm install --force
7777
npx sv migrate svelte-5
7878
```
7979

80-
Also DaisyUI and Tailwind CSS have been updated to their last major revision. Run the official Tailwind upgrade tool:
80+
Also DaisyUI and Tailwind CSS have been updated to their last major versions. Run the official Tailwind upgrade tool:
8181

8282
```
8383
npx @tailwindcss/upgrade
8484
```
8585

86-
This will migrate some of your svelte files to the new naming convention of Tailwind. For DaisyUI follow this [guide](https://daisyui.com/docs/upgrade/#changes-from-v4). Likely you'll need to redo all forms, as the components behave differently. Forms will need the a `fieldset` class. Inputs will need an additional `w-full` to have the same behavior as before. And [labels](https://daisyui.com/components/label/) have a different syntax, too.
86+
This will migrate some of your svelte files to the new naming convention of Tailwind. For DaisyUI follow this [guide](https://daisyui.com/docs/upgrade/#changes-from-v4). Likely you'll need to redo all forms, as the components behave differently. Forms will need the `fieldset` class. Inputs will need an additional `w-full` to have the same behavior as before. And [labels](https://daisyui.com/components/label/) have a different syntax, too.
8787

8888
The themes are to be found in `app.css` now. Add them back if they had been changed from the default.
8989

interface/README.md

Lines changed: 0 additions & 38 deletions
This file was deleted.

interface/src/routes/user/+page.svelte

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -154,11 +154,11 @@
154154
>
155155
<SettingsCard collapsible={false}>
156156
{#snippet icon()}
157-
<Users class="lex-shrink-0 mr-2 h-6 w-6 self-end" />
158-
{/snippet}
157+
<Users class="lex-shrink-0 mr-2 h-6 w-6 self-end" />
158+
{/snippet}
159159
{#snippet title()}
160-
<span >Manage Users</span>
161-
{/snippet}
160+
<span>Manage Users</span>
161+
{/snippet}
162162
{#await getSecuritySettings()}
163163
<Spinner />
164164
{:then nothing}
@@ -220,9 +220,7 @@
220220
users will be signed out.</span
221221
>
222222
</div>
223-
<label class="label" for="secret">
224-
<span class="label-text text-md">JWT Secret</span>
225-
</label>
223+
<label class="label" for="secret">JWT Secret</label>
226224
<InputPassword bind:value={securitySettings.jwt_secret} id="secret" />
227225
<div class="mt-6 flex justify-end">
228226
<button class="btn btn-primary" onclick={() => postSecuritySettings(securitySettings)}

0 commit comments

Comments
 (0)