mirror of
https://github.com/samsonjs/strftime.git
synced 2026-03-25 09:05:48 +00:00
v0.10.1
This commit is contained in:
parent
dee584fda4
commit
1bee290ce5
5 changed files with 14 additions and 4 deletions
|
|
@ -1,3 +1,11 @@
|
||||||
|
v0.10.1 on 2021-12-12
|
||||||
|
---------------------
|
||||||
|
|
||||||
|
- Fix it_IT shortMonths locale
|
||||||
|
Thanks to [Douglas de Espindola](https://github.com/douglasep)
|
||||||
|
|
||||||
|
- Try to get a short time zone name for %Z, falling back to the long one. This attempts to work around a change to Date.toString in v8 (node v10+, Chrome 66+). Unfortunately sometimes Date.toLocaleString returns a time zone like GMT+2 and we fall back to the long name in that case.
|
||||||
|
|
||||||
v0.10.0 on 2016-12-28
|
v0.10.0 on 2016-12-28
|
||||||
---------------------
|
---------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ strftime
|
||||||
|
|
||||||
strftime for JavaScript. Works in (at least) node.js and browsers. Supports localization and timezones. Most standard specifiers from C are supported as well as some other extensions from Ruby.
|
strftime for JavaScript. Works in (at least) node.js and browsers. Supports localization and timezones. Most standard specifiers from C are supported as well as some other extensions from Ruby.
|
||||||
|
|
||||||
[](https://www.npmjs.com/package/strftime) [](https://nodejs.org) [](https://sjs.mit-license.org)
|
[](https://www.npmjs.com/package/strftime) [](https://nodejs.org) [](https://sjs.mit-license.org)
|
||||||
|
|
||||||
Installation
|
Installation
|
||||||
============
|
============
|
||||||
|
|
@ -181,6 +181,7 @@ Contributors
|
||||||
* [Andrew Schaaf](https://github.com/andrewschaaf)
|
* [Andrew Schaaf](https://github.com/andrewschaaf)
|
||||||
* [Ayman Nedjmeddine](https://github.com/IOAyman)
|
* [Ayman Nedjmeddine](https://github.com/IOAyman)
|
||||||
* [Cory Heslip](https://github.com/cheslip)
|
* [Cory Heslip](https://github.com/cheslip)
|
||||||
|
* [Douglas de Espindola](https://github.com/douglasep)
|
||||||
* [Forbes Lindesay](https://github.com/ForbesLindesay)
|
* [Forbes Lindesay](https://github.com/ForbesLindesay)
|
||||||
* [John Zwinck](https://github.com/jzwinck)
|
* [John Zwinck](https://github.com/jzwinck)
|
||||||
* [Joost Hietbrink](https://github.com/joost)
|
* [Joost Hietbrink](https://github.com/joost)
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "strftime",
|
"name": "strftime",
|
||||||
"version": "0.10.0",
|
"version": "0.10.1",
|
||||||
"main": "strftime.js",
|
"main": "strftime.js",
|
||||||
"ignore": [
|
"ignore": [
|
||||||
"Readme.md",
|
"Readme.md",
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
"repo": "samsonjs/strftime",
|
"repo": "samsonjs/strftime",
|
||||||
"description": "strftime date formatting",
|
"description": "strftime date formatting",
|
||||||
"keywords": ["strftime", "format", "date", "time"],
|
"keywords": ["strftime", "format", "date", "time"],
|
||||||
"version": "0.10.0",
|
"version": "0.10.1",
|
||||||
"main": "strftime.js",
|
"main": "strftime.js",
|
||||||
"scripts": ["strftime.js"]
|
"scripts": ["strftime.js"]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "strftime",
|
"name": "strftime",
|
||||||
"description": "strftime for JavaScript",
|
"description": "strftime for JavaScript",
|
||||||
"version": "0.10.0",
|
"version": "0.10.1",
|
||||||
"homepage": "https://samhuri.net/projects/strftime",
|
"homepage": "https://samhuri.net/projects/strftime",
|
||||||
"author": "Sami Samhuri <sami@samhuri.net>",
|
"author": "Sami Samhuri <sami@samhuri.net>",
|
||||||
"contributors": [
|
"contributors": [
|
||||||
|
|
@ -10,6 +10,7 @@
|
||||||
"Andrew Schaaf <andrew@andrewschaaf.com> (https://github.com/andrewschaaf)",
|
"Andrew Schaaf <andrew@andrewschaaf.com> (https://github.com/andrewschaaf)",
|
||||||
"Ayman Nedjmeddine (https://github.com/IOAyman)",
|
"Ayman Nedjmeddine (https://github.com/IOAyman)",
|
||||||
"Cory Heslip (https://github.com/cheslip)",
|
"Cory Heslip (https://github.com/cheslip)",
|
||||||
|
"Douglas de Espindola (https://github.com/douglasep)",
|
||||||
"Forbes Lindesay (https://github.com/ForbesLindesay)",
|
"Forbes Lindesay (https://github.com/ForbesLindesay)",
|
||||||
"John Zwinck (https://github.com/jzwinck)",
|
"John Zwinck (https://github.com/jzwinck)",
|
||||||
"Joost Hietbrink (https://github.com/joost)",
|
"Joost Hietbrink (https://github.com/joost)",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue