Skip to content

Commit

Permalink
Merge pull request #191 from kmvan/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
kmvan authored Nov 14, 2022
2 parents 2461f61 + b4126e5 commit 099019b
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion AppConfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"APP_VERSION": "8.12",
"APP_VERSION": "8.13",
"APP_NAME": "X Prober",
"APP_URL": "https://github.com/kmvan/x-prober",
"AUTHOR_URL": "https://inn-studio.com/prober",
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All Notable changes to `X-Prober` will be documented in this file

## 8.13.0 - 2022-11-14

### Fix

- Fix body color

## 8.12.0 - 2022-11-14

### Remove
Expand Down
6 changes: 3 additions & 3 deletions dist/prober.php

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/Components/Bootstrap/components/global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
}
body {
background: var(--x-body-bg);
color: var(--x-x-body-fg);
color: var(--x-body-fg);
font-family: 'Noto Sans CJK SC', 'Helvetica Neue', Helvetica, Arial, Verdana,
Geneva, sans-serif;
padding: var(--x-gutter);
Expand Down
2 changes: 1 addition & 1 deletion src/Components/ColorScheme/components/config.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ $bg: #f8f8f8;
--x-fg: #{$fg};
--x-bg: #{$bg};
--x-html-bg: var(--x-fg);
--x-x-body-fg: var(--x-bg);
--x-body-fg: var(--x-fg);
--x-body-bg: var(--x-bg);
--x-gutter: 1rem;
--x-app-border-color: var(--x-fg);
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Config/ConfigApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

class ConfigApi
{
public static $APP_VERSION = '8.12';
public static $APP_VERSION = '8.13';
public static $APP_NAME = 'X Prober';
public static $APP_URL = 'https://github.com/kmvan/x-prober';
public static $APP_CONFIG_URLS = array('https://raw.githubusercontent.com/kmvan/x-prober/master/AppConfig.json', 'https://api.inn-studio.com/download/?id=xprober-config');
Expand Down

0 comments on commit 099019b

Please sign in to comment.