Skip to content

Commit 2dfeea8

Browse files
Merge pull request #23 from open-olive/SIDE-1012/remove-whisper-logo
Side 1012/remove whisper logo
2 parents 3021539 + a23f583 commit 2dfeea8

File tree

138 files changed

+618
-871
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

138 files changed

+618
-871
lines changed

ldk/csharp/OliveHelpsLDK/Example/Program.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,6 @@ private void EmitWhisper(string content)
126126
Markdown = $"Clipboard Content {content}",
127127
Config = new WhisperConfig
128128
{
129-
Icon = "bathtub",
130129
Label = "C# Whisper"
131130
}
132131
}, ccs.Token);
@@ -141,7 +140,6 @@ private void FormStream()
141140
SubmitLabel = "Submit",
142141
Config = new WhisperConfig
143142
{
144-
Icon = "bathtub",
145143
Label = "C# Whisper Form"
146144
},
147145
Inputs = new Dictionary<string, IBase>

ldk/csharp/OliveHelpsLDK/OliveHelpsLDK.Test/Whispers/WhisperFormBuilderTests.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ public void BuildsBasicForm()
2828
SubmitLabel = "Submit",
2929
Config = new WhisperConfig
3030
{
31-
Icon = "Config.Icon",
3231
Label = "Config.Label",
3332
},
3433
Inputs = new Dictionary<string, IBase>()
@@ -52,7 +51,6 @@ public void BuildsBasicForm()
5251
Markdown = request.Markdown,
5352
Meta = new WhisperMeta
5453
{
55-
Icon = "Config.Icon",
5654
Label = "Config.Label",
5755
},
5856
Inputs =

ldk/csharp/OliveHelpsLDK/OliveHelpsLDK/Whispers/IWhisperService.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ IStreamingCall<IWhisperFormResponse> FormAsync(WhisperForm message,
1919

2020
public struct WhisperConfig
2121
{
22-
public string Icon;
2322
public string Label;
2423
}
2524

ldk/csharp/OliveHelpsLDK/OliveHelpsLDK/Whispers/WhisperFormBuilder.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ public WhisperMeta BuildMeta(WhisperConfig config)
3838
{
3939
return new WhisperMeta
4040
{
41-
Icon = config.Icon ?? "announcement",
4241
Label = config.Label ?? "Whisper",
4342
};
4443
}

ldk/go/examples/clipboard/loop/loop.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ func (c *Loop) LoopStart(sidekick ldk.Sidekick) error {
5050

5151
go func() {
5252
err = c.sidekick.Whisper().Markdown(ctx, &ldk.WhisperContentMarkdown{
53-
Icon: "bathtub",
5453
Label: "Example Controller Go",
5554
Markdown: "Text from the clipboard: " + text,
5655
})

ldk/go/examples/clipboard/plugin.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"created": "2020-06-22T00:00:00Z",
44
"dependencies": [],
55
"description": "This is an example controller written in Go.",
6-
"icon": "bathtub",
76
"id": "9e9eeb9c-fa4d-471a-8778-088bdb077f97",
87
"name": "Example Go",
98
"organization": "OliveAI",

ldk/go/examples/filesystem-directory/loop/loop.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@ func (c *Loop) emitExampleWhisper(f ldk.FileInfo) error {
118118

119119
go func() {
120120
err := c.sidekick.Whisper().Markdown(c.ctx, &ldk.WhisperContentMarkdown{
121-
Icon: "bathtub",
122121
Label: "Example Controller Go",
123122
Markdown: markdownBytes.String(),
124123
})

ldk/go/examples/filesystem-directory/plugin.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"created": "2020-06-22T00:00:00Z",
44
"dependencies": [],
55
"description": "This is an example controller written in Go.",
6-
"icon": "bathtub",
76
"id": "9e9eeb9c-fa4d-471a-8778-088bdb077f97",
87
"name": "Example Go",
98
"organization": "OliveAI",

ldk/go/examples/filesystem-file/loop/loop.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ func (c *Loop) emitExampleWhisper(f ldk.FileInfo) error {
112112

113113
go func() {
114114
err := c.sidekick.Whisper().Markdown(c.ctx, &ldk.WhisperContentMarkdown{
115-
Icon: "bathtub",
116115
Label: "Example Controller Go",
117116
Markdown: markdownBytes.String(),
118117
})

ldk/go/examples/filesystem-file/plugin.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"created": "2020-06-22T00:00:00Z",
44
"dependencies": [],
55
"description": "This is an example controller written in Go.",
6-
"icon": "bathtub",
76
"id": "9e9eeb9c-fa4d-471a-8778-088bdb077f97",
87
"name": "Example Go",
98
"organization": "OliveAI",

0 commit comments

Comments
 (0)