Skip to content

Commit

Permalink
Icons
Browse files Browse the repository at this point in the history
  • Loading branch information
enmerk4r committed Nov 15, 2021
1 parent af38f18 commit d887579
Show file tree
Hide file tree
Showing 104 changed files with 12,150 additions and 20 deletions.
3,870 changes: 3,870 additions & 0 deletions Assets/ComponentIcons/Icons.ai

Large diffs are not rendered by default.

Binary file added Assets/ComponentIcons/Icons_api_auth_24x24.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Assets/ComponentIcons/Icons_basic_auth_24x24.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Assets/ComponentIcons/Icons_delete_request_24x24.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Assets/ComponentIcons/Icons_get_json_object_key.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Assets/ComponentIcons/Icons_get_request_24x24.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Assets/ComponentIcons/Icons_jarray_param_24x24.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Assets/ComponentIcons/Icons_jobject_param_24x24.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Assets/ComponentIcons/Icons_jvalue_param_24x24.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Assets/ComponentIcons/Icons_patch_request_24x24.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Assets/ComponentIcons/Icons_post_request_24x24.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Assets/ComponentIcons/Icons_put_request_24x24.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Assets/ComponentIcons/Icons_query_param_24x24.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Assets/ComponentIcons/Icons_token_auth_24x24.png
Binary file added Assets/ComponentIcons/Special/ParamBase.png
Binary file added Assets/Logo-01.png
7,560 changes: 7,560 additions & 0 deletions Assets/Logo.ai

Large diffs are not rendered by default.

Binary file added Assets/Logo.png
Binary file added Assets/Logo_24x24.png
2 changes: 1 addition & 1 deletion Swiftlet/Components/1_Auth/ApiKeyAuth.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ protected override System.Drawing.Bitmap Icon
{
//You can add image files to your project resources and access them like this:
// return Resources.IconForThisComponent;
return null;
return Properties.Resources.Icons_api_auth_24x24;
}
}

Expand Down
2 changes: 1 addition & 1 deletion Swiftlet/Components/1_Auth/BasicAuth.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ protected override System.Drawing.Bitmap Icon
{
//You can add image files to your project resources and access them like this:
// return Resources.IconForThisComponent;
return null;
return Properties.Resources.Icons_basic_auth_24x24;
}
}

Expand Down
2 changes: 1 addition & 1 deletion Swiftlet/Components/1_Auth/BearerTokenAuth.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ protected override System.Drawing.Bitmap Icon
{
//You can add image files to your project resources and access them like this:
// return Resources.IconForThisComponent;
return null;
return Properties.Resources.Icons_token_auth_24x24;
}
}

Expand Down
2 changes: 1 addition & 1 deletion Swiftlet/Components/2_Request/CreateHttpHeader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ protected override System.Drawing.Bitmap Icon
{
//You can add image files to your project resources and access them like this:
// return Resources.IconForThisComponent;
return null;
return Properties.Resources.Icons_create_http_header_24x24;
}
}

Expand Down
2 changes: 1 addition & 1 deletion Swiftlet/Components/2_Request/CreateQueryParam.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ protected override System.Drawing.Bitmap Icon
{
//You can add image files to your project resources and access them like this:
// return Resources.IconForThisComponent;
return null;
return Properties.Resources.Icons_create_query_param_24x24;
}
}

Expand Down
2 changes: 1 addition & 1 deletion Swiftlet/Components/2_Request/CreateTextBody.cs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ protected override System.Drawing.Bitmap Icon
{
//You can add image files to your project resources and access them like this:
// return Resources.IconForThisComponent;
return null;
return Properties.Resources.Icons_create_text_body_24x24;
}
}

Expand Down
2 changes: 1 addition & 1 deletion Swiftlet/Components/3_Send/DeconstructHttpResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ protected override System.Drawing.Bitmap Icon
{
//You can add image files to your project resources and access them like this:
// return Resources.IconForThisComponent;
return null;
return Properties.Resources.Icons_deconstruct_response_24x24;
}
}

Expand Down
2 changes: 1 addition & 1 deletion Swiftlet/Components/3_Send/DeleteRequestComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ protected override System.Drawing.Bitmap Icon
{
//You can add image files to your project resources and access them like this:
// return Resources.IconForThisComponent;
return null;
return Properties.Resources.Icons_delete_request_24x24;
}
}

Expand Down
2 changes: 1 addition & 1 deletion Swiftlet/Components/3_Send/GetRequestComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ protected override System.Drawing.Bitmap Icon
{
//You can add image files to your project resources and access them like this:
// return Resources.IconForThisComponent;
return null;
return Properties.Resources.Icons_get_request_24x24;
}
}

Expand Down
2 changes: 1 addition & 1 deletion Swiftlet/Components/3_Send/PatchRequestComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ protected override System.Drawing.Bitmap Icon
{
//You can add image files to your project resources and access them like this:
// return Resources.IconForThisComponent;
return null;
return Properties.Resources.Icons_patch_request_24x24;
}
}

Expand Down
2 changes: 1 addition & 1 deletion Swiftlet/Components/3_Send/PostRequestComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ protected override System.Drawing.Bitmap Icon
{
//You can add image files to your project resources and access them like this:
// return Resources.IconForThisComponent;
return null;
return Properties.Resources.Icons_post_request_24x24;
}
}

Expand Down
2 changes: 1 addition & 1 deletion Swiftlet/Components/3_Send/PutRequestComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ protected override System.Drawing.Bitmap Icon
{
//You can add image files to your project resources and access them like this:
// return Resources.IconForThisComponent;
return null;
return Properties.Resources.Icons_put_request_24x24;
}
}

Expand Down
2 changes: 1 addition & 1 deletion Swiftlet/Components/4_ReadJson/FormatJsonString.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ protected override System.Drawing.Bitmap Icon
{
//You can add image files to your project resources and access them like this:
// return Resources.IconForThisComponent;
return null;
return Properties.Resources.Icons_format_json_string_24x24;
}
}

Expand Down
2 changes: 1 addition & 1 deletion Swiftlet/Components/4_ReadJson/GetObjectKey.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ protected override System.Drawing.Bitmap Icon
{
//You can add image files to your project resources and access them like this:
// return Resources.IconForThisComponent;
return null;
return Properties.Resources.Icons_get_json_object_key;
}
}

Expand Down
2 changes: 1 addition & 1 deletion Swiftlet/Components/4_ReadJson/ParseJson.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ protected override System.Drawing.Bitmap Icon
{
//You can add image files to your project resources and access them like this:
// return Resources.IconForThisComponent;
return null;
return Properties.Resources.Icons_parse_json_string_24x24;
}
}

Expand Down
2 changes: 1 addition & 1 deletion Swiftlet/Components/4_ReadJson/ReadJsonArray.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ protected override System.Drawing.Bitmap Icon
{
//You can add image files to your project resources and access them like this:
// return Resources.IconForThisComponent;
return null;
return Properties.Resources.Icons_read_json_array_24x24;
}
}

Expand Down
2 changes: 1 addition & 1 deletion Swiftlet/Components/4_ReadJson/ReadJsonObject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ protected override System.Drawing.Bitmap Icon
{
//You can add image files to your project resources and access them like this:
// return Resources.IconForThisComponent;
return null;
return Properties.Resources.Icons_read_json_object_24x24;
}
}

Expand Down
2 changes: 1 addition & 1 deletion Swiftlet/Components/4_ReadJson/ReadJsonValue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ protected override System.Drawing.Bitmap Icon
{
//You can add image files to your project resources and access them like this:
// return Resources.IconForThisComponent;
return null;
return Properties.Resources.Icons_read_json_value_24x24;
}
}

Expand Down
2 changes: 1 addition & 1 deletion Swiftlet/Components/4_ReadJson/SeparateJsonTokens.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ protected override System.Drawing.Bitmap Icon
{
//You can add image files to your project resources and access them like this:
// return Resources.IconForThisComponent;
return null;
return Properties.Resources.Icons_separate_json_tokens_24x24;
}
}

Expand Down
2 changes: 1 addition & 1 deletion Swiftlet/Components/4_ReadJson/StringifyJsonToken.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ protected override System.Drawing.Bitmap Icon
{
//You can add image files to your project resources and access them like this:
// return Resources.IconForThisComponent;
return null;
return Properties.Resources.Icons_stringify_json_token_24x24;
}
}

Expand Down
3 changes: 3 additions & 0 deletions Swiftlet/Params/HttpHeaderParam.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using Swiftlet.Util;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
Expand All @@ -20,5 +21,7 @@ public HttpHeaderParam()

public override GH_Exposure Exposure => GH_Exposure.secondary;
public override Guid ComponentGuid => new Guid("521dae84-7074-433e-9714-9144c42b92a4");

protected override Bitmap Icon => Properties.Resources.Icons_http_header_param_24x24;
}
}
3 changes: 3 additions & 0 deletions Swiftlet/Params/HttpWebResponseParam.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using Swiftlet.Util;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
Expand All @@ -19,5 +20,7 @@ public HttpWebResponseParam()

public override GH_Exposure Exposure => GH_Exposure.secondary;
public override Guid ComponentGuid => new Guid("b1c8d5fd-72ad-4f80-9ada-5f3850bc1a94");

protected override Bitmap Icon => Properties.Resources.Icons_http_response_param_24x24;
}
}
3 changes: 3 additions & 0 deletions Swiftlet/Params/JArrayParam.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using Swiftlet.Util;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
Expand All @@ -19,5 +20,7 @@ public JArrayParam()
}
public override GH_Exposure Exposure => GH_Exposure.tertiary;
public override Guid ComponentGuid => new Guid("645a1994-d22d-4103-877e-849f96811291");

protected override Bitmap Icon => Properties.Resources.Icons_jarray_param_24x24;
}
}
3 changes: 3 additions & 0 deletions Swiftlet/Params/JObjectParam.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using Swiftlet.Util;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
Expand All @@ -19,5 +20,7 @@ public JObjectParam()
}
public override GH_Exposure Exposure => GH_Exposure.tertiary;
public override Guid ComponentGuid => new Guid("90f38432-a460-43e2-a1ac-747d8ca6236c");

protected override Bitmap Icon => Properties.Resources.Icons_jobject_param_24x24;
}
}
3 changes: 3 additions & 0 deletions Swiftlet/Params/JTokenParam.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using Swiftlet.Util;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
Expand All @@ -19,5 +20,7 @@ public JTokenParam()
}
public override GH_Exposure Exposure => GH_Exposure.tertiary;
public override Guid ComponentGuid => new Guid("a2bdb76c-7a0e-4537-a7f1-0fb37a6b35ac");

protected override Bitmap Icon => Properties.Resources.Icons_jtoken_param_24x24;
}
}
3 changes: 3 additions & 0 deletions Swiftlet/Params/JValueParam.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using Swiftlet.Util;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
Expand All @@ -19,5 +20,7 @@ public JValueParam()
}
public override GH_Exposure Exposure => GH_Exposure.tertiary;
public override Guid ComponentGuid => new Guid("f46d2a50-02f2-46c9-8a93-f7a8d37843d4");

protected override Bitmap Icon => Properties.Resources.Icons_jvalue_param_24x24;
}
}
3 changes: 3 additions & 0 deletions Swiftlet/Params/QueryParamParam.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using Swiftlet.Util;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
Expand All @@ -20,5 +21,7 @@ public QueryParamParam()

public override GH_Exposure Exposure => GH_Exposure.secondary;
public override Guid ComponentGuid => new Guid("f59b2397-a996-48b3-8aa3-6b8d56f6244f");

protected override Bitmap Icon => Properties.Resources.Icons_query_param_24x24;
}
}
3 changes: 3 additions & 0 deletions Swiftlet/Params/RequestBodyParam.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using Swiftlet.Util;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
Expand All @@ -20,5 +21,7 @@ public RequestBodyParam()

public override GH_Exposure Exposure => GH_Exposure.secondary;
public override Guid ComponentGuid => new Guid("cc4b9260-48dc-432e-80c8-5ebf9ab3f66e");

protected override Bitmap Icon => Properties.Resources.Icons_request_body_param_24x24;
}
}
Loading

0 comments on commit d887579

Please sign in to comment.