Skip to content

Commit 2f9b761

Browse files
committed
Update FlowSynx.PluginCore and adapt new changes like adding CategoryId
#9
1 parent b68c2dd commit 2f9b761

4 files changed

Lines changed: 16 additions & 15 deletions

File tree

src/AmazonS3Plugin.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public PluginMetadata Metadata {
2020
Id = Guid.Parse("b961131b-04cb-48df-9554-4252dc66c04c"),
2121
Name = "Amazon.S3",
2222
CompanyName = "FlowSynx",
23-
Description = Resources.ConnectorDescription,
23+
Description = Resources.PluginDescription,
2424
Version = new PluginVersion(1, 1, 0),
2525
Namespace = PluginNamespace.Connectors,
2626
Authors = new List<string> { "FlowSynx" },
@@ -29,7 +29,8 @@ public PluginMetadata Metadata {
2929
ReadMe = "README.md",
3030
RepositoryUrl = "https://github.com/flowsynx/plugin-amazon-s3",
3131
ProjectUrl = "https://flowsynx.io",
32-
Tags = new List<string>() { "FlowSynx", "Amazon", "S3", "Cloud" }
32+
Tags = new List<string>() { "FlowSynx", "Amazon", "S3", "Cloud" },
33+
Category = PluginCategories.CloudPlatform
3334
};
3435
}
3536
}

src/FlowSynx.Plugins.Amazon.S3.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<ItemGroup>
1717
<PackageReference Include="AWSSDK.S3" Version="3.7.310.3" />
18-
<PackageReference Include="FlowSynx.PluginCore" Version="1.2.5" />
18+
<PackageReference Include="FlowSynx.PluginCore" Version="1.2.7" />
1919
</ItemGroup>
2020

2121
<ItemGroup>

src/Resources.Designer.cs

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Resources.resx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,6 @@
117117
<resheader name="writer">
118118
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
119119
</resheader>
120-
<data name="ConnectorDescription" xml:space="preserve">
121-
<value>Connector for managing Amazon Web Service S3 Storage system.</value>
122-
</data>
123120
<data name="CopyOperationCouldNotBeProceed" xml:space="preserve">
124121
<value>Copy operation for file '{0} could not proceed!</value>
125122
</data>
@@ -132,6 +129,9 @@
132129
<data name="NoFilesFoundWithTheGivenFilter" xml:space="preserve">
133130
<value>No files found with the given filter in '{0}'.</value>
134131
</data>
132+
<data name="PluginDescription" xml:space="preserve">
133+
<value>Interacts with Amazon S3 for file storage and retrieval. Supports bucket operations, object listing, file uploads, and downloads.</value>
134+
</data>
135135
<data name="ReflectionBasedAccessIsNotAllowed" xml:space="preserve">
136136
<value>Reflection-based access is not allowed.</value>
137137
</data>

0 commit comments

Comments
 (0)