Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - donpaul

Pages: 1 ... 5 6 [7] 8 9 ... 20
91
Feature requests & roadmap / Re: VPN support in PadOrbiter
« on: September 29, 2009, 05:49:30 am »
I installed pptp client on my webpad. Just clear the logs to get some extra free space(/var/log).

run:

Code: [Select]
apt-get update
apt-get install pptp-linux

man pptpsetup


92
Users / Re: Call for donations for features.
« on: September 25, 2009, 08:34:55 pm »
I would really appreciate any testing and/or feedback.  Unfortunately, I don't currently have a functional 0810 build environment to provide you with binaries, but if you have one set up and wanted to try the patch, I'd be happy to help however I can.  The patch and my instructions for setting it up are in the trac ticket http://trac.linuxmce.org/trac.cgi/ticket/158

I'll check it out.

93
Users / Re: Remove user PIN
« on: September 25, 2009, 06:25:11 am »
LOL, luckily the Mrs and I have an understanding there ;-)

LOL, awesome!

94
Users / Re: Call for donations for features.
« on: September 25, 2009, 06:22:49 am »
I would love to apply and test that patch if it isn't already in the latest release. I only use the script as a workaround until the feature was added, and provided it in case anyone else is as impatient as I am.

95
Users / Re: Call for donations for features.
« on: September 24, 2009, 10:41:02 pm »
I would also love to see a way to add media to a "favorites", and sort media by other attributes such as year. Others already mentioned the juicier features.

96
Users / Re: Call for donations for features.
« on: September 24, 2009, 10:35:14 pm »

 It would be really nice if there was a way in the web admin/media sync page to set type/media sub-type/file format on "all" files in a directory similar to the way setting all attributes currently works.  Not necessarily a dynamic thing such that any file put into a specific directory would automatically have attributes set, but for example browsing to a directory and setting every media file to type movie, or setting them all to TV show/title xyz/season 2. 

I do this already with a sql file:

Code: [Select]
use pluto_media;
update File set EK_MediaType = '5' where IsDirectory = '0' and Path like '%MediaDiskOnCore [29]/HiDef%';
update File set FK_MediaSubType = '2' where IsDirectory = '0' and Path like '%MediaDiskOnCore [29]/HiDef%';
update File set FK_FileFormat = '4' where IsDirectory = '0' and Path like '%MediaDiskOnCore [29]/HiDef%';
update File set EK_MediaType = '5' where IsDirectory = '0' and Path like '%MediaDiskOnCore [29]/DVD%';
update File set FK_MediaSubType = '2' where IsDirectory = '0' and Path like '%MediaDiskOnCore [29]/DVD%';
update File set FK_FileFormat = '3' where IsDirectory = '0' and Path like '%MediaDiskOnCore [29]/DVD%';
update File set EK_MediaType = '5' where IsDirectory = '0' and Path like '%MediaDiskOnCore [29]/Screener%';
update File set FK_MediaSubType = '2' where IsDirectory = '0' and Path like '%MediaDiskOnCore [29]/Screener%';
update File set FK_FileFormat = '3' where IsDirectory = '0' and Path like '%MediaDiskOnCore [29]/Screener%';
update File set EK_MediaType = '5' where IsDirectory = '0' and Path like '%MediaDiskOnCore [29]/Comics%';
update File set FK_MediaSubType = '2' where IsDirectory = '0' and Path like '%MediaDiskOnCore [29]/Comics%';
update File set FK_FileFormat = '3' where IsDirectory = '0' and Path like '%MediaDiskOnCore [29]/Comics%';
update File set EK_MediaType = '5' where IsDirectory = '0' and Path like '%MediaDiskOnCore [29]/TV%';
update File set FK_MediaSubType = '1' where IsDirectory = '0' and Path like '%MediaDiskOnCore [29]/TV%';
update File set FK_FileFormat = '3' where IsDirectory = '0' and Path like '%MediaDiskOnCore [29]/TV%';
update File set EK_MediaType = '5' where IsDirectory = '0' and Path like '%MediaDiskOnCore [29]/Cam%';
update File set FK_MediaSubType = '2' where IsDirectory = '0' and Path like '%MediaDiskOnCore [29]/Cam%';
update File set FK_FileFormat = '6' where IsDirectory = '0' and Path like '%MediaDiskOnCore [29]/Cam%';
update File set EK_MediaType = '5' where IsDirectory = '0' and Path like '%MediaDiskOnCore [29]/HomeVideos%';
update File set FK_MediaSubType = '3' where IsDirectory = '0' and Path like '%MediaDiskOnCore [29]/HomeVideos%';
update File set FK_FileFormat = '3' where IsDirectory = '0' and Path like '%MediaDiskOnCore [29]/HomeVideos/HiDef%';
update File set EK_MediaType = '5' where IsDirectory = '0' and Path like '%MediaDiskOnCore [29]/HomeVideos/HiDef%';
update File set FK_MediaSubType = '4' where IsDirectory = '0' and Path like '%MediaDiskOnCore [29]/HomeVideos/HiDef%';
update File set EK_MediaType = '5' where IsDirectory = '0' and Path like '%/data/pvr%' and Filename like '%mpg';
update File set FK_MediaSubType = '1' where IsDirectory = '0' and Path like '%/data/pvr%' and Filename like '%mpg';
update File set FK_FileFormat = '3' where IsDirectory = '0' and Path like '%/data/pvr%' and Filename like '%mpg';

select Path,Filename,FK_FileFormat,FK_MediaSubType,EK_MediaType from File where IsDirectory = '0' and Path like '%MediaDiskOnCore [29]/HiDef%';
select Path,Filename,FK_FileFormat,FK_MediaSubType,EK_MediaType from File where IsDirectory = '0' and Path like '%MediaDiskOnCore [29]/DVD%';
select Path,Filename,FK_FileFormat,FK_MediaSubType,EK_MediaType from File where IsDirectory = '0' and Path like '%MediaDiskOnCore [29]/Screener%';
select Path,Filename,FK_FileFormat,FK_MediaSubType,EK_MediaType from File where IsDirectory = '0' and Path like '%MediaDiskOnCore [29]/Comics%';
select Path,Filename,FK_FileFormat,FK_MediaSubType,EK_MediaType from File where IsDirectory = '0' and Path like '%MediaDiskOnCore [29]/TV%';
select Path,Filename,FK_FileFormat,FK_MediaSubType,EK_MediaType from File where IsDirectory = '0' and Path like '%MediaDiskOnCore [29]/Cam%';
select Path,Filename,FK_FileFormat,FK_MediaSubType,EK_MediaType from File where IsDirectory = '0' and Path like '%MediaDiskOnCore [29]/HomeVideos%';
select Path,Filename,FK_FileFormat,FK_MediaSubType,EK_MediaType from File where IsDirectory = '0' and Path like '%/data/pvr%' and Filename like '%mpg';
commit;

Then run it in cron every 10 minutes:
Code: [Select]
0,10,20,30,40,50 * * * * /usr/bin/mysql -u root < /root/fix_media_type.sql >>/dev/null 2>>/dev/null

Works like a charm.

Oh, and Thom, great work and many thanks for all you do. LinuxMCE is a lot of fun. I too am unemployed (8 months now) and have been spending a lot of time with it. I hope things work out well for you.

97
Developers / Re: Announcement: PPTP VPN functionality
« on: September 24, 2009, 07:11:02 am »
Ticket has been updated with the SVN diff and new script files. The diff and scripts are for both PPTP and OpenVPN integration.

98
Users / Re: WAYNE-DALTON Z-WAVE® THERMOSTAT
« on: September 24, 2009, 05:02:00 am »
This gets me by and I will hopefully be set up and working on a final fix with you guys by this weekend.  When I got my Thermoststs, I guess I thought the Orbiter templates read out the correct current temperatures when in the Celsius mode but when I saw that that also wasn't completed, I said, screw it, I'll stay in the crippled, Fahrenheit mode until we get it right for all who need it in either mode!

Charles

Thanks Charles, that's awesome! My wife would bludgeon me daily if I made her use Celsius!

99
Users / Re: Suspend issues in 810?
« on: September 23, 2009, 04:20:37 am »
I don't understand. Why would a device reappearing require a router reload? How is suspend/resume different from reboot? Anyway to prevent the reload requirement on resume?

100
Users / Re: WAYNE-DALTON Z-WAVE® THERMOSTAT
« on: September 23, 2009, 03:26:42 am »
Any progress on the thermostat? I was going to order a couple, but will hold off if they aren't supported in LinuxMCE yet.

101
Users / Suspend issues in 810?
« on: September 23, 2009, 03:24:35 am »
I was pleasantly surprised at how easy suspend was to setup in 810, but I found a problem. Whenever a MD resumes, the screen prompts for a router reload. I can't figure out why, but it is very annoying to have a router reload screen pop up while watching a movie when someone resumes a MD in another room. Anyone else notice this, or am I missing something.

102
Feature requests & roadmap / Re: VPN support in PadOrbiter
« on: September 21, 2009, 11:40:45 pm »
If someone could get PPTP installed and added to the webpad image, I'll assist with configuration.

103
Installation issues / Re: DVD vs CD Installation
« on: September 21, 2009, 11:38:06 pm »
I need to start simple so I was thinking of just a "technology demonstrator" to show the wife - you know, play a DVD, watch a terrestrial TV program and turn a couple of lights off and on. Whats the minimum I need?

Peter

I notice nobody answered your question, so here you go.

You'll need a dual NIC PC with audio/video out (preferably with Nvidia chipset/graphics card), a z-wave usb dongle (from micasaverde), z-wave dimmer switches/modules, a tv tuner (go with hdhomerun), a properly configured network, and a tv.

Good luck.

104
Developers / Re: Announcement: PPTP VPN functionality
« on: September 21, 2009, 11:27:06 pm »
did you make the changes in an svn checked out source tree?

-Thom

Nope. Sounds like I should have though  :-[

svn co http://whatever/you/are/working/on/
make your changes, then cd to the root directory of the checkout ("on" in this case)
svn diff > your-patch-file.patch
drop the patch onto the ticket.

Thanks, I'll give that a try.

105
Developers / Re: Announcement: PPTP VPN functionality
« on: September 19, 2009, 04:16:09 am »
donpaul,

thanks for the patch. Please re-submit the patch as a svn diff patch. Thanks

I don't see a way to submit a svn diff patch. Can you point me to it?

Pages: 1 ... 5 6 [7] 8 9 ... 20