Free Snaz [Deleted]

Status
Not open for further replies.

Secepatnya

New Member
Re: [TOOL] Snaz / Stream pc time-countdown and more live 1.9

Good luck in fixing it. :P

I've moved my Snaz installation to my SD card, since if that runs out of writes I can easily replace it.
 

Yachak

Member
Re: [TOOL] Snaz / Stream pc time-countdown and more live 1.9

Update:

=== Version 1.9.0.1

- System Info: Network speed; added Current-culture code for non English OS's
(With this change network speed should be able to calculate on operating systems in all languages)
+ Added wireless adapters for system info network speed
- Removed some unnecessary code in change log form

Feedback is appreciated on these changes (in fact always :))

Kind regards

Ow : and don't forget to count down to NEW-YEAR!! gg
 

Jack0r

The Helping Squad
Re: [TOOL] Snaz / Stream pc time-countdown and more live 1.9

Good update. Network speed works on my PC now and the error message on exiting the program is also gone!
Keep up the good work, as always :D
 

ColterTV

Member
Re: [TOOL] Snaz / Stream pc time-countdown and more live 1.9

Yep, working fine here too, you never stop to amaze us with this excellent and well developed / updated program.
Keep it up :)
 

Lodey

Member
Re: [TOOL] Snaz / Stream pc time-countdown and more live 1.9

Wanna say thank you to the Snaz creator, it's really improved the "professional" aspect of my stream. http://www.twitch.tv/abraham_linksys/b/476801745

Here is an example of ChronosDown in operation. I suppose the only issue I have with it is totally unrelated, but has to do with the font, basically, the letters aren't all equally spaced, so a 1 is going to reduce the max horizontal width as opposed to any other number. Kinda messes with the kerning, but it's minor.

Any chance we'll get a sound option for the ChronosDown option?
 

Yachak

Member
Re: [TOOL] Snaz / Stream pc time-countdown and more live 1.9

Thank you fellas for the kind words! It keeps me doing what i'm doing :)

Lodey, yeah the thing with the 1 is the font itself i suppose. And yes i will code a sound option for the chrono down in the future. (Btw your stream looks very good mate)
 

tehboris

New Member
Re: [TOOL] Snaz / Stream pc time-countdown and more live 1.9

Hi again,

I've either got a bug or a feature request (not sure which).

The short of it:
Using 1.9, been using the up "Chrono Up" feature to count how long I've been streaming. The hours resets to zero once it hits 24.

The solution that I personally would be fine with:
My guess would be because it uses a DateTime or TimeSpan objects Hour property. If it's using a TimeSpan (which my guess it would be) then switching it to use TotalHours should have this fixed in a single line of code (at 6 characters).

If this is some thing you don't want to change or don't consider this a bug that's fine, can do some thing else instead.

Thanks again for making this awesome tool!
 

Yachak

Member
Re: [TOOL] Snaz / Stream pc time-countdown and more live 1.9

Hi Boris,

The reset to zero when 24h it reached, is as it is coded. It uses a date time object (and yes i have no clue why i did it like that haha, i should have used a time span). Internally the date time object will be increased by a day when we count to 24h.

Now this is also a feature that i will refactor in the near future. So users can count up more then 24 hours.
 

tehboris

New Member
Re: [TOOL] Snaz / Stream pc time-countdown and more live 1.9

A possible 'not really a fix' would be to do:
tObj.Hour + (tObj.Day-1) * 24

This would fail once the timer goes over 31 days.
 

Yachak

Member
Re: [TOOL] Snaz / Stream pc time-countdown and more live 1.9

yeah i was kinda thinking of doing something like :

if (chronoUp.Seconds < 59)
{
chronoUp.Seconds += 1;
}
else
{
if (chronoUp.Minutes < 59)
{
chronoUp.Seconds = 00;
chronoUp.Minutes += 1;
}
else
{
chronoUp.Seconds = 00;
chronoUp.Minutes = 00;
chronoUp.Hours += 1;
}

With this setup idea u could count to 5000 or more hours.
 

Yachak

Member
Re: [TOOL] Snaz / Stream pc time-countdown and more live 1.9

tehboris said:
A possible 'not really a fix' would be to do:
tObj.Hour + (tObj.Day-1) * 24

This would fail once the timer goes over 31 days.

Btw the chronoUp box is a datetimepicker control and it doesn't support more then 23.59.59 format.
 

tehboris

New Member
Re: [TOOL] Snaz / Stream pc time-countdown and more live 1.9

That works, rethinking about it again (again) because of the way TimeSpan works you could do the following
assuming that the DateTimes currently are counting up from 01/01/0001 00:00:00

tObj # This is the thing with the counted time
TimeSpan span = tObj - new DateTime(0);

Then you have the span and it should be easier from there.
 

Yachak

Member
Re: [TOOL] Snaz / Stream pc time-countdown and more live 1.9

new version deployed today:

=== Version 1.9.2.1

! Remember your chrono up time before updating, the time will be resetted
after updating as it is rewritten !
+ Rewrite of ChronoUp: Supporting days and/or more then 24 hours count
added preformat and custom format option
+ Chrono Down: Added feature; play sound when chrono down is done

Enjoy!
 

ZekZpe

New Member
Re: [TOOL] Snaz / Stream pc time-countdown and more live 1.9

Yachak be my hero and add pause button to chronos :P

btw good job
 

Yachak

Member
Re: [TOOL] Snaz / Stream pc time-countdown and more live 1.9

ZekZpe said:
Yachak be my hero and add pause button to chronos :P

btw good job

Hah yes, is indeed asked a few times already :)

I should use a ticket system or something to be honest :p
 

tehboris

New Member
Re: [TOOL] Snaz / Stream pc time-countdown and more live 1.9

I've discovered another bug for you! Unfortunately it's with the improved up counter.

After 30 minuets it adds one hour, then when it reaches the hour it becomes correct again. You can actually see the strange behaviour by setting the hours to zero and the minutes to 36 before starting the time then starting it.

This one I actually cannot guess what is going wrong haha.
 

Yachak

Member
Re: [TOOL] Snaz / Stream pc time-countdown and more live 1.9

tehboris said:
I've discovered another bug for you! Unfortunately it's with the improved up counter.

After 30 minuets it adds one hour, then when it reaches the hour it becomes correct again. You can actually see the strange behaviour by setting the hours to zero and the minutes to 36 before starting the time then starting it.

This one I actually cannot guess what is going wrong haha.

Fixed for ya in 1.9.2.3

It was just a rounding problem ... as total hours gives back a double, it was rounding of... i just needed to typecast it to an int.

Sorry for any trouble.
 

Anonanon

Member
Re: [TOOL] Snaz / Stream pc time-countdown and more live 1.9

Why do I get an Unhandled Exception Has Occured error whenever I run or attempt to close the program? How do I fix it?
 
Status
Not open for further replies.
Top