-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update default TurboMix LoRA (#51)
* fix: update default TurboMix LoRA * feat: add build id to footer * chore: update footer padding and add animated "Made With" emoji component * chore: update changelog
- Loading branch information
1 parent
d5cda1b
commit eb15a6f
Showing
10 changed files
with
95 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import React, { useState, useEffect } from 'react'; | ||
|
||
const emojis = ['🎨', '😀', '🖌️', '🖍️', '☀️', '🍻', '❤️', '🎉', '🦄', '🤖', '💻', '😬', '🤪', '✨']; | ||
|
||
export default function AnimatedEmoji() { | ||
const [currentEmoji, setCurrentEmoji] = useState(emojis[0]); | ||
|
||
useEffect(() => { | ||
const interval = setInterval(() => { | ||
setCurrentEmoji(emojis[Math.floor(Math.random() * emojis.length)]); | ||
}, 3000); | ||
|
||
return () => clearInterval(interval); | ||
}, []); | ||
|
||
return <span className="inline-block w-6">{currentEmoji}</span>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { AppStore } from "@/app/_stores/AppStore" | ||
import { useStore } from "statery" | ||
|
||
export default function BuildId() { | ||
const { buildId } = useStore(AppStore) | ||
|
||
if (!buildId) return null | ||
|
||
return <div className="w-full text-center text-xs">v{buildId}</div> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# 2024.08.29 (v2.0.6-beta) | ||
|
||
- (fix) Update default TurboMix LoRA due to change in default sampler (k_euler_a) | ||
- (fix) Padding issues with footer | ||
- (feat) Add build ID to footer | ||
- (feat) Update "Made with" message in footer to use random rotating emoji |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters