mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 13:12:41 +00:00
More documentation refinements
Update build file as well
This commit is contained in:
parent
c79443fade
commit
06990fb03b
4 changed files with 26 additions and 0 deletions
|
@ -10,6 +10,9 @@ Bug fixes:
|
||||||
- Expose the incorrectDbCharset boolean in the NextCloud News server status
|
- Expose the incorrectDbCharset boolean in the NextCloud News server status
|
||||||
- Give NextCloud News articles' guidHash attribute the correct type (string)
|
- Give NextCloud News articles' guidHash attribute the correct type (string)
|
||||||
|
|
||||||
|
Changes:
|
||||||
|
- Overhaul input type normalization to minimize bug opportunities
|
||||||
|
|
||||||
Version 0.1.1 (2017-09-30)
|
Version 0.1.1 (2017-09-30)
|
||||||
==========================
|
==========================
|
||||||
|
|
||||||
|
|
20
UPGRADING
Normal file
20
UPGRADING
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
General upgrade notes
|
||||||
|
=====================
|
||||||
|
|
||||||
|
When upgrading between any two versions of The Arsse, the following are usually prudent:
|
||||||
|
|
||||||
|
- Back up your database
|
||||||
|
- Check for any changes to sample Web server configuration
|
||||||
|
- Check for any changes to sample systemd unit or other init files
|
||||||
|
- If installing from source, update dependencies with `composer install -o --no-dev`
|
||||||
|
|
||||||
|
Upgrading from 0.1.x to 0.2.0
|
||||||
|
=============================
|
||||||
|
|
||||||
|
- The database schema has changed from rev1 to rev2; if upgrading the database manually, apply the 1.sql file
|
||||||
|
- Web server configuration has changed to accommodate Tiny Tiny RSS; the following URL paths are affected:
|
||||||
|
- /tt-rss/api/
|
||||||
|
- /tt-rss/feed-icons/
|
||||||
|
- /tt-rss/images/
|
||||||
|
- The following Composer dependencies have been added:
|
||||||
|
- jkingweb/druuid
|
|
@ -13,6 +13,8 @@
|
||||||
<include name="arsse.php"/>
|
<include name="arsse.php"/>
|
||||||
<include name="CHANGELOG"/>
|
<include name="CHANGELOG"/>
|
||||||
<include name="LICENSE"/>
|
<include name="LICENSE"/>
|
||||||
|
<include name="AUTHORS"/>
|
||||||
|
<include name="UPGRADING"/>
|
||||||
<include name="README.md"/>
|
<include name="README.md"/>
|
||||||
</fileset>
|
</fileset>
|
||||||
</copy>
|
</copy>
|
||||||
|
|
1
dist/nginx.conf
vendored
1
dist/nginx.conf
vendored
|
@ -44,6 +44,7 @@ server {
|
||||||
|
|
||||||
# Tiny Tiny RSS special-feed icons
|
# Tiny Tiny RSS special-feed icons
|
||||||
location /tt-rss/images/ {
|
location /tt-rss/images/ {
|
||||||
|
auth_basic off;
|
||||||
root /usr/share/arsse/www;
|
root /usr/share/arsse/www;
|
||||||
try_files $uri =404;
|
try_files $uri =404;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue