mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-07-27 06:08:01 +02:00
Merged v2.19
This commit is contained in:
commit
456b0f2d08
@ -16805,3 +16805,9 @@
|
|||||||
methods.
|
methods.
|
||||||
* Added a 'Allow WebGet Login' control in the 'Production Rights'
|
* Added a 'Allow WebGet Login' control in the 'Production Rights'
|
||||||
section of the 'User' dialog in rdadmin(1).
|
section of the 'User' dialog in rdadmin(1).
|
||||||
|
2018-05-08 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Fixed a bug in rdlogmanager(1) that caused the initial transition
|
||||||
|
type specified in the 'IMPORT' section of the 'Editing Event' dialog
|
||||||
|
to be applied to both the parent log link and the first imported
|
||||||
|
event when the 'PRE-IMPORT CARTS' list was empty and no Timed Start
|
||||||
|
was enabled.
|
||||||
|
8
NEWS
8
NEWS
@ -1,7 +1,7 @@
|
|||||||
The NEWS file for the Rivendell package.
|
The NEWS file for the Rivendell package.
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
v2.19.2int00 -- 5/5/2018
|
v2.19.2int01 -- 5/8/2018
|
||||||
|
|
||||||
Changes:
|
Changes:
|
||||||
Fixed a bug that caused the 'Switcher Matrix' and
|
Fixed a bug that caused the 'Switcher Matrix' and
|
||||||
@ -9,6 +9,12 @@ Changes:
|
|||||||
selecting a non-local 'Switcher Host' in the 'Configure RDCatch'
|
selecting a non-local 'Switcher Host' in the 'Configure RDCatch'
|
||||||
dialog in rdadmin(1).
|
dialog in rdadmin(1).
|
||||||
|
|
||||||
|
Fixed a bug in rdlogmanager(1) that caused the initial transition
|
||||||
|
type specified in the 'IMPORT' section of the 'Editing Event' dialog
|
||||||
|
to be applied to both the parent log link and the first imported
|
||||||
|
event when the 'PRE-IMPORT CARTS' list was empty and no Timed Start
|
||||||
|
was enabled.
|
||||||
|
|
||||||
Database Update:
|
Database Update:
|
||||||
This version of Rivendell uses database schema version 275, and will
|
This version of Rivendell uses database schema version 275, and will
|
||||||
automatically upgrade any earlier versions. To see the current schema
|
automatically upgrade any earlier versions. To see the current schema
|
||||||
|
@ -1 +1 @@
|
|||||||
2.19.2int00
|
2.19.2int01
|
@ -928,6 +928,14 @@ bool RDEventLine::linkLog(RDLogEvent *e,const QString &svcname,
|
|||||||
delete logline;
|
delete logline;
|
||||||
logline=NULL;
|
logline=NULL;
|
||||||
|
|
||||||
|
//
|
||||||
|
// Clear Leading Event Values
|
||||||
|
//
|
||||||
|
time_type=RDLogLine::Relative;
|
||||||
|
trans_type=event_default_transtype;
|
||||||
|
// time=time.addMSecs(length);
|
||||||
|
grace_time=-1;
|
||||||
|
|
||||||
//
|
//
|
||||||
// Calculate Event Time Boundaries
|
// Calculate Event Time Boundaries
|
||||||
//
|
//
|
||||||
@ -1104,15 +1112,17 @@ bool RDEventLine::linkLog(RDLogEvent *e,const QString &svcname,
|
|||||||
logline->setCartNumber(q->value(0).toUInt());
|
logline->setCartNumber(q->value(0).toUInt());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
/*
|
||||||
//
|
//
|
||||||
// Clear Leading Event Values
|
// Clear Leading Event Values
|
||||||
//
|
//
|
||||||
time_type=RDLogLine::Relative;
|
time_type=RDLogLine::Relative;
|
||||||
trans_type=event_default_transtype;
|
trans_type=event_default_transtype;
|
||||||
|
*/
|
||||||
time=time.addMSecs(length);
|
time=time.addMSecs(length);
|
||||||
|
/*
|
||||||
grace_time=-1;
|
grace_time=-1;
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
delete q;
|
delete q;
|
||||||
|
|
||||||
|
BIN
rivendell.ism
Executable file → Normal file
BIN
rivendell.ism
Executable file → Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user