Commit f712c9e4 authored by Claes Sjofors's avatar Claes Sjofors

Changelog

parent 4b37fc90
......@@ -21,4 +21,5 @@
100216 cs bcomp Backup added to BasePositSensor.
100304 cs bcomp Off2 and Off3 inputs added to BaseFcPPO3Fo and BaseFcPPO5Fc.
100309 cs bcomp ForceMan input added to CompModeDFo and CompModeD2Fo.
100326 cs bcomp BaseContactor, pulsed start/stop implemented.
\ No newline at end of file
100326 cs bcomp BaseContactor, pulsed start/stop implemented.
101120 cs bcomp Graphical symbols without mode indication and subraphs for separate mode indication added.
......@@ -7,3 +7,4 @@
081205 cs . Release 4.6.0-4.
090529 cs . Release 4.6.1-1.
100329 cs . Release 4.7.0-1.
101121 cs . Operating system FreeBSD added.
......@@ -17,3 +17,5 @@
100602 cs jop TextField fontsize adusted.
100602 cs jop Object graphs updated.
100602 cs jop New script, jpwr_opwind.sh, to start java operator window locally.
101006 cs jop Web operator window, possibility to remove Help and Proview buttons.
101111 cs jop Chinese characters, UTF-0 char coding of language and textfiles.
......@@ -20,6 +20,7 @@
071211 rk mmi Added supgraph mcomp_pb_dp_slave.
080115 cs - Reading of Di, Ai and Ii can be disabled by setting ConversionOn in channel object to 0.
080229 rk - I/O-handling routines generalized and some routines moved to rt_io_bus.c
100702 cs - Common IO module objects for different busses.
100708 rk - Added functionality for PROFINET IO using Softing Profinet Stack
101202 rk - Finalized PROFINET IO functionality. Added several classes
for handling different types of Profinet IO.
......
......@@ -138,4 +138,19 @@
100304 cs script Script type int change from int to long int.
100610 cs emon Support for EmergBreakAction Reboot added.
100617 cs cdh Bugfix in cdh_SuppressSuperAll.
100621 cs co Show crossreferences, searches in all crossreference files, not just in the file for the current volume.
100709 cs doc Rtt documentation.
100822 cs co Lang key size bugfix.
100822 cs pwre Conditional os i meth files
100930 cs co String conversion of null time with negative gmt offset failed.
100930 cs rt Bugfix for nodenames larger than 31 characters.
100930 cs rt strcpy using the same in and output string doesn't work in 64 bit.
101006 cs pwrb PlcThread Prio defaultvalue set to 22.
101006 cs pwrb SevHist options mask, Parameter bit added for future use.
101015 cs pwrb GetDtp, bugfix in output type.
101018 cs script Bugfix in double right parenthesis and multiple execution of single line command.
101111 cs cdh cdh_Strcpy added for copying into the same buffer.
101123 cs rt rt_emon message loop bugfix.
101123 cs pwre co_mereg bugfix, conditional opsys didn't work.
101123 cs rt getopt replaced.
101202 rk rt Added support for handling i/o-channels hidden inside attribute..
This diff is collapsed.
......@@ -1064,6 +1064,8 @@ sub create()
$root .= "/" . $ENV{"pwre_hw"};
create_dir($root);
printf( "-- Creating build tree %s/%s\n", $root, $module);
$newdir = $root . "/bld";
create_dir($newdir);
create_dir($newdir . "/exe");
......@@ -1437,7 +1439,7 @@ sub create_dir()
if (!chdir($dir)) {
if (mkdir($dir, 0775)) {
printf("-- mkdir: %s\n", $dir);
# printf("-- mkdir: %s\n", $dir);
} else {
printf("++\n++ Cannot mkdir %s, reason: %s\n", $dir, $!);
exit 1;
......
......@@ -1051,10 +1051,12 @@ sub create()
my($root) = $ENV{"pwre_broot"};
my($module) = $ENV{"pwre_bmodule"};
if (!defined($root)) {
if (!defined($root)) {
printf("++\n++ No build root is defined\n");
exit 1;
}
create_dir($root);
$root .= "/" . $ENV{"pwre_os"};
......@@ -1063,6 +1065,8 @@ sub create()
$root .= "/" . $ENV{"pwre_hw"};
create_dir($root);
printf( "-- Creating build tree %s/%s\n", $root, $module);
$newdir = $root . "/bld";
create_dir($newdir);
create_dir($newdir . "/exe");
......@@ -1436,7 +1440,7 @@ sub create_dir()
if (!chdir($dir)) {
if (mkdir($dir, 0775)) {
printf("-- mkdir: %s\n", $dir);
# printf("-- mkdir: %s\n", $dir);
} else {
printf("++\n++ Cannot mkdir %s, reason: %s\n", $dir, $!);
exit 1;
......
......@@ -1064,6 +1064,8 @@ sub create()
$root .= "/" . $ENV{"pwre_hw"};
create_dir($root);
printf( "-- Creating build tree %s/%s\n", $root, $module);
$newdir = $root . "/bld";
create_dir($newdir);
create_dir($newdir . "/exe");
......@@ -1437,7 +1439,7 @@ sub create_dir()
if (!chdir($dir)) {
if (mkdir($dir, 0775)) {
printf("-- mkdir: %s\n", $dir);
# printf("-- mkdir: %s\n", $dir);
} else {
printf("++\n++ Cannot mkdir %s, reason: %s\n", $dir, $!);
exit 1;
......
......@@ -160,3 +160,11 @@
100520 plc Bugfix in plc editor, channels wasn't viewed in subvolumes.
100617 cs script Wb script function GetAttribute didn't work for attribute objects.
100618 cs wb Crossreferences in LibHier not inserted into crossreferece list.
100827 cs wb Alignment bugfix class array attributes.
101001 cs adm Projectlist, errormessage for '_' in project name which is not allowed.
101004 cs wb PlcPgm and Node, adopt and create methods added.
101005 cs wb RtBody size alignment fix for ClassDef and Attribute objects.
101005 cs wb Node build method, current node condition for build of config files removed.
101006 cs wb Dev method PostCreate, inheritance added.
101006 cs wb IO objects, PostCreate method to automatically insert ThreadObject.
101123 cs wb Lockfile added to directory and class volumes.
......@@ -174,4 +174,15 @@
100617 cs xtt Logging of operator actions implemented.
100617 cs ge Ge scale dynamic: negative scalefactors zeroed.
100617 cs ge Popup menu action: attribute can be referenced, and object methods viewed with cascading menu.
100618 cs xtt Show crossreferences searches in crossreferencefiles for all volumes.
\ No newline at end of file
100618 cs xtt Show crossreferences searches in crossreferencefiles for all volumes.
100820 cs xtt Xtt trend bugfix, the same value was sometimes added twice to curve.
100825 cs xtt rt_xtt bugfix, option -u didn't work.
101015 cs xtt SevHist, several sevhist curves in one window.
101019 cs xtt Xtt loggning, conditional logging with expression added.
101028 cs xtt Sev curve window time selecton added and function to add curve.
101101 cs xtt Locale modified.
101111 cs xtt Ge journal bugfix for restore of incomplete journal file.
101111 cs xtt Chinese characters, UTF-0 char coding of language and textfiles.
101122 cs xtt Xtt bugfix, xtt started with -s (select opplace) didn't load the eventlist.
101123 cs ge Ge confirm, bugfix in close graph.
101203 cs xtt Xtt eventlist, ReturnText was not shown in return events.
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment