Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Binary file added public/img/touch/140x140.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions public/manifest.webmanifest
Original file line number Diff line number Diff line change
@@ -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"
}]
}
1 change: 1 addition & 0 deletions resources/views/layouts/skeleton.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="csrf-token" content="{{ csrf_token() }}"/>
<title>@yield('title', 'Monica - a CRM for your friends and family')</title>
<link rel="manifest" href="/manifest.webmanifest">

<link rel="stylesheet" href="{{ mix('css/app.css') }}">
<link rel="shortcut icon" href="/img/favicon.png">
Expand Down