Skip to content

Commit

Permalink
Up version
Browse files Browse the repository at this point in the history
  • Loading branch information
kchapelier committed Nov 22, 2018
1 parent 68b61fd commit ed23cc9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ Make sure to contact me, either on [Twitter](https://twitter.com/kchplr) or thro

## History

* **1.1.0 (2018-11-22):** [Changelog](https://github.com/kchapelier/procjam2018/wiki/Changelogs#110-2018-11-22)
* **1.0.1 (2018-11-17):** [Changelog](https://github.com/kchapelier/procjam2018/wiki/Changelogs#101-2018-11-17)
* **1.0.0 (2018-11-11):** First release

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "procjam2018",
"version": "1.0.1",
"version": "1.1.0",
"description": "Procjam2018 project",
"main": "src/js/index.js",
"private": true,
Expand Down
4 changes: 2 additions & 2 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<title>Graph.ical</title>
<link rel="stylesheet" href="resources/fonts/fonts.css">
<link rel="stylesheet" href="resources/fork-awesome/fork-awesome.min.css">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="main.css?v=1.1.0">
</head>
<body>
<main>
Expand Down Expand Up @@ -46,7 +46,7 @@ <h1>Graph.ical <span><strong>β</strong> <span id="version"></span></span></h1>
<input type="file" class="load-popup-input">
</div>
</main>
<script src="main.js"></script>
<script src="main.js?v=1.1.0"></script>
<script>
var a = new App();
</script>
Expand Down
4 changes: 2 additions & 2 deletions src/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ var { generateUUID } = require('./commons/utils');
function App () {
// Initialize node graph

this.version = 2;
this.versionStr = '1.0.1';
this.version = 3;
this.versionStr = '1.1.0';
this.context = new Context();

document.querySelector('#version').innerHTML = this.versionStr;
Expand Down

0 comments on commit ed23cc9

Please # to comment.