diff --git a/README.md b/README.md index 3c26e78..e452316 100644 --- a/README.md +++ b/README.md @@ -75,6 +75,22 @@ Tokens are stored within TokenLookup inside Tokenizer.cs, found [here.](https:// Simply add to this dictionary your token as the key and what you'd like to subtitute it with as the value. Compile, and use your new tokens! +<<<<<<< HEAD +======= +## Contributing + +Contributions to TED are welcome! If you find any issues or have suggestions for improvement, please feel free to open an issue or submit a pull request. + +## Supporting the project + +:heart: the project and would like to show your support? Please consider donating to one of our favourite charities: +- [Love Your Sister (Sam's 1000)](https://www.loveyoursister.org/makeadonation) +- [Black Dog](https://donate.blackdoginstitute.org.au/) +- [RedFrogs Australia](https://redfrogs.com.au/support/donate) + +Please let us know if you have donated because of this project! + +>>>>>>> 83da65084ef4bb291ce5a5519f69c580e9d44dab ## License This project is licensed under the [GNU General Public License v3.0](https://git.heko-technik.de/mkrieger/TED/src/branch/main/LICENSE) diff --git a/src/TED/TED.Utils/Tokenizer.cs b/src/TED/TED.Utils/Tokenizer.cs index 65eb1e7..239c5d4 100644 --- a/src/TED/TED.Utils/Tokenizer.cs +++ b/src/TED/TED.Utils/Tokenizer.cs @@ -21,6 +21,7 @@ namespace TED.Utils { "@osVersion", () => Environment.OSVersion.ToString() }, { "@osName", () => new ComputerInfo().OSFullName }, { "@machineSerial", () => GetSerial() } + }; /// @@ -40,6 +41,7 @@ namespace TED.Utils return input; } + private static List GetSerialNumbers() { List serialNumbers = new List(); @@ -62,6 +64,7 @@ namespace TED.Utils return serialNumbers; } + } } \ No newline at end of file