Skip to content

Commit

Permalink
Merge pull request #176 from Kovah/dev
Browse files Browse the repository at this point in the history
v1.0.0
  • Loading branch information
Kovah authored Dec 16, 2020
2 parents fb30d09 + b668584 commit 859e3db
Show file tree
Hide file tree
Showing 31 changed files with 1,884 additions and 1,203 deletions.
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Bug report
about: Create a report to help us improve
name: Bug Report
about: Create a report to help us improve LinkAce
title: ''
labels: Bug
assignees: ''
Expand All @@ -26,7 +26,7 @@ If applicable, add screenshots to help explain your problem.
**LinkAce setup (please complete the following information):**
- Version: [e.g. 0.0.43]
- Installed via: [e.g. PHP, Docker]
- OS: [e.g. Ubuntu, CentOS]
- OS: [e.g. Ubuntu, CentOS, Windows]

**Desktop (please complete the following information if applicable):**
- OS: [e.g. iOS]
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: Feature request
name: Feature Request
about: Suggest an idea for this project
title: ''
labels: Enhancement
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
strategy:
matrix:
operating-system: [ubuntu-latest]
php-versions: ['7.3', '7.4']
php-versions: ['7.3', '7.4', '8.0']

name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}

Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
<a href="https://community.linkace.org"><img src="https://img.shields.io/twitter/url?label=Community&logo=discourse&logoColor=44679f&style=social&url=https%3A%2F%2Fcommunity.linkace.org%2F" alt="Get support for LinkAce and chat about the project"></a>
<a href="https://twitter.com/LinkAceApp"><img src="https://img.shields.io/twitter/url?label=%40LinkAceApp&style=social&url=https%3A%2F%2Ftwitter.com%2FLinkAceApp" alt="Follow LinkAce on Twitter"></a>
<a href="https://hub.docker.com/r/linkace/linkace"><img src="https://img.shields.io/badge/Docker-linkace%2Flinkace-2596EC.svg" alt="Docker Repository"></a>
<a href="https://github.com/Kovah/LinkAce/releases"><img src="https://img.shields.io/github/v/release/kovah/linkace?include_prereleases&label=Latest%20Release" alt="Latest Release"></a>
<a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/github/license/kovah/linkace.svg" alt="License"></a>
<a href="https://github.com/Kovah/LinkAce/releases"><img src="https://img.shields.io/github/v/release/kovah/linkace?label=Latest%20Release" alt="Latest Release"></a>
<a href="https://opensource.org/licenses/GPL-3.0"><img src="https://img.shields.io/github/license/kovah/linkace.svg" alt="License"></a>
</p>
<p>&nbsp;</p>

Expand All @@ -32,15 +32,15 @@

![Preview Screenshot](https://www.linkace.org/images/preview/linkace_dashboard.png)

LinkAce is a bookmark manager similar to Shaarli and other tools. See this tool as a long-term archive for sites you want to remember, but don't access frequently. I built this tool to have something that fits my actual needs which other bookmark managers couldn't solve, even if some features look almost the same.
LinkAce is a bookmark archive. It wasn't built to manage the bookmarks of your browser but has its very own philosophy. My browser bookmarks contain only websites I regularly use and access. LinkAce, in contrast, is meant to provide a _long-term_ archive of links to websites, media files or anything else which has a valid URL. I store interesting articles, neat web tools or libraries I _may_ use sometime in the future.

#### Feature Highlights

* Save links with automatic title and description generation.
* Automated link checks inform you when any links become unavailable or were moved.
* Automated backups of saved sites via the [Waybackmachine](https://web.archive.org/).
* Organize bookmarks with lists and tags.
* A full REST API offers access to all features of LinkAce from third-party apps and services.
* Automated link monitoring informs you when any links become unavailable or were moved.
* Automated backups of saved sites via the [Internet Archive](https://web.archive.org/).
* Organize bookmarks with the help of lists and tags.
* A full REST API offers access to all features of LinkAce from other apps and services.
* A bookmarklet to quickly save links from any browser.
* Links can be private or public, so friends or internet strangers may see your collection.
* Add notes to links to add thoughts or other relevant information.
Expand All @@ -61,7 +61,7 @@ Any further information about all the available features and how to install the

### :bulb: Support for LinkAce

I built LinkAce to solve my problem, and I now offer my solution and code to your without charging anything. I spent a lot of my free time building this application already, so I won't offer any *free* personal support, customization or installation help. If you need help please visit the [community forum](https://community.linkace.org/) and post your issue there.
I built LinkAce to solve my own problem, and I now offer my solution and code without charging anything. I spent a lot of my free time building this application already, so I won't offer any *free* personal support, customization or installation help. If you need help please visit the [community forum](https://community.linkace.org/) and post your issue there.

You can get personal and dedicated support by **becoming a [Patreon](https://www.patreon.com/Kovah)** or **[Github Sponsor](https://github.com/sponsors/Kovah)**. :star:

Expand Down
4 changes: 4 additions & 0 deletions app/Exceptions/Handler.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ class Handler extends ExceptionHandler
*/
public function report(Throwable $exception)
{
if ($this->shouldReport($exception) && app()->bound('sentry')) {
app('sentry')->captureException($exception);
}

parent::report($exception);
}

Expand Down
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"license": "GPL-3.0-or-later",
"type": "project",
"require": {
"php": "^7.3.0",
"php": "^7.3 | ^8.0",
"composer/semver": "^1.5",
"doctrine/dbal": "^2.10.2",
"fideloper/proxy": "^4.0",
Expand All @@ -16,6 +16,7 @@
"league/flysystem-aws-s3-v3": "^1.0",
"predis/predis": "^1.1",
"rap2hpoutre/laravel-log-viewer": "^1.7",
"sentry/sentry-laravel": "^2.3",
"shaarli/netscape-bookmark-parser": "^2.1",
"spatie/laravel-backup": "^6.11.1",
"venturecraft/revisionable": "^1.34"
Expand All @@ -24,7 +25,7 @@
"barryvdh/laravel-debugbar": "^3.2",
"barryvdh/laravel-ide-helper": "^2.6",
"facade/ignition": "^2.3.6",
"fzaninotto/faker": "^1.4",
"fakerphp/faker": "^1.12",
"laravel/tinker": "^2.2.0",
"mockery/mockery": "1.3.*",
"nunomaduro/collision": "^5.0",
Expand Down
Loading

0 comments on commit 859e3db

Please sign in to comment.