Change repo url

This commit is contained in:
Frederic Guillot 2015-02-07 11:49:55 -05:00
parent 5c8b01ac96
commit 6e13e1519a
6 changed files with 11 additions and 6 deletions

View File

@ -21,7 +21,7 @@ RUN \
RUN \
cd /root && \
wget https://github.com/fguillot/miniflux/archive/master.zip -O miniflux.zip && \
wget https://github.com/miniflux/miniflux/archive/master.zip -O miniflux.zip && \
unzip miniflux.zip -d /var/www && \
mv /var/www/miniflux-master/* /var/www/ && \
rm miniflux.zip && \

View File

@ -85,7 +85,7 @@ External projects build around Miniflux:
Todo and known bugs
-------------------
- See Issues: <https://github.com/fguillot/miniflux/issues>
- See Issues: <https://github.com/miniflux/miniflux/issues>
License
-------

View File

@ -22,7 +22,7 @@ Sorry, I don't plan to have categories or tags.
I found a bug, what next?
-------------------------
Report the bug to the [issues tracker](https://github.com/fguillot/miniflux/issues) and I will fix it.
Report the bug to the [issues tracker](https://github.com/miniflux/miniflux/issues) and I will fix it.
You can report feeds that doesn't works properly too.

View File

@ -55,6 +55,6 @@ Don't forget to send a pull request or a ticket to share your contribution with
List of content grabber rules
-----------------------------
[List of existing rules on the repository](https://github.com/fguillot/miniflux/tree/master/vendor/fguillot/picofeed/lib/PicoFeed/Rules)
[List of existing rules on the repository](https://github.com/miniflux/miniflux/tree/master/vendor/fguillot/picofeed/lib/PicoFeed/Rules)
If you want to add new rules, just open a ticket and I will do it.

View File

@ -16,7 +16,7 @@ Installation
### From the repository (development version)
1. `git clone https://github.com/fguillot/miniflux.git`
1. `git clone https://github.com/miniflux/miniflux.git`
2. Go to the third step just above
Security

View File

@ -5,7 +5,12 @@ namespace Schema;
use PDO;
use Model\Config;
const VERSION = 39;
const VERSION = 40;
function version_40($pdo)
{
$pdo->exec('UPDATE settings SET "value"="https://github.com/miniflux/miniflux/archive/master.zip" WHERE "key"="auto_update_url"');
}
function version_39($pdo)
{