| Age | Commit message (Collapse) | Author |
|
|
|
user abort
|
|
|
|
|
|
Conflicts:
lib/python/Plugins/SystemPlugins/WirelessLan/plugin.py
lib/python/Screens/NetworkSetup.py
|
|
|
|
Conflicts:
lib/python/Plugins/SystemPlugins/NetworkWizard/NetworkWizard.py
|
|
|
|
Conflicts:
lib/python/Plugins/Plugin.py
|
|
|
|
Conflicts:
lib/python/Components/FileList.py
|
|
|
|
|
|
some conditions.
This fixex #203
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- add automatic wlan scan refresh functionality
- show some status informations after a successfull wlan connection has been made.
this fixex #138
|
|
doing a backup, so now should all settings be saved before a backup is done and no gui restart is needed anymore.
This fixes #351
|
|
automatic wlan scanning.
- some cleanups and skinfixes. This fixes #204
|
|
component
|
|
This fixes #308
|
|
plugins to hook inside the Softwaremanager mainmenus.
Use it like: PluginDescriptor(name=_("Pluginname"),description=_("Description"),icon = "icon.png",where = PluginDescriptor.WHERE_SOFTWAREMANAGER,
fnc={"SoftwareSupported": CallFnc, "menuEntryName": lambda x: _("menuName"), "menuEntryDescription": lambda x: _("Menu Description")})
|
|
requested by Tode for the AudioSync Plugin
fixes bug #305
|
|
|
|
|
|
|
|
display extra title information
|
|
|
|
|
|
|
|
remove DVI-PC from video wizard to solve some sorting problems and remove a not widely used option
remove
|
|
|
|
returning the ConfigString. This fixes #175
|
|
SoftwareManager/plugin.py}:- use SCOPE_CURRENT_SKIN and SCOPE_CURRENT_PLUGIN for LoadPixmap allowing better skinning.
|
|
ard.py}: -add possibility to use the VirtualKeyboard globally with every ConfigText and ConfigPassword ConfigEntry inside ConfigListScreens and WizardScreens.
-add possibility to globally move the NumericalHelpInputWindow shown from a ConfigListScreen or a Wizard Screen to a inside the Skin defined Position
This currently still needs following Skin entries defined in your Screens Skin:
"<widget source="VKeyIcon" render="Pixmap" pixmap="skin_default/buttons/key_text.png" position="10,380" zPosition="10" size="35,25" transparent="1" alphatest="on" >
<convert type="ConditionalShowHide" />
</widget>"
used for Showing/hiding the TEXT Icon if the VirtualKeyboard is available.
and:
"<widget name="HelpWindow" pixmap="skin_default/vkey_icon.png" position="160,315" zPosition="1" size="1,1" transparent="1" alphatest="on" />"
used to position the NumericalTextInputHelpWIndow inside your Screen as defined by your Screens Skin.
also you need currently:
from Components.Sources.Boolean import Boolean
self["VKeyIcon"] = Boolean(False)
self["HelpWindow"] = Pixmap()
self["HelpWindow"].hide()
inside your Screens sourcecode so we know that these items should be handled globally from Enigma2.
- remove own Helpwindow/Vkey handling from NetworkSetup.py
- include new VirtualKeyboardhandling inside NetworkWizard
This fixes #157
|
|
|
|
|
|
|
|
some beautification of PositionerSetup code regarding the ConfigSatlist sorting
|
|
Enigma2 git repo. This fixes bug #140
|
|
for this..
|
|
added m4v file extension to media player capabilities
|
|
|
|
1. Show the current seek state next next to the service time.
It is very convenient to see how fast one is winding, when scanning
through a movie.
2. Don't jump away from the current position whenever a cut or mark is
added or removed.
2a. The variable self.last_cuts was not initialized, causing a jump
to the first mark position when the first cut is made.
2b. Search backwards for the first difference between old and new
cut lists: After having produced a cut pair (out - in) you
would like to end up at the end (in) rather than beginning
(out). (This also gives more intuitive selected positions in
the general case.)
2c. Inhibit jumping whenever a cut or mark is removed: You don't
want to leave that position now when it has no mark to easily
jump back to.
3. Standing at either border of a cut, at IN or OUT, should always count
as inside the cut, so that removing it is enabled from there.
3a. Count standing exactly at the end of a cut as also standing
in an "OUT" area.
3b. It was not possible to remove a "cut from the beginning" at
all if there was any mark before the "IN" point - it was not
correctly recognized as an "OUT" area.
Also note that nowadays, with the more exact seeking code of Enigma2
(on both platforms, DM7025 and DM800/8000), the CutListEditor can't be
accused of being imprecise any more: As long as you put your cuts at
GOP boundaries (which you are most likely to do if you fine tune your
position with GOP single-stepping), the CutListEditor now has perfect
precision! :-)
patch for #246
|
|
|
|
channelselection and other channelselections based on simple channelselection
|