mirror of
https://projects.vdr-developer.org/git/vdr-plugin-skindesigner.git
synced 2023-10-19 17:58:31 +02:00
compatibility to vdr 2.3.8
This commit is contained in:
parent
c8d54dbe25
commit
beeb82bbda
4
HISTORY
4
HISTORY
@ -431,3 +431,7 @@ Version 0.7.1
|
|||||||
- added possibility to define help texts for skin setup parameters
|
- added possibility to define help texts for skin setup parameters
|
||||||
|
|
||||||
Version 0.7.2
|
Version 0.7.2
|
||||||
|
|
||||||
|
Version 1.2.4 (horchi)
|
||||||
|
|
||||||
|
- added compatibility to vdr 2.3.8
|
||||||
|
@ -1611,8 +1611,8 @@ char *cTextExpr::CopyTextPart(char *start, char *stop, bool incLastChar) {
|
|||||||
} else {
|
} else {
|
||||||
//search end of text
|
//search end of text
|
||||||
char *p = start;
|
char *p = start;
|
||||||
while (*p)
|
while (*p) {
|
||||||
len++; p++;
|
len++; p++; }
|
||||||
len++;
|
len++;
|
||||||
}
|
}
|
||||||
val = (char*)malloc(len+1);
|
val = (char*)malloc(len+1);
|
||||||
|
@ -69,7 +69,7 @@ void cSDDisplayMenu::SetMessage(eMessageType Type, const char *Text) {
|
|||||||
view->SetMessage(Type, Text);
|
view->SetMessage(Type, Text);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool cSDDisplayMenu::SetItemEvent(const cEvent *Event, int Index, bool Current, bool Selectable, const cChannel *Channel, bool WithDate, eTimerMatch TimerMatch) {
|
bool cSDDisplayMenu::SetItemEvent(const cEvent *Event, int Index, bool Current, bool Selectable, const cChannel *Channel, bool WithDate, eTimerMatch TimerMatch, bool TimerActive) {
|
||||||
if (!view)
|
if (!view)
|
||||||
return false;
|
return false;
|
||||||
if (Index == 0) {
|
if (Index == 0) {
|
||||||
|
@ -23,7 +23,8 @@ public:
|
|||||||
virtual void SetTitle(const char *Title);
|
virtual void SetTitle(const char *Title);
|
||||||
virtual void SetButtons(const char *Red, const char *Green = NULL, const char *Yellow = NULL, const char *Blue = NULL);
|
virtual void SetButtons(const char *Red, const char *Green = NULL, const char *Yellow = NULL, const char *Blue = NULL);
|
||||||
virtual void SetMessage(eMessageType Type, const char *Text);
|
virtual void SetMessage(eMessageType Type, const char *Text);
|
||||||
virtual bool SetItemEvent(const cEvent *Event, int Index, bool Current, bool Selectable, const cChannel *Channel, bool WithDate, eTimerMatch TimerMatch);
|
virtual bool SetItemEvent(const cEvent *Event, int Index, bool Current, bool Selectable, const cChannel *Channel, bool WithDate, eTimerMatch TimerMatch, bool TimerActive);
|
||||||
|
virtual bool SetItemEvent(const cEvent *Event, int Index, bool Current, bool Selectable, const cChannel *Channel, bool WithDate, eTimerMatch TimerMatch) { return SetItemEvent(Event, Index, Current, Selectable, Channel, WithDate, TimerMatch, true); }
|
||||||
virtual bool SetItemTimer(const cTimer *Timer, int Index, bool Current, bool Selectable);
|
virtual bool SetItemTimer(const cTimer *Timer, int Index, bool Current, bool Selectable);
|
||||||
virtual bool SetItemChannel(const cChannel *Channel, int Index, bool Current, bool Selectable, bool WithProvider);
|
virtual bool SetItemChannel(const cChannel *Channel, int Index, bool Current, bool Selectable, bool WithProvider);
|
||||||
virtual bool SetItemRecording(const cRecording *Recording, int Index, bool Current, bool Selectable, int Level, int Total, int New);
|
virtual bool SetItemRecording(const cRecording *Recording, int Index, bool Current, bool Selectable, int Level, int Total, int New);
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
static const char *VERSION = "1.2.3";
|
static const char *VERSION = "1.2.4";
|
||||||
static const char *DESCRIPTION = trNOOP("Skin Designer");
|
static const char *DESCRIPTION = trNOOP("Skin Designer");
|
||||||
|
|
||||||
class cPluginSkinDesigner : public cPlugin, public skindesignerapi::SkindesignerAPI {
|
class cPluginSkinDesigner : public cPlugin, public skindesignerapi::SkindesignerAPI {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user