IDream

From Dreamwidth Notes
Revision as of 10:45, 14 March 2009 by Zarchanalin (Talk | contribs)

Jump to: navigation, search

Welcome to iDream, a Mac OS X client written exclusively for use with the Dreamwidth online journal system. This page is a place for collecting feature suggestions and requests. Feel free to add to it.


Suggestions & Feature Requests

  • music detection
  • community posting
  • ability to choose icon
  • support for moods other then default
  • support for custom access groups
  • work offline/saving posts locally
  • both WYSIWYG and HTML editing

Contributing to the Client Project

iDream will be handled via SVN on my server. Unfortunately, my webhost is A2Hosting and they do not allow HTTP or HTTPS requests for SVN repositories. If you are interested in helping out you should create a DSA keypair and forward your public key to develoer@nashenassi.org.

Generate keypair:

ssh-keygen -b 1024 -t dsa

Just hit enter for default file name and do not create a passphrase.

To get a copy of your key:

cat ~/.ssh/id_dsa.pub

Email the output to developer@nashenassi.org and request access to the iDream project.

I use XCode 3.1.2 for development, so the repository is in format for this IDE, so if you use another method for managing code projects, you'll probably need to get some info on how to work with an XCode project.

Once you've gotten me your key, and had your access to the svn setup, you'll need to setup svn to use ssh. If you are on a Mac (or other unix based system) you'll need to edit your ~/.subversion/config file and add a tunneling profile (under the [tunnels] heading). An example:

a2 = ssh -p 7822

Here we've set up a profile you can use for any svn+ssh connections to a2hosting (a2 for short). You can call it whatever you like, but assuming you used a2 here is the check out command (which will work after you've had your dsa key added):

svn co svn+a2://nashenas@nashenassi.org/iDream/trunk/iDream iDream

This will check out the xcode project directory and place it in a folder iDream in your current working directory. For those of you who are very familiar with SVN and felt these directions were too basic and hand-holding, well deal with it, I believe in making all instructions newb friendly. And if you have any suggestions that would make them more newb friendly, or more readable, please, make them. Or just edit them.