@knight-lab/timelinejs 3.8.18 → 3.8.21

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 (49) hide show
  1. package/{CHANGELOG → CHANGELOG.md} +67 -8
  2. package/RELEASING.md +2 -2
  3. package/dist/css/fonts/font.abril-droidsans.css +3 -3
  4. package/dist/css/fonts/font.amatic-andika.css +3 -3
  5. package/dist/css/fonts/font.bevan-pontanosans.css +2 -2
  6. package/dist/css/fonts/font.bitter-raleway.css +4 -4
  7. package/dist/css/fonts/font.clicker-garamond.css +2 -2
  8. package/dist/css/fonts/font.dancing-ledger.css +3 -3
  9. package/dist/css/fonts/font.default.css +4 -4
  10. package/dist/css/fonts/font.fjalla-average.css +2 -2
  11. package/dist/css/fonts/font.georgia-helvetica.css +6 -6
  12. package/dist/css/fonts/font.lustria-lato.css +3 -3
  13. package/dist/css/fonts/font.medula-lato.css +4 -4
  14. package/dist/css/fonts/font.oldstandard.css +2 -2
  15. package/dist/css/fonts/font.opensans-gentiumbook.css +6 -4
  16. package/dist/css/fonts/font.playfair-faunaone.css +5 -5
  17. package/dist/css/fonts/font.playfair.css +3 -3
  18. package/dist/css/fonts/font.pt.css +4 -4
  19. package/dist/css/fonts/font.roboto-megrim.css +8 -8
  20. package/dist/css/fonts/font.rufina-sintony.css +4 -4
  21. package/dist/css/fonts/font.ubuntu.css +3 -3
  22. package/dist/css/fonts/font.unicaone-vollkorn.css +3 -3
  23. package/dist/embed/old-index.html +128 -18
  24. package/dist/js/locale/nb.json +76 -0
  25. package/dist/js/locale/nn.json +76 -0
  26. package/dist/js/timeline-min.js +2 -10
  27. package/dist/js/timeline.js +2 -10
  28. package/dist/js/timeline.js.map +1 -1
  29. package/dist/timeline3.zip +0 -0
  30. package/jest.config.js +2 -0
  31. package/package.json +4 -3
  32. package/src/embed/old-index.html +128 -18
  33. package/src/js/__tests__/Timeline.test.js +28 -8
  34. package/src/js/core/Util.js +1 -1
  35. package/src/js/date/__tests__/TLDate.test.js +2 -2
  36. package/src/js/index.js +1 -1
  37. package/src/js/language/locale/nb.json +76 -0
  38. package/src/js/language/locale/nn.json +76 -0
  39. package/src/js/media/types/Audio.js +7 -11
  40. package/src/js/media/types/Image.js +3 -12
  41. package/src/js/media/types/PDF.js +2 -2
  42. package/src/js/media/types/Video.js +7 -10
  43. package/src/js/timeline/Timeline.js +6 -7
  44. package/src/js/timenav/TimeEra.js +0 -1
  45. package/src/less/fonts/font.georgia-helvetica.less +2 -2
  46. package/src/less/fonts/font.roboto-megrim.less +2 -2
  47. package/src/template/all-media-types.json +68 -38
  48. package/src/template/index.html +4 -1
  49. package/src/template/my-own-timeline.csv +14 -0
@@ -1,122 +1,168 @@
1
+ 3.8.21 (2022-04-29)
2
+ ------------------
3
+ * #704 honor "start_at_end" option when also using "hash_bookmark" option
4
+ * #730 Improved Norwegian translations for both bøkmal and nynorsk.
5
+ * #710 Improve tests by setting timezone (and adjusting the async handling in `Timeline.test.js`)
6
+
7
+ 3.8.20 (2022-02-16)
8
+ ------------------
9
+ * #719 - Support Dropbox URL rewriting for audio and video as well as images. Thanks @Simonkcaon !
10
+
11
+ 3.8.19 (2022-01-07)
12
+ ------------------
13
+ * #724 - Alternate syntax for compatibility with Vite, probably other tooling.
14
+
1
15
  3.8.18 (2021-06-08)
16
+ ------------------
2
17
  * #699 - remove duplicate definition of _onStorySliderLoaded in Timeline.js
3
18
  * #700 - remove duplicate definition of _onTimeNavLoaded in Timeline.js
4
19
  * #705 - Export Timeline class and include generated CSS in npm package
5
20
 
6
21
  3.8.17 (2021-04-19)
22
+ ------------------
7
23
  * #696 - implement pause on audio/video media types
8
24
  * Add support for direct webm video URLs
9
25
  * Update several npm dependencies
10
26
 
11
27
  3.8.16 (2021-04-02)
28
+ ------------------
12
29
  * Add hash change listener so that timelines with `hash_bookmark` option respond to hash changes after loading. (#692)
13
30
 
14
31
  3.8.15 (2021-02-17)
32
+ ------------------
15
33
  * Fix straggling JSON syntax error in en.json example file.
16
34
  * Fix bug introduced with cosmological date formatting to do with inconsistencies between Language.js and en.json
17
35
 
18
36
  3.8.14 (2021-02-14)
37
+ ------------------
19
38
  * Make en.json proper JSON (remove comments) now that new codepath is causing it to be DOMContentLoaded
20
39
  * Add better error handling to Net.js just in case.
21
40
  * Resolve not to release code on Friday afternoon
22
41
 
23
42
  3.8.13 (2021-02-12)
43
+ ------------------
24
44
  * #682: adjust language loading to make sure its done before drawing timeline.
25
45
 
26
46
  3.8.12 (2021-01-25)
47
+ ------------------
27
48
  * #363,670: remove synchronous XMLHttpRequests
28
49
  * #672: support Spotify podcasts
29
50
  * #649: better handling of a/href tags to open in new windows, or to follow specified target values
30
51
 
31
52
  3.8.11 (2020-11-23)
53
+ ------------------
32
54
  * Improve error messaging re issues retrieving configuration data from Google.
33
55
 
34
56
  3.8.10 (2020-11-03)
57
+ ------------------
35
58
  * Change Instagram handling to catch up to their API changes. (#664)
36
59
 
37
60
  3.8.9 (2020-10-23)
61
+ ------------------
38
62
  * Fix pattern matching and URL parsing for using Google Drive documents.
39
63
  * Adjust rules for loading font to support relative/fragment URLs for `font` config option
40
64
 
41
65
  3.8.8 (2020-10-20)
66
+ ------------------
42
67
  * fix error in TL.lookupMediaType
43
68
 
44
69
  3.8.7 (2020-10-20) INVALID RELEASE DO NOT USE
70
+ ------------------
45
71
  * clearer error messaging if time is used without date
46
72
  * strip all whitespace from both ends of header cells
47
73
  * expose TL.lookupMediaType as a publicly accessible function (formerly TL.MediaType before 3.7.0)
48
74
 
49
75
  3.8.6 (2020-09-29)
76
+ ------------------
50
77
  * #659: Prevent blank column headers from derailing Timeline load
51
78
 
52
79
  3.8.5 (2020-09-28)
80
+ ------------------
53
81
  * check for null when validating date inputs from CSV
54
82
 
55
83
  3.8.4 (2020-09-28)
84
+ ------------------
56
85
  * #655: treat all-whitespace Google Sheets values as blank and don't try to process them
57
86
  * #656: chomp excess whitespace around header values/object keys.
58
87
  * #658: clean integer values for dates -- strip whitespace and comma
59
88
 
60
89
  3.8.3 (2020-09-25)
90
+ ------------------
61
91
  * Make CSV parser always return strings (fixes bug where V1 Sheets with year-only dates were assumed to be strings)
62
92
  * Log instead of throw error when trying to add an event in TimelineConfig that has no start date
63
93
 
64
94
  3.8.2 (2020-09-25)
95
+ ------------------
65
96
  * Fix a bug in ConfigFactory date processing which was adding unintended "January 1, 0" end dates.
66
97
 
67
98
  3.8.1 (2020-09-23)
99
+ ------------------
68
100
  * Change Timeline's Google Sheets access method in advance of the discontinuation of Google Sheets API v3. See https://knightlab.northwestern.edu/2020/09/16/timelinejs-update-2/index.html for more information. All self-hosted timeline users should update to this version before 2020-09-30.
69
101
 
70
102
  3.8.0 (2020-09-23)
103
+ ------------------
71
104
  * Discarded release: failed to merge key changes into master branch.
72
105
 
73
106
  3.7.9 (2020-09-17)
107
+ ------------------
74
108
  * #654: Attempt to avoid 'overlapping' slides. Mixed feedback on if this is a complete solution.
75
109
 
76
110
  3.7.8 (2020-09-02)
111
+ ------------------
77
112
  * #651: Restore document loading check with proper binding
78
113
 
79
114
  3.7.7 (2020-08-26)
115
+ ------------------
80
116
  * #651: rollback document loading check after error reports
81
117
 
82
118
  3.7.6 (2020-08-25)
119
+ ------------------
83
120
  * Add a check of the document's loading status, and defer layout until DOMContentLoaded, in response to reports of timelines where all slide content overlaps.
84
121
  * Introduce a 'ready' event, which TimelineJS will fire after all other initialization is complete.
85
122
  * Support a Timeline option, `soundcite`, which triggers the loading of Knight Lab's SoundciteJS code, enabling the use of SoundCite markup in all HTML-capable Timeline fields.
86
123
  * Fix error messages in Imgur media type
87
124
 
88
125
  3.7.5 (2020-07-22)
126
+ ------------------
89
127
  * More fixes to handling default font case
90
128
  * add missing import for Wistia media type
91
129
 
92
130
  3.7.4 (2020-07-21)
131
+ ------------------
93
132
  * Fix #645: restore removeId to public API for a Timeline
94
133
  * Fix: only load font.default.css when no other font is specified; otherwise
95
134
  cascade rules are inconsistent with old behavior.
96
135
 
97
136
  3.7.3 (2020-07-16)
137
+ ------------------
98
138
  * Fix stupid bugs introduced with incomplete testing.
99
139
 
100
140
  3.7.2 (2020-07-16)
141
+ ------------------
101
142
  * Fix variable naming error when handling thrown exceptions in adding eras
102
143
  * Fix name of div in developer "embed" template to restore ability to switch data source for dev view
103
144
  * don't routinely sanitize media URLs; instead, place that responsibility on Media subclasses for which the 'url' is actually used with markup
104
145
 
105
146
  3.7.1 (2020-07-10)
147
+ ------------------
106
148
  * Protect against undefined/null options in constructor
107
149
  * Pass a valid message container for 'swipe to navigate' #644
108
150
 
109
151
  3.7.0 (2020-07-09)
152
+ ------------------
110
153
  * Internal rewrite to use modern JavaScript
111
154
  * Sanitize HTML inputs
112
155
 
113
156
  3.6.6 (2020-03-11)
157
+ ------------------
114
158
  * Replace Flickr API key
115
159
 
116
160
  3.6.5 (2019-05-01)
161
+ ------------------
117
162
  * Revert construction of Google feeds URL to pre-3.6.4 pattern which should be more universally correct.
118
163
 
119
164
  3.6.4 (2019-04-30)
165
+ ------------------
120
166
  * Fall back to Google Sheets API v4 when 500 error found using v3 (Workaround for Google API failure)
121
167
  * Issue #598 - use 24-hr time for Portuguese
122
168
  * PR #599 allow text selection on all devices
@@ -124,29 +170,37 @@
124
170
  * PR #609 fixes #577 link hover on slides w/ background images
125
171
 
126
172
  3.6.2 (2018-12-20)
173
+ ------------------
127
174
  * PR #592 adds missing woff2 font to fix nav arrows on MS Edge
128
175
  * PR #594 Updated Czech (Čeština) translations
129
176
 
130
177
  3.6.1 (2018-10-10)
178
+ ------------------
131
179
  * Correct translation of "July" in Slovenian.
132
180
 
133
181
  3.6.0 (2018-06-11)
182
+ ------------------
134
183
  * Configure Google Analytics tracking to anonymize_ip for GDPR compliance
135
184
 
136
185
  3.5.4 (2017-12-15)
186
+ ------------------
137
187
  * PR #331 fixes bug that was causing duplications of groups
138
188
  * Fix to allow missing media in JSON #565
139
189
 
140
190
  3.5.3 (2017-11-07)
191
+ ------------------
141
192
  * Remove 1px offset that causes white line along top of Timeline
142
193
 
143
194
  3.5.2 (2017-10-26)
195
+ ------------------
144
196
  * PR #554 adds direction to .tl-rtl
145
197
 
146
198
  3.5.1 (2017-05-03)
199
+ ------------------
147
200
  * PR #522 use https in wistia
148
201
 
149
202
  3.5.0 (2017-05-03)
203
+ ------------------
150
204
  * PR #510 Twitter image support
151
205
  * PR #520, #515 Imgur image support
152
206
  * PR #514 Wistia video support (URL only)
@@ -154,6 +208,7 @@
154
208
 
155
209
  3.4.9 (2017-04-10)
156
210
  ------------------
211
+ ------------------
157
212
  * PR #468 support audio and video files (.mp4, .mp3, .wav, .m4a)
158
213
  * PR #460 improve spotify documentation and support album and artist pages
159
214
  * PR #454 use the `lang` attribute set in the embed url as the lang for the iframe
@@ -161,24 +216,28 @@
161
216
 
162
217
  3.4.8 (2017-03-31)
163
218
  ------------------
219
+ ------------------
164
220
  * Fix missing accent in French translation
165
221
  * Add additional Thai translation
166
222
 
167
223
  3.4.7 (2016-01-12)
224
+ ------------------
168
225
  * PR #447 Enable Vimeo fullscreen controls
169
226
 
170
227
  3.4.6 (2016-12-12)
228
+ ------------------
171
229
  * Revert PR #387 which was causing slide cutoff on small screens
172
230
 
173
231
  3.4.5 (2016-12-07)
232
+ ------------------
174
233
  * PR #428 - Reinstate table display for IE. #427
175
234
 
176
235
  3.4.3 (2016-11-15)
177
- ------------------------
236
+ ------------------
178
237
  * Revert PR #374, reopen #277. Fix left black bar across full screen timelines.
179
238
 
180
239
  3.4.2 (2016-11-15)
181
- ------------------------
240
+ ------------------
182
241
  * PR #374 - Adds margin-top for large screen disply. Fixes #277
183
242
  * PR #401 - Adds Vietnamese translation
184
243
  * PR #419 - Removes year zero from the timeline. Fixes #328
@@ -186,16 +245,16 @@
186
245
  * PR #389 - Adds YouTube end-time feature. #388
187
246
 
188
247
  3.4.1 (2016-10-04)
189
- ------------------------
248
+ ------------------
190
249
  * PR #400 - pause Vine, DailyMotion, and Soundcloud media on slide exit (thanks @Hammman and @JustaBitDope)
191
250
  * PR #413 - French language support additions
192
251
 
193
252
  3.4.0 (2016-08-30)
194
- -------------------------
253
+ -------------------
195
254
  * Complete (?) RTL language support, removed Urdu Unicode translation bugs
196
255
 
197
256
  3.3.17 (2016-08-22)
198
- -------------------------
257
+ -------------------
199
258
  * #372 Italian translation for "Swipe to Navigate"
200
259
  * #376 Throw an error if URL is neither a Google Spreadsheet nor a source of parseable JSON
201
260
  * Chinese (traditional) (zh-cn) translation for "Swipe to Navigate"
@@ -203,18 +262,18 @@
203
262
  * added Burmese translation
204
263
 
205
264
  3.3.16 (2016-05-31)
206
- -------------------------
265
+ -------------------
207
266
  * #365 Scope vcard styles to avoid impacting pages which embed timelines without iframe
208
267
  * #366 Fix headline problem with <p> tag
209
268
 
210
269
  3.3.15 (2016-05-11)
211
- -------------------------
270
+ -------------------
212
271
  * Apply MediaType handling to thumbnails for the slider, so that people can use the same kinds of urls they use for regular media.
213
272
  * Establish correct indication of "BCE" in Swedish.
214
273
  * Establish correct indication of "BYA" abbreviations in Finnish and Hungarian.
215
274
 
216
275
  3.3.14 (2016-03-22)
217
- -------------------------
276
+ -------------------
218
277
  * Fix bug in handling imgur URLs which were to an imgur page and not directly to an image.
219
278
 
220
279
  3.3.13 (2016-02-25)
package/RELEASING.md CHANGED
@@ -1,8 +1,8 @@
1
- # Steps to cut a new release of the TimelineJS JavaScript lbirary
1
+ # Steps to cut a new release of the TimelineJS JavaScript library
2
2
 
3
3
  The primary action for "releasing" TimelineJS is pushing a new version to `cdn.knightlab.com` but as of mid-2020, we also publish new versions to the `npmjs` package registry.
4
4
 
5
- 1. Before cutting a release, test thoroughly. Is this an opportunity to add new unit tests? Develop functional testing? If nothing else, `npm run compare` provides a way to see how some historical timelines would function with the new code.
5
+ 1. Before cutting a release, test thoroughly. Is this an opportunity to add new unit tests? Develop functional testing? If nothing else, `npm run compare` provides a way to see how some historical timelines would function with the new code. (Note that because of Google Sheets API changes, compare now compares back to the oldest release in the 3.8.x series instead of the pre-webpack version)
6
6
  1. Update `package.json` to have the correct version.
7
7
  1. Update `CHANGELOG` to indicate the release date. Hopefully you've been incrementally updating the file with relevant changes so that this is just editing the version "header"
8
8
  1. Push all changes to GitHub
@@ -24,19 +24,19 @@ https://www.google.com/fonts/specimen/Droid+Sans
24
24
  font-family: 'Abril Fatface';
25
25
  font-style: normal;
26
26
  font-weight: 400;
27
- src: url(https://fonts.gstatic.com/s/abrilfatface/v12/zOL64pLDlL1D99S8g8PtiKchq-dmiA.ttf) format('truetype');
27
+ src: url(https://fonts.gstatic.com/s/abrilfatface/v19/zOL64pLDlL1D99S8g8PtiKchq-dmiA.ttf) format('truetype');
28
28
  }
29
29
  @font-face {
30
30
  font-family: 'Droid Sans';
31
31
  font-style: normal;
32
32
  font-weight: 400;
33
- src: url(https://fonts.gstatic.com/s/droidsans/v12/SlGVmQWMvZQIdix7AFxXkHNSaA.ttf) format('truetype');
33
+ src: url(https://fonts.gstatic.com/s/droidsans/v18/SlGVmQWMvZQIdix7AFxXkHNSaA.ttf) format('truetype');
34
34
  }
35
35
  @font-face {
36
36
  font-family: 'Droid Sans';
37
37
  font-style: normal;
38
38
  font-weight: 700;
39
- src: url(https://fonts.gstatic.com/s/droidsans/v12/SlGWmQWMvZQIdix7AFxXmMh3eDs1Yg.ttf) format('truetype');
39
+ src: url(https://fonts.gstatic.com/s/droidsans/v18/SlGWmQWMvZQIdix7AFxXmMh3eDs1Yg.ttf) format('truetype');
40
40
  }
41
41
  /* Font Base
42
42
  ----------------------------------------------------- */
@@ -24,19 +24,19 @@ https://www.google.com/fonts/specimen/Andika
24
24
  font-family: 'Amatic SC';
25
25
  font-style: normal;
26
26
  font-weight: 400;
27
- src: url(https://fonts.gstatic.com/s/amaticsc/v16/TUZyzwprpvBS1izr_vOECuSa.ttf) format('truetype');
27
+ src: url(https://fonts.gstatic.com/s/amaticsc/v24/TUZyzwprpvBS1izr_vOECuSa.ttf) format('truetype');
28
28
  }
29
29
  @font-face {
30
30
  font-family: 'Amatic SC';
31
31
  font-style: normal;
32
32
  font-weight: 700;
33
- src: url(https://fonts.gstatic.com/s/amaticsc/v16/TUZ3zwprpvBS1izr_vOMscGKfrUH.ttf) format('truetype');
33
+ src: url(https://fonts.gstatic.com/s/amaticsc/v24/TUZ3zwprpvBS1izr_vOMscGKfrUH.ttf) format('truetype');
34
34
  }
35
35
  @font-face {
36
36
  font-family: 'Andika';
37
37
  font-style: normal;
38
38
  font-weight: 400;
39
- src: url(https://fonts.gstatic.com/s/andika/v12/mem_Ya6iyW-LwqgwarYV.ttf) format('truetype');
39
+ src: url(https://fonts.gstatic.com/s/andika/v19/mem_Ya6iyW-LwqgwarYV.ttf) format('truetype');
40
40
  }
41
41
  /* Font Base
42
42
  ----------------------------------------------------- */
@@ -24,13 +24,13 @@ https://www.google.com/fonts/specimen/Pontano+Sans
24
24
  font-family: 'Bevan';
25
25
  font-style: normal;
26
26
  font-weight: 400;
27
- src: url(https://fonts.gstatic.com/s/bevan/v12/4iCj6KZ0a9NXjG8dWC4.ttf) format('truetype');
27
+ src: url(https://fonts.gstatic.com/s/bevan/v20/4iCj6KZ0a9NXjG8dWC4.ttf) format('truetype');
28
28
  }
29
29
  @font-face {
30
30
  font-family: 'Pontano Sans';
31
31
  font-style: normal;
32
32
  font-weight: 400;
33
- src: url(https://fonts.gstatic.com/s/pontanosans/v8/qFdD35GdgYR8EzR6oBLDHa3axT8I.ttf) format('truetype');
33
+ src: url(https://fonts.gstatic.com/s/pontanosans/v13/qFdD35GdgYR8EzR6oBLDHa3axT8I.ttf) format('truetype');
34
34
  }
35
35
  /* Font Base
36
36
  ----------------------------------------------------- */
@@ -24,25 +24,25 @@ https://www.google.com/fonts/specimen/Raleway
24
24
  font-family: 'Bitter';
25
25
  font-style: normal;
26
26
  font-weight: 700;
27
- src: url(https://fonts.gstatic.com/s/bitter/v17/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8RHYOLjOWA.ttf) format('truetype');
27
+ src: url(https://fonts.gstatic.com/s/bitter/v26/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8RHYOLjOWA.ttf) format('truetype');
28
28
  }
29
29
  @font-face {
30
30
  font-family: 'Raleway';
31
31
  font-style: normal;
32
32
  font-weight: 200;
33
- src: url(https://fonts.gstatic.com/s/raleway/v19/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtaorCIPrQ.ttf) format('truetype');
33
+ src: url(https://fonts.gstatic.com/s/raleway/v27/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtaorCIPrQ.ttf) format('truetype');
34
34
  }
35
35
  @font-face {
36
36
  font-family: 'Raleway';
37
37
  font-style: normal;
38
38
  font-weight: 300;
39
- src: url(https://fonts.gstatic.com/s/raleway/v19/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVuEorCIPrQ.ttf) format('truetype');
39
+ src: url(https://fonts.gstatic.com/s/raleway/v27/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVuEorCIPrQ.ttf) format('truetype');
40
40
  }
41
41
  @font-face {
42
42
  font-family: 'Raleway';
43
43
  font-style: normal;
44
44
  font-weight: 700;
45
- src: url(https://fonts.gstatic.com/s/raleway/v19/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVs9pbCIPrQ.ttf) format('truetype');
45
+ src: url(https://fonts.gstatic.com/s/raleway/v27/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVs9pbCIPrQ.ttf) format('truetype');
46
46
  }
47
47
  /* Font Base
48
48
  ----------------------------------------------------- */
@@ -24,13 +24,13 @@ https://www.google.com/fonts/specimen/EB+Garamond
24
24
  font-family: 'Clicker Script';
25
25
  font-style: normal;
26
26
  font-weight: 400;
27
- src: url(https://fonts.gstatic.com/s/clickerscript/v8/raxkHiKPvt8CMH6ZWP8PdlEq71rf0T4.ttf) format('truetype');
27
+ src: url(https://fonts.gstatic.com/s/clickerscript/v13/raxkHiKPvt8CMH6ZWP8PdlEq71rf0T4.ttf) format('truetype');
28
28
  }
29
29
  @font-face {
30
30
  font-family: 'EB Garamond';
31
31
  font-style: normal;
32
32
  font-weight: 400;
33
- src: url(https://fonts.gstatic.com/s/ebgaramond/v15/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-6_RkBI96.ttf) format('truetype');
33
+ src: url(https://fonts.gstatic.com/s/ebgaramond/v25/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-6_RkBI96.ttf) format('truetype');
34
34
  }
35
35
  /* Font Base
36
36
  ----------------------------------------------------- */
@@ -24,19 +24,19 @@ https://www.google.com/fonts/specimen/Ledger
24
24
  font-family: 'Dancing Script';
25
25
  font-style: normal;
26
26
  font-weight: 400;
27
- src: url(https://fonts.gstatic.com/s/dancingscript/v16/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3Sup5.ttf) format('truetype');
27
+ src: url(https://fonts.gstatic.com/s/dancingscript/v23/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3Sup5.ttf) format('truetype');
28
28
  }
29
29
  @font-face {
30
30
  font-family: 'Dancing Script';
31
31
  font-style: normal;
32
32
  font-weight: 700;
33
- src: url(https://fonts.gstatic.com/s/dancingscript/v16/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B1i03Sup5.ttf) format('truetype');
33
+ src: url(https://fonts.gstatic.com/s/dancingscript/v23/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B1i03Sup5.ttf) format('truetype');
34
34
  }
35
35
  @font-face {
36
36
  font-family: 'Ledger';
37
37
  font-style: normal;
38
38
  font-weight: 400;
39
- src: url(https://fonts.gstatic.com/s/ledger/v11/j8_q6-HK1L3if_sBnMr0.ttf) format('truetype');
39
+ src: url(https://fonts.gstatic.com/s/ledger/v16/j8_q6-HK1L3if_sBnMr0.ttf) format('truetype');
40
40
  }
41
41
  /* Font Base
42
42
  ----------------------------------------------------- */
@@ -27,25 +27,25 @@ http://www.google.com/webfonts/specimen/PT+Serif
27
27
  font-family: 'PT Sans';
28
28
  font-style: normal;
29
29
  font-weight: 400;
30
- src: url(https://fonts.gstatic.com/s/ptsans/v12/jizaRExUiTo99u79D0KEwA.ttf) format('truetype');
30
+ src: url(https://fonts.gstatic.com/s/ptsans/v17/jizaRExUiTo99u79D0KEwA.ttf) format('truetype');
31
31
  }
32
32
  @font-face {
33
33
  font-family: 'PT Sans Narrow';
34
34
  font-style: normal;
35
35
  font-weight: 700;
36
- src: url(https://fonts.gstatic.com/s/ptsansnarrow/v12/BngSUXNadjH0qYEzV7ab-oWlsbg95AiFW_g.ttf) format('truetype');
36
+ src: url(https://fonts.gstatic.com/s/ptsansnarrow/v17/BngSUXNadjH0qYEzV7ab-oWlsbg95AiFW_g.ttf) format('truetype');
37
37
  }
38
38
  @font-face {
39
39
  font-family: 'PT Serif';
40
40
  font-style: italic;
41
41
  font-weight: 400;
42
- src: url(https://fonts.gstatic.com/s/ptserif/v12/EJRTQgYoZZY2vCFuvAFT_r21dw.ttf) format('truetype');
42
+ src: url(https://fonts.gstatic.com/s/ptserif/v17/EJRTQgYoZZY2vCFuvAFT_r21dw.ttf) format('truetype');
43
43
  }
44
44
  @font-face {
45
45
  font-family: 'PT Serif';
46
46
  font-style: normal;
47
47
  font-weight: 400;
48
- src: url(https://fonts.gstatic.com/s/ptserif/v12/EJRVQgYoZZY2vCFuvAFWzro.ttf) format('truetype');
48
+ src: url(https://fonts.gstatic.com/s/ptserif/v17/EJRVQgYoZZY2vCFuvAFWzro.ttf) format('truetype');
49
49
  }
50
50
  /* Font Base
51
51
  ----------------------------------------------------- */
@@ -24,13 +24,13 @@ https://www.google.com/fonts/specimen/Average+Sans
24
24
  font-family: 'Average Sans';
25
25
  font-style: normal;
26
26
  font-weight: 400;
27
- src: url(https://fonts.gstatic.com/s/averagesans/v9/1Ptpg8fLXP2dlAXR-HlJJNJ_AtCe.ttf) format('truetype');
27
+ src: url(https://fonts.gstatic.com/s/averagesans/v16/1Ptpg8fLXP2dlAXR-HlJJNJ_AtCe.ttf) format('truetype');
28
28
  }
29
29
  @font-face {
30
30
  font-family: 'Fjalla One';
31
31
  font-style: normal;
32
32
  font-weight: 400;
33
- src: url(https://fonts.gstatic.com/s/fjallaone/v8/Yq6R-LCAWCX3-6Ky7FAFrOF6lw.ttf) format('truetype');
33
+ src: url(https://fonts.gstatic.com/s/fjallaone/v13/Yq6R-LCAWCX3-6Ky7FAFrOF6lw.ttf) format('truetype');
34
34
  }
35
35
  /* Font Base
36
36
  ----------------------------------------------------- */
@@ -33,7 +33,7 @@
33
33
  .tl-timeline h5,
34
34
  .tl-timeline h6 {
35
35
  font-family: Georgia, Times, serif;
36
- text-transform: normal;
36
+ text-transform: none;
37
37
  font-weight: 800;
38
38
  font-size: 42px;
39
39
  line-height: 42px;
@@ -72,7 +72,7 @@
72
72
  .tl-timeline .tl-timegroup-message {
73
73
  font-family: 'Helvetica Neue', Helvetica, Arial, "MS Trebuchet", sans-serif;
74
74
  font-weight: 800;
75
- text-transform: normal;
75
+ text-transform: none;
76
76
  }
77
77
  .tl-timeline .tl-slidenav-next .tl-slidenav-title,
78
78
  .tl-timeline .tl-slidenav-previous .tl-slidenav-title,
@@ -84,7 +84,7 @@
84
84
  .tl-timeline h3.tl-headline-date {
85
85
  font-family: 'Helvetica Neue', Helvetica, Arial, "MS Trebuchet", sans-serif !important;
86
86
  font-weight: normal !important;
87
- text-transform: normal !important;
87
+ text-transform: none !important;
88
88
  }
89
89
  .tl-timeline .tl-headline-date small,
90
90
  .tl-timeline h3.tl-headline-date small {
@@ -97,12 +97,12 @@
97
97
  .tl-timeline .tl-timenav-slider h2.tl-headline {
98
98
  font-family: Georgia, Times, serif;
99
99
  font-weight: 800;
100
- text-transform: normal;
100
+ text-transform: none;
101
101
  }
102
102
  .tl-timeline .tl-timenav-slider .tl-timeaxis {
103
103
  font-family: 'Helvetica Neue', Helvetica, Arial, "MS Trebuchet", sans-serif;
104
104
  font-weight: 800;
105
- text-transform: normal;
105
+ text-transform: none;
106
106
  }
107
107
  .tl-timeline .tl-menubar {
108
108
  font-family: 'Helvetica Neue', Helvetica, Arial, "MS Trebuchet", sans-serif;
@@ -116,7 +116,7 @@
116
116
  }
117
117
  input[type="text"].editor-headline {
118
118
  font-family: Georgia, Times, serif;
119
- text-transform: normal;
119
+ text-transform: none;
120
120
  font-weight: 800;
121
121
  font-size: 42px;
122
122
  line-height: 42px;
@@ -24,19 +24,19 @@ https://www.google.com/fonts/specimen/Lato
24
24
  font-family: 'Lato';
25
25
  font-style: italic;
26
26
  font-weight: 400;
27
- src: url(https://fonts.gstatic.com/s/lato/v17/S6u8w4BMUTPHjxsAXC-v.ttf) format('truetype');
27
+ src: url(https://fonts.gstatic.com/s/lato/v23/S6u8w4BMUTPHjxsAXC-v.ttf) format('truetype');
28
28
  }
29
29
  @font-face {
30
30
  font-family: 'Lato';
31
31
  font-style: normal;
32
32
  font-weight: 400;
33
- src: url(https://fonts.gstatic.com/s/lato/v17/S6uyw4BMUTPHjx4wWw.ttf) format('truetype');
33
+ src: url(https://fonts.gstatic.com/s/lato/v23/S6uyw4BMUTPHjx4wWw.ttf) format('truetype');
34
34
  }
35
35
  @font-face {
36
36
  font-family: 'Lustria';
37
37
  font-style: normal;
38
38
  font-weight: 400;
39
- src: url(https://fonts.gstatic.com/s/lustria/v8/9oRONYodvDEyjuhOnC8zNg.ttf) format('truetype');
39
+ src: url(https://fonts.gstatic.com/s/lustria/v13/9oRONYodvDEyjuhOnC8zNg.ttf) format('truetype');
40
40
  }
41
41
  /* Font Base
42
42
  ----------------------------------------------------- */
@@ -24,25 +24,25 @@ https://www.google.com/fonts/specimen/Lato
24
24
  font-family: 'Lato';
25
25
  font-style: italic;
26
26
  font-weight: 300;
27
- src: url(https://fonts.gstatic.com/s/lato/v17/S6u_w4BMUTPHjxsI9w2_Gwfo.ttf) format('truetype');
27
+ src: url(https://fonts.gstatic.com/s/lato/v23/S6u_w4BMUTPHjxsI9w2_Gwfo.ttf) format('truetype');
28
28
  }
29
29
  @font-face {
30
30
  font-family: 'Lato';
31
31
  font-style: normal;
32
32
  font-weight: 400;
33
- src: url(https://fonts.gstatic.com/s/lato/v17/S6uyw4BMUTPHjx4wWw.ttf) format('truetype');
33
+ src: url(https://fonts.gstatic.com/s/lato/v23/S6uyw4BMUTPHjx4wWw.ttf) format('truetype');
34
34
  }
35
35
  @font-face {
36
36
  font-family: 'Lato';
37
37
  font-style: normal;
38
38
  font-weight: 700;
39
- src: url(https://fonts.gstatic.com/s/lato/v17/S6u9w4BMUTPHh6UVSwiPHA.ttf) format('truetype');
39
+ src: url(https://fonts.gstatic.com/s/lato/v23/S6u9w4BMUTPHh6UVSwiPHA.ttf) format('truetype');
40
40
  }
41
41
  @font-face {
42
42
  font-family: 'Medula One';
43
43
  font-style: normal;
44
44
  font-weight: 400;
45
- src: url(https://fonts.gstatic.com/s/medulaone/v12/YA9Wr0qb5kjJM6l2V0yuoiYgtw.ttf) format('truetype');
45
+ src: url(https://fonts.gstatic.com/s/medulaone/v19/YA9Wr0qb5kjJM6l2V0yuoiYgtw.ttf) format('truetype');
46
46
  }
47
47
  /* Font Base
48
48
  ----------------------------------------------------- */
@@ -22,13 +22,13 @@ https://www.google.com/fonts/specimen/Old+Standard+TT
22
22
  font-family: 'Old Standard TT';
23
23
  font-style: italic;
24
24
  font-weight: 400;
25
- src: url(https://fonts.gstatic.com/s/oldstandardtt/v13/MwQsbh3o1vLImiwAVvYawgcf2eVer2q6bHY.ttf) format('truetype');
25
+ src: url(https://fonts.gstatic.com/s/oldstandardtt/v17/MwQsbh3o1vLImiwAVvYawgcf2eVer2q6bHY.ttf) format('truetype');
26
26
  }
27
27
  @font-face {
28
28
  font-family: 'Old Standard TT';
29
29
  font-style: normal;
30
30
  font-weight: 400;
31
- src: url(https://fonts.gstatic.com/s/oldstandardtt/v13/MwQubh3o1vLImiwAVvYawgcf2eVeqlq9.ttf) format('truetype');
31
+ src: url(https://fonts.gstatic.com/s/oldstandardtt/v17/MwQubh3o1vLImiwAVvYawgcf2eVeqlq9.ttf) format('truetype');
32
32
  }
33
33
  /* Font Base
34
34
  ----------------------------------------------------- */
@@ -24,25 +24,27 @@ http://www.google.com/webfonts/specimen/Gentium+Book+Basic
24
24
  font-family: 'Gentium Book Basic';
25
25
  font-style: italic;
26
26
  font-weight: 400;
27
- src: url(https://fonts.gstatic.com/s/gentiumbookbasic/v11/pe0xMJCbPYBVokB1LHA9bbyaQb8ZGjc4VYF466c.ttf) format('truetype');
27
+ src: url(https://fonts.gstatic.com/s/gentiumbookbasic/v16/pe0xMJCbPYBVokB1LHA9bbyaQb8ZGjc4VYF466c.ttf) format('truetype');
28
28
  }
29
29
  @font-face {
30
30
  font-family: 'Gentium Book Basic';
31
31
  font-style: normal;
32
32
  font-weight: 400;
33
- src: url(https://fonts.gstatic.com/s/gentiumbookbasic/v11/pe0zMJCbPYBVokB1LHA9bbyaQb8ZGjc4ULF_.ttf) format('truetype');
33
+ src: url(https://fonts.gstatic.com/s/gentiumbookbasic/v16/pe0zMJCbPYBVokB1LHA9bbyaQb8ZGjc4ULF_.ttf) format('truetype');
34
34
  }
35
35
  @font-face {
36
36
  font-family: 'Open Sans';
37
37
  font-style: normal;
38
38
  font-weight: 400;
39
- src: url(https://fonts.gstatic.com/s/opensans/v20/mem8YaGs126MiZpBA-UFVZ0e.ttf) format('truetype');
39
+ font-stretch: normal;
40
+ src: url(https://fonts.gstatic.com/s/opensans/v28/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVc.ttf) format('truetype');
40
41
  }
41
42
  @font-face {
42
43
  font-family: 'Open Sans';
43
44
  font-style: normal;
44
45
  font-weight: 800;
45
- src: url(https://fonts.gstatic.com/s/opensans/v20/mem5YaGs126MiZpBA-UN8rsOUuhs.ttf) format('truetype');
46
+ font-stretch: normal;
47
+ src: url(https://fonts.gstatic.com/s/opensans/v28/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1x4gaVc.ttf) format('truetype');
46
48
  }
47
49
  /* Font Base
48
50
  ----------------------------------------------------- */