Download
(59 Kb)
Download
Updated: 09/30/17 03:52 PM
Pictures
File Info
Compatibility:
Clockwork City (3.2)
Horns of the Reach (3.1)
Updated:09/30/17 03:52 PM
Created:08/04/14 10:21 AM
Monthly downloads:41
Total downloads:16,147
Favorites:53
MD5:
ChatStamp  Popular! (More than 5000 hits)
Version: 5
by: SnowmanDK, Ayantir
This addon adds a timestamp to every normal message in your chats


Settings options:
  • Select any color to use for the timestamp.
  • Select 12 or 24 hour clock.
  • Select if you want seconds shown or not.
5 (Ayantir)
API Bump
Updated Libraries & code
French translation added

4 (Ayantir)
Morrowind API Bump

3 (Ayantir)
Homestead API Bump
Updated Libraries & code

2 (Ayantir)
One Tamriel API Bump
Updated Libraries

1 (Ayantir)
Shadows of Hist API Bump
Updated Libraries

0.9 (Ayantir)
Dark Brotherhood DLC API Bump (Both compatible with Live & PTS)
Updated LibAddonMenu Library

0.8 (Ayantir)
Thieves Guild DLC API Bump
Updated LibAddonMenu Library

0.7 (Ayantir)
Orsinium API Bump

0.6 (Ayantir)
Added libChat lib to do not interfere with other chat addons
Added a revert to defaults in panel settings
Code clean
Updated libStub

0.5.11
Updated to API 100012.

0.5.10
Updated to libAddonMenu 2.0 r18.

0.5.9
Changed the time formatting code for optimization. Thanks to ettavolt for the work :)

0.5.8
Ready for Update 6/API 100011 (v1.6.x).

0.5.7
Fixed errors introduced when fixing missing hour from midnight to 1am when seconds are enabled.

0.5.6
Fixed missing hour from midnight to 1am when seconds are enabled.

0.5.5
Added an option to show seconds on timestamps.

0.5.4
Fixed a problem with a library that was outdated.

0.5.3
Updated for compability with API100010 (v1.5.x).

0.5.2
Updated to comply with ESO v1.4.x.

0.5.1
Added colorpicker so you can choose the color of the timestamp.

TODO:
Add setting to add timestamp to system messages (if possible).

0.4.3
Added a setting to switch between 12 and 24 hour clock: Settings > Addon Settings > ChatStamp

TODO:
Add setting to add timestamp to system messages (if possible).
Add colorpicker so you can choose the color of the timestamp.


0.4.2
This initial release complies with ESO v1.3.3.

TODO:
Add setting to switch between 12 and 24 hour clock.
Add setting to add timestamp to system messages (if possible).
Add colorpicker so you can choose the color of the timestamp.
Archived Files (21)
File Name
Version
Size
Uploader
Date
4
55kB
Ayantir
06/07/17 01:30 AM
3
55kB
Ayantir
01/28/17 12:56 AM
2
45kB
Ayantir
09/05/16 07:36 AM
1
43kB
Ayantir
08/03/16 09:25 AM
0.9
47kB
Ayantir
04/28/16 07:51 AM
0.8
42kB
Ayantir
03/07/16 12:21 PM
0.7
42kB
SnowmanDK
11/02/15 06:04 AM
0.6
42kB
Ayantir
09/12/15 12:31 PM
0.5.11
38kB
SnowmanDK
08/31/15 06:27 PM
0.5.10
40kB
SnowmanDK
06/15/15 11:14 AM
0.5.9
32kB
SnowmanDK
04/20/15 10:39 AM
0.5.8
32kB
SnowmanDK
03/03/15 11:44 AM
0.5.7
29kB
SnowmanDK
11/17/14 07:05 PM
0.5.6
29kB
SnowmanDK
11/16/14 07:31 PM
0.5.5
29kB
SnowmanDK
11/04/14 11:33 AM
0.5.4
28kB
SnowmanDK
11/04/14 08:58 AM
0.5.3
28kB
SnowmanDK
11/03/14 12:25 PM
0.5.2
28kB
SnowmanDK
09/15/14 11:49 AM
0.5.1
37kB
SnowmanDK
08/09/14 01:46 PM
0.4.3
27kB
SnowmanDK
08/06/14 05:05 PM
0.4.2
3kB
SnowmanDK
08/04/14 10:21 AM


Post A Reply Comment Options
Unread 04/18/15, 05:21 PM  
ettavolt

Forum posts: 10
File comments: 3
Uploads: 0
24h with seconds appends 'AM'.
Game-provided time formatter is really bad. Here is how formatting should be done reliably:
Lua Code:
  1. if channelInfo and channelInfo.format then
  2.  
  3.         local time = GetSecondsSinceMidnight();
  4.         local secsDigits = time % 60;
  5.         time = (time - secsDigits) / 60;
  6.         local minutesDigits = time % 60;
  7.         time = (time - minutesDigits) / 60;
  8.  
  9.         local buf = {};
  10.         buf[1] = "";
  11.         buf[2] = time;
  12.         buf[3] = ":";
  13.         buf[4] = minutesDigits < 10 and "0" or "";
  14.         buf[5] = minutesDigits;
  15.         if CS.savedVariables.showsecs then
  16.             buf[6] = ":";
  17.             buf[7] = secsDigits < 10 and "0" or "";
  18.             buf[8] = secsDigits;
  19.         end
  20.         if CS.savedVariables.military then
  21.             if time < 10 then
  22.                 buf[1] = 0;
  23.             end
  24.         else
  25.             buf[#buf+1] = time > 11 and " PM" or " AM";
  26.             time = time % 12;
  27.             buf[2] = time == 0 and 12 or time;
  28.         end
  29.  
  30.  
  31.         local chattime = table.concat(buf, "");
  32.  
  33.         if CS.savedVariables.addrgb then
  34.             chattime = CS.savedVariables.clockrgb.."["..chattime.."] |r";
  35.         else
  36.             chattime = "["..chattime.."] ";
  37.         end
  38.         local channelLink = CS.CreateChannelLink(channelInfo)
Report comment to moderator  
Reply With Quote
Unread 03/31/15, 05:27 PM  
SnowmanDK
 
SnowmanDK's Avatar
AddOn Author - Click to view AddOns

Forum posts: 161
File comments: 1117
Uploads: 8
Originally Posted by Sidney
Mine is up to date and still doing 24 hour time stamps despite the option is turned off.
I will look at that next week (too busy this week). Thanks for the report
Report comment to moderator  
Reply With Quote
Unread 03/31/15, 03:01 PM  
Sidney

Forum posts: 33
File comments: 81
Uploads: 0
Mine is up to date and still doing 24 hour time stamps despite the option is turned off.
Report comment to moderator  
Reply With Quote
Unread 11/17/14, 07:06 PM  
SnowmanDK
 
SnowmanDK's Avatar
AddOn Author - Click to view AddOns

Forum posts: 161
File comments: 1117
Uploads: 8
v0.5.7 out

Fixed bug introduced in last version, sorry
Report comment to moderator  
Reply With Quote
Unread 11/17/14, 01:12 PM  
Xorvivs

Forum posts: 1
File comments: 13
Uploads: 0
Thank you.
Report comment to moderator  
Reply With Quote
Unread 11/16/14, 07:33 PM  
SnowmanDK
 
SnowmanDK's Avatar
AddOn Author - Click to view AddOns

Forum posts: 161
File comments: 1117
Uploads: 8
v0.5.6 out

The missing hour between midnight and 1 when showing seconds should be fixed now.
Last edited by SnowmanDK : 11/16/14 at 07:33 PM.
Report comment to moderator  
Reply With Quote
Unread 11/16/14, 10:00 AM  
SnowmanDK
 
SnowmanDK's Avatar
AddOn Author - Click to view AddOns

Forum posts: 161
File comments: 1117
Uploads: 8
Re: Re: Thanks

Originally Posted by Xorvivs
Bug:

Between midnight and 1:00am there are no hours shown with enabled seconds.
oh, I'll look into that, thanks
Report comment to moderator  
Reply With Quote
Unread 11/16/14, 04:54 AM  
Xorvivs

Forum posts: 1
File comments: 13
Uploads: 0
Re: Thanks

Bug:

Between midnight and 1:00am there are no hours shown with enabled seconds.
Report comment to moderator  
Reply With Quote
Unread 11/04/14, 06:16 PM  
Xorvivs

Forum posts: 1
File comments: 13
Uploads: 0
Thumbs up Thanks

Thank you. Fast work.
Report comment to moderator  
Reply With Quote
Unread 11/04/14, 11:33 AM  
SnowmanDK
 
SnowmanDK's Avatar
AddOn Author - Click to view AddOns

Forum posts: 161
File comments: 1117
Uploads: 8
Option for seconds added to latest version

Originally Posted by Xorvivs
Originally Posted by SnowmanDK
Found the problem. It should be fixed in 0.5.4
Fixed. Thank you.
One unrelated wish for future updates: i want to see seconds.
Option for seconds added to latest version
Last edited by SnowmanDK : 11/04/14 at 11:36 AM.
Report comment to moderator  
Reply With Quote
Unread 11/04/14, 09:12 AM  
Xorvivs

Forum posts: 1
File comments: 13
Uploads: 0
Thumbs up Re: Re: Re: Re: Re: bug appears now with 0.5.3

Originally Posted by SnowmanDK
Found the problem. It should be fixed in 0.5.4
Fixed. Thank you.
One unrelated wish for future updates: i want to see seconds.
Report comment to moderator  
Reply With Quote
Unread 11/04/14, 08:59 AM  
SnowmanDK
 
SnowmanDK's Avatar
AddOn Author - Click to view AddOns

Forum posts: 161
File comments: 1117
Uploads: 8
Re: Re: Re: Re: bug appears now with 0.5.3

Originally Posted by Xorvivs
I do have 100% success on this error. Disabling all other addons but ChatStamp doesnt help either.
Found the problem. It should be fixed in 0.5.4
Report comment to moderator  
Reply With Quote
Unread 11/04/14, 08:44 AM  
Xorvivs

Forum posts: 1
File comments: 13
Uploads: 0
Re: Re: Re: bug appears now with 0.5.3

I do have 100% success on this error. Disabling all other addons but ChatStamp doesnt help either.
Last edited by Xorvivs : 11/04/14 at 08:57 AM.
Report comment to moderator  
Reply With Quote
Unread 11/04/14, 08:11 AM  
SnowmanDK
 
SnowmanDK's Avatar
AddOn Author - Click to view AddOns

Forum posts: 161
File comments: 1117
Uploads: 8
Re: Re: bug appears now with 0.5.3

Originally Posted by Xorvivs
Originally Posted by SnowmanDK
Did you update from a previous version, or is it a fresh install?
It was an updated version.

Now i did an uninstall, deleted chatstamp.lua from SavedVariables before a clean reinstall. -> same error
Odd thing is I have a hard time reproducing the error
I'll try a fresh install too.
Report comment to moderator  
Reply With Quote
Unread 11/04/14, 08:03 AM  
Xorvivs

Forum posts: 1
File comments: 13
Uploads: 0
Re: bug appears now with 0.5.3

Originally Posted by SnowmanDK
Did you update from a previous version, or is it a fresh install?
It was an updated version.

Now i did an uninstall, deleted chatstamp.lua from SavedVariables before a clean reinstall. -> same error
Last edited by Xorvivs : 11/04/14 at 08:03 AM.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: