mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-07-04 13:22:57 +00:00
Add the DLR as the first titan supporter (#456)
This commit is contained in:
parent
9fa0f95611
commit
ba236c4012
@ -2917,6 +2917,9 @@ UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T2355807535"] = "Thanks, Nils, for
|
|||||||
-- The first 10 supporters who make a one-time contribution:
|
-- The first 10 supporters who make a one-time contribution:
|
||||||
UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T2410456125"] = "The first 10 supporters who make a one-time contribution:"
|
UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T2410456125"] = "The first 10 supporters who make a one-time contribution:"
|
||||||
|
|
||||||
|
-- We would like to thank the DLR for its courage in supporting MindWork AI Studio at an early stage. The DLR not only uses AI Studio in various projects but also supports its further development with personnel resources.
|
||||||
|
UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T2438064678"] = "We would like to thank the DLR for its courage in supporting MindWork AI Studio at an early stage. The DLR not only uses AI Studio in various projects but also supports its further development with personnel resources."
|
||||||
|
|
||||||
-- Supporters
|
-- Supporters
|
||||||
UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T2929332068"] = "Supporters"
|
UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T2929332068"] = "Supporters"
|
||||||
|
|
||||||
@ -2926,6 +2929,9 @@ UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T3060804484"] = "Content Contribut
|
|||||||
-- Financial Support
|
-- Financial Support
|
||||||
UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T3061261435"] = "Financial Support"
|
UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T3061261435"] = "Financial Support"
|
||||||
|
|
||||||
|
-- German Aerospace Center (DLR)
|
||||||
|
UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T3264998714"] = "German Aerospace Center (DLR)"
|
||||||
|
|
||||||
-- The first 10 supporters who make a monthly contribution:
|
-- The first 10 supporters who make a monthly contribution:
|
||||||
UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T3364384944"] = "The first 10 supporters who make a monthly contribution:"
|
UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T3364384944"] = "The first 10 supporters who make a monthly contribution:"
|
||||||
|
|
||||||
|
16
app/MindWork AI Studio/Components/Titan.razor
Normal file
16
app/MindWork AI Studio/Components/Titan.razor
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
<MudListItem T="string" Href="@this.URL" Target="_blank">
|
||||||
|
<AvatarContent>
|
||||||
|
<MudAvatar Variant="Variant.Filled" Size="Size.Large" Style="background-color: white;" Class="mr-6">
|
||||||
|
<MudImage Src="@this.ImageSrc"/>
|
||||||
|
</MudAvatar>
|
||||||
|
</AvatarContent>
|
||||||
|
<ChildContent>
|
||||||
|
<MudText Typo="Typo.h6" Inline="@true">
|
||||||
|
@this.Name
|
||||||
|
</MudText>
|
||||||
|
|
||||||
|
<MudText Typo="Typo.body1" Class="ml-3" Inline="@true">
|
||||||
|
@this.Acknowledgment
|
||||||
|
</MudText>
|
||||||
|
</ChildContent>
|
||||||
|
</MudListItem>
|
21
app/MindWork AI Studio/Components/Titan.razor.cs
Normal file
21
app/MindWork AI Studio/Components/Titan.razor.cs
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
using Microsoft.AspNetCore.Components;
|
||||||
|
|
||||||
|
namespace AIStudio.Components;
|
||||||
|
|
||||||
|
public partial class Titan : ComponentBase
|
||||||
|
{
|
||||||
|
[Parameter]
|
||||||
|
public string Name { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
[Parameter]
|
||||||
|
public string Acknowledgment { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
[Parameter]
|
||||||
|
public string? URL { get; set; }
|
||||||
|
|
||||||
|
[Parameter]
|
||||||
|
public SupporterType Type { get; set; }
|
||||||
|
|
||||||
|
[Parameter]
|
||||||
|
public string? ImageSrc { get; set; }
|
||||||
|
}
|
@ -20,6 +20,11 @@
|
|||||||
<MudText Typo="Typo.body1" Style="text-align: justify; hyphens: auto;" Class="mb-3">
|
<MudText Typo="Typo.body1" Style="text-align: justify; hyphens: auto;" Class="mb-3">
|
||||||
@T("For companies, sponsoring MindWork AI Studio is not only a way to support innovation but also a valuable opportunity for public relations and marketing. Your company's name and logo will be featured prominently, showcasing your commitment to using cutting-edge AI tools and enhancing your reputation as an innovative enterprise.")
|
@T("For companies, sponsoring MindWork AI Studio is not only a way to support innovation but also a valuable opportunity for public relations and marketing. Your company's name and logo will be featured prominently, showcasing your commitment to using cutting-edge AI tools and enhancing your reputation as an innovative enterprise.")
|
||||||
</MudText>
|
</MudText>
|
||||||
|
|
||||||
|
<MudList T="string" Class="mb-3">
|
||||||
|
<Titan Name="@T("German Aerospace Center (DLR)")" Type="SupporterType.ORGANIZATION" URL="https://www.dlr.de/" ImageSrc="svg/titans/DLR.svg" Acknowledgment="@T("We would like to thank the DLR for its courage in supporting MindWork AI Studio at an early stage. The DLR not only uses AI Studio in various projects but also supports its further development with personnel resources.")"/>
|
||||||
|
</MudList>
|
||||||
|
|
||||||
<MudButton Href="https://github.com/sponsors/MindWorkAI" StartIcon="@Icons.Material.Filled.Business" Variant="Variant.Filled" Target="_blank">
|
<MudButton Href="https://github.com/sponsors/MindWorkAI" StartIcon="@Icons.Material.Filled.Business" Variant="Variant.Filled" Target="_blank">
|
||||||
@T("Become our first Titan")
|
@T("Become our first Titan")
|
||||||
</MudButton>
|
</MudButton>
|
||||||
|
@ -2919,6 +2919,9 @@ UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T2355807535"] = "Danke, Nils, dass
|
|||||||
-- The first 10 supporters who make a one-time contribution:
|
-- The first 10 supporters who make a one-time contribution:
|
||||||
UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T2410456125"] = "Die ersten 10 Spender, die einen einmaligen Beitrag geleistet haben:"
|
UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T2410456125"] = "Die ersten 10 Spender, die einen einmaligen Beitrag geleistet haben:"
|
||||||
|
|
||||||
|
-- We would like to thank the DLR for its courage in supporting MindWork AI Studio at an early stage. The DLR not only uses AI Studio in various projects but also supports its further development with personnel resources.
|
||||||
|
UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T2438064678"] = "Wir bedanken uns beim DLR, dass es so mutig war, MindWork AI Studio in einem frühen Stadium zu unterstützen. Das DLR setzt AI Studio nicht nur im Rahmen verschiedener Projekte ein, sondern unterstützt die Weiterentwicklung mit Personalressourcen."
|
||||||
|
|
||||||
-- Supporters
|
-- Supporters
|
||||||
UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T2929332068"] = "Unterstützer"
|
UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T2929332068"] = "Unterstützer"
|
||||||
|
|
||||||
@ -2928,6 +2931,9 @@ UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T3060804484"] = "Inhaltliche Beitr
|
|||||||
-- Financial Support
|
-- Financial Support
|
||||||
UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T3061261435"] = "Finanzielle Unterstützung"
|
UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T3061261435"] = "Finanzielle Unterstützung"
|
||||||
|
|
||||||
|
-- German Aerospace Center (DLR)
|
||||||
|
UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T3264998714"] = "Deutsches Zentrum für Luft- und Raumfahrt (DLR)"
|
||||||
|
|
||||||
-- The first 10 supporters who make a monthly contribution:
|
-- The first 10 supporters who make a monthly contribution:
|
||||||
UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T3364384944"] = "Die ersten 10 Spender, die einen monatlichen Beitrag leisten:"
|
UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T3364384944"] = "Die ersten 10 Spender, die einen monatlichen Beitrag leisten:"
|
||||||
|
|
||||||
|
@ -2919,6 +2919,9 @@ UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T2355807535"] = "Thanks, Nils, for
|
|||||||
-- The first 10 supporters who make a one-time contribution:
|
-- The first 10 supporters who make a one-time contribution:
|
||||||
UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T2410456125"] = "The first 10 supporters who make a one-time contribution:"
|
UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T2410456125"] = "The first 10 supporters who make a one-time contribution:"
|
||||||
|
|
||||||
|
-- We would like to thank the DLR for its courage in supporting MindWork AI Studio at an early stage. The DLR not only uses AI Studio in various projects but also supports its further development with personnel resources.
|
||||||
|
UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T2438064678"] = "We would like to thank the DLR for its courage in supporting MindWork AI Studio at an early stage. The DLR not only uses AI Studio in various projects but also supports its further development with personnel resources."
|
||||||
|
|
||||||
-- Supporters
|
-- Supporters
|
||||||
UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T2929332068"] = "Supporters"
|
UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T2929332068"] = "Supporters"
|
||||||
|
|
||||||
@ -2928,6 +2931,9 @@ UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T3060804484"] = "Content Contribut
|
|||||||
-- Financial Support
|
-- Financial Support
|
||||||
UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T3061261435"] = "Financial Support"
|
UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T3061261435"] = "Financial Support"
|
||||||
|
|
||||||
|
-- German Aerospace Center (DLR)
|
||||||
|
UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T3264998714"] = "German Aerospace Center (DLR)"
|
||||||
|
|
||||||
-- The first 10 supporters who make a monthly contribution:
|
-- The first 10 supporters who make a monthly contribution:
|
||||||
UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T3364384944"] = "The first 10 supporters who make a monthly contribution:"
|
UI_TEXT_CONTENT["AISTUDIO::PAGES::SUPPORTERS::T3364384944"] = "The first 10 supporters who make a monthly contribution:"
|
||||||
|
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
# v0.9.43, build 218 (2025-05-xx xx:xx UTC)
|
# v0.9.43, build 218 (2025-05-xx xx:xx UTC)
|
||||||
|
- Added our first titan: the German Aerospace Center (DLR) uses AI Studio in several projects and supports further development with personnel resources.
|
||||||
- Added the ability to select the new Google Gemini embeddings in the embedding configuration.
|
- Added the ability to select the new Google Gemini embeddings in the embedding configuration.
|
||||||
- Added localization for embedding configuration, bias of the day, and the agenda assistant.
|
- Added localization for embedding configuration, bias of the day, and the agenda assistant.
|
||||||
- Improved the automatic German translation; thanks Peer (`peerschuett`) for contributing.
|
- Improved the automatic German translation; thanks Peer (`peerschuett`) for contributing.
|
||||||
|
20
app/MindWork AI Studio/wwwroot/svg/titans/DLR.svg
Normal file
20
app/MindWork AI Studio/wwwroot/svg/titans/DLR.svg
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg width="100%" height="100%" viewBox="0 0 745 622" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
||||||
|
<g id="g13322" transform="matrix(2.64969,0,0,2.64969,-5485.74,2987.91)">
|
||||||
|
<g id="layer1">
|
||||||
|
<g id="g133221" serif:id="g13322">
|
||||||
|
<g id="path13300" transform="matrix(1,0,0,1,1821.54,-1159.23)">
|
||||||
|
<path d="M434.281,67.438L380.25,121.75L334.406,121.75L290.75,165.406L344.156,165.406L344.156,219.719L398.469,165.406L444,165.406L487.656,121.75L434.281,121.75L434.281,67.438ZM423.281,93.813L423.281,121.75L395.313,121.75L423.281,93.813ZM338.813,132.75L369.281,132.75L347.594,154.406L317.156,154.406L338.813,132.75ZM384.969,132.75L415.438,132.75L393.438,154.406L363,154.406L384.969,132.75ZM430.813,132.75L461.281,132.75L439.594,154.406L409.156,154.406L430.813,132.75ZM383.094,165.094L355.156,193.031L355.156,165.406L383.094,165.094Z" style="fill:rgb(35,31,32);"/>
|
||||||
|
</g>
|
||||||
|
<g id="path13304" transform="matrix(1,0,0,1,1821.54,-1159.23)">
|
||||||
|
<path d="M398.156,198.094L398.156,230.406L407.281,230.406C417.006,230.406 425.813,227.285 425.813,214.406C425.812,201.209 417.006,198.094 407.281,198.094L398.156,198.094ZM404.75,203.094L408.531,203.094C413.885,203.094 419.188,207.171 419.188,214.406C419.188,221.323 413.885,225.406 408.531,225.406L404.75,225.406L404.75,203.094Z" style="fill:rgb(35,31,32);"/>
|
||||||
|
</g>
|
||||||
|
<g id="path13312" transform="matrix(1,0,0,1,1821.54,-1159.23)">
|
||||||
|
<path d="M470.75,198.031C469.99,198.011 469.245,198.054 468.5,198.094L456.875,198.094L456.875,230.406L463.469,230.406L463.469,218.469L468.188,218.469C470.995,218.469 471.949,219.42 472.875,221.938L476.375,230.406L484.219,230.406L478.875,219.125C477.92,217.244 477.594,216.611 476.031,215.656C476.031,215.656 481.693,214.093 481.375,207.813C481.375,200.114 476.068,198.176 470.75,198.031ZM463.469,203.406L467.875,203.406C471.319,203.406 474.148,204.368 474.438,207.813L474.438,208.719C474.148,212.192 471.319,213.125 467.875,213.125L463.469,213.125L463.469,203.406Z" style="fill:rgb(35,31,32);"/>
|
||||||
|
</g>
|
||||||
|
<path id="path13308" d="M2253.94,-928.819L2273.1,-928.819L2273.1,-934.144L2260.51,-934.144L2260.51,-961.147L2253.94,-961.147L2253.94,-928.819Z" style="fill:rgb(35,31,32);"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
Loading…
Reference in New Issue
Block a user