Skip to content

Commit 0880cb9

Browse files
authored
Merge pull request #248 from watson-developer-cloud/rc-1.0.0
Merge in the refactor
2 parents 4a189e5 + daef2e9 commit 0880cb9

File tree

951 files changed

+46418
-88532
lines changed

Some content is hidden

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

951 files changed

+46418
-88532
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ end_of_line = LF
88
; 2-column space indentation
99
[*.cs]
1010
indent_style = space
11-
indent_size = 2
11+
indent_size = 4

.github/CONTRIBUTING.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,14 @@ or [Stack Overflow](http://stackoverflow.com/questions/ask?tags=ibm-watson).
88
# Coding Standard
99

1010
* Use spaces instead of tab characters, a tab should be 4 spaces.
11-
* Class names should be camel case (e.g. AvatarWidget), with no underscores "_".
12-
* Class member fields should be camel case and begin with "m_" (e.g. m_MemberVariable), no other underscores allowed in the variable name.
13-
* Static class member fields should camel case and begin with "sm_", no other underscores allowed in the variable name.
11+
* Class names should be PascalCase (e.g. SpeechToText), with no underscores "_".
12+
* Class member fields should be camel case and begin with "_" (e.g. _memberVariable), no other underscores allowed in the variable name.
1413
* Structures should follow the same naming standards as classes.
1514
* No K&R coding style. Braces {} should be on their own line, aligned with the parent statement.
1615
* No public variables, always use public properties unless there is no other workaround.
17-
* Properties should be camel case, no underscores. (e.g. public bool IsReady { get; set; })
18-
* Constants should be all upper case (e.g. static readonly string CONFIG_FILE = "/Config.json"). This includes enumerations.
16+
* Properties should be camel case, no underscores (e.g. public bool IsReady { get; set; }).
1917
* All public functions and types of all classes should be fully documented using the XML comment style.
20-
* Local variables should begin with lower-case character, then camel case after the first character. (e.g. var widgetConnector = new WidgetConnector())
18+
* Local variables should be camel case. (e.g. var speechToText = new SpeechToText())
2119
* Use protected on variables & functions only if you plan to inherit from the class or there is a good chance we will need to be polymorphic.
2220
* Use region to separate parts of a class based on functionality.
2321

@@ -35,7 +33,7 @@ If you want to contribute to the repository, follow these steps:
3533
1. Fork the repo.
3634
1. Develop and test your code changes Make sure you work in the `develop` branch. PLEASE don't do your work in `master`.
3735
1. Add a unit test for any new classes you add. Only refactoring and documentation changes require no new tests.
38-
1. Run the Watson->Run All UnitTest inside of Unity, make sure all tests work.
36+
1. Run the Watson->Run All UnitTest inside of Unity, make sure all tests work.
3937
1. Commit your changes.
4038
1. Push to your fork and submit a pull request.
4139

Art/UI.meta

Lines changed: 0 additions & 9 deletions
This file was deleted.

Art/UI/banner-logotype.png

-21.9 KB
Binary file not shown.

Art/UI/banner-logotype.png.meta

Lines changed: 0 additions & 57 deletions
This file was deleted.

Art/UI/banner-watson-element.png

-30.1 KB
Binary file not shown.

Art/UI/banner-watson-element.png.meta

Lines changed: 0 additions & 57 deletions
This file was deleted.

Art/UI/base-bg.png

-22 KB
Binary file not shown.

Art/UI/base-bg.png.meta

Lines changed: 0 additions & 73 deletions
This file was deleted.

Art/UI/icon-listen.png

-19 KB
Binary file not shown.

Art/UI/icon-listen.png.meta

Lines changed: 0 additions & 57 deletions
This file was deleted.

Art/UI/icon-mic.png

-22.9 KB
Binary file not shown.

Art/UI/icon-mic.png.meta

Lines changed: 0 additions & 57 deletions
This file was deleted.

Art/UI/touch-01.png

-35.2 KB
Binary file not shown.

0 commit comments

Comments
 (0)