Skip to content

Commit 3caa0cd

Browse files
committed
Update migration, fix various minor issues
- Lot of people couldn't migrate to v1 and plan to reevaluate when v2 is released. - It's "npm" not "NPM". It doesn't stand for anything, and it never has - it was initially chosen simply because it was easy to type. It has a lot of unofficial backronyms with "Node Package Manager" being one of the most common ones, but it's never officially stood for anything as an acronym *or* initialism. - Fixed a few errors in the change log, like non-breaking changes being included in the "Breaking Changes" section and an inaccuracy in the summary of a particular change. - Fixed RawGit URLs to point to GitHack, which is a lighter proxy that offloads caching to Cloudflare instead of also implementing it itself. (It also just uses nginx for all the important server logic, so it scales better.) - Add a few more v0.2 references as appropriate
1 parent 643cefb commit 3caa0cd

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

svg/ring.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<div id="root"></div>
1010
<script src="../../mithril.js"></script>
1111
<script>
12-
//http://codepen.io/RobinVr/pen/kEoqc
12+
//https://codepen.io/RobinVr/pen/kEoqc
1313
var ring = m(".top",
1414
m(".middle",
1515
m("svg[preserveAspectRatio='xMidYMid meet'][version='1.1'][viewBox='0 0 584 586'][xmlns='http://www.w3.org/2000/svg'][xmlns:sketch='http://www.bohemiancoding.com/sketch/ns'][xmlns:xlink='http://www.w3.org/1999/xlink']", [

threaditjs/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ var Header = {
8080
m("p.head_links", [
8181
m("a[href='https://github.com/koglerjs/threaditjs/tree/master/examples/mithril']", "Source"),
8282
" | ",
83-
m("a[href='http://threaditjs.com']", "ThreaditJS Home"),
83+
m("a[href='https://threaditjs.com']", "ThreaditJS Home"),
8484
]),
8585
m("h2", [
8686
m(m.route.Link, {href: "/"}, "ThreaditJS: Mithril"),

threaditjs/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<head>
44
<meta charset="utf-8">
55
<title>Mithril • ThreadIt.js</title>
6-
<link rel="stylesheet" href="http://threaditjs.com/reset.css"/>
7-
<link rel="stylesheet" href="http://threaditjs.com/shared.css"/>
6+
<link rel="stylesheet" href="https://threaditjs.com/reset.css"/>
7+
<link rel="stylesheet" href="https://threaditjs.com/shared.css"/>
88
<link rel="stylesheet" href="colors.css"/>
99
</head>
1010
<body>

todomvc/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<section id="todoapp"></section>
1111
<footer id="info">
1212
<p>Double-click to edit a todo</p>
13-
<p>Part of <a href="http://todomvc.com">TodoMVC</a></p>
13+
<p>Part of <a href="https://todomvc.com">TodoMVC</a></p>
1414
</footer>
1515
<script src="../../mithril.js"></script>
1616
<script src="todomvc.js"></script>

0 commit comments

Comments
 (0)