[RELEASE] trakt.tv tv/movie scrobbler - 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: Service Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=152) +---- Thread: [RELEASE] trakt.tv tv/movie scrobbler (/showthread.php?tid=138745) 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
|
RE: [RELEASE] trakt.tv tv/movie scrobbler - nate1280 - 2013-07-12 (2013-07-12, 12:14)asturnauta Wrote: Hello, Thank you for the log file, I now have some data to work with. I just tried manually using the data, and it went fine, so still not sure whats going on, but I am looking into it. asturnauta, does this happen every time? Also if you're available, I could really use someone to try and debug this in real time, as I have to wait for this error to occur when I force stuff to run. RE: [RELEASE] trakt.tv tv/movie scrobbler - nate1280 - 2013-07-12 I've opened a pull request on github with a possible fix for the error jaykumar_2001, and asturnauta were encountering, if either of you could please try this and post log files (irregardless if it works or not). I've added two new features, the first is the ability to change the default script action, you can chose between Manual Sync, and Manage Lists. The second is an optional silent argument on the sync action, this will silence all notifications for a sync so it can just run in the background. This can be used in a scheduled task, below is an example how to trigger it. Code: RunScript(script.trakt,action=sync,silent=True) There are a few other fixes in as well, and possibly more to follow. RE: [RELEASE] trakt.tv tv/movie scrobbler - asturnauta - 2013-07-12 nate1280 Yes, the error always happend. Indeed, on trackt.tv i have no synced movies. How can i try the fix?, Have i to download the script on github? I can see the pull request on github, but i don´t know how github works, I am goint to download the script using the option "Download Zip" on github and copy all donwloaded files to the script folder on userdata folder. Is this right? I am going to try and post the new log file. If this is wrong, please tell me what i have to do. Thanks. EDIT: I can see that pull request in "open", Have i to wait until pull request will be in "close" tab and then download zip from github? RE: [RELEASE] trakt.tv tv/movie scrobbler - nate1280 - 2013-07-12 (2013-07-12, 18:24)asturnauta Wrote: nate1280 Yes, the error always happend. Indeed, on trackt.tv i have no synced movies. Yes you'll need to download the script from github, you can either use git to pull in changes, or if you're not using git, you can directly download the script with the changes via https://github.com/nate1280/script.trakt/archive/fixes_and_features.zip that link will download a zip of my branch that has the changes. Take note the folder it extracts to will be different (script.trakt-fixes_and_features), so make sure you move files to where they should be or rename the folder. If this error has always happened for you (with all versions?), its odd this error isn't happening for everyone then, I've been syncing movies all morning and I've yet to get a bad json response, its happily updating seen counts; so this leads me to believe there is something going on server side, what tho, I'm not sure until this fix is tried. RE: [RELEASE] trakt.tv tv/movie scrobbler - asturnauta - 2013-07-12 Thanks for the link, i don't know github well. It seem that all is right, i have executed the script and synced movies and tv shows. I have checked trakt.tv web and now appears the movies marked as watched. I post heare the new log file if you want to check if all is OK. http://xbmclogs.com/show.php?id=36340 Otherwise, if you want to try another changes for check log files, tell me and i can try it. Thanks. RE: [RELEASE] trakt.tv tv/movie scrobbler - nate1280 - 2013-07-12 (2013-07-12, 18:58)asturnauta Wrote: Thanks for the link, i don't know github well. Excellent, going to double check your log file just to make sure I didn't miss anything else. I finally got the error to happen (I reverted to running some code in a python shell so I could test quicker), so I know what the problem is/was. RE: [RELEASE] trakt.tv tv/movie scrobbler - fernandovg - 2013-07-12 (2013-07-10, 20:49)ezechiel1917 Wrote: (...) nate, is this possible? RE: [RELEASE] trakt.tv tv/movie scrobbler - nate1280 - 2013-07-12 It's probably possible, might look into it later, currently bug hunting. RE: [RELEASE] trakt.tv tv/movie scrobbler - nate1280 - 2013-07-15 (2013-07-12, 19:14)fernandovg Wrote:(2013-07-10, 20:49)ezechiel1917 Wrote: (...) I took a quick look at this, and, I think it can be done, it just won't really be tidy. Quick code I came up with, is a dialog I have all the buttons on and I essentially re-arrange the buttons and show only those that are needed, and finally adjusting the background image to make it look like a smaller dialog. But, I won't be able to keep the dialog centered, as it seems there's no way to adjust the dialogs position using python code, so while it will stay centered horizontally, it won't stay centered vertically depending on how many buttons are visible. If this is something that's desired, I can keep working on it. RE: [RELEASE] trakt.tv tv/movie scrobbler - MeMeMe - 2013-07-15 I dont mind the vertical position being different depending on view. RE: [RELEASE] trakt.tv tv/movie scrobbler - ezechiel1917 - 2013-07-15 Nate: I think, standard dialog list populated with available actions should be enough. Pressing ok on selected action will run that action and close the dialog. As for the dialog placement, We can test different scenarios and choose the best one which will fit. If you need help with testing send me a pm. RE: [RELEASE] trakt.tv tv/movie scrobbler - wgstarks - 2013-07-16 Sorry if this has already been answered. Couldn't find it in a search, but I can see quite a few post that include the trakt signature widget. I was just wondering where to get it? RE: [RELEASE] trakt.tv tv/movie scrobbler - rectifyer - 2013-07-16 (2013-07-16, 20:37)wgstarks Wrote: Sorry if this has already been answered. Couldn't find it in a search, but I can see quite a few post that include the trakt signature widget. I was just wondering where to get it? http://trakt.tv/settings/widgets RE: [RELEASE] trakt.tv tv/movie scrobbler - wgstarks - 2013-07-16 Doesn't appear to be working. I pasted the code for my sig. Did I miss something. Edit: Used the wrong code. Guess I need to find a better format though. Re: [RELEASE] trakt.tv tv/movie scrobbler - fernandovg - 2013-07-16 BB code. Not html |