aboutsummaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2008-11-06some fixesMladen Horvat
B A A
2008-11-06allow setting progress for current task from within resident task, implement ↵Fraxinas
rudimentary progress for mplextask in dvdburn (requires dvdauthor patch)
2008-11-06try to add dvdburn icon once againFraxinas
2008-11-06also make in FD nonblockingghost
2008-11-06nastily pretend the dvd minus rw bruning error never happenedFraxinas
2008-11-06don't crash when background jobs fail and user presses red keyFraxinas
2008-11-06don't crash when exitting dvd image selection without selectionFraxinas
2008-11-06implement blanking of dvd minus rw mediaFraxinas
2008-11-06add virtual keyboard as easy input helpAcid-Burn
add icons for virtual keyboard network fixes wlan fixeS
2008-11-06more failsave code, remove imho unneeded invalidate callsghost
2008-11-06dont do SDT update when tuned to wrong transponderghost
2008-11-06save backup network configuration files and not only gui stuff from enigma2 ↵Fraxinas
and change the default backup location to harddisk (on behalf of sat-man)
2008-11-06Don't block key '5' on keyboard.Andreas Oberritter
'5' should never be blocked because it is essential for many functions. Also it is unclear why both 0x35 and 0x7E codes are supposed to be generated by 'mute'. Until this is resolved, unblocking '5' is the best solution from a user's POV.
2008-11-06fix streaming playback (webradio)Fraxinas
2008-11-06fix decodeFelix Domke
2008-11-06user correct playlist parser from dictFraxinas
2008-11-06Revert "check sid and tsid before start automatic service update (STD update)"ghost
This reverts commit 21812866841eec7ab7a79ee61067581f8202df55.
2008-11-06add .mp2 as supported filetypeghost
2008-11-06check sid and tsid before start automatic service update (STD update)ghost
2008-11-06small fixghost
2008-11-06add icon to be installed. remove deprecated directoriesFraxinas
2008-11-06add missing importghost
2008-11-06remove debug outputghost
2008-11-06needed update for avahi stuffghost
2008-11-06add additional clear text error messages for burntaskFraxinas
2008-11-06actually burn and not just simulate burning to dvd-MINUS-r(w) mediaFraxinas
2008-11-06fix syntax errorghost
2008-11-06dont add cmd to arglistghost
2008-11-06add possibility to call eConsoleAppContainer execute with unlimited count of ↵ghost
arguments when its called with single argument, then /bin/sh is started else not
2008-11-06uncomment necessary lineFraxinas
2008-11-06fix mem bug by changing c strings to cpp stringsFraxinas
2008-11-06Add DiSEqC reset after voltage enable and tune failed... hopefully this ↵ghost
fixes problems with some DiSEqC switches
2008-11-06add possibility to disable user input in Messageboxesghost
2008-11-06fix execute string for tasksandy
2008-11-06add plugin list icon for dvdburnandy
2008-10-30small refcounting fixes, add private operator delete to iObjectAndreas Monzner
2008-10-29also use refcounting for eTimersAndreas Monzner
its now no more possible directly to call new eTimer .. or to embedded eTimer. to create a eTimer now eTimer::create must be used... to delete you must call ->AddRef() after timer creation and ->Release when the timer is no more needed. Or use ePtr<eTimer> to store the timer reference.. then its enough to set the ePtr<eTimer> object to 0 when the timer is no more needed
2008-10-29fix compiler warningAndreas Monzner
2008-10-29delete eSocketNotifiers isnt allowed...Andreas Monzner
please call ->AddRef() after eSocketNotifier::create ... and ->Release() when the eSocketNotifier is no more needed... or use ePtr<eSocketNotifier>
2008-10-29better solution to add possibility to delete eSocketNotifiers,Andreas Monzner
eConsoleAppContainers in callback funktions without crash
2008-10-29hand over extra_args to finished callback for eBatch callsAndreas Frisch
2008-10-29allow creating .ISO files. allow burning .ISO images or preauthored dvd ↵Andreas Frisch
structures (e.g. from failed burning attempts) to DVD. allow choice between ISO9660 level 1, ISO9660 version 2 and UDF as file system for data DVDs. new options are available for selection within settings screen. burning dvd from image is available as option in menu.
2008-10-29fix non working timer disable for recurring timers,Andreas Monzner
no more use texts to detect state
2008-10-29fix dependenciesAndreas Monzner
2008-10-29remove no more needed filesAndreas Monzner
2008-10-29add eBatch function for running system commands sequentiallyAndreas Frisch
2008-10-28remove non working wrapper class to add a (unneeded) .get() call toAndreas Monzner
eConsoleAppContainers.. so now all external plugins must remove this .get() calls... example: cont = eConsoleAppContainer() cont.appClosed.append(cb_func) # old was cont.appClosed.get().append(cb_func)
2008-10-28add flac and mp4Andreas Frisch
2008-10-28change internal handling of media format types and don't scan cd before ↵Andreas Frisch
opening context menu
2008-10-28cleanup eConsoleAppContainer code.. execute is now only possible to call withAndreas Monzner
one single string argument