Skip to content

Commit 64c455f

Browse files
authored
Merge pull request #24 from opcodesio/feature/dark-mode
Feature / Dark Mode
2 parents 6c9ead1 + 586c4fa commit 64c455f

25 files changed

+360
-151
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.idea
2+
.DS_Store
23
.phpunit.result.cache
34
build
45
composer.lock

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ Log Viewer helps you quickly and clearly see individual log entries, to **search
3333
- 🔍 **Search** the logs,
3434
- 🎚 **Filter** by log level (error, info, debug, etc.),
3535
- 🔗 **Sharable links** to individual log entries,
36+
- 🌑 **Dark mode**
3637
- 💾 **Download & delete** log files from the UI,
3738
- ☑️ **Horizon** log support,
3839
- and more...
@@ -105,7 +106,7 @@ You can easily add [authentication](https://laravel.com/docs/9.x/authentication#
105106

106107
If your application doesn't use the default authentication solutions, you can use the `auth.basic` [HTTP Basic Authentication](https://laravel.com/docs/9.x/authentication#http-basic-authentication) middleware.
107108

108-
Note: By default, the `auth.basic` middleware will assume the email column on your users database table is the user's "username".
109+
_**Note:** By default, the `auth.basic` middleware will assume the email column on your users database table is the user's "username"._
109110

110111
See the `auth` middleware configuration below:
111112
```php

composer.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"name": "opcodesio/log-viewer",
3+
"version": "v1.1.0",
34
"description": "Fast and easy-to-use log viewer for your Laravel application",
45
"keywords": [
56
"arukompas",
@@ -31,7 +32,8 @@
3132
"orchestra/testbench": "^7.6",
3233
"pestphp/pest": "^1.21",
3334
"pestphp/pest-plugin-laravel": "^1.1",
34-
"phpunit/phpunit": "^9.5"
35+
"phpunit/phpunit": "^9.5",
36+
"spatie/test-time": "^1.3"
3537
},
3638
"autoload": {
3739
"psr-4": {
@@ -66,7 +68,7 @@
6668
}
6769
},
6870
"conflict": {
69-
"arcanedev/log-viewer": "^8.0"
71+
"arcanedev/log-viewer": "^8.0"
7072
},
7173
"minimum-stability": "dev",
7274
"prefer-stable": true

package-lock.json

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"production": "mix --production"
77
},
88
"devDependencies": {
9+
"@alpinejs/persist": "^3.10.3",
910
"@ryangjchandler/alpine-clipboard": "^2.2.0",
1011
"alpinejs": "^3.10.3",
1112
"autoprefixer": "^10.4.7",

public/app.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/app.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)