Library issues

Hi there

Can someone please assist me with a library error.
This sketch compiled and uploaded fien before updating.
I updated the IDE because after I updated to UTFT_tinyFAT v2.0 I had tonnes of errors.

Now after I updated to Arduino IDE 1.0.5 I receive only an RTClib error.
In file included from AquaPorn.ino:18:
/Users/user/Documents/Arduino/libraries/RTClib/RTClib.h:9: error: stray '\302' in program
/Users/user/Documents/Arduino/libraries/RTClib/RTClib.h:9: error: stray '\267' in program
/Users/user/Documents/Arduino/libraries/RTClib/RTClib.h:9: error: stray '\302' in program
/Users/user/Documents/Arduino/libraries/RTClib/RTClib.h:9: error: stray '\267' in program
/Users/user/Documents/Arduino/libraries/RTClib/RTClib.h:4: error: expected unqualified-id before '<' token
/Users/user/Documents/Arduino/libraries/RTClib/RTClib.h:555: error: expected unqualified-id before numeric constant
There doesn't seem to be anything about RTC issues in the change log
Any help would be appreciated

Where did you get the RTClib.h file? More importantly, HOW did you get this file? If you copied the file from a web browser, it is possible that the browser rendered some characters from the original file differently, most often with things like minus signs and single and double quotes.

I had been using it previous to the update with no issue Paul.
It was quite a while ago but I believe from memory I got it from adafruit github and downloaded as zip file then transferred to the library folder manually.
I will attempt to download again and see if it changes things.

Okay
I believe you were correct. I think it may have been a hangover from a long time ago and copied as a text file from a webpage by the look of it but not edited correctly.

I used the method I stated this time and the error has now gone.

I constantly have library issues updating.
I am new to Arduino and to Mac and using a mac.
Can you confirm for me please that to add updated libraries I just put the in the Users/documents/Arduino/libraries folder.
I also right clicked on the Arduino icon and selected show package contents with shows me a library folder at Users/user/Desktop/Arduino.app/Contents/Resources/Java/libraries

Now I am having these errors
AquaPorn:118: error: 'A8' was not declared in this scope
AquaPorn:118: error: 'A9' was not declared in this scope
AquaPorn:118: error: 'A10' was not declared in this scope
AquaPorn:118: error: 'A11' was not declared in this scope
AquaPorn:118: error: 'A12' was not declared in this scope
AquaPorn:118: error: 'A13' was not declared in this scope
AquaPorn:118: error: 'A14' was not declared in this scope
AquaPorn:118: error: 'A15' was not declared in this scope
AquaPorn.ino: In function 'void Read_pH()':
AquaPorn:559: error: 'Serial3' was not declared in this scope
AquaPorn.ino: In function 'void setup()':
AquaPorn:2675: error: 'Serial3' was not declared in this scope
from this line? which was okay before.

int OUTLETS[8] ={A8,A9,A10,A11,A12,A13,A14,A15};

Somehow I am updating things incorrectly but I cannot work out where/why.
All I wanted originally was to upgrade UTFT_tinyFAT because the author of this code sent me a new version(which compiles fine at his end) and had upgraded this library. When I attempted to upgrade I suddenly got loads of errors. Prior to this the code compiled for me too.
Please help me see the error of my ways.

Now I am having these errors

Which look to me like you are compiling a library that is only meant to be used on a Mega for something other than a Mega.

Oh god.
Apologies. Working on 2 different items and forgot I had changed it.

You were bang on again.
Only 1 remained.
Users/user/Documents/Arduino/libraries/DallasTemperature/DallasTemperature.cpp:9:26: error: WConstants.h: No such file or directory
And I updated to include this line
#if ARDUINO >= 100
#include "Arduino.h"
#else
#include "WProgram.h"
#endif
Good to go now.
Thankyou