Skip to content

Commit

Permalink
Bump version to 1.0.0 and add release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
jessewebb committed Jun 17, 2018
1 parent 71bc6a6 commit 7d32ff2
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 20 deletions.
4 changes: 1 addition & 3 deletions README.md
Expand Up @@ -4,9 +4,7 @@ Copyright © 2014-2018 Jesse Webb

This code is available under [the MIT License](https://github.com/jessewebb/csgo-buynds/blob/gh-pages/LICENSE).

_Disclaimer:_ This project is currently in **BETA** stages of development.

`Version: 1.0.0-dev`
`Version: 1.0.0`

[![Build Status](https://travis-ci.org/jessewebb/csgo-buynds.svg?branch=gh-pages)](https://travis-ci.org/jessewebb/csgo-buynds)

Expand Down
18 changes: 17 additions & 1 deletion about.html
Expand Up @@ -179,8 +179,24 @@ <h2 id="development-info">Development Information</h2>
<p>Jesse's preferred JavaScript IDE is <a id="aboutJetbrainsWebStormLink" href="http://www.jetbrains.com/webstorm/" target="_blank">JetBrain's WebStorm</a>.
</p>
</div>
<div class="col-md-4">
<div class="col-md-4 release-notes">
<h2 id="release-notes">Release Notes</h2>
<div class="panel panel-info">
<div class="panel-heading">
<h3 class="panel-title">v1.0.0 <em class="pull-right"><small><a href="https://github.com/jessewebb/csgo-buynds/pull/27" target="_blank" title="Release version 1.0.0">Released: 2018-06-17</a></small></em></h3>
</div>
<div class="panel-body">
<ul>
<li>Show prices of equipment and total prices of buy binds</li>
<li>Show team-colored labels on team-specific equipment</li>
<li>Add hover-over pop-ups that show equipment images and icons</li>
<li>Add help page with instructions on how to use buy binds</li>
<li>Upgrade 3rd-party libraries</li>
<li>Replace ZeroClipboard with clipboard.js (fixes <a href="https://github.com/jessewebb/csgo-buynds/issues/25" target="_blank" title="Copy to Clipboard button doesn't work.">bug #25</a>)</li>
<li>Lots of code clean-up!</li>
</ul>
</div>
</div>
<div class="panel panel-info">
<div class="panel-heading">
<h3 class="panel-title">v0.9.0 (BETA) <em class="pull-right"><small><a href="https://github.com/jessewebb/csgo-buynds/pull/18" target="_blank" title="Release version 0.9.0">Released: 2017-03-26</a></small></em></h3>
Expand Down
2 changes: 1 addition & 1 deletion buy-binds-generator.html
Expand Up @@ -49,7 +49,7 @@
ga('set', {
'appName': 'CS:GO Buynds',
'appId': 'csgo-buynds',
'appVersion': '1.0.0-dev'
'appVersion': '1.0.0'
});
</script>
</head>
Expand Down
5 changes: 5 additions & 0 deletions css/app.css
Expand Up @@ -26,6 +26,11 @@ pre.buy-binds {
margin-left: 10px;
}

div.release-notes ul {
padding-left: 10px;
list-style-type: square;
}

.footer {
border-top: 1px solid lightgrey;
font-size: small;
Expand Down
23 changes: 10 additions & 13 deletions index.html
Expand Up @@ -72,7 +72,7 @@
<div class="container">
<div class="row">
<div class="col-md-8">
<h1>CSGO-Buynds <small><span class="label label-info">v1.0.0-dev</span></small></h1>
<h1>CSGO-Buynds <small><span class="label label-info">v1.0.0</span></small></h1>

<h2>CS:GO Buy Binds Generator</h2>

Expand Down Expand Up @@ -137,28 +137,25 @@ <h3>Create your own CS:GO Buy Binds!</h3>
don't need to sign-up for an account or download any software. It only takes 5 minutes to setup your
own personal key bindings. You can keep it simple and have 1 weapon per key or go crazy and setup entire
load-outs available with a single keystroke! Never be the last one out of spawn again!</p>

<h3>Disclaimer</h3>

<p>This software is currently in the BETA stages of development. It is available for early-access use right
now but be warned that it is prone to bugs and drastic changes. Visit frequently for updates!</p>
</div>

<div class="col-md-4">
<div class="row">
<div class="col-sm-6 col-md-12">
<h3>Release Notes</h3>
<div class="panel panel-info">
<div class="panel panel-info release-notes">
<div class="panel-heading">
<h3 class="panel-title">v0.9.0 (BETA) <em class="pull-right"><small><a href="https://github.com/jessewebb/csgo-buynds/pull/18" target="_blank" title="Release version 0.9.0">Released: 2017-03-26</a></small></em></h3>
<h3 class="panel-title">v1.0.0 <em class="pull-right"><small><a href="https://github.com/jessewebb/csgo-buynds/pull/27" target="_blank" title="Release version 1.0.0">Released: 2018-06-17</a></small></em></h3>
</div>
<div class="panel-body">
<ul>
<li>New Save and Load buttons on Multi-Key Generator allowing 5 custom configurations</li>
<li>Added support to load Binds from built-in presets</li>
<li>MKG now has an 'Auto-Generate' option</li>
<li>Replaced Key and Weapon select boxes with more user-friendly controls</li>
<li>Now Mouse buttons can be used for binds (thanks <a href="https://github.com/bpinkert" target="_blank">bpinkert</a> for PR!)</li>
<li>Show prices of equipment and total prices of buy binds</li>
<li>Show team-colored labels on team-specific equipment</li>
<li>Add hover-over pop-ups that show equipment images and icons</li>
<li>Add help page with instructions on how to use buy binds</li>
<li>Upgrade 3rd-party libraries</li>
<li>Replace ZeroClipboard with clipboard.js (fixes <a href="https://github.com/jessewebb/csgo-buynds/issues/25" target="_blank" title="Copy to Clipboard button doesn't work.">bug #25</a>)</li>
<li>Lots of code clean-up!</li>
</ul>
</div>
<div class="panel-footer">
Expand Down
2 changes: 1 addition & 1 deletion js/services.js
Expand Up @@ -4,7 +4,7 @@

var buyndsServices = angular.module('buyndsServices', []);

buyndsServices.value('version', '1.0.0-dev');
buyndsServices.value('version', '1.0.0');

buyndsServices.factory('bindBuilder', function () {
return new buynds.BindBuilder();
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "csgo-buynds",
"version": "1.0.0-dev",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/jessewebb/csgo-buynds.git"
Expand Down

0 comments on commit 7d32ff2

Please sign in to comment.