Skip to content

Commit 2535df8

Browse files
changelog / news section (#2230)
1 parent 0a8a81f commit 2535df8

File tree

3 files changed

+72
-15
lines changed

3 files changed

+72
-15
lines changed

Diff for: changelog.md

+38
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,43 @@
11
# Changelog
22

3+
## 1.4
4+
5+
- New examples:
6+
- Angular 17
7+
- Lit
8+
- Preact
9+
- React Redux
10+
- Svelte
11+
- Web Components
12+
13+
- Updated examples:
14+
- Backbone
15+
- Ember
16+
- jQuery
17+
- React
18+
- Vue
19+
- JavaScript ES5 (vanilla)
20+
- JavaScript ES6 (vanilla ES6)
21+
22+
- Removed examples:
23+
- Angular 2
24+
- Angular 2 / ES2015
25+
- Angular JS
26+
- Firebase Angular
27+
- Kotlin React
28+
- React Alt
29+
- React Backbone
30+
- React hooks
31+
- Scalajs React
32+
33+
- General updates:
34+
- remove `Router` badge on home page
35+
- add `New` badge for new / updated examples
36+
- update avatars in readme and on index page
37+
- pin node version to run locally
38+
39+
## 1.3.1
40+
341
New since 1.3:
442
- Kotlin-react
543

Diff for: index.html

+32-13
Original file line numberDiff line numberDiff line change
@@ -372,21 +372,40 @@ <h2>Compare these to a non-framework implementation</h2>
372372
<hr>
373373
<div class="row">
374374
<div class="col-md-4">
375-
<h2>New in 1.3</h2>
375+
<h2>New in 1.4</h2>
376376
<ul class="whats-new">
377-
<li>We now have 64 applications.
378-
<label class="link" for="news-expander">New since 1.3 ▼</label>
379-
<input type="checkbox" id="news-expander">
380-
<ul class="collapsed" id="new-apps">
381-
<li><a href="examples/angular-dart/web/">AngularDart</a></li>
382-
<li><a href="examples/atmajs/">Atma.js</a></li>
383-
<li><a href="examples/exoskeleton/">Exoskeleton</a></li>
384-
<li><a href="examples/componentjs/">ComponentJS</a></li>
385-
<li><a href="examples/binding-scala/">Binding.scala</a></li>
386-
</ul>
377+
<li><h4>New Additions ✨</h4>
378+
<div>
379+
<p>To stay representative of frameworks & language features used on the web, we added a few new example apps.</p>
380+
<label class="link" for="new-expander">Examples ▼</label>
381+
<input type="checkbox" id="new-expander" class="simple-dropdown">
382+
<ul class="collapsed" id="new-apps">
383+
<li><a href="examples/angular/dist/browser/">Angular 17</a></li>
384+
<li><a href="examples/lit/dist/">Lit</a></li>
385+
<li><a href="examples/preact/dist/">Preact</a></li>
386+
<li><a href="examples/react-redux/dist/">React Redux</a></li>
387+
<li><a href="examples/svelte/dist/">Svelte</a></li>
388+
<li><a href="examples/web-components/dist/">Web Components</a></li>
389+
</ul>
390+
</div>
391+
</li>
392+
<li><h4>Updated Versions 🧹</h4>
393+
<div>
394+
<p>Some updates to examples that were out-of-date, but still widely used on the web.</p>
395+
<label class="link" for="updated-expander">Examples ▼</label>
396+
<input type="checkbox" id="updated-expander" class="simple-dropdown">
397+
<ul class="collapsed" id="new-apps">
398+
<li><a href="examples/backbone/dist/">Backbone</a></li>
399+
<li><a href="examples/emberjs/">Ember</a></li>
400+
<li><a href="examples/jquery/dist/">jQuery</a></li>
401+
<li><a href="examples/react/dist/">React</a></li>
402+
<li><a href="examples/vue/dist/">Vue</a></li>
403+
<li><a href="examples/javascript-es5/">JavaScript ES5</a></li>
404+
<li><a href="examples/javascript-es6/">JavaScript ES6</a></li>
405+
</ul>
406+
</div>
387407
</li>
388-
<li>Updates have been made to apps including Vanilla, Angular, React, Backbone, Ember, jQuery &amp; many more.</li>
389-
<li>The knockoutjs_classBindingProvider application has been removed.</li>
408+
<li>Misc. updates to the homepage.</li>
390409
</ul>
391410
</div>
392411
<div class="col-md-4">

Diff for: site-assets/main.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -210,11 +210,11 @@ header nav a:not(:last-child) {
210210
transition: max-height 0.7s ease-out;
211211
}
212212

213-
#news-expander {
213+
.simple-dropdown {
214214
display: none;
215215
}
216216

217-
#news-expander:checked ~ .collapsed {
217+
.simple-dropdown:checked ~ .collapsed {
218218
max-height: 999px;
219219
transition: max-height 0.7s ease-in;
220220
}

0 commit comments

Comments
 (0)