Skip to content

Commit d4f004e

Browse files
authored
Merge branch 'main' into lstein/feature/wan-video-support
2 parents 5ee6f8f + b82b277 commit d4f004e

4 files changed

Lines changed: 22 additions & 23 deletions

File tree

invokeai/frontend/web/public/locales/en.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,7 @@
308308
"unknown": "Unknown",
309309
"unpin": "Unpin",
310310
"upload": "Upload",
311+
"userGuideLabel": "User Guide",
311312
"zoomIn": "Zoom In",
312313
"zoomOut": "Zoom Out",
313314
"updated": "Updated",
@@ -3506,17 +3507,16 @@
35063507
"whatsNew": {
35073508
"whatsNewInInvoke": "What's New in Invoke",
35083509
"items": [
3509-
"LLM Prompt Tools: Use local language models to expand prompts or generate prompts from images. Install a Text LLM model (e.g. Qwen2.5-1.5B-Instruct) to get started.",
3510-
"FLUX.2 Klein Support: InvokeAI now supports the new FLUX.2 Klein models (4B and 9B variants) with GGUF, FP8, and Diffusers formats. Features include txt2img, img2img, inpainting, and outpainting. See 'Starter Models' to get started.",
3511-
"DyPE support for FLUX models improves high-resolution (>1536 px up to 4K) images. Go to the 'Advanced Options' section to activate.",
3512-
"Z-Image Turbo diversity: Active 'Seed Variance Enhancer' under 'Advanced Options' to add diversity to your ZiT gens.",
3513-
"Multi-user mode supports multiple isolated users on the same server.",
3514-
"Enhanced support for Z-Image and FLUX.2 Models.",
3515-
"Multiple user interface enhancements and new canvas features."
3510+
"New model types: Qwen Image, Qwen Image Edit, Anima.",
3511+
"Support for hosted models: Gemini (Nano Banana), GPT Image, Qwen, Seedream, Wan",
3512+
"Private and shared image boards and workflows in multiuser mode",
3513+
"Canvas lasso tool, save/restore function, and the ability to hide those pesky preview tiles",
3514+
"Custom node manager",
3515+
"Redesigned download queue"
35163516
],
3517-
"takeUserSurvey": "📣 Let us know how you like InvokeAI. Take our User Experience Survey!",
35183517
"readReleaseNotes": "Read Release Notes",
3519-
"watchRecentReleaseVideos": "Watch Recent Release Videos",
3518+
"readTheDocs": "Read the Docs",
3519+
"readDocumentation": "Read Invoke Documentation",
35203520
"watchUiUpdatesOverview": "Watch UI Updates Overview"
35213521
},
35223522
"cropper": {

invokeai/frontend/web/src/features/system/components/SettingsModal/SettingsMenu.tsx

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,14 @@ import HotkeysModal from 'features/system/components/HotkeysModal/HotkeysModal';
1414
import { discordLink, githubLink } from 'features/system/store/constants';
1515
import { memo } from 'react';
1616
import { useTranslation } from 'react-i18next';
17-
import { PiBugBeetleBold, PiGearSixFill, PiInfoBold, PiKeyboardBold, PiToggleRightFill } from 'react-icons/pi';
17+
import {
18+
PiBookOpenBold,
19+
PiBugBeetleBold,
20+
PiGearSixFill,
21+
PiInfoBold,
22+
PiKeyboardBold,
23+
PiToggleRightFill,
24+
} from 'react-icons/pi';
1825
import { RiDiscordFill, RiGithubFill } from 'react-icons/ri';
1926

2027
import SettingsModal from './SettingsModal';
@@ -35,6 +42,9 @@ const SettingsMenu = () => {
3542
<Portal>
3643
<MenuList>
3744
<MenuGroup title={t('common.communityLabel')}>
45+
<MenuItem as="a" href="https://invoke.ai/" target="_blank" icon={<PiBookOpenBold />}>
46+
{t('common.userGuideLabel')}
47+
</MenuItem>
3848
<MenuItem as="a" href={githubLink} target="_blank" icon={<RiGithubFill />}>
3949
{t('common.githubLabel')}
4050
</MenuItem>

invokeai/frontend/web/src/features/ui/components/WhatsNew.tsx

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -28,24 +28,13 @@ export const WhatsNew = () => {
2828
<Flex gap={4} flexDir="column">
2929
<UnorderedList fontSize="sm">{items}</UnorderedList>
3030
<Flex flexDir="column" gap={1}>
31-
<ExternalLink
32-
fontSize="sm"
33-
fontWeight="semibold"
34-
label={t('whatsNew.takeUserSurvey')}
35-
href="https://forms.gle/rCE5KuQ7Wfrd1UnS7"
36-
/>
3731
<ExternalLink
3832
fontSize="sm"
3933
fontWeight="semibold"
4034
label={t('whatsNew.readReleaseNotes')}
4135
href={`https://github.com/invoke-ai/InvokeAI/releases/tag/v${data?.version}`}
4236
/>
43-
<ExternalLink
44-
fontSize="sm"
45-
fontWeight="semibold"
46-
label={t('whatsNew.watchRecentReleaseVideos')}
47-
href="https://www.youtube.com/@invokeai/videos"
48-
/>
37+
<ExternalLink fontSize="sm" fontWeight="semibold" label={t('whatsNew.readTheDocs')} href="https://invoke.ai/" />
4938
</Flex>
5039
</Flex>
5140
);
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "6.12.0.post1"
1+
__version__ = "6.13.0.post1"

0 commit comments

Comments
 (0)