-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
5,835 additions
and
664 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
#!/bin/bash | ||
|
||
##: This script needs to be run with sudo | ||
ROOT_UID="0" | ||
|
||
#Check if run as root | ||
if [ "$UID" -ne "$ROOT_UID" ] ; then | ||
echo "You must run this script with sudo." | ||
exit 1 | ||
fi | ||
export CARTROOT=`echo "<?echo rtrim(get_cfg_var('cartulary_conf'), '/');?>" | php` | ||
|
||
echo Side-loading packages up through version 0.6.10... | ||
|
||
##: Refresh apt | ||
echo Updating apt-get repos... | ||
apt-get update | ||
|
||
##: Install any new modules needed for this release | ||
echo Installing php5 imap library... | ||
apt-get install -y php5-imap | ||
apt-get install -y php-imap | ||
php5enmod imap | ||
phpenmod imap | ||
|
||
echo Installing php5 xsl library... | ||
apt-get install -y php5-xsl | ||
apt-get install -y php-xsl | ||
php5enmod xsl | ||
phpenmod xsl | ||
|
||
echo Installing node.js... | ||
curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash - | ||
apt-get install -y nodejs | ||
cd $CARTROOT/aggrivate | ||
sudo npm -g install npm@latest | ||
sudo npm -g install npm@latest | ||
npm install | ||
|
||
echo Correcting feed database prior to upgrade... | ||
echo " This could take a while. Please wait..." | ||
sudo php /opt/cartulary/bin/clean_nonfqdn_feeds.php | ||
sudo php /opt/cartulary/bin/clean_duplicate_feeds.php | ||
|
||
##: This file should be EXEcutable! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#Release Notes - Freedom Controller v0.6.17 | ||
|
||
|
||
|
||
- Bug Fixes (the notable ones) | ||
- We should have been checking HTTP status code when adding enclosures to RSS feeds in the editor. If the enclosure | ||
url HEAD check returns a greater than 399 status code then error out. | ||
- Change domain refs in blank RSS outline template to point to a subdomain we own to prevent hijacking in the future. | ||
|
||
- New Feature: Editor - private outlines | ||
- There is now an option in the editor toolbar to make an outline private. Default is always "public" in the S3 bucket. | ||
- Just click on the circle with the slash through it and then save the outline. The OPML will be marked private in S3 and the HTML | ||
will be removed from S3. | ||
- The HTML link will then be replaced with a server-referenced url with a 75 character random token. This can be shared | ||
for private viewing. | ||
|
||
- New Feature Editor - Unarchive nodes | ||
- If you have an "include" type node selected, you can click the unarchive button on the toolbar to suck the included outlines | ||
nodes back into this outline and remove the include reference. | ||
- If you have multiple include nodes selected they will all be sucked back in. | ||
- This is very useful if you produce a search outline with the 'OPML:' search keyword and want to turn it into a single large | ||
outline without all the includes. | ||
|
||
|
||
- Improvements: | ||
- Editor now prompts if you want to "save as..." when you save after changing the title of an outline. | ||
- Editor prompts if you're sure you want to leave the page if you have unsaved changes. | ||
- Updated Font-awesome to latest version. | ||
- Removed morse code tool from editor. |
Oops, something went wrong.