Change repo url
This commit is contained in:
parent
5c8b01ac96
commit
6e13e1519a
@ -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 && \
|
||||
|
@ -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
|
||||
-------
|
||||
|
@ -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.
|
||||
|
||||
|
@ -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.
|
||||
|
@ -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
|
||||
|
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user