From 2742d7c64eae45da3ffc119391d7c3abdaa042d7 Mon Sep 17 00:00:00 2001 From: John Cleaver Date: Wed, 13 Apr 2016 22:06:36 -0400 Subject: [PATCH 1/8] Added a json file of changes. --- changelog.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 changelog.json diff --git a/changelog.json b/changelog.json new file mode 100644 index 0000000..96d5c17 --- /dev/null +++ b/changelog.json @@ -0,0 +1,10 @@ +{ + "versions": [ + { + "id": "Version 1.00", + "changes": [ + "Initial Version" + ] + } + ] +} From 065facdfacda16aa1a098b4a7c3cd320c515f937 Mon Sep 17 00:00:00 2001 From: John Cleaver Date: Wed, 13 Apr 2016 22:07:49 -0400 Subject: [PATCH 2/8] Added a function to get the changelog data. --- main.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/main.js b/main.js index bf313fc..3e6a8a3 100644 --- a/main.js +++ b/main.js @@ -1,7 +1,7 @@ var v = new Vue({ el: '#app', data:{ - debug: true, + changelog: null, static: null, user_data: [], active_page: "bundles", @@ -16,6 +16,7 @@ var v = new Vue({ }, ready: function(){ this.fetchData(); + this.fetchChangeLog(); new Clipboard('.copy'); storedUserData = localStorage.getItem('user_data'); if(storedUserData !== null && storedUserData !== ""){ @@ -40,6 +41,13 @@ var v = new Vue({ } }); }, + fetchChangeLog: function() { + this.$http.get('changelog.json', function(data, status){ + if(status == 200){ + this.changelog = data.versions + } + }); + }, enterLoadMode: function(){ this.load_mode = true; }, From 9098da651fcd476349d3443ecb6549a6cc66e23d Mon Sep 17 00:00:00 2001 From: John Cleaver Date: Wed, 13 Apr 2016 22:48:19 -0400 Subject: [PATCH 3/8] Fixed version number. --- changelog.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelog.json b/changelog.json index 96d5c17..289cde2 100644 --- a/changelog.json +++ b/changelog.json @@ -1,7 +1,7 @@ { "versions": [ { - "id": "Version 1.00", + "id": "Version 1.0", "changes": [ "Initial Version" ] From 3a322407998770ea53a7d3557d854a89811f466b Mon Sep 17 00:00:00 2001 From: John Cleaver Date: Wed, 13 Apr 2016 22:53:30 -0400 Subject: [PATCH 4/8] Added the new version changelog. --- changelog.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/changelog.json b/changelog.json index 289cde2..d536f6c 100644 --- a/changelog.json +++ b/changelog.json @@ -1,5 +1,14 @@ { "versions": [ + { + "id": "Version 1.1", + "changes": [ + "Added bundle completion numbers (#40)", + "'Hide Completed' toggle now hides items in completed bundles, even if the item is not checked.", + "Buttons for items in bundles that have been completed, but are not checked are now transparent.", + "Updated scripts to load via HTTPS so that users loading Github via HTTPS can use the page." + ] + }, { "id": "Version 1.0", "changes": [ From 1bed567c7d2c0d9fed18bb0f7f6d3c37bf2fd03d Mon Sep 17 00:00:00 2001 From: John Cleaver Date: Wed, 13 Apr 2016 22:53:40 -0400 Subject: [PATCH 5/8] Added dates to the changelog. --- changelog.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/changelog.json b/changelog.json index d536f6c..bf83cb7 100644 --- a/changelog.json +++ b/changelog.json @@ -2,6 +2,7 @@ "versions": [ { "id": "Version 1.1", + "date": "2016-04-14", "changes": [ "Added bundle completion numbers (#40)", "'Hide Completed' toggle now hides items in completed bundles, even if the item is not checked.", @@ -11,6 +12,7 @@ }, { "id": "Version 1.0", + "date": "2016-04-13", "changes": [ "Initial Version" ] From e81c2b47d311031728302a9c955c15db8c77b991 Mon Sep 17 00:00:00 2001 From: John Cleaver Date: Wed, 13 Apr 2016 23:10:22 -0400 Subject: [PATCH 6/8] Added version links. --- changelog.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/changelog.json b/changelog.json index bf83cb7..716f626 100644 --- a/changelog.json +++ b/changelog.json @@ -3,6 +3,7 @@ { "id": "Version 1.1", "date": "2016-04-14", + "link": "Version-1.1", "changes": [ "Added bundle completion numbers (#40)", "'Hide Completed' toggle now hides items in completed bundles, even if the item is not checked.", @@ -13,6 +14,7 @@ { "id": "Version 1.0", "date": "2016-04-13", + "link": "Version-1.0", "changes": [ "Initial Version" ] From 773a238f61a5c31a66bb20f043f5d47fb37c4d9c Mon Sep 17 00:00:00 2001 From: John Cleaver Date: Wed, 13 Apr 2016 23:12:51 -0400 Subject: [PATCH 7/8] Added issue numbers. --- changelog.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/changelog.json b/changelog.json index 716f626..10c3d77 100644 --- a/changelog.json +++ b/changelog.json @@ -6,9 +6,9 @@ "link": "Version-1.1", "changes": [ "Added bundle completion numbers (#40)", - "'Hide Completed' toggle now hides items in completed bundles, even if the item is not checked.", - "Buttons for items in bundles that have been completed, but are not checked are now transparent.", - "Updated scripts to load via HTTPS so that users loading Github via HTTPS can use the page." + "'Hide Completed' toggle now hides items in completed bundles, even if the item is not checked. (#44)", + "Buttons for items in bundles that have been completed, but are not checked are now transparent. (#46)", + "Updated scripts to load via HTTPS so that users loading Github via HTTPS can use the page (#47)" ] }, { From c7eb62822f056e4a0329e95840f94f2da0d74dde Mon Sep 17 00:00:00 2001 From: John Cleaver Date: Wed, 13 Apr 2016 23:13:20 -0400 Subject: [PATCH 8/8] Added a section for changelog entries. --- index.html | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/index.html b/index.html index 167b2b3..08b110e 100644 --- a/index.html +++ b/index.html @@ -66,6 +66,10 @@ v-bind:class="['skills' == active_page ? 'is-active' : '']"> Skills + + Change Log +
@@ -487,6 +491,39 @@
+
+
+

Change Log

+
+
+

+ {{ version.id }} +

+
+
+
+
    +
  • {{ change }}
  • +
+
+
+ +
+
+
+