Maraschino (formerly HTPC Frontend) - a summary web interface for your XBMC HTPC - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Supplementary Tools for Kodi (https://forum.kodi.tv/forumdisplay.php?fid=116) +--- Thread: Maraschino (formerly HTPC Frontend) - a summary web interface for your XBMC HTPC (/showthread.php?tid=113136) 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
|
- bluedevil229 - 2011-12-30 mrkipling Wrote:I wanted a simple web interface to act as a nice overview/front page for my XBMC HTPC. Nothing that was already available really suited my needs so I created something myself. So...is this supposed to be the main interface? As maybe a replacement for your windows wallpaper? That would be pretty sweet if it is. I just remove all icons and use a black wallpaper, like the "device" is powered off. Looks good...whatever it is! - whoffie24 - 2011-12-30 I'm having trouble installing Maraschino in Windows Vista x64. I've been getting the following error. Quote:You need to specify DATABASE in settings.py, and ensure that Flask-SQLAlchemy is installed. I'm running cmd as Admin. I've tried easy_install on Flask-SQLAlchemy again. My settings.py filename is spelled correctly. See the contents below: Quote:DATABASE = '/HTPC-Apps/maraschino/maraschino.db' Any ideas? Thanks. - _Mikie_ - 2011-12-30 gugahoi Wrote:I'll have a look at that pull request later on and try to make it install db to root dir if no settings.py is found. If you guys have time to do this before and make a pull request (it would actually be a good addition to Pull Request #23. I'd like to see it create the database in root no matter what. I don't see a reason why you'd want to create it anywhere else. All the other apps around here just create the database in root by default. - N3MIS15 - 2011-12-31 Mikie, Having the option to put database where you want should be kept imo, with mar2zz patches you would be able to run multiple databases from the 1 maraschino install. I do agree that default should be app root as 99% of ppl will just use the 1 database. - Marcoevich - 2011-12-31 Does anyone else have problems with custom backgrounds not showing when not playing media? When I set "Use a random background when not watching media" to "Yes" I don't get any background image at all. See https://github.com/mrkipling/maraschino/issues/10 for all the details about this issue. Gugahoi is doing everything he can to help me with this issue, but since he doesn't have a Windows 7 X64 machine, he cannot reproduce this bug. So is there anyone who can test this out for us? What can be the cause of this issue? Thx in advance! Marcoevich - N3MIS15 - 2011-12-31 I was able to replicate your problem Marcoevich. So its not only you, i am just getting a grey background. - gugahoi - 2011-12-31 N3MIS15 Wrote:I was able to replicate your problem Marcoevich. So its not only you, i am just getting a grey background. Could you tell me exactly what you were doing and your settings? - N3MIS15 - 2011-12-31 fresh install of experimental. added folder 'custom' to static/images/backgrounds added a custom.jpg file to custom folder i just followed the instructions from the faq on maraschino website.. running maraschino-cherrypy only setting i changed was the custom background 1 i installed this copy of maraschino for this test only tried clearing cache, did nothing tested running as administrator tried on my linux install and i only see the grass background still. - Marcoevich - 2011-12-31 That's exactly what I did. Thx for verifying this Luckily, gugahoi has found the culprit and published a fix for us. See: https://github.com/mrkipling/maraschino/issues/10 The only thing is, backgrounds are still not working from the 'custom' folder that has to be created according to the FAQ. Could you test this for us please? Thank you! - M3Evolution - 2011-12-31 I'm still having some issues with this unfortunately, I hope someone can help. Maraschino is successfully running as I can access it at port 7000. My media library shows up, but clicking on a file in it does nothing. Recently added shows also appears and shows the latest shows I have added, with the correct thumbnails, however, the description is blank with no name and clicking the file does nothing. Strangely though, the suspend button works but the other function buttons don't. Maraschino also doesn't display any 'Now playing'. It's strange that it appears to be semi working! Any ideas? I've got to say, the whole thing does look great, especially with the matching cherry background which popped up a few minutes ago. I can provide a screenshot and any further info as neccessary. I am running it on my XBMCLive box with Ubuntu 10.04.2. Thanks in advance. P.S. Is there any further guidance on setting up the applications tabs (i.e. with the URL and position fields etc)? - mrkipling - 2011-12-31 I just merged in a few things: * gugahoi's changes to the Sickbeard module (you can now restart/shutdown SB from the module, as well as search for and add shows to your queue). * Mar2zz's changes to the startup script, which automatically creates a database if one doesn't exists. This means that setup.py isn't required any more. I'm going to work on merging in a few more pull requests this afternoon and over the next couple of days. What can I say, I'm not big on NYE In other news, I spent all of yesterday setting up an ATV2 with XBMC in the bedroom. It works pretty well. I now have a vested interest in Maraschino supporting multiple XBMC servers :p - castortray - 2011-12-31 A lot of good news Thanks for your work - isamu.dragon - 2012-01-01 Using the Experimental Branch. Thank You for Enabling Windows Paths for the Disk Space Widget. - Marcoevich - 2012-01-01 Ah so even the diskspace widget works now Great job guys! I will try the experimental branch in a few days, since you are merging some more pull requests. I'll wait for this @ Gugahoi, could you edit this line in maraschino.py? backgrounds.extend(get_file_list('static/images/backgrounds/', ['.jpg', '.png'])) Make it look like backgrounds.extend(get_file_list('static/images/backgrounds/custom/', ['.jpg', '.png'])) The custom backgrounds are not working from within the custom folder Thx! - mrkipling - 2012-01-01 Spent some time getting through the backlog of pull requests. Pushed to master today: * changes to the diskspace widget - should now be working in Windows (thanks go to gugahoi) * the ability to change the status of episodes in Sickbeard from within the module, plus some other small tweaks (thanks go to gugahoi) * nicer settings in the SABnzbd module, although this requires re-entering your settings in the module (thanks go to Mar2zz) |