This commit is contained in:
Semetra22 2024-06-27 10:44:35 +02:00
commit 5163192373
2 changed files with 19 additions and 0 deletions

View File

@ -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. 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! 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 ## License
This project is licensed under the [GNU General Public License v3.0](https://git.heko-technik.de/mkrieger/TED/src/branch/main/LICENSE) This project is licensed under the [GNU General Public License v3.0](https://git.heko-technik.de/mkrieger/TED/src/branch/main/LICENSE)

View File

@ -21,6 +21,7 @@ namespace TED.Utils
{ "@osVersion", () => Environment.OSVersion.ToString() }, { "@osVersion", () => Environment.OSVersion.ToString() },
{ "@osName", () => new ComputerInfo().OSFullName }, { "@osName", () => new ComputerInfo().OSFullName },
{ "@machineSerial", () => GetSerial() } { "@machineSerial", () => GetSerial() }
}; };
/// <summary> /// <summary>
@ -40,6 +41,7 @@ namespace TED.Utils
return input; return input;
} }
private static List<string> GetSerialNumbers() private static List<string> GetSerialNumbers()
{ {
List<string> serialNumbers = new List<string>(); List<string> serialNumbers = new List<string>();
@ -62,6 +64,7 @@ namespace TED.Utils
return serialNumbers; return serialNumbers;
} }
} }
} }