mirror of
https://github.com/rofafor/vdr-plugin-femon.git
synced 2023-10-10 11:36:53 +00:00
Default make target is now all.
Fixed the access rights of symbols subdirectory (Thanks to Harri Kukkonen). Added a new theme: Moronimo (Thanks to Morone).
This commit is contained in:
parent
5bda0fa833
commit
9814970182
6
HISTORY
6
HISTORY
@ -141,3 +141,9 @@ VDR Plugin 'femon' Revision History
|
|||||||
2005-02-26: Version 0.8.6
|
2005-02-26: Version 0.8.6
|
||||||
|
|
||||||
- Horizontal offset setup option should be functional now.
|
- Horizontal offset setup option should be functional now.
|
||||||
|
|
||||||
|
2005-04-01: Version 0.8.7
|
||||||
|
|
||||||
|
- Default make target is now all.
|
||||||
|
- Fixed the access rights of symbols subdirectory (Thanks to Harri Kukkonen).
|
||||||
|
- Added a new theme: Moronimo (Thanks to Morone).
|
||||||
|
3
Makefile
3
Makefile
@ -52,6 +52,9 @@ ifdef DEBUG
|
|||||||
DEFINES += -DDEBUG
|
DEFINES += -DDEBUG
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
.PHONY: all all-redirect
|
||||||
|
all-redirect: all
|
||||||
|
|
||||||
### The object files (add further files here):
|
### The object files (add further files here):
|
||||||
|
|
||||||
OBJS = femon.o femonosd.o femonreceiver.o femoncfg.o femoni18n.o
|
OBJS = femon.o femonosd.o femonreceiver.o femoncfg.o femoni18n.o
|
||||||
|
8
README
8
README
@ -21,11 +21,9 @@ transponder and stream information are also available in advanced display modes.
|
|||||||
|
|
||||||
The plugin is based on a neat console frontend status monitor application
|
The plugin is based on a neat console frontend status monitor application
|
||||||
called 'femon' by Johannes Stezenbach (see DVB-apps/szap/femon.c for further
|
called 'femon' by Johannes Stezenbach (see DVB-apps/szap/femon.c for further
|
||||||
information). The other parts of plugin code are borrowed from the excellent
|
information). The bitrate calculation trick originates from the 'dvbstream'
|
||||||
'OSD Picture-In-Picture' plugin by Sascha Volkenandt and Andreas Regel. The
|
application by Dave Chapman and the stream information routines are taken from
|
||||||
bitrate calculation algorithm originates from the 'dvbstream' application by
|
the 'libdvb' library by Metzler Brothers.
|
||||||
Dave Chapman and the stream information routines from the 'libdvb' library by
|
|
||||||
Metzler Brothers.
|
|
||||||
|
|
||||||
Terminology:
|
Terminology:
|
||||||
|
|
||||||
|
1
femon.c
1
femon.c
@ -102,6 +102,7 @@ cMenuFemonSetup::cMenuFemonSetup(void)
|
|||||||
themes[eFemonThemeClassic] = tr("Classic");
|
themes[eFemonThemeClassic] = tr("Classic");
|
||||||
themes[eFemonThemeElchi] = tr("Elchi");
|
themes[eFemonThemeElchi] = tr("Elchi");
|
||||||
themes[eFemonThemeDeepBlue] = tr("DeepBlue");
|
themes[eFemonThemeDeepBlue] = tr("DeepBlue");
|
||||||
|
themes[eFemonThemeMoronimo] = tr("Moronimo");
|
||||||
|
|
||||||
Setup();
|
Setup();
|
||||||
}
|
}
|
||||||
|
2
femon.h
2
femon.h
@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
#include <vdr/plugin.h>
|
#include <vdr/plugin.h>
|
||||||
|
|
||||||
static const char *VERSION = "0.8.6";
|
static const char *VERSION = "0.8.7";
|
||||||
static const char *DESCRIPTION = "DVB Signal Information Monitor (OSD)";
|
static const char *DESCRIPTION = "DVB Signal Information Monitor (OSD)";
|
||||||
static const char *MAINMENUENTRY = "Signal Information";
|
static const char *MAINMENUENTRY = "Signal Information";
|
||||||
|
|
||||||
|
11
femoncfg.c
11
femoncfg.c
@ -66,5 +66,16 @@ const cFemonTheme femonTheme[eFemonThemeMaxNumber] =
|
|||||||
0xFFCE7B00, // clrYellow
|
0xFFCE7B00, // clrYellow
|
||||||
0xFF336600, // clrGreen
|
0xFF336600, // clrGreen
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
// eFemonThemeMoronimo
|
||||||
|
0xDF294A6B, // clrBackground
|
||||||
|
0xDF3E5578, // clrTitleBackground
|
||||||
|
0xFF9BBAD7, // clrTitleText
|
||||||
|
0xFFCE7B00, // clrActiveText
|
||||||
|
0xFF9A9A9A, // clrInactiveText
|
||||||
|
0xFF992900, // clrRed
|
||||||
|
0xFFCE7B00, // clrYellow
|
||||||
|
0xFF336600, // clrGreen
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -50,6 +50,7 @@ enum eFemonThemes
|
|||||||
eFemonThemeClassic,
|
eFemonThemeClassic,
|
||||||
eFemonThemeElchi,
|
eFemonThemeElchi,
|
||||||
eFemonThemeDeepBlue,
|
eFemonThemeDeepBlue,
|
||||||
|
eFemonThemeMoronimo,
|
||||||
eFemonThemeMaxNumber
|
eFemonThemeMaxNumber
|
||||||
};
|
};
|
||||||
|
|
||||||
|
85
femoni18n.c
85
femoni18n.c
@ -242,45 +242,66 @@ const tI18nPhrase Phrases[] = {
|
|||||||
},
|
},
|
||||||
{ "Elchi", // English
|
{ "Elchi", // English
|
||||||
"Elchi", // Deutsch
|
"Elchi", // Deutsch
|
||||||
"", // Slovenski
|
"Elchi", // Slovenski
|
||||||
"", // Italiano
|
"Elchi", // Italiano
|
||||||
"", // Nederlands
|
"Elchi", // Nederlands
|
||||||
"", // Português
|
"Elchi", // Português
|
||||||
"", // Français
|
"Elchi", // Français
|
||||||
"", // Norsk
|
"Elchi", // Norsk
|
||||||
"Elchi", // suomi
|
"Elchi", // suomi
|
||||||
"", // Polski
|
"Elchi", // Polski
|
||||||
"", // Español
|
"Elchi", // Español
|
||||||
"", // ÅëëçíéêÜ (Greek)
|
"Elchi", // ÅëëçíéêÜ (Greek)
|
||||||
"", // Svenska
|
"Elchi", // Svenska
|
||||||
"", // Romaneste
|
"Elchi", // Romaneste
|
||||||
"", // Magyar
|
"Elchi", // Magyar
|
||||||
"", // Català
|
"Elchi", // Català
|
||||||
"", // ÀãááÚØÙ (Russian)
|
"Elchi", // ÀãááÚØÙ (Russian)
|
||||||
"", // Hrvatski (Croatian)
|
"Elchi", // Hrvatski (Croatian)
|
||||||
"Elchi", // Eesti
|
"Elchi", // Eesti
|
||||||
"", // Dansk
|
"Elchi", // Dansk
|
||||||
},
|
},
|
||||||
{ "DeepBlue", // English
|
{ "DeepBlue", // English
|
||||||
"DeepBlue", // Deutsch
|
"DeepBlue", // Deutsch
|
||||||
"", // Slovenski
|
"DeepBlue", // Slovenski
|
||||||
"", // Italiano
|
"DeepBlue", // Italiano
|
||||||
"", // Nederlands
|
"DeepBlue", // Nederlands
|
||||||
"", // Português
|
"DeepBlue", // Português
|
||||||
"", // Français
|
"DeepBlue", // Français
|
||||||
"", // Norsk
|
"DeepBlue", // Norsk
|
||||||
"DeepBlue", // suomi
|
"DeepBlue", // suomi
|
||||||
"", // Polski
|
"DeepBlue", // Polski
|
||||||
"", // Español
|
"DeepBlue", // Español
|
||||||
"", // ÅëëçíéêÜ (Greek)
|
"DeepBlue", // ÅëëçíéêÜ (Greek)
|
||||||
"", // Svenska
|
"DeepBlue", // Svenska
|
||||||
"", // Romaneste
|
"DeepBlue", // Romaneste
|
||||||
"", // Magyar
|
"DeepBlue", // Magyar
|
||||||
"", // Català
|
"DeepBlue", // Català
|
||||||
"", // ÀãááÚØÙ (Russian)
|
"DeepBlue", // ÀãááÚØÙ (Russian)
|
||||||
"", // Hrvatski (Croatian)
|
"DeepBlue", // Hrvatski (Croatian)
|
||||||
"DeepBlue", // Eesti
|
"DeepBlue", // Eesti
|
||||||
"", // Dansk
|
"DeepBlue", // Dansk
|
||||||
|
},
|
||||||
|
{ "Moronimo", // English
|
||||||
|
"Moronimo", // Deutsch
|
||||||
|
"Moronimo", // Slovenski
|
||||||
|
"Moronimo", // Italiano
|
||||||
|
"Moronimo", // Nederlands
|
||||||
|
"Moronimo", // Português
|
||||||
|
"Moronimo", // Français
|
||||||
|
"Moronimo", // Norsk
|
||||||
|
"Moronimo", // suomi
|
||||||
|
"Moronimo", // Polski
|
||||||
|
"Moronimo", // Español
|
||||||
|
"Moronimo", // ÅëëçíéêÜ (Greek)
|
||||||
|
"Moronimo", // Svenska
|
||||||
|
"Moronimo", // Romaneste
|
||||||
|
"Moronimo", // Magyar
|
||||||
|
"Moronimo", // Català
|
||||||
|
"Moronimo", // ÀãááÚØÙ (Russian)
|
||||||
|
"Moronimo", // Hrvatski (Croatian)
|
||||||
|
"Moronimo", // Eesti
|
||||||
|
"Moronimo", // Dansk
|
||||||
},
|
},
|
||||||
{ "Hide main menu entry", // English
|
{ "Hide main menu entry", // English
|
||||||
"Hauptmenüeintrag verstecken", // Deutsch
|
"Hauptmenüeintrag verstecken", // Deutsch
|
||||||
|
Loading…
x
Reference in New Issue
Block a user