Thank you for purchasing my addon!

If you want to update from version 1.0 to version 1.1, follow the steps below:

=== resources/scripts/assets/css/GlobalStylesheet.ts

---------------------------------------------------------------------------
= Replace:
-webkit-box-shadow: inset 0 0 0 1px hsl(211, 10%, 53%), inset 0 0 0 4px hsl(209deg 18% 30%);

= With:
-webkit-box-shadow: inset 0 0 0 1px var(--gray-600), inset 0 0 0 4px var(--gray-800);
---------------------------------------------------------------------------

=== resources/scripts/components/server/console/chart.ts

---------------------------------------------------------------------------
= Under:
ChartJS.register(LineElement, PointElement, Filler, LinearScale);

= Add:
const style = getComputedStyle(document.body);
const gridColor = style.getPropertyValue('--gray-700');
const ticksColor = style.getPropertyValue('--gray-200');
---------------------------------------------------------------------------
= Replace:
color: theme('colors.gray.700'),

= With:
color: gridColor,
---------------------------------------------------------------------------
= Replace:
color: theme('colors.gray.200'),

= With:
color: ticksColor,
---------------------------------------------------------------------------


After editing the files, run the following commands on your pterodactyl machine:

cd /var/www/pterodactyl
yarn install
yarn build:production
php artisan optimize
php artisan view:clear

If you encounter any issues, you can contact me in the following discord server: https://dc.bartoszeq.dev