Commit Graph

7174 Commits

Author SHA1 Message Date
Jacek Jendrzej
db53084d85 update slovak.locale (THX EnoSat)
Origin commit data
------------------
Commit: 423b1e0bc7
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2015-12-01 (Tue, 01 Dec 2015)
2015-12-01 18:36:02 +01:00
vanhofen
edb05bc844 moviebrowser: re-add missig comparator (msg ==)
Origin commit data
------------------
Commit: 88bd3fa308
Author: vanhofen <vanhofen@gmx.de>
Date: 2015-12-01 (Tue, 01 Dec 2015)

Origin message was:
------------------
- moviebrowser: re-add missig comparator (msg ==)
2015-12-01 12:11:29 +01:00
vanhofen
24395bece6 moviebrowser: use RC_left/right to switch display modes ...
... to get free volume keys, because these keys should change
volume only.


Origin commit data
------------------
Commit: 54e202cea8
Author: vanhofen <vanhofen@gmx.de>
Date: 2015-12-01 (Tue, 01 Dec 2015)

Origin message was:
------------------
- moviebrowser: use RC_left/right to switch display modes ...

... to get free volume keys, because these keys should change
volume only.
2015-12-01 08:17:56 +01:00
vanhofen
2a272a6658 movieplayer: change default key for TimeOSD() to RC_timeshift
Origin commit data
------------------
Commit: c88fca2ec1
Author: vanhofen <vanhofen@gmx.de>
Date: 2015-12-01 (Tue, 01 Dec 2015)

Origin message was:
------------------
- movieplayer: change default key for TimeOSD() to RC_timeshift
2015-12-01 08:14:44 +01:00
Michael Liebmann
741d79650b CLuaInstance: Add script function paintVLine() & paintHLine()
- Set Lua api version to 1.16


Origin commit data
------------------
Commit: 482cf41adf
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2015-11-27 (Fri, 27 Nov 2015)
2015-11-27 12:31:47 +01:00
Michael Liebmann
262f1d5405 CFBWindow: Add paintVLineRel() & paintHLineRel() for using...
...in external plugins


Origin commit data
------------------
Commit: 76874040a3
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2015-11-27 (Fri, 27 Nov 2015)
2015-11-27 12:31:47 +01:00
Michael Liebmann
df6878b643 CLuaInstance::CPictureNew: When dx and dy = 0 then use...
...'NO_SCALE' modus for object creation (icon)

 - Set Lua api version to 1.15


Origin commit data
------------------
Commit: 573eb7f7ad
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2015-11-27 (Fri, 27 Nov 2015)
2015-11-27 12:31:47 +01:00
Michael Liebmann
62fac41175 CLuaInstance: Add script function saveScreen()/restoreScreen()
Example:
 local memID = n:saveScreen(x, y, w, h);
 ...
 ...
 n:restoreScreen(x, y, w, h, memID, delete);
 -- delete = true => delete screen buffer
 -- delete = false => don't delete screen buffer

 - Set Lua api version to 1.14


Origin commit data
------------------
Commit: 550cfc853d
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2015-11-27 (Fri, 27 Nov 2015)

Origin message was:
------------------
CLuaInstance: Add script function saveScreen()/restoreScreen()

 Example:
  local memID = n:saveScreen(x, y, w, h);
   ...
   ...
  n:restoreScreen(x, y, w, h, memID, delete);
   -- delete = true => delete screen buffer
   -- delete = false => don't delete screen buffer

 - Set Lua api version to 1.14
2015-11-27 12:31:47 +01:00
Michael Liebmann
ef2ddcf16e CFBWindow: Add saveScreen() & restoreScreen() for using...
...in external plugins


Origin commit data
------------------
Commit: 895b781629
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2015-11-27 (Fri, 27 Nov 2015)
2015-11-27 12:31:47 +01:00
Michael Liebmann
9d5e94898e CLuaInstance: Add DynFonts for lua scripts
- You can create fixed-size fonts for use in Lua Scripts
 - The fonts are deleted after the script
 - The use of fonts is limited to the following functions currently:
 - RenderString()
 - getRenderWidth()
 - FontHeight()
 - Example in Lua scripts:
 Normal usage:
 local font = FONT.MENU
 RenderString(font, ....)
 Use DynFonts:
 Creates a font with height of 50px:
 local font = n:getDynFont(0, 50)
 local useDynFont = true
 RenderString(useDynFont, font, ....)
  or
 Creates a font in which the text("Example: xyz") has a width of 200px:
 local font = n:getDynFont(200, 0, "Example: xyz")
 local useDynFont = true
 RenderString(useDynFont, font, ....)

 - Set Lua api version to 1.13


Origin commit data
------------------
Commit: a307e806eb
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2015-11-27 (Fri, 27 Nov 2015)

Origin message was:
------------------
CLuaInstance: Add DynFonts for lua scripts

 - You can create fixed-size fonts for use in Lua Scripts
 - The fonts are deleted after the script
 - The use of fonts is limited to the following functions currently:
  - RenderString()
  - getRenderWidth()
  - FontHeight()
 - Example in Lua scripts:
  Normal usage:
   local font = FONT.MENU
   RenderString(font, ....)
  Use DynFonts:
   Creates a font with height of 50px:
    local font = n:getDynFont(0, 50)
    local useDynFont = true
    RenderString(useDynFont, font, ....)
      or
   Creates a font in which the text("Example: xyz") has a width of 200px:
    local font = n:getDynFont(200, 0, "Example: xyz")
    local useDynFont = true
    RenderString(useDynFont, font, ....)

 - Set Lua api version to 1.13
2015-11-27 12:31:47 +01:00
Michael Liebmann
97140dbedb CNeutrinoFonts: Add 'getDynFontExt()' for create custom fonts...
...in external plugins


Origin commit data
------------------
Commit: 56d76f4ebc
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2015-11-27 (Fri, 27 Nov 2015)
2015-11-27 12:31:47 +01:00
defans
593805b854 luainstance: add GetRevision() function
- Set Lua api version to 1.12

Signed-off-by: svenhoefer <svenhoefer@svenhoefer.com>


Origin commit data
------------------
Commit: 7caf055ea0
Author: defans <defans@bluepeercrew.us>
Date: 2015-11-23 (Mon, 23 Nov 2015)

Origin message was:
------------------
- luainstance: add GetRevision() function

 - Set Lua api version to 1.12

Signed-off-by: svenhoefer <svenhoefer@svenhoefer.com>
2015-11-24 11:58:02 +01:00
[CST] Focus
663eed5bd9 gui/movieplayer.cpp: start movies in playlists at start bookmark
Origin commit data
------------------
Commit: 08e68ea464
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2015-11-24 (Tue, 24 Nov 2015)
2015-11-24 09:02:52 +01:00
Michael Liebmann
ae81b7ba16 CLuaInstance: Fix transfer of color values in...
...PaintBox() and RenderString() for coolstream hardware

 - Set Lua api version to 1.11


Origin commit data
------------------
Commit: 45569a736a
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2015-11-23 (Mon, 23 Nov 2015)
2015-11-23 08:15:23 +01:00
vanhofen
3f0e766de0 cables.xml: update Antennenverein Hohenmoelsen; thx to lusto
Origin commit data
------------------
Commit: 9ff6e120d8
Author: vanhofen <vanhofen@gmx.de>
Date: 2015-11-22 (Sun, 22 Nov 2015)

Origin message was:
------------------
- cables.xml: update Antennenverein Hohenmoelsen; thx to lusto
2015-11-22 03:56:22 +01:00
Jacek Jendrzej
8c07daf724 src/gui/record_setup.cpp disable not used
Origin commit data
------------------
Commit: 15478a44c4
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2015-11-22 (Sun, 22 Nov 2015)
2015-11-22 18:12:12 +01:00
vanhofen
94156ee44d cables.xml: update Antennengemeinschaft Goeltzschtalbruecke
Origin commit data
------------------
Commit: 66e8b155f3
Author: vanhofen <vanhofen@gmx.de>
Date: 2015-11-21 (Sat, 21 Nov 2015)

Origin message was:
------------------
- cables.xml: update Antennengemeinschaft Goeltzschtalbruecke
2015-11-21 22:58:23 +01:00
defans
7ee7eb2275 streaminfo2.cpp: reduce signalbox flickering
Origin commit data
------------------
Commit: 5cb0ca21cd
Author: defans <defans@bluepeercrew.us>
Date: 2015-11-20 (Fri, 20 Nov 2015)

Origin message was:
------------------
- streaminfo2.cpp: reduce signalbox flickering
2015-11-20 09:06:27 +01:00
defans
22f70501c4 streaminfo2.cpp: force repaint of signalbox after ...
... switching back from signal diagram


Origin commit data
------------------
Commit: c689e5d224
Author: defans <defans@bluepeercrew.us>
Date: 2015-11-19 (Thu, 19 Nov 2015)

Origin message was:
------------------
- streaminfo2.cpp: force repaint of signalbox after ...

... switching back from signal diagram
2015-11-19 12:11:50 +01:00
Jacek Jendrzej
2f3b098066 data/satellites.xml update Astra 19 (THX Janus)
Origin commit data
------------------
Commit: 21914f032c
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2015-11-18 (Wed, 18 Nov 2015)
2015-11-18 16:52:56 +01:00
Michael Liebmann
ac7e88d2a3 CLuaInstance: Fix compiler warning/error "'DBG' redefined"
Origin commit data
------------------
Commit: 8c41a922b0
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2015-11-18 (Wed, 18 Nov 2015)
2015-11-18 12:19:17 +01:00
Jacek Jendrzej
47f9addfd2 data/satellites.xml update Eutelsat 16A (16.0E)
Origin commit data
------------------
Commit: 6ddfb506de
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2015-11-17 (Tue, 17 Nov 2015)
2015-11-17 17:37:09 +01:00
Jacek Jendrzej
e524655e98 data/satellites.xml update Astra 3B (23.5E) (THX bazi98)
Origin commit data
------------------
Commit: a237b55d6a
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2015-11-17 (Tue, 17 Nov 2015)
2015-11-17 17:18:15 +01:00
Jacek Jendrzej
136d5ad9c1 data/satellites.xml update Eutelsat Hot Bird 13 and Astra 19
Origin commit data
------------------
Commit: 4034666fe3
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2015-11-17 (Tue, 17 Nov 2015)
2015-11-17 13:50:50 +01:00
Michael Liebmann
7f8badb714 CLuaInstance: Fix for commit 735a03f
- CC_SHADOW_RIGHT & CC_SHADOW_BOTTOM not yet implemented


Origin commit data
------------------
Commit: 8f7802f018
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2015-11-16 (Mon, 16 Nov 2015)
2015-11-16 14:30:55 +01:00
[CST] Bas
4ef7140da5 neutrino: disable TS (CI) if the module is not selected for a certain bouquet.
Origin commit data
------------------
Commit: a2babbb0a7
Author: [CST] Bas <bas@coolstreamtech.com>
Date: 2015-11-13 (Fri, 13 Nov 2015)
2015-11-16 15:41:01 +03:00
Michael Liebmann
735a03f83e CLuaInstance: Add constants from CComponents as CC.xxx
- Set Lua api version to 1.10


Origin commit data
------------------
Commit: 755e4d965c
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2015-11-16 (Mon, 16 Nov 2015)
2015-11-16 13:15:49 +01:00
Michael Liebmann
2860110c3d CLuaInstance: Add script function 'paramDeprecated'
Origin commit data
------------------
Commit: 35c6121780
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2015-11-16 (Mon, 16 Nov 2015)
2015-11-16 13:15:49 +01:00
Michael Liebmann
ac966aa88f CLuaInstance: Executing 'zapit leave standby' only when script...
...is terminated with an error

Complement to commit dd8987fbce


Origin commit data
------------------
Commit: 09881321e2
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2015-11-16 (Mon, 16 Nov 2015)
2015-11-16 05:13:02 +01:00
Michael Liebmann
101b8549d6 CLuaInstance: Add screen constants 'X_RES' and 'Y_RES'
- Set Lua api version to 1.9


Origin commit data
------------------
Commit: 24881e4228
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2015-11-14 (Sat, 14 Nov 2015)
2015-11-14 21:53:00 +01:00
Michael Liebmann
3b66fb9433 CLuaInstance: Add script function 'enableInfoClock'
- Set Lua api version to 1.8


Origin commit data
------------------
Commit: d5031496d0
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2015-11-14 (Sat, 14 Nov 2015)
2015-11-14 21:53:00 +01:00
Michael Liebmann
dd8987fbce CLuaInstance: Add script function 'zapitSetStandby'
- Necessary for some video plugins
 - Set Lua api version to 1.7


Origin commit data
------------------
Commit: 6f66e21940
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2015-11-13 (Fri, 13 Nov 2015)
2015-11-14 21:53:00 +01:00
Jacek Jendrzej
552f3417d3 src/gui/cam_menu.cpp: fix nevis compil
Origin commit data
------------------
Commit: 715c0e383d
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2015-11-14 (Sat, 14 Nov 2015)
2015-11-14 16:19:39 +01:00
vanhofen
85f5b4c28b locale: update deutsch.locale
Origin commit data
------------------
Commit: 0b264e0b66
Author: vanhofen <vanhofen@gmx.de>
Date: 2015-11-08 (Sun, 08 Nov 2015)

Origin message was:
------------------
- locale: update deutsch.locale
2015-11-08 19:55:55 +01:00
vanhofen
fce301541b listbox and upnpbrowser: fix pagedown logic
Origin commit data
------------------
Commit: d422e7e649
Author: vanhofen <vanhofen@gmx.de>
Date: 2015-11-08 (Sun, 08 Nov 2015)

Origin message was:
------------------
- listbox and upnpbrowser: fix pagedown logic
2015-11-08 19:46:35 +01:00
vanhofen
d1753c3f2c channellist, bouquetlist and bouqueteditor: fix pagedown logic
Origin commit data
------------------
Commit: ed4adff745
Author: vanhofen <vanhofen@gmx.de>
Date: 2015-11-08 (Sun, 08 Nov 2015)

Origin message was:
------------------
- channellist, bouquetlist and bouqueteditor: fix pagedown logic
2015-11-08 19:30:59 +01:00
[CST] Focus
415450ea66 fix for 2da5657b67
Origin commit data
------------------
Commit: b6cd3d055d
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2015-11-08 (Sun, 08 Nov 2015)
2015-11-08 13:31:22 +03:00
[CST] Focus
2da5657b67 fix for 49faa82bed
Origin commit data
------------------
Commit: e0eb677513
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2015-11-08 (Sun, 08 Nov 2015)
2015-11-08 12:07:58 +03:00
Michael Liebmann
e006bec857 helpers.cpp: Fix sscanf format string in getJFFS2MountPoint (THX Jacek)
Origin commit data
------------------
Commit: 1d992a6d13
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2015-11-07 (Sat, 07 Nov 2015)
2015-11-07 10:56:55 +01:00
[CST] Focus
a4eee463c8 gui/channellist.cpp: fix compile
Origin commit data
------------------
Commit: 020b477a7d
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2015-11-06 (Fri, 06 Nov 2015)
2015-11-06 17:57:08 +03:00
[CST] Focus
49faa82bed neutrino: add option to limit CI usage to selected bouquets;
if no bouquets selected, CI used for all channels


Origin commit data
------------------
Commit: eab8bbec20
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2015-11-06 (Fri, 06 Nov 2015)
2015-11-06 17:24:15 +03:00
[CST] Focus
be4b5a05af neutrino: add option to limit CI usage to selected tuner
Origin commit data
------------------
Commit: 5a8fc39ef9
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2015-11-05 (Thu, 05 Nov 2015)
2015-11-06 17:24:10 +03:00
[CST] Focus
8165f4c7df gui/movieplayer.cpp: try to fix bouquet/channel locking for webtv
Origin commit data
------------------
Commit: ebb2d74d9f
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2015-11-03 (Tue, 03 Nov 2015)
2015-11-06 17:23:55 +03:00
[CST] Focus
f17e65597f gui/channellist.cpp: disable virtual bouquet edit,
split handleMsg and pincode check code


Origin commit data
------------------
Commit: 14dbe516d3
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2015-11-03 (Tue, 03 Nov 2015)
2015-11-06 17:23:49 +03:00
[CST] Focus
c6f0b53a83 system/configure_network.cpp: try to support open wlan, if psk empty
Origin commit data
------------------
Commit: d5fa59a640
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2015-11-03 (Tue, 03 Nov 2015)
2015-11-06 17:23:41 +03:00
[CST] Focus
f11400c7dc neutrino.cpp: on favorites button, show providers, if favorites empty
Origin commit data
------------------
Commit: e07c9ba0e4
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2015-11-03 (Tue, 03 Nov 2015)
2015-11-06 17:23:36 +03:00
[CST] Focus
0574899a05 gui/streaminfo2.cpp: add bitrate info for TS/webtv/file playback, based on code (C) martii
Origin commit data
------------------
Commit: 891c0fe8d0
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2015-10-29 (Thu, 29 Oct 2015)
2015-11-06 17:23:29 +03:00
[CST] Focus
0f5c4ba666 gui/movieplayer.cpp: add GetReadCount, (C) martii,
user RED button to call streaminfo


Origin commit data
------------------
Commit: 3feba2b40d
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2015-10-29 (Thu, 29 Oct 2015)
2015-11-06 17:23:25 +03:00
[CST] Focus
e544af9c73 gui/infoviewer_bb.cpp: show streaminfo label for red button in TS mode
Origin commit data
------------------
Commit: a4d0179beb
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2015-10-29 (Thu, 29 Oct 2015)
2015-11-06 17:23:20 +03:00
[CST] Focus
e41bc0e19d lib/libcoolstream/playback_cs.h, lib/libcoolstream2/playback_cs.h: update
Origin commit data
------------------
Commit: 294ed15de6
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2015-10-29 (Thu, 29 Oct 2015)
2015-11-06 17:23:15 +03:00