Skip to content

Commit

Permalink
version 2.13
Browse files Browse the repository at this point in the history
  • Loading branch information
SSilence committed May 7, 2015
1 parent 6715291 commit 6b47543
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ selfoss
Copyright (c) 2013 Tobias Zeising, tobias.zeising@aditu.de
http://selfoss.aditu.de
Licensed under the GPLv3 license
Version 2.13-SNAPSHOT
Version 2.13


INSTALLATION
Expand Down
6 changes: 3 additions & 3 deletions _docs/website/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@ <h1 id="header-name"><span>selfoss</span></h1>
<li class="documentation">documentation</li>
<li class="about">about</li>
<li class="forum"><a href="/forum">forum</a></li>
<li class="download"><a href="selfoss-2.13-SNAPSHOT.zip">download</a></li>
<li class="download"><a href="https://github.com/SSilence/selfoss/releases/download/2.13/selfoss-2.13.zip">download</a></li>
</ul>

<a id="header-fork" href="https://github.com/SSilence/selfoss"></a>

<div id="header-logo"></div>

<!--<div id="header-just-updated"></div>-->
<div id="header-just-updated"></div>

<a id="header-download" href="selfoss-2.13-SNAPSHOT.zip"><span>download selfoss 2.13-SNAPSHOT</span></a>
<a id="header-download" href="https://github.com/SSilence/selfoss/releases/download/2.13/selfoss-2.13.zip"><span>download selfoss 2.13</span></a>

<a id="header-donate" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=LR67F3T9DMSC8"><span>donate</span></a>

Expand Down
2 changes: 1 addition & 1 deletion common.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
$f3 = require(__DIR__.'/libs/f3/base.php');

$f3->set('DEBUG',0);
$f3->set('version','2.13-SNAPSHOT');
$f3->set('version','2.13');
$f3->set('AUTOLOAD',__dir__.'/;libs/f3/;libs/;libs/WideImage/;daos/;libs/twitteroauth/;libs/FeedWriter/;libs/fulltextrss/content-extractor/;libs/fulltextrss/readability/');
$f3->set('cache',__dir__.'/data/cache');
$f3->set('BASEDIR',__dir__);
Expand Down
3 changes: 2 additions & 1 deletion gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ module.exports = function(grunt) {
{ src: ['data/cache/.htaccess'], dest: '' },
{ src: ['data/logs/.htaccess'], dest: '' },
{ src: ['data/sqlite/.htaccess'], dest: '' },
{ expand: true, cwd: 'data/fulltextrss', src: ['**'], dest: '/data/fulltextrss'},

{ expand: true, cwd: 'spouts/', src: ['**'], dest: '/spouts'},
{ expand: true, cwd: 'templates/', src: ['**'], dest: '/templates'},
Expand All @@ -87,7 +88,7 @@ module.exports = function(grunt) {
if (typeof grunt.option('newversion') != 'undefined') {
grunt.log.writeln('replace version ' + grunt.option('newversion'));
if (version.search(/^\d+\.\d+(\-SNAPSHOT)?$/) == -1)
grunt.fail.warn('newversion must have the format n.m.x or n.m.x-SNAPSHOT (n, m and x are integer numbers)');
grunt.fail.warn('newversion must have the format n.m or n.m-SNAPSHOT (n and m are integer numbers)');
grunt.task.run('replace');
}
});
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "selfoss",
"description": "selfoss",
"ver": "2.13-SNAPSHOT",
"ver": "2.13",
"repository": {
"type": "git",
"url": "https://github.com/SSilence/selfoss.git"
Expand Down

0 comments on commit 6b47543

Please sign in to comment.