Skip to content

Commit 54a56b4

Browse files
committed
update dev tools readme and version to 25.1.19
1 parent 3ee63f8 commit 54a56b4

13 files changed

Lines changed: 16 additions & 37 deletions

File tree

DevelopmentTools/Assembler/Main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ void PrintUsage()
6161

6262
void PrintVersion()
6363
{
64-
cout << "assemble v25.1.4" << endl;
64+
cout << "assemble v25.1.19" << endl;
6565
cout << "Vircon32 assembler by Javier Carracedo" << endl;
6666
}
6767

DevelopmentTools/CCompiler/Main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ void PrintUsage()
6565

6666
void PrintVersion()
6767
{
68-
cout << "compile v25.1.4" << endl;
68+
cout << "compile v25.1.19" << endl;
6969
cout << "Vircon32 C compiler by Javier Carracedo" << endl;
7070
}
7171

DevelopmentTools/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ project("Vircon32")
6868
# Define version
6969
set(PROJECT_VERSION_MAJOR 25)
7070
set(PROJECT_VERSION_MINOR 1)
71-
set(PROJECT_VERSION_PATCH 13)
71+
set(PROJECT_VERSION_PATCH 19)
7272

7373
# Set names for final executables
7474
set(C_COMPILER_BINARY_NAME "compile")

DevelopmentTools/Data/Readme.txt

Lines changed: 4 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
================================================
22
PC development tools for Vircon32 console
3-
(version 25.1.4). README written by Carra
3+
(version 25.1.19). README written by Carra
44
================================================
55

66

@@ -88,31 +88,10 @@ Included programs (reverse tools)
8888

8989
------------------------------------------------------------
9090

91-
What's new in version 25.1.4?
91+
What's new in version 25.1.19?
9292

93-
- Added new tool: "joinpngs", to join multiple images into
94-
a single texture and generate its region editor project.
95-
- Because of joinpns, the required C++ version to build
96-
the tools from source now changes from C++11 to C++17.
97-
- Added new command-line options for debugging to compiler
98-
and assembler:
99-
- With option -g they will output additional files with
100-
debug info for the generated program.
101-
- With option --debugmode they will create additional
102-
files detailing the result of their internal stages
103-
(like the compiler's AST tree).
104-
- Added support for character literals in the assembler,
105-
using notation 'A', and escaped as '\'' or '\x41'.
106-
- Fixed a compiler bug: type consistency was not being
107-
checked in declarations of extern variables.
108-
- Fixed a typo in compiler's math.h header: in function
109-
atan2, the names of the arguments x and y were swapped.
110-
However this was just a naming issue. The inner workings
111-
of atan2 did not change.
112-
- Fixed a bug in wav2vircon: output sound was not always
113-
being created correctly if inputs had sample rates
114-
different from the default 44100 Hz.
115-
- Updated and fixed the assembler tests folder.
93+
- Fixes the previous problems on Windows that prevented
94+
accessing files if their path had non English characters.
11695

11796
------------------------------------------------------------
11897

DevelopmentTools/Disassembler/Main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ void PrintUsage()
5151

5252
void PrintVersion()
5353
{
54-
cout << "disassemble v25.1.4" << endl;
54+
cout << "disassemble v25.1.19" << endl;
5555
cout << "Vircon32 disassembler by Javier Carracedo" << endl;
5656
}
5757

DevelopmentTools/PNG2Vircon/png2vircon.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ void PrintUsage()
175175

176176
void PrintVersion()
177177
{
178-
cout << "png2vircon v25.1.4" << endl;
178+
cout << "png2vircon v25.1.19" << endl;
179179
cout << "Vircon32 PNG file importer by Javier Carracedo" << endl;
180180
}
181181

DevelopmentTools/PNG2Vircon/vircon2png.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ void PrintUsage()
196196

197197
void PrintVersion()
198198
{
199-
cout << "vircon2png v25.1.4" << endl;
199+
cout << "vircon2png v25.1.19" << endl;
200200
cout << "Vircon32 PNG file extractor by Javier Carracedo" << endl;
201201
}
202202

DevelopmentTools/PNGJoiner/PNGJoiner.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ void PrintUsage()
5757

5858
void PrintVersion()
5959
{
60-
cout << "joinpngs v25.1.4" << endl;
60+
cout << "joinpngs v25.1.19" << endl;
6161
cout << "Vircon32 PNG image joiner by Javier Carracedo" << endl;
6262
}
6363

DevelopmentTools/RomPacker/Main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ void PrintUsage()
6060

6161
void PrintVersion()
6262
{
63-
cout << "packrom v25.1.4" << endl;
63+
cout << "packrom v25.1.19" << endl;
6464
cout << "Vircon32 ROM packer by Javier Carracedo" << endl;
6565
}
6666

DevelopmentTools/RomUnpacker/Main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ void PrintUsage()
6161

6262
void PrintVersion()
6363
{
64-
cout << "unpackrom v25.1.4" << endl;
64+
cout << "unpackrom v25.1.19" << endl;
6565
cout << "Vircon32 ROM unpacker by Javier Carracedo" << endl;
6666
}
6767

0 commit comments

Comments
 (0)