Option to show absolute dates #5972
-
When investigating history, sometimes exact dates are more useful than "2 mo ago" -- would it be possible to have a toggle for this? |
Beta Was this translation helpful? Give feedback.
Replies: 21 comments 38 replies
-
B being able to tap on the "2mo ago" to see the full date/time stamp displayed would work rather than (or in addition to) a global toggle |
Beta Was this translation helpful? Give feedback.
-
Thank you for your suggestion! We will track this issue internally :) |
Beta Was this translation helpful? Give feedback.
-
+1 for making this an option. "1h ago" is not precise (can be anything from 60 to 119 minutes ago), and I don't like "1 months ago" or older. Workaround: Still the option to show absolute dates should be a GitHub standard feature. |
Beta Was this translation helpful? Give feedback.
-
A keyboard shortcut to toggle absolute time vs relative time would be fantastic |
Beta Was this translation helpful? Give feedback.
-
Global option, not only for Mobile. The need has been further instigated by the recent (probably not much recent) introduction of the even more "friendly" timestamps: whose unfriendliness rendered the issue urgent. Replace / enhance "x ago" by actual timestamp Replace "Friendly Date" format in favor of Date/TimeStamp Use Standard Date/Time stamp and Commit ID for GUI Option to always display commit date and time in History list |
Beta Was this translation helpful? Give feedback.
-
If someone is fine with ISO datetime format that will appear after focusing on relative date I made simplest possible user script: https://gist.github.com/matrixik/7bb0d7a290c66e6de29d183c4a38424d |
Beta Was this translation helpful? Give feedback.
-
I consider such general purpose content filter a vital part of browser core: Many more notable things are notoriously wrong with mobile browsers. |
Beta Was this translation helpful? Give feedback.
-
That's another kettle of fish, but I'd consider tremendously helpful if browsers could be made to stick with the user's preferred time zone and format reliably, and those choices would include UTC and ISO formats, respectively. It's a shame such a basic concept has gone down the "we know better what you want" chute. That being said, it's neither relevant to this issue nor very likely to make it disappear. |
Beta Was this translation helpful? Give feedback.
-
Not only absolute dates for distant timestamps is needed, but it's also essential for near ones too. How do you compare "yesterday" with another event happened at "2024-05-08 10:42:58"? Hovering works for one timestamp at a time. It's laborious to hover on and read a couple of them. |
Beta Was this translation helpful? Give feedback.
-
Partly for such illy defined "Wed, 08 May 2024 10:42:58 +0000" non-sense could even receive wide adoption... People may have difficulty translating month names, spelt numerals alike; into their standard numeric form. E.g. Numeral: It also appears that big numbers tend to be unpronounceable: |
Beta Was this translation helpful? Give feedback.
-
We are 2.6 years later and there is still no native option to display absolute datetimes. This surprises me, as it must have taken engineering effort to provide relative datetimes; the norm for most of the life of the Internet has been to show absolute datetimes. Why, then, is it so hard to give users the choice? The best solution that I have found so far is "Nudiflorum: display absolute date on GitHub" (repo) for Firefox. This works out of the box. That said, this is a workaround for something that should have been the default all along. |
Beta Was this translation helpful? Give feedback.
-
During my analysis: Proposal: E.g. [ [1] Even limiting the context for Western usage only. |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
I have a bookmarklet to make the relative datetime to be absolute when I need javascript: (() => {
document.querySelectorAll("relative-time").forEach(function (element) {
if (!element.shadowRoot) {
return;
}
element.format = "datetime";
element.hour = "numeric";
element.minute = "2-digit";
element.second = "2-digit";
});
})(); |
Beta Was this translation helpful? Give feedback.
-
Greetings. Shall assist debugging: Thanks for assistance. |
Beta Was this translation helpful? Give feedback.
-
It's been 3 years, still we need to use plugins.... |
Beta Was this translation helpful? Give feedback.
-
If you want a quick one-time check for the absolute time, just right-click the date, then inspect. |
Beta Was this translation helpful? Give feedback.
-
This is not social media. Most of us work with exact dates. If in doubt, run a poll. |
Beta Was this translation helpful? Give feedback.
Thank you for your suggestion! We will track this issue internally :)