mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
Streamdev 0.5.0-rc2
This commit is contained in:
parent
11b22d9f33
commit
91c5199ac3
@ -147,3 +147,6 @@ lhanisch
|
|||||||
|
|
||||||
Eric Valette
|
Eric Valette
|
||||||
for adding support for EnhancedAC3
|
for adding support for EnhancedAC3
|
||||||
|
|
||||||
|
carel
|
||||||
|
for reporting "plugin doesn't honor APIVERSION" error in new Makefile
|
||||||
|
3
HISTORY
3
HISTORY
@ -1,6 +1,9 @@
|
|||||||
VDR Plugin 'streamdev' Revision History
|
VDR Plugin 'streamdev' Revision History
|
||||||
---------------------------------------
|
---------------------------------------
|
||||||
|
|
||||||
|
- added --remove-destination to cp commands installing plugins
|
||||||
|
- fixed "plugin doesn't honor APIVERSION" (reported by carel@vdrportal)
|
||||||
|
- updated Italian translation (thanks to Diego Pierotto)
|
||||||
- config option "client may suspend" hidden if not applicable
|
- config option "client may suspend" hidden if not applicable
|
||||||
- updated and enhanced README
|
- updated and enhanced README
|
||||||
- separated language resources of client and server
|
- separated language resources of client and server
|
||||||
|
4
Makefile
4
Makefile
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# Makefile for a Video Disk Recorder plugin
|
# Makefile for a Video Disk Recorder plugin
|
||||||
#
|
#
|
||||||
# $Id: Makefile,v 1.21.2.1 2010/06/14 10:40:11 schmirl Exp $
|
# $Id: Makefile,v 1.21.2.2 2010/06/20 19:11:15 schmirl Exp $
|
||||||
|
|
||||||
# The main source file name.
|
# The main source file name.
|
||||||
#
|
#
|
||||||
@ -81,12 +81,14 @@ all: client server
|
|||||||
client:
|
client:
|
||||||
$(MAKE) -C ./tools
|
$(MAKE) -C ./tools
|
||||||
$(MAKE) -C ./client
|
$(MAKE) -C ./client
|
||||||
|
# installs to $(LIBDIR)/libvdr-streamdev-client.so.$(APIVERSION)
|
||||||
|
|
||||||
server:
|
server:
|
||||||
$(MAKE) -C ./tools
|
$(MAKE) -C ./tools
|
||||||
$(MAKE) -C ./libdvbmpeg
|
$(MAKE) -C ./libdvbmpeg
|
||||||
$(MAKE) -C ./remux
|
$(MAKE) -C ./remux
|
||||||
$(MAKE) -C ./server
|
$(MAKE) -C ./server
|
||||||
|
# installs to $(LIBDIR)/libvdr-streamdev-server.so.$(APIVERSION)
|
||||||
|
|
||||||
dist: clean
|
dist: clean
|
||||||
@-rm -rf $(TMPDIR)/$(ARCHIVE)
|
@-rm -rf $(TMPDIR)/$(ARCHIVE)
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# Makefile for a Video Disk Recorder plugin
|
# Makefile for a Video Disk Recorder plugin
|
||||||
#
|
#
|
||||||
# $Id: Makefile,v 1.1.2.1 2010/06/14 10:40:11 schmirl Exp $
|
# $Id: Makefile,v 1.1.2.2 2010/06/20 19:12:56 schmirl Exp $
|
||||||
|
|
||||||
# The official name of this plugin.
|
# The official name of this plugin.
|
||||||
# This name will be used in the '-P...' option of VDR to load the plugin.
|
# This name will be used in the '-P...' option of VDR to load the plugin.
|
||||||
@ -70,7 +70,7 @@ libvdr-$(PLUGIN).so: $(CLIENTOBJS) $(COMMONOBJS) ../tools/sockettools.a
|
|||||||
|
|
||||||
%.so:
|
%.so:
|
||||||
$(CXX) $(CXXFLAGS) -shared $^ -o $@
|
$(CXX) $(CXXFLAGS) -shared $^ -o $@
|
||||||
@cp $@ $(LIBDIR)/$@.$(APIVERSION)
|
@cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION)
|
||||||
|
|
||||||
dist: clean
|
dist: clean
|
||||||
@-rm -rf $(TMPDIR)/$(ARCHIVE)
|
@-rm -rf $(TMPDIR)/$(ARCHIVE)
|
||||||
|
@ -10,7 +10,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: streamdev 0.5.0\n"
|
"Project-Id-Version: streamdev 0.5.0\n"
|
||||||
"Report-Msgid-Bugs-To: <http://www.vdr-developer.org/mantisbt/>\n"
|
"Report-Msgid-Bugs-To: <http://www.vdr-developer.org/mantisbt/>\n"
|
||||||
"POT-Creation-Date: 2010-06-14 13:05+0200\n"
|
"POT-Creation-Date: 2010-06-14 13:05+0200\n"
|
||||||
"PO-Revision-Date: 2008-04-13 23:42+0100\n"
|
"PO-Revision-Date: 2010-06-19 03:58+0100\n"
|
||||||
"Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n"
|
"Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n"
|
||||||
"Language-Team: <vdr@linuxtv.org>\n"
|
"Language-Team: <vdr@linuxtv.org>\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@ -45,8 +45,8 @@ msgid "Filter Streaming"
|
|||||||
msgstr "Filtra trasmissione"
|
msgstr "Filtra trasmissione"
|
||||||
|
|
||||||
msgid "Minimum Priority"
|
msgid "Minimum Priority"
|
||||||
msgstr ""
|
msgstr "Priorità minima"
|
||||||
|
|
||||||
msgid "Maximum Priority"
|
msgid "Maximum Priority"
|
||||||
msgstr ""
|
msgstr "Priorità massima"
|
||||||
|
|
||||||
|
2
common.c
2
common.c
@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
const char *VERSION = "0.5.0-rc1";
|
const char *VERSION = "0.5.0-rc2";
|
||||||
|
|
||||||
const char cMenuEditIpItem::IpCharacters[] = "0123456789.";
|
const char cMenuEditIpItem::IpCharacters[] = "0123456789.";
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# Makefile for a Video Disk Recorder plugin
|
# Makefile for a Video Disk Recorder plugin
|
||||||
#
|
#
|
||||||
# $Id: Makefile,v 1.1.2.1 2010/06/14 10:40:20 schmirl Exp $
|
# $Id: Makefile,v 1.1.2.2 2010/06/20 19:12:56 schmirl Exp $
|
||||||
|
|
||||||
# The official name of this plugin.
|
# The official name of this plugin.
|
||||||
# This name will be used in the '-P...' option of VDR to load the plugin.
|
# This name will be used in the '-P...' option of VDR to load the plugin.
|
||||||
@ -76,7 +76,7 @@ libvdr-$(PLUGIN).so: $(SERVEROBJS) $(COMMONOBJS) \
|
|||||||
|
|
||||||
%.so:
|
%.so:
|
||||||
$(CXX) $(CXXFLAGS) -shared $^ -o $@
|
$(CXX) $(CXXFLAGS) -shared $^ -o $@
|
||||||
@cp $@ $(LIBDIR)/$@.$(APIVERSION)
|
@cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
@-rm -f $(COMMONOBJS) $(SERVEROBJS) $(DEPFILE) $(PODIR)/*.mo $(PODIR)/*.pot *.so *.tgz core* *~
|
@-rm -f $(COMMONOBJS) $(SERVEROBJS) $(DEPFILE) $(PODIR)/*.mo $(PODIR)/*.pot *.so *.tgz core* *~
|
||||||
|
@ -10,7 +10,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: streamdev 0.5.0\n"
|
"Project-Id-Version: streamdev 0.5.0\n"
|
||||||
"Report-Msgid-Bugs-To: <http://www.vdr-developer.org/mantisbt/>\n"
|
"Report-Msgid-Bugs-To: <http://www.vdr-developer.org/mantisbt/>\n"
|
||||||
"POT-Creation-Date: 2010-06-14 13:06+0200\n"
|
"POT-Creation-Date: 2010-06-14 13:06+0200\n"
|
||||||
"PO-Revision-Date: 2008-04-13 23:42+0100\n"
|
"PO-Revision-Date: 2010-06-19 03:58+0100\n"
|
||||||
"Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n"
|
"Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n"
|
||||||
"Language-Team: <vdr@linuxtv.org>\n"
|
"Language-Team: <vdr@linuxtv.org>\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@ -72,14 +72,14 @@ msgid "HTTP Streamtype"
|
|||||||
msgstr "Tipo flusso HTTP"
|
msgstr "Tipo flusso HTTP"
|
||||||
|
|
||||||
msgid "Multicast Streaming Server"
|
msgid "Multicast Streaming Server"
|
||||||
msgstr ""
|
msgstr "Server trasmissione Multicast"
|
||||||
|
|
||||||
msgid "Start IGMP Server"
|
msgid "Start IGMP Server"
|
||||||
msgstr ""
|
msgstr "Avvia Server IGMP"
|
||||||
|
|
||||||
msgid "Multicast Client Port"
|
msgid "Multicast Client Port"
|
||||||
msgstr ""
|
msgstr "Porta Client Multicast"
|
||||||
|
|
||||||
msgid "Multicast Streamtype"
|
msgid "Multicast Streamtype"
|
||||||
msgstr ""
|
msgstr "Tipo flusso Multicast"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user