When TexCode 0.1 was first released, our main programmer was 12 years old, explaining the bugs and general lack of complexity of the project. However, we're back, working on TexCode 2.0! Stay tuned!
TexCode 1.4 will not run in Terminal like previous versions, but will be its own Windows Forms application!
NOTE: Sorry about the delay... there were unexpected technical difficulties as we are completely revamping TexCode
Certain commands in Monthly Snapshots 08-25-2012 and earlier will not be recognized by TexCode. This is normal, as the features have not been implemented as of yet. But we're working on it, and TexCode 1.4 should be released soon!
Monthly Snapshot 08-25-2012 released only 4 days after the last monthly snapshot (08-21-2012). Our developer team fixed a major bug, so the new version works a lot better.... Just to clear things up about having a monthly snapshot released before a week (let alone a month) had passed.
Monthly snapshots of TexCode 1.4 will be available from the Downloads page!
Archives will be removed from TexCode's SourceForge website for ease of downloading by users. They are available upon request however, by e-mailing texcode.texpertssoftware@gmail.com. Please tell us the version of TexCode you would like to obtain (NOTE: TexCode 1.0 is not available). Thank you!
The Blog post concerning the release of TexCode 1.4 previously stated that the set
function would have been able to set variables to multiple variables' values combined. For example:
int a ;
int b = 5
int c = 6
set a to b c ;
Console Output
a=11
(the sum of b
and c
)
However, due to difficulties implementing this feature, it has been decided that this capability will not be included in the next release. The add
(to be released in TexCode 1.4) will be able to accomplish the same task. For example:
int b = 5
int a = b
int c = 6
add c to a
Console Output
a=11
(the sum of b
and c
)
The TexCode developer team may discontinue TexCode for Mac, as TexCode for Windows will have more features if TexCode for Mac is continued. Contact us at texcode.texpertssoftware@gmail.com if you would not like to see TexCode for Mac discontinued. However, Mac users may still be able to run TexCode for Windows with WINE, free software which allows Windows applications to run on Mac computers. If you have any problems once TexCode 1.4 is released, please contact us at texcode.texpertssoftware@gmail.com.... read more
TexCode 1.4 for Windows will have its own GUI, instead of running in Command Prompt!
NOTE: As a result, it may be released slightly later than TexCode 1.4 for Mac.
TexCode 1.4 soon to be released!
TexCode 1.4:
1. Runs slightly faster than previous versions.*
Console output:
a = 3
(the sum of b
+ c
)
2. retrieve
function's syntax changed.
Before: retrieve a ;
After: retrieve a
3. for
statements will be added. Syntax: for
<maximum number of iterations> <value to print>. For example:
for 5 hello
Console output:
hello
hello
hello
hello
hello
4. Able to add variables' values to existing variables' values using the add
function. For example:
add a to b
5. Able to initialize and set variables' values to other variables' values. For example:
int a = b
6. Values (not variables' names) will have to be preceded by $s. For example:
int a = $hello
retrieve a ;
Console output:
hello
7. Maximum number of variables (per data type) increased to 100 (from 20).
8. Maximum number of lines in a function increased to 100 (from 20).
9. Fixed issue involving the initialization of string
, bool
, and char
variables.
10. Variable name is outputted to the console when variable is initialized without a value.
11. Fixed issue involving using the set
function when setting the value of a bool
variable.
12. Fixed issue involving the names and values of int
and string
variables not outputting to the console correctly when using the set
function.
13. set
can set a variable's value to another variable's value.
14. The print
function can print multiple words to the console.... read more