';
From 796e451bd62cff86f0d4b6d3a64fb769b650545d Mon Sep 17 00:00:00 2001
From: Colin Devroe
Date: Wed, 20 Mar 2019 16:33:02 -0400
Subject: [PATCH 6/9] Updated version number
---
application/config/config.php | 2 +-
package.json | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/application/config/config.php b/application/config/config.php
index b43cecfe..68077fd2 100644
--- a/application/config/config.php
+++ b/application/config/config.php
@@ -11,7 +11,7 @@
| version.point.release
|
*/
-$config['unmark_version'] = '1.8.1';
+$config['unmark_version'] = '1.9.0';
/*
|--------------------------------------------------------------------------
diff --git a/package.json b/package.json
index 83960d46..899113d7 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "unmark",
"url": "http://unmark.it",
- "version": "1.8.0",
+ "version": "1.9.0",
"description": "The open source to-do application for bookmarks.",
"author": "https://unmark.it/",
"main": "Gruntfile.js",
From 4af7b9eabc09fa039c1d59983e4bd52206cf066c Mon Sep 17 00:00:00 2001
From: Colin Devroe
Date: Thu, 21 Mar 2019 09:10:15 -0400
Subject: [PATCH 7/9] Removed changelog from OS version. Updated readme to
include that mySQL 5.7+ is now required.
---
application/views/singletons/changelog.php | 57 ----------------------
readme.md | 2 +-
2 files changed, 1 insertion(+), 58 deletions(-)
delete mode 100644 application/views/singletons/changelog.php
diff --git a/application/views/singletons/changelog.php b/application/views/singletons/changelog.php
deleted file mode 100644
index 40514d95..00000000
--- a/application/views/singletons/changelog.php
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Changelog
-
-
This changelog relates to the hosted version of Unmark at unmark.it
-
-
Wednesday, February 27, 2019
-Version: 1.8.1
-
-
Fix: The information sidebar wasn't loading correct bookmark's info
-
Fix: On iPad Pro you no longer need to double-tap to visit or archive a bookmark.
-
Fix: On iPad Pro the bookmark information sidebar can now be shown.
-
New: This changelog! Clicking on the version number shows this changelog on Unmark.it
-
-
-
Saturday, February 23, 2019
-Version: 1.8.095
-
-
New: An all-new design
-
New: A new icon!
-
New: Support for importing from Pocket
-
Fix: Better compatibility with password managers
-
New: Progressive Web App Support (to install, Add To Homescreen on your mobile device)
-
New: Share to Unmark (Android only)
-
Fix: Speed improvements throughout the app
-
-
-
-
-
-
-
-
-
diff --git a/readme.md b/readme.md
index 85a306ec..f6e4b100 100644
--- a/readme.md
+++ b/readme.md
@@ -18,7 +18,7 @@ Running Unmark is only recommended for intermediate users. This doesn't mean if
- Apache 2.x
- PHP 5.6 or greater
-- mySQL 5.5 or greater
+- mySQL 5.7 or greater
**Experimental: Docker**
If you're going to use Docker we've included the appropriate Docker Compose, Dockerfile, and PHP.ini files to do so. This is still in its experimental phase though. We will update this readme with better instructions.
From c8a26e8670b5cdb883b13d42df8e5f29205f6450 Mon Sep 17 00:00:00 2001
From: Colin Devroe
Date: Thu, 21 Mar 2019 11:17:51 -0400
Subject: [PATCH 8/9] Addressed an issue with mobile navigation for hashtags
---
assets/js/unmark.actions.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/assets/js/unmark.actions.js b/assets/js/unmark.actions.js
index dfc5c218..52ecd7fd 100644
--- a/assets/js/unmark.actions.js
+++ b/assets/js/unmark.actions.js
@@ -87,7 +87,7 @@
if ( is_tag_menu || is_tag_filter ) {
panel_name = 'panel-tags';
panel_to_show = '#'+panel_name;
- if ( is_tag_menu && is_tag_filter ) {
+ if ( !is_tag_menu && is_tag_filter ) { // tag filter was clicked
hide_mobile_sub_menu = true;
} else if ( is_tag_menu && !is_tag_filter ) { // tag menu was clicked, but _Not_ tag filter
hide_mobile_sub_menu = false;
From 4d3ae0a2f7d91bc3d9216680c6509a74fa6969ee Mon Sep 17 00:00:00 2001
From: Colin Devroe
Date: Thu, 21 Mar 2019 12:57:05 -0400
Subject: [PATCH 9/9] Fixed an issue with long URLs showing full length in the
bookmark list.
---
assets/css/partials/_stream.scss | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/assets/css/partials/_stream.scss b/assets/css/partials/_stream.scss
index 4587810f..6f05ddbd 100644
--- a/assets/css/partials/_stream.scss
+++ b/assets/css/partials/_stream.scss
@@ -102,7 +102,7 @@
.mark-link a {
text-decoration: none;
color: darken($color_light, 15%);
- display: inline;
+ display: inline-block;
vertical-align: bottom;
@include unmark-truncate(65%);
}