Skip to content

Commit

Permalink
Release 1.3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
boyter committed Feb 1, 2018
1 parent 3ea5416 commit ae20811
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 41 deletions.
20 changes: 18 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ Use of this software is governed by the Fair Source License included in the LICE

In order to deal with the case of my death or this software becoming abandoned it has an open eventually clause where the licence will change exactly 3 years after the publish date of a version release. This means that if version 1.0.0 was released on 1 July 2010 then it can be taken using the listed alternate licence on 2 July 2013. This licence, version and time is all specified below.

After the following date NOT SPECIFIED YET the software version '1.3.12' is dual licenced under the Fair Source Licence included in the LICENSE.txt file or under the GNU General Public License Version 3 with terms specified at https://www.gnu.org/licenses/gpl-3.0.txt
After the following date 01 February 2021 the software version '1.3.12' is dual licenced under the Fair Source Licence included in the LICENSE.txt file or under the GNU General Public License Version 3 with terms specified at https://www.gnu.org/licenses/gpl-3.0.txt

OWASP Database is licensed under https://creativecommons.org/licenses/by-sa/3.0/ sourced under Creative Commons from https://codecrawler.codeplex.com/ https://www.owasp.org/index.php/Category:OWASP_Code_Crawler and https://www.owasp.org/index.php/OWASP_Code_Review_Guide_Table_of_Contents this database was modified to JSON and with slight corrections to spelling and puncuation where applicable.

Expand All @@ -200,7 +200,7 @@ File Classifier Database is licensed under https://creativecommons.org/licenses/
Change Log
==========

XX XXXX XXXX - 1.3.12 https://github.com/boyter/searchcode-server/projects/5
01 February 2018 - 1.3.12 https://github.com/boyter/searchcode-server/projects/5
- Reversed filename in search https://github.com/boyter/searchcode-server/issues/160
- Add click through to original repository https://github.com/boyter/searchcode-server/issues/162
- Can now edit some properties of repositories https://github.com/boyter/searchcode-server/issues/162
Expand Down Expand Up @@ -436,3 +436,19 @@ XX XXXX XXXX - 1.3.12 https://github.com/boyter/searchcode-server/projects/5
- Inital release

Join the chat at https://gitter.im/searchcode-server/Lobby


Deployment Checklist
--------------------

- update README.md and replace NOT SPECIFIED YET with current date and the change log entry
- fab build_all_release
- scp searchcode-server-community.tar.gz to searchcodeserver.com
- generate sha1sum and md5sum of searchcode-server-community.tar.gz
- update pricing.html with hashes calculated in previous step
- check that version.json is correct version
- fab all setup_site
- git update and push
- mark new release on github
- update new release into gumroad
- tweet success
1 change: 1 addition & 0 deletions assets/sales/fabfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ def setup_site():
put('output', '/var/www/html')
sudo('cp -R /var/www/html/output/* /var/www/html/')
sudo('rm -rf /var/www/html/output')
sudo('cp ~/searchcode-server-community.tar.gz /var/www/html/')


# TODO should be a cron job
Expand Down
43 changes: 4 additions & 39 deletions assets/sales/pricing.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ <h1 class="white">Pricing for searchcode server.</h1>
</tr>
<tr>
<th scope="row"></th>
<td><div style="margin-top:14px;"><a id="communitydownload" href="https://searchcode.com/static/searchcode-server-community.tar.gz" class="top20">Free Community Edition</a></div></td>
<td><div style="margin-top:14px;"><a id="communitydownload" href="https://searchcodeserver.com/searchcode-server-community.tar.gz" class="top20">Free Community Edition</a></div></td>
<td><a data-gumroad-single-product="true" target="_blank" class="gumroad-button" href="https://gum.co/spTnp">Buy now $99</a></td>
<td><a data-gumroad-single-product="true" target="_blank" class="gumroad-button" href="https://gum.co/XJVCH">Buy now $699</a></td>
</tr>
Expand All @@ -110,8 +110,8 @@ <h1 class="white">Pricing for searchcode server.</h1>
<p>
<ul class="text-left list-unstyled">
<li>Current version hash</li>
<li>MD5 - 0a19159a36b6f9053c31ce85929ec251</li>
<li>SHA1 - e74a9a7c180a0ac20285ccd63353b9884b7637db</li>
<li>MD5 - 1d6fc6cff17bc582a59737f32a4e79a6</li>
<li>SHA1 - bcb936aef611660c44bfd1f756e56ed9dbbbd078</li>
</ul>
</p>
</div>
Expand All @@ -126,39 +126,4 @@ <h1 class="white">Pricing for searchcode server.</h1>
<div class="container">
<p>We understand that you may want to check the searchcode server source code before allowing searchcode server to index your most valuable intellectual property. No problem, searchcode server is licenced under the <a href="https://fair.io/">fair source</a> licence, and you are allowed to view, modify and use the source code for searchcode server for up to 5 users. View the <a href="https://github.com/boyter/searchcode-server">source on github</a></p>
</div>
</div>

<script>
$(document).ready(function(){
$('#communitydownload').click(function(e) {
portfold(24, '/communitydownload')
});
});

function portfold (id, path) {
if (!id) {
return;
}

var er = encodeURIComponent;
var url = '?ua=' + er(window.navigator.userAgent) +
'&an=' + er(window.navigator.appName) +
'&re=' + er(document.referrer) +
'&sh=' + er(screen.height) +
'&sw=' + er(screen.width) +
'&os=' + er(navigator.oscpu) +
'&pl=' + er(navigator.platform) +
'&hr=' + er(window.location.href.trim().replace(/\/+$/, '') + path) +
'&si=' + id;
console.log(url);

var img = document.createElement('img');
img.src = '//portfold.com/track/' + url;
img.style.cssText = 'display:none;'
img.width = '1';
img.height = '1';
var src = document.getElementsByTagName('script')[0];
src.appendChild(img);
img.remove();
}
</script>
</div>

0 comments on commit ae20811

Please sign in to comment.