Skip to content

Commit 9dbdf45

Browse files
author
András Kurai
committed
Add known issuse, upgrade guide
1 parent ec2c58a commit 9dbdf45

File tree

4 files changed

+27
-0
lines changed

4 files changed

+27
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
- Configure using directives
66
- Remove `IsResource` property from `IResourceData`. Scene path generation now depends on file extension
77
- Handle spaces in filenames
8+
- Add known issues and update guide in the documentation
89

910
# 0.1.0
1011
- Add initial project
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Known issues
2+
3+
## 0.1.0 - *
4+
5+
- SpecialCharacters can break generated names.
6+
- Numbers at the end of the files are supported, but not at the start
7+
- Any character in the filename which would not be a valid C# filed/property/method name will break the generated code
8+
- Spaces get removed
9+
- For Example:
10+
- `Coin1` works
11+
- `Coin 1` works
12+
- `1Coin` does not
13+
- `!Coin` does not
14+
- `Coin!` does not
15+
16+
- Duplicate file names in the same class module will break the generated file. The solution for this requires further investigation
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Upgrade Guide
2+
3+
Always update using the Unity Package Manager
4+
5+
## 0.1.0 - *
6+
- If default file mappings or namespaces change, and you have custom ones, it is advised that you create a copy of your old settings, press the `Reset file mappings` button in the `Project Settings` window and then manually recreate your custom mappings.

Documentation/articles/toc.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,7 @@
44
href: Customization.md
55
- name: Extensibility
66
href: Extensibility.md
7+
- name: Known Issues
8+
href: KnownIssues.md
9+
- name: Upgrade Guide
10+
href: UpgradeGuide.md

0 commit comments

Comments
 (0)