TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27) +---- Forum: Program Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=151) +---- Thread: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) (/showthread.php?tid=282157) Pages:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
|
RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2016-11-22 (2016-11-22, 21:26)Drt1989 Wrote: ^^^ It looks like you might be trying to load the tv guide while it is doing a background update. You can turn on a notification to tell you when it has finished. The conflict is that the update uses a temp file in the addon_data folder and 2 processes are probably trying to access it at the same time. If it does it every time then there is another bug. I spent a lot of time last week with the background update procedure and I didn't manage to work out a bullet-proof solution to these conflicts. It looks like you found one. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2016-11-22 @Drt1989 Try version 0.0.197. I've put some exception handling code in around copying the temp file to the final destination file. If the file is in use it should just carry on now and not bomb out with an error. Let me know if that works. [EDIT] 0.0.198 should be better. I've added a database lock file which should prevent conflicts if I'm lucky and have found the right spot. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - GriffeyJuni0r - 2016-11-22 Is the Play Last Channel feature working? I tried pressing '0' when playing a channel directly after another one, and nothing happened The gui.py line for this mapping looks like it's still in progress (I'm on Windows, Jarvis), but I just wanted to double check: elif action.getId() == [REMOTE_0]: #TODO find libreelec key self._playLastChannel() RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2016-11-23 (2016-11-22, 23:47)GriffeyJuni0r Wrote: Is the Play Last Channel feature working? I tried pressing '0' when playing a channel directly after another one, and nothing happened I thought it used to but I'm not sure now you mention it. The other number keys still work for the Lists. I tried using 61488 which is the number that gets read by the Keymap Editor addon for 0. Nothing. If you find the right key please let me know and I'll add it it. In TV mode you can still press Left then Enter to get to the last channel. One more keypress but it works. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - GriffeyJuni0r - 2016-11-23 (2016-11-23, 00:23)primaeval Wrote:(2016-11-22, 23:47)GriffeyJuni0r Wrote: Is the Play Last Channel feature working? I tried pressing '0' when playing a channel directly after another one, and nothing happened Yeah I couldn't find it either. Ah well, just re-mapped it to a different action for now - Thanks! RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2016-11-23 (2016-11-23, 07:08)GriffeyJuni0r Wrote:(2016-11-23, 00:23)primaeval Wrote:(2016-11-22, 23:47)GriffeyJuni0r Wrote: Is the Play Last Channel feature working? I tried pressing '0' when playing a channel directly after another one, and nothing happened It was a bug. It should work in 0.0.199. The code should have used the word in to compare the key like this: Code: elif action.getId() in [REMOTE_0]: #TODO find libreelec key RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - Drt1989 - 2016-11-23 (2016-11-22, 22:16)primaeval Wrote: @Drt1989 Try version 0.0.197. Sorry I am still getting Errors, Code: 13:26:27 T:501824 ERROR: C:\Users\Work\AppData\Roaming\Kodi\addons\script.module.requests\lib\requests\packages\urllib3\util\ssl_.py:120: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. I've checked and I have background update service switched to off. I am attempting to run this before opening the guide. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2016-11-23 (2016-11-23, 14:33)Drt1989 Wrote: ^^^ That looks like you got the error when trying to backup the channel mapping. Have you got the channels and programs working in the epg window? I think I might need to see what is in your settings.xml file, the full log and a listing of the addon_data folder. You can pm them if you want so they don't appear in public. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - gillmacca - 2016-11-23 Just testing this out, and loving it. Much better than my current tv guide. Great Work. I have the tv guide set to show 10 channels, when it goes to the next page it says' loading data from external source'. Is this necessary, as the guide has already imported the xml file. Other tv guides load the next page up straight away edit: ignore this. after a few minutes, the page change was instant RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2016-11-23 (2016-11-23, 15:37)gillmacca Wrote: Just testing this out, and loving it. Much better than my current tv guide. Great Work. I'm glad you like it. It does do a lot more in the background than most guides: categories filtering, addons.ini folder scraping, list view index making, thelogodb.com logo finding, tvdb/imdb program image finding, background xmltv updating and making the tea . Make sure you have "Refresh on Start" turned off, unless you want to force a reset. Don't turn set "File Download Interval" to "every start". It will also build a database index in the background at some point to speed up the Listings, Now, Next etc views. It all takes time to find everything on the interwebs and put them in the right place in your addon_data folder. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - gillmacca - 2016-11-23 (2016-11-23, 17:38)primaeval Wrote:(2016-11-23, 15:37)gillmacca Wrote: Just testing this out, and loving it. Much better than my current tv guide. Great Work. 2 main reasons that this will become my main tv guide overs others, is the ability to create categories and being able to search the TV guide. These 2 features seem to be missing from most TV guides RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2016-11-23 (2016-11-23, 18:05)gillmacca Wrote: 2 main reasons that this will become my main tv guide overs others, is the ability to create categories and being able to search the TV guide. These 2 features seem to be missing from most TV guides You probably know this: You can do those if you use the Kodi TV PVR service but you need a fixed m3u list of channels. If you rely on addons like the rest of us then TV Guide Fullscreen is probably the closest to the Kodi PVR functionality, only better of course. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - Hinkel - 2016-11-24 Seems it's only happening to me I've only seen the @gillmacca comments and it looks it's solved. After new functions were implemented in version 0.194, I could no longer run the guide normally. It takes more than 10 min to load and then each page loads again. Plus my whole system slowed down and crashed. Libreelec Linux 64bit, skin Titan JarvisBeta .92 and tested in Confluence. https://drive.google.com/file/d/0B5R-eUSBSipvQ1RoRU15ZXZWNU0/view?usp=drivesdk https://drive.google.com/file/d/0B5R-eUSBSipvaExqZk1BeVZQUVU/view?usp=drivesdk RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2016-11-24 (2016-11-24, 17:15)Hinkel Wrote: Seems it's only happening to me I've only seen the @gillmacca comments and it looks it's solved. After new functions were implemented in version 0.194, I could no longer run the guide normally. It takes more than 10 min to load and then each page loads again. Plus my whole system slowed down and crashed. Check you are up to 0.0.199, "Refresh on Start" is off and "File download interval" is more than "every start". Test it with the Background Service off to start with. It that doesn't fix it, try a Settings \ Reset Database \ EPG Data Reset. If you're still having problems send me a full log and I'll see what is wrong. There have been a few teething troubles with the Background Update Service. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2016-11-25 version 0.0.200 - Listings Views speed-up - Authentication option in Settings \ Optional - Menu buttons re-ordered (program, scheduler, channels, actions) Listings Views should be almost instantaneous now. Remote 1: Channel Listing Remote 2: Now View Remote 3: Next View etc Optional Authentication if you want to keep your xmltv files to yourself. Remember: Sharing is Caring. |