Sandaysoft

Support forum for Cumulus weather station software
It is currently Fri May 24, 2013 2:10 pm
Please click here before posting. Help me to help you!
Useful Links: Cumulus FAQ • Enhancement requests • Wiki (documentation)
Please put your approximate location into your profile
Add your web site to the Cumulus user map
Vantage Pro2 users with firmware 3.00 should upgrade to fw 3.12 and Cumulus 1.9.4

All times are UTC




Post new topic Reply to topic  [ 690 posts ]  Go to page Previous  1 ... 42, 43, 44, 45, 46  Next
Author Message
 Post subject: Re: SteelSeries Gauges - version 1.0
PostPosted: Thu Mar 01, 2012 8:04 pm 
Online
User avatar

Joined: Thu Jan 07, 2010 9:44 pm
Posts: 2521
Location: Wilmslow, Cheshire, UK
Weather Station: Davis VP2
Operating System: XP SP3, Win 7
Only a month early! :lol:

_________________
Mark
Wilmslow Astro Weather


Top
 Profile  
 
 Post subject: Re: SteelSeries Gauges - version 1.0
PostPosted: Fri Mar 02, 2012 4:42 am 
Offline
User avatar

Joined: Wed Jun 11, 2008 7:36 pm
Posts: 378
Location: L'Estartit, Spain
Weather Station: WMR-968
Operating System: Windows 8
Mark -

Which files have changed in the 1_6_4 update? From 1_6_3.

gw

_________________
Image


Top
 Profile  
 
 Post subject: Re: SteelSeries Gauges - version 1.0
PostPosted: Fri Mar 02, 2012 9:14 am 
Online
User avatar

Joined: Thu Jan 07, 2010 9:44 pm
Posts: 2521
Location: Wilmslow, Cheshire, UK
Weather Station: Davis VP2
Operating System: XP SP3, Win 7
Just gauges.js

_________________
Mark
Wilmslow Astro Weather


Top
 Profile  
 
 Post subject: Re: SteelSeries Gauges - version 1.0
PostPosted: Fri Mar 02, 2012 8:02 pm 
Offline

Joined: Fri May 21, 2010 5:47 pm
Posts: 20
Location: Kvistgård Danmark
Weather Station: Davis VP2
Operating System: Windows 7
My data download counter is in a bit of hurry. The var g_count is set to 60 sec. It is counting from 60 but it is counting down in double speed i.e 30 seconds. :?: http://www.kvistgaardvejr.dk/gauges-ss.htm
I´m running ver. 1.5.4 - 2012-02-21.

_________________
Kenneth
http://www.kvistgaardvejr.dk/


Top
 Profile  
 
 Post subject: Re: SteelSeries Gauges - version 1.0
PostPosted: Fri Mar 02, 2012 8:11 pm 
Offline
User avatar

Joined: Wed Jun 11, 2008 7:36 pm
Posts: 378
Location: L'Estartit, Spain
Weather Station: WMR-968
Operating System: Windows 8
Quote:
Just gauges.js


Is it just doTemp() and doDew() or is there more to change - it is a bit of work to change my gauges.js as I have customized so much of it. Yeah - my fault - but if it is just something I can copy paste - it will ease my pain.

gw

_________________
Image


Top
 Profile  
 
 Post subject: Re: SteelSeries Gauges - version 1.0
PostPosted: Fri Mar 02, 2012 9:03 pm 
Online
User avatar

Joined: Thu Jan 07, 2010 9:44 pm
Posts: 2521
Location: Wilmslow, Cheshire, UK
Weather Station: Davis VP2
Operating System: XP SP3, Win 7
Trainman wrote:
My data download counter is in a bit of hurry. The var g_count is set to 60 sec. It is counting from 60 but it is counting down in double speed i.e 30 seconds. :?: http://www.kvistgaardvejr.dk/gauges-ss.htm
I´m running ver. 1.5.4 - 2012-02-21.

You need to remove the "init()" from the <body> tag in your HTML.

_________________
Mark
Wilmslow Astro Weather


Top
 Profile  
 
 Post subject: Re: SteelSeries Gauges - version 1.0
PostPosted: Fri Mar 02, 2012 9:05 pm 
Online
User avatar

Joined: Thu Jan 07, 2010 9:44 pm
Posts: 2521
Location: Wilmslow, Cheshire, UK
Weather Station: Davis VP2
Operating System: XP SP3, Win 7
gwheelo wrote:
Quote:
Just gauges.js


Is it just doTemp() and doDew() or is there more to change - it is a bit of work to change my gauges.js as I have customized so much of it. Yeah - my fault - but if it is just something I can copy paste - it will ease my pain.

gw
From memory yes - but I'm not at my dev. machine at the moment.

_________________
Mark
Wilmslow Astro Weather


Top
 Profile  
 
 Post subject: Re: SteelSeries Gauges - version 1.0
PostPosted: Fri Mar 02, 2012 11:40 pm 
Offline

Joined: Mon Aug 10, 2009 10:16 pm
Posts: 1772
Location: World...
Weather Station: No weather station
Operating System: No operating system
gwheelo wrote:
...it is a bit of work to change my gauges.js as I have customized so much of it. Yeah - my fault - but if it is just something I can copy paste - it will ease my pain.
George, you need to get something such as Scooter Software Beyond Compare ... it has made my life so much easier when new versions of a script are released... ;)

The source code of the old and the new versions of a script can be viewed side-by-side with the changed/modified lines highlighted - Beyond Compare even allows the user to copy from one side to the other and then save the resulting new script. 8-)


Top
 Profile  
 
 Post subject: Re: SteelSeries Gauges - version 1.0
PostPosted: Fri Mar 02, 2012 11:59 pm 
Offline

Joined: Mon Aug 10, 2009 10:16 pm
Posts: 1772
Location: World...
Weather Station: No weather station
Operating System: No operating system
Mark, may I make a suggestion...

On line 901 of the 'gauges.js' script, to change from:
Code:
    setStatus("Your realtime text file template needs updating!");
to:
Code:
    setStatus("Your " + g_realTimeURL + " file template needs updating!");
This way, the user know exactly which file (by name, either 'realtimegaugesplus.txt' or 'customclientraw.txt') needs to be updated... ;)

I have even made this warning message multilingual in my version of the gauges - the new line in the 'gauges.js' script needs to be changed to:
Code:
    setStatus(LANG.PageUpdateStart + realTimeURL + LANG.PageUpdateEnd);
and two new parameters (times the number of languages) must be added to the 'language.js' script:
Code:
    PageUpdateStart     : "Your '",
    PageUpdateEnd       : "' template needs to be updated!",


Top
 Profile  
 
 Post subject: Re: SteelSeries Gauges - version 1.0
PostPosted: Sat Mar 03, 2012 4:43 am 
Offline
User avatar

Joined: Wed Jun 11, 2008 7:36 pm
Posts: 378
Location: L'Estartit, Spain
Weather Station: WMR-968
Operating System: Windows 8
Quote:
you need to get something such as Scooter Software Beyond Compare .


Wow! That makes life a lot easier!

Thanks Ray!

gw

_________________
Image


Top
 Profile  
 
 Post subject: Re: SteelSeries Gauges - version 1.0
PostPosted: Sat Mar 03, 2012 7:16 am 
Offline

Joined: Fri May 21, 2010 5:47 pm
Posts: 20
Location: Kvistgård Danmark
Weather Station: Davis VP2
Operating System: Windows 7
mcrossley wrote:
Trainman wrote:
My data download counter is in a bit of hurry. The var g_count is set to 60 sec. It is counting from 60 but it is counting down in double speed i.e 30 seconds. :?: http://www.kvistgaardvejr.dk/gauges-ss.htm
I´m running ver. 1.5.4 - 2012-02-21.

You need to remove the "init()" from the <body> tag in your HTML.


Thank you, that did it. I can´t even remember where that init() comes from, :? i have made a redesign of my site, it´s a reminicens from the old site.

_________________
Kenneth
http://www.kvistgaardvejr.dk/


Top
 Profile  
 
 Post subject: Re: SteelSeries Gauges - version 1.0
PostPosted: Sat Mar 03, 2012 9:28 am 
Offline

Joined: Mon Aug 10, 2009 10:16 pm
Posts: 1772
Location: World...
Weather Station: No weather station
Operating System: No operating system
Now I can proudly say/write "I told you so, George..." :D

George, I have been using the professional version of Beyond Compare for the past four years and I could not live without that utility - I have also tried IDM Computer Solutions UltraCompare but found its interface too annoying and the program a bit too 'heavy'.


Top
 Profile  
 
 Post subject: Re: SteelSeries Gauges - version 1.0
PostPosted: Sat Mar 03, 2012 9:42 am 
Online
User avatar

Joined: Thu Jan 07, 2010 9:44 pm
Posts: 2521
Location: Wilmslow, Cheshire, UK
Weather Station: Davis VP2
Operating System: XP SP3, Win 7
Hi Ray, I meant to change that message, but forgot what it was I meant to be doing age thing :bash:
l didn't bother putting it in LANG as it should only appear at page setup time, not something an end user should ever see.

_________________
Mark
Wilmslow Astro Weather


Top
 Profile  
 
 Post subject: Re: SteelSeries Gauges - version 1.0
PostPosted: Sat Mar 03, 2012 10:32 am 
Offline

Joined: Mon Aug 10, 2009 10:16 pm
Posts: 1772
Location: World...
Weather Station: No weather station
Operating System: No operating system
Mark, as you indicated, the message might/should only appear at page setup time ... but what if the station operator forgets to replace an older version of the 'realtimegaugesT.txt' with a newer release and does not look at the SteelSeries Gauges page after an update! :roll: You know as well as I do those 'things' happen! :twisted: Thus my second suggestion - that some new parameters be added to the language file ... for all those station operators (and their users) that do not read/speak/write english properly... :mrgreen:


Top
 Profile  
 
 Post subject: Re: SteelSeries Gauges - version 1.0
PostPosted: Tue Mar 06, 2012 9:53 am 
Offline
Site Admin
User avatar

Joined: Mon Jun 02, 2008 6:49 pm
Posts: 17600
Location: Sanday, Orkney
Weather Station: Davis VP2
Operating System: Windows Home Server 2011
Mark, I am told that your gauges are going down well with Weather Display users (I hope you're getting commission for the extra sales they are no doubt generating ;) ) and that you even have your own section in the forum there. We can't have people saying that your gauges are being better supported for WD users than Cumulus, so would it be useful to have a separate section of the forum here? This thread is getting rather long...

_________________
Steve
Sanday Weather
----------------------------------------------------------------------------------------------------------------------------------
Like Cumulus and want to support it? Please donate! Image


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 690 posts ]  Go to page Previous  1 ... 42, 43, 44, 45, 46  Next

All times are UTC


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  

Protected by Anti-Spam ACP Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group