Skip to content

Commit

Permalink
Remove pdf documentation; Remove .vs directory (#4)
Browse files Browse the repository at this point in the history
* Remove and gitignore .vs directory

* Remove PDF documentation; Update bug report button URL

Co-authored-by: James Miao <[email protected]>
  • Loading branch information
xmiao2 and James Miao authored Sep 10, 2021
1 parent 0a6574e commit 705cd4a
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 42 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/build/
.vs/ProjectSettings.json
.vs/
14 changes: 0 additions & 14 deletions .vs/VSWorkspaceState.json

This file was deleted.

Binary file removed .vs/amz/v16/.suo
Binary file not shown.
Binary file removed .vs/amz/v16/TestStore/0/000.testlog
Binary file not shown.
Binary file removed .vs/amz/v16/TestStore/0/testlog.manifest
Binary file not shown.
Binary file removed .vs/slnx.sqlite
Binary file not shown.
Binary file not shown.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -181,40 +181,31 @@ private void DrawActiveTab()

private void DrawHelpTab()
{
bool pressed = GUILayout.Button(_labelOpenPdf);

if (pressed)
if (GUILayout.Button(_labelOpenAwsHelp))
{
EditorMenu.OpenUserGuidePdf();
EditorMenu.OpenAwsDocumentation();
}

pressed = GUILayout.Button(_labelOpenForums);
GUILayout.Space(TopMarginPixels);

if (pressed)
if (GUILayout.Button(_labelOpenForums))
{
EditorMenu.OpenForums();
}

pressed = GUILayout.Button(_labelOpenAwsHelp);
GUILayout.Space(TopMarginPixels);

if (pressed)
if (GUILayout.Button(_labelReportBugs))
{
EditorMenu.OpenAwsDocumentation();
EditorMenu.ReportBugs();
}

pressed = GUILayout.Button(_labelReportSecurity);
GUILayout.Space(TopMarginPixels);

if (pressed)
if (GUILayout.Button(_labelReportSecurity))
{
EditorMenu.ReportSecurity();
}

pressed = GUILayout.Button(_labelReportBugs);

if (pressed)
{
EditorMenu.ReportBugs();
}
}

private void DrawDeployTab()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@ internal sealed class TextProvider
{ Strings.LabelSettingsOpenForums, "Open AWS GameTech Forums"},
{ Strings.LabelSettingsOpenDeployment, "Open Deployment UI"},
{ Strings.LabelSettingsOpenLocalTest, "Open Local Test UI"},
{ Strings.LabelSettingsOpenPdf, "Open PDF documentation"},
{ Strings.LabelSettingsPingSdk, "Ping SDK DLL files location"},
{ Strings.LabelSettingsReportSecurity, "Report security vulnerabilities"},
{ Strings.LabelSettingsReportBugs, "Report bugs/issues"},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ internal static class Urls
public const string AwsS3Console = "https://s3.console.aws.amazon.com/s3/home";
public const string AwsS3BucketTemplate = "https://s3.console.aws.amazon.com/s3/buckets/{0}?region={1}";
public const string AwsSecurity = "https://aws.amazon.com/security/vulnerability-reporting/";
public const string GitHubAwsLabs = "https://github.com/awslabs";
public const string GitHubAwsLabs = "https://github.com/awslabs/amazon-gamelift-plugin-unity/issues";
public const string JavaDownload = "https://www.java.com/en/download/";
}
}

0 comments on commit 705cd4a

Please sign in to comment.