Re: Connection Error trying to register

2009-09-17 Thread ToasterImp

Hello, I too am experiencing the same issue on Snow Leopard. I
purchased the application today and when I tried to register the
application I get the same Connection Error. Please try again later.
message. I am not using file vault and I added Versions to the
firewall exclusions list so it would be able to accept incoming
network connections. While attempting the registration process I
looked at the console to see if there were any messages that might
help in the debugging process but Versions didn't emit anything into
the log.

On Sep 16, 6:11 pm, Jordan jordancole...@gmail.com wrote:
 Any resolution on this?  I'm getting the same message trying to enter
 my new license key.  Connection error.  Please try again later.

 I should note that I AM using FileVault.

 On Sep 8, 9:37 pm, Danayel ninjafo...@gmail.com wrote:



  Hi, it has been almost a week, and no reply.

  I would really like to get this sorted out because I paid for versions
  so I would like to be able to use it. If you can't solve it, can I get
  my money back please?

  On Sep 6, 9:29 am, Danayel ninjafo...@gmail.com wrote:

   I tried downloading a completely new copy. No luck. I removed the
   original license file. No Luck.

   :(

   This is starting to get painful because I can't work properly without
   access to my code.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Versions group.
To post to this group, send email to versions@googlegroups.com
To unsubscribe from this group, send email to 
versions+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/versions?hl=en
-~--~~~~--~~--~--~---



What type of files manage

2009-09-17 Thread Frank_n_Beans

I have only been coding for a little over a year now.  Versions is my
first experience with version control (LOVE THE INTERFACE). I read
somewhere that svn works best with text files but can be used for any
type of file. What is the best practice for managing Cocoa projects?
Should I upload the entire file; including .plist, .h, .xcodeproj
etc...?  I ask this because when I made a change and compared the
diff's the results were a bit overwhelming.

Thanks!
-FnB

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Versions group.
To post to this group, send email to versions@googlegroups.com
To unsubscribe from this group, send email to 
versions+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/versions?hl=en
-~--~~~~--~~--~--~---



Re: Connection Error trying to register

2009-09-17 Thread Mark

Is their support really so bad that nobody has been able to register
for at least 2 weeks now?

I just purchased and also cannot register - same problem Connection
Error - Dead in the water and out $59...


Mark

On Sep 16, 3:11 pm, Jordan jordancole...@gmail.com wrote:
 Any resolution on this?  I'm getting the same message trying to enter
 my new license key.  Connection error.  Please try again later.

 I should note that I AM using FileVault.

 On Sep 8, 9:37 pm, Danayel ninjafo...@gmail.com wrote:



  Hi, it has been almost a week, and no reply.

  I would really like to get this sorted out because I paid for versions
  so I would like to be able to use it. If you can't solve it, can I get
  my money back please?

  On Sep 6, 9:29 am, Danayel ninjafo...@gmail.com wrote:

   I tried downloading a completely new copy. No luck. I removed the
   original license file. No Luck.

   :(

   This is starting to get painful because I can't work properly without
   access to my code.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Versions group.
To post to this group, send email to versions@googlegroups.com
To unsubscribe from this group, send email to 
versions+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/versions?hl=en
-~--~~~~--~~--~--~---



Re: Merging Branches Into Trunk

2009-09-17 Thread Martin

Hi,

Love to see merge support. That would make it the perfect client! Now
I still have to do some of my work (branch merging) on the command
line.
Hope you can provide some information about the work being done on
merge support.

Regards,
Martin

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Versions group.
To post to this group, send email to versions@googlegroups.com
To unsubscribe from this group, send email to 
versions+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/versions?hl=en
-~--~~~~--~~--~--~---



Connection/register problem solved !!!

2009-09-17 Thread Sofa

Hi there,

For some reason our SSL certificate wasn't updated automatically, so
in the night of the 16th to the 17th it expired.
Caused a little panic and lots of support mail but i am happy to say
all is fixed and working well again!

Friendly regards,
Vincent Robbesom
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Versions group.
To post to this group, send email to versions@googlegroups.com
To unsubscribe from this group, send email to 
versions+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/versions?hl=en
-~--~~~~--~~--~--~---



Re: What type of files manage

2009-09-17 Thread Quinn Taylor
SVN can handle all sorts of files. Document bundles can present a  
challenge, but you won't have to deal with those in Xcode projects.  
Yes, commit all your source file (.h, .m, etc.), plist files, images,  
frameworks, etc. You also want to commit the .xcodeproj bundle  
directory, BUT you only want to commit the project.pbxproj file  
inside — any other file is specific to a given user and should not be  
versioned. You can exclude them manually, but the arguably better way  
is to modify the Subversion config file that affects all SVN clients  
on your machine, both GUI and command-line. That file is:   
~/.subversion/config (in a hidden directory in your home folder). I  
suggest modifying the line that starts with global-ignores to look  
like this:


global-ignores = *.o *.lo *.la .*~ *~ ._* .DS_Store .Trash* *.pbxuser  
*.mode* *.perspective*


Excluding files like [myusername].pbxuser will usually drastically  
reduce the diffs you see. Good luck!


 - Quinn


On Sep 16, 2009, at 7:36 PM, Frank_n_Beans wrote:



I have only been coding for a little over a year now.  Versions is my
first experience with version control (LOVE THE INTERFACE). I read
somewhere that svn works best with text files but can be used for any
type of file. What is the best practice for managing Cocoa projects?
Should I upload the entire file; including .plist, .h, .xcodeproj
etc...?  I ask this because when I made a change and compared the
diff's the results were a bit overwhelming.

Thanks!
-FnB

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google  
Groups Versions group.

To post to this group, send email to versions@googlegroups.com
To unsubscribe from this group, send email to 
versions+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/versions?hl=en
-~--~~~~--~~--~--~---





smime.p7s
Description: S/MIME cryptographic signature