diff --git a/CHANGELOG b/CHANGELOG index 8dd57e81812..ee3197a3a6b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,6 @@ UNRELEASED CHANGES: +* Add Webmanifest to create bookmarks on phones * Add pets management * Activities made with contact now appears in the Journal * Add ability to rate how a day went in the Journal diff --git a/public/img/touch/140x140.png b/public/img/touch/140x140.png new file mode 100644 index 00000000000..0b7d722c8d5 Binary files /dev/null and b/public/img/touch/140x140.png differ diff --git a/public/manifest.webmanifest b/public/manifest.webmanifest new file mode 100644 index 00000000000..d5aa771d01d --- /dev/null +++ b/public/manifest.webmanifest @@ -0,0 +1,17 @@ +{ + "name": "Monica", + "short_name": "Monica", + "start_url": ".", + "display": "standalone", + "background_color": "#fff", + "description": "Intuitive personal relationships management.", + "icons": [{ + "src": "/img/touch/140x140.png", + "sizes": "140x140", + "type": "image/png" + }], + "orientation": "portrait-primary", + "related_applications": [{ + "platform": "web" + }] +} diff --git a/resources/views/layouts/skeleton.blade.php b/resources/views/layouts/skeleton.blade.php index 2e0efc10e6e..b16c055fa1c 100644 --- a/resources/views/layouts/skeleton.blade.php +++ b/resources/views/layouts/skeleton.blade.php @@ -6,6 +6,7 @@ @yield('title', 'Monica - a CRM for your friends and family') +