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. ;) - JQZ* - 2019-03-19 (2019-03-19, 09:18)primaeval Wrote: Add a new Remind to the old notifications table and see if I've changed the format of any of the columns. I added a new Remind to my old/current source.db/notifications, but I'm not sure I understand what you mean about any changes in the format of the notification columns. Looking at source.db in sqlite, the column names are as they've always been: channel,program_title,source,start_date,type The name of the channel for the added Remind matches what I have in my WebGrab++.config.xml. I'm not sure what you mean about how it's encoded. The start date, 1552993200.0, matches the format of all the others in there. I have 206 lines of notifications entries. I haven't started from scratch in a while. But when I was doing the tests I mentioned previously, I exported the empty notifications in the newly created source.db to notifications.csv, then dropped it and imported it again, and the problem with the Remind menu returned. So after loading a brand new source.db, the menu properly showed Don't Remind. But after removing the test Remind, exporting to notifications.csv, dropping notifications, and then importing the notifications.csv I'd just backed up, the problem was back. I just repeated that whole process to confirm it, but this time exporting with the 1 test Remind, and the problem did pop up again. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2019-03-19 (2019-03-19, 13:38)JQZ* Wrote:I think you better pm me some data.(2019-03-19, 09:18)primaeval Wrote: Add a new Remind to the old notifications table and see if I've changed the format of any of the columns. Something must be stuck somewhere but I can't find it. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - JQZ* - 2019-03-19 (2019-03-19, 13:49)primaeval Wrote: I think you better pm me some data. Okay... PM me what you need. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2019-03-19 (2019-03-19, 13:53)JQZ* Wrote:The best would be to zip up the whole addon_data\script.tvguide.fullscreen folder, put it somewhere private and send me a link.(2019-03-19, 13:49)primaeval Wrote: I think you better pm me some data. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - JQZ* - 2019-03-19 (2019-03-19, 13:56)primaeval Wrote: The best would be to zip up the whole addon_data\script.tvguide.fullscreen folder, put it somewhere private and send me a link.PM with zip URL sent p. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2019-03-19 (2019-03-19, 14:11)JQZ* Wrote:Thanks.(2019-03-19, 13:56)primaeval Wrote: The best would be to zip up the whole addon_data\script.tvguide.fullscreen folder, put it somewhere private and send me a link.PM with zip URL sent p. Your notifications table start_date has a type of DATETIME instead of TIMESTAMP. autoplays and autoplaywiths are correct with the TIMESTAMP type. It must be pulling the notifications.csv file back in is changing the format of the table. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - JQZ* - 2019-03-19 (2019-03-19, 14:52)primaeval Wrote: Thanks.Okay... I see what you're looking at now. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - JQZ* - 2019-03-19 (2019-03-19, 14:52)primaeval Wrote: Thanks.Hey p... my copy of SQLite Manager, the old Firefox addon that I have to use in an old portable version now, must have been what wrote that DATETIME for the notification start_date. It's never given me a TIMESTAMP option for setting that when I import the csv. I've alway used DATETIME successfully. So I'm not sure how this is affecting the problem. I've been importing notification csv files for the past couple of years, and never saw a problem with your menus like this before. I never got a handle on how to get DB Vrowser for SQLite to import anything successfully. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2019-03-19 (2019-03-19, 15:34)JQZ* Wrote:DB Browser for SQLite imported your notifications.csv file ok into a new source.db file.(2019-03-19, 14:52)primaeval Wrote: Thanks.Hey p... my copy of SQLite Manager, the old Firefox addon that I have to use in an old portable version now, must have been what wrote that DATETIME for the notification start_date. It's never given me a TIMESTAMP option for setting that when I import the csv. I've alway used DATETIME successfully. So I'm not sure how this is affecting the problem. I've been importing notification csv files for the past couple of years, and never saw a problem with your menus like this before. I never got a handle on how to get DB Vrowser for SQLite to import anything successfully. https://sqlitebrowser.org/ I used your xmltv.xml to create source.db in a fresh addon_data\script.tvguide.fullscreen folder. Then in DB Browser File \ Import \ Import Table from csv notifications.csv Column names in first line = tick OK RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - JQZ* - 2019-03-19 (2019-03-19, 15:50)primaeval Wrote: DB Browser for SQLite imported your notifications.csv file ok into a new source.db file.Hmmm... I just got DB Browser for SQLite to export and then import notifications successfully. At that point the 1 test Remind I set was listed in sqlite properly, but when I open TVGF, the reminder isn't displayed. It's been a while since I've tackled getting DB Browser for SQLite to work for me. Kind of forget if this was the issue I was having. EDIT: I see the Don't Remind doesn't show up after that test too after setting a new one. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2019-03-19 (2019-03-19, 16:11)JQZ* Wrote:I don't quite understand what you're saying. Is it working now?(2019-03-19, 15:50)primaeval Wrote: DB Browser for SQLite imported your notifications.csv file ok into a new source.db file.Hmmm... I just got DB Browser for SQLite to export and then import notifications successfully. At that point the 1 test Remind I set was listed in sqlite properly, but when I open TVGF, the reminder isn't displayed. It's been a while since I've tackled getting DB Browser for SQLite to work for me. Kind of forget if this was the issue I was having. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - JQZ* - 2019-03-19 Repeated that with the old SQLite Manager, and the reminders show up fine when I load TVGF again. I must be jinxed with DB Browser for SQLite RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - JQZ* - 2019-03-19 (2019-03-19, 16:17)primaeval Wrote:I was able to get DB Browser for SQLite to export and then import notifications successfully. But when I loaded TFGF again, the notifications weren't displayed. AND... at that point if I add a new reminder, only Remind is listed in the menu, not Don't Remind.(2019-03-19, 16:11)JQZ* Wrote:I don't quite understand what you're saying. Is it working now?(2019-03-19, 15:50)primaeval Wrote: DB Browser for SQLite imported your notifications.csv file ok into a new source.db file.Hmmm... I just got DB Browser for SQLite to export and then import notifications successfully. At that point the 1 test Remind I set was listed in sqlite properly, but when I open TVGF, the reminder isn't displayed. It's been a while since I've tackled getting DB Browser for SQLite to work for me. Kind of forget if this was the issue I was having. When I repeated the test with my old FF plugin, SQLite Manager... the reminders were displayed when I loaded TVGF again, but Don't Remind doesn't display properly. I have to manually set DATETIME and 4 TEXT options when importing with SQLite Manager. Am I explaining that all okay now? RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - JQZ* - 2019-03-19 Reload that, I edited it. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2019-03-19 (2019-03-19, 16:30)JQZ* Wrote: Reload that, I edited it.Try using a fresh source.db to import your old notifications.csv into. There were a couple of changes to the database format fairly recently that could be causing problems if yours comes from before then. https://github.com/primaeval/script.tvguide.fullscreen/commit/d31ddbdf2bd17833f87043e97049d5f6e269e049#diff-078f5f54ae7748ab33591d30e6b944b9R326 |