diff --git a/CHANGELOG.md b/CHANGELOG.md index d2a4cbd..2ab5671 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## [0.1.4]: 2018-10-13 +### Added +- Initial Nextcloud 14 release. + ## [0.1.4]: 2018-08-29 ### Added - Some styles fixed. diff --git a/appinfo/info.xml b/appinfo/info.xml index acb30bd..656b543 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -5,7 +5,7 @@ Quick notes with a basic rich text AGPL Matias De lellis - 0.1.4 + 0.1.5 QuickNotes office tools @@ -16,7 +16,6 @@ https://user-images.githubusercontent.com/733715/38871255-b07a7d5a-4226-11e8-8403-650cbea50be0.png 174716 - - + diff --git a/appinfo/update.php b/appinfo/update.php deleted file mode 100644 index 64f14c4..0000000 --- a/appinfo/update.php +++ /dev/null @@ -1,24 +0,0 @@ - - * @copyright Matias De lellis 2016 - */ - -$installedVersion = \OCP\Config::getAppValue('quicknotes', 'installed_version'); - -if (version_compare($installedVersion, '0.0.8', '<')) { - $sqls = array( - "INSERT INTO `*PREFIX*quicknotes_colors` (color) VALUES ('#F7EB98');", // Other color the default no handle easy duplicate colors.. - "UPDATE `*PREFIX*quicknotes_notes` SET color_id = (SELECT DISTINCT id FROM `*PREFIX*quicknotes_colors` WHERE color = '#F7EB98');" - ); - foreach ($sqls as $sql) { - $query = \OCP\DB::prepare($sql); - $query->execute(); - } -} - diff --git a/templates/main.php b/templates/main.php index 249a563..7c35751 100644 --- a/templates/main.php +++ b/templates/main.php @@ -9,7 +9,6 @@ script('quicknotes', 'script'); style('quicknotes', 'style'); ?> -
inc('part.navigation')); ?> inc('part.settings')); ?> @@ -20,4 +19,3 @@ style('quicknotes', 'style'); inc('part.content')); ?>
-