This is a version of the absolutely amazing SnapShot addon by ObserverTim patched to export date/time using a standardized UTC time regardless of individual user time zone. Full credit to ObserverTim for this incredibly useful addon - I just made an extremely minor tweak for my own personal use, and figured I'd share with others.

The only change from original addon occurs in SnapShot.lua on line 307:

Original:
Lua Code:
  1. local timeFormat = { D = "%Y-%m-%d"; H = "%Y-%m-%d %Hh"; M = "%Y-%m-%d %H:%M"; S = "%Y-%m-%d %H:%M:%S" }

Updated:
Lua Code:
  1. local timeFormat = { D = "!%Y-%m-%d"; H = "!%Y-%m-%d %Hh"; M = "!%Y-%m-%d %H:%M"; S = "!%Y-%m-%d %H:%M:%S" }

You should only have one version of the addon installed at a time.

This version will be archived if the original addon is updated to support UTC times.

返回
顶部