mirror of
https://github.com/twiglet/cs2j.git
synced 2025-01-18 13:15:17 +01:00
78 lines
3.0 KiB
Plaintext
78 lines
3.0 KiB
Plaintext
2011-12-09 2011.3.3
|
|
|
|
* refine obfuscation so that we can graft in code in the trial version again.
|
|
|
|
2011-12-09 2011.3.2
|
|
|
|
* check directories / files passed on the command line can be read.
|
|
|
|
* do not crash if we haven't been passed NetFramework translations.
|
|
|
|
2011-12-07 2011.3.1
|
|
|
|
* primitive types are now correctly boxed when they appear as
|
|
Generic Type arguments.
|
|
|
|
* defaults for parameters can be provided by an ini file (option -config).
|
|
|
|
* revamped option names (sorry!). See user guide.
|
|
added:
|
|
-config=<ini file>
|
|
|
|
renamed:
|
|
-dumpxmls --> -dump-xmls
|
|
-xmldir --> -out-xml-dir
|
|
-odir --> -out-java-dir
|
|
-netdir --> -net-templates-dir
|
|
-exnetdir --> -ex-net-templates-dir
|
|
-appdir --> -app-dir
|
|
-exappdir --> -ex-app-dir
|
|
-csdir --> -cs-dir
|
|
-excsdir --> -ex-cs-dir
|
|
|
|
-showcsharp --> -show-csharp
|
|
-showjavasyntax --> -show-javasyntax
|
|
-showjava --> -show-java
|
|
-showtokens --> -show-tokens
|
|
-dumpenums --> -dump-enums
|
|
-enumdir --> -out-enum-dir
|
|
-cheatdir --> -cheat-dir
|
|
|
|
-translator-keep-parens --> -keep-parens
|
|
-translator-timestamp-files --> -timestamp-files
|
|
-translator-blanket-throw --> -blanket-throw
|
|
-translator-exception-is-throwable --> -exception-is-throwable
|
|
-translator-make-javadoc-comments --> -make-javadoc-comments
|
|
-translator-make-java-naming-conventions --> -make-java-naming-conventions
|
|
|
|
-experimental-enums-numericconsts --> -experimental-enums-to-numeric-consts
|
|
|
|
* the usual bug fixes and improvements to translation templates.
|
|
|
|
2011-09-07 2011.2.4
|
|
|
|
* add option -experimental-unsigned-to-bigger-signed=true/false (default: false).
|
|
|
|
If true then unsigned data types (byte, ushort etc.) are converted to the next larger signed
|
|
type (short, int, etc.).
|
|
|
|
* support for translation template variants. You can provide a number of alternative
|
|
translation templates by adding a variant="<variant>" attribute in the template's root.
|
|
These can be selected at runtime with the -alt-translations option.
|
|
|
|
* support for methods, constructors, etc. with variable number of arguments (the params
|
|
key word). Translation templates have a ParamArray section to describe these arguments.
|
|
See, e.g., the translation template for System/Console.xml.
|
|
|
|
* add option -translator-make-java-naming-conventions=true/false (default:true).
|
|
|
|
If true then convert method names to follow Java conventions (e.g. ExecutePool() is
|
|
rewritten to executePool()). This option enables the LCC translation template variant.
|
|
See, e.g., System/LCC/IDisposable.xml.
|
|
|
|
* rename Clone() methods to be clone() and so override default Object.clone().
|
|
|
|
* the usual bug fixes and improvements to translation templates.
|
|
|
|
|