twikoo-func 1.6.39 → 1.6.40

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/utils/index.js +4 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "twikoo-func",
3
- "version": "1.6.39",
3
+ "version": "1.6.40",
4
4
  "description": "A simple comment system.",
5
5
  "author": "imaegoo <hello@imaegoo.com> (https://github.com/imaegoo)",
6
6
  "license": "MIT",
package/utils/index.js CHANGED
@@ -109,7 +109,8 @@ const fn = {
109
109
  11: 'Big Sur',
110
110
  12: 'Monterey',
111
111
  13: 'Ventura',
112
- 14: 'Sonoma'
112
+ 14: 'Sonoma',
113
+ 15: 'Sequoia'
113
114
  }[majorPlatformVersion]
114
115
  } else if (os.name === 'Android') {
115
116
  const majorPlatformVersion = os.version.split('.')[0]
@@ -118,7 +119,8 @@ const fn = {
118
119
  11: 'Red Velvet Cake',
119
120
  12: 'Snow Cone',
120
121
  13: 'Tiramisu',
121
- 14: 'Upside Down Cake'
122
+ 14: 'Upside Down Cake',
123
+ 15: 'Vanilla Ice Cream'
122
124
  }[majorPlatformVersion]
123
125
  }
124
126
  }