From cec86c39ed4d19485a2c462b362d2b98c7a24589 Mon Sep 17 00:00:00 2001 From: Darko Gjorgjijoski Date: Sun, 28 Jan 2024 02:59:42 +0100 Subject: [PATCH] Update logo/screenshots --- .../sass/{crater.scss => invoiceshelf.scss} | 10 +++++----- .../scripts/{Crater.js => InvoiceShelf.js} | 2 +- .../scripts/admin/layouts/LayoutLogin.vue | 4 ++-- .../admin/layouts/partials/TheSiteSidebar.vue | 2 +- .../admin/views/installation/Installation.vue | 6 +++--- .../scripts/admin/views/modules/View.vue | 4 ++-- .../scripts/components/InvoicePublicPage.vue | 2 +- .../components/base/BaseGlobalLoader.vue | 6 +----- resources/scripts/main.js | 6 +++--- resources/static/img/PDF/estimate1.png | Bin 96440 -> 96871 bytes resources/static/img/PDF/estimate2.png | Bin 85532 -> 95540 bytes resources/static/img/PDF/estimate3.png | Bin 106293 -> 107435 bytes resources/static/img/PDF/invoice1.png | Bin 96440 -> 96871 bytes resources/static/img/PDF/invoice2.png | Bin 85532 -> 95540 bytes resources/static/img/PDF/invoice3.png | Bin 106293 -> 107435 bytes resources/static/img/c-mobile.png | Bin 49947 -> 0 bytes resources/static/img/crater-logo-gray.png | Bin 1611 -> 0 bytes resources/static/img/crater-logo.png | Bin 26453 -> 0 bytes resources/static/img/crater-white-small.png | Bin 2075 -> 0 bytes resources/static/img/icon.png | Bin 0 -> 790337 bytes resources/static/img/logo-gray.png | Bin 0 -> 31583 bytes resources/static/img/logo-white.png | Bin 5421 -> 26528 bytes resources/static/img/logo.png | Bin 0 -> 29482 bytes resources/views/app.blade.php | 2 +- .../views/app/pdf/invoice/invoice1.blade.php | 2 +- .../views/app/pdf/invoice/invoice2.blade.php | 2 +- .../views/app/pdf/payment/payment.blade.php | 2 +- resources/views/emails/test.blade.php | 2 +- 28 files changed, 24 insertions(+), 28 deletions(-) rename resources/sass/{crater.scss => invoiceshelf.scss} (74%) rename resources/scripts/{Crater.js => InvoiceShelf.js} (97%) delete mode 100644 resources/static/img/c-mobile.png delete mode 100644 resources/static/img/crater-logo-gray.png delete mode 100644 resources/static/img/crater-logo.png delete mode 100644 resources/static/img/crater-white-small.png create mode 100644 resources/static/img/icon.png create mode 100644 resources/static/img/logo-gray.png create mode 100644 resources/static/img/logo.png diff --git a/resources/sass/crater.scss b/resources/sass/invoiceshelf.scss similarity index 74% rename from resources/sass/crater.scss rename to resources/sass/invoiceshelf.scss index e6c82982..83f0fff7 100644 --- a/resources/sass/crater.scss +++ b/resources/sass/invoiceshelf.scss @@ -9,7 +9,7 @@ font-style: normal; font-weight: 400; font-display: swap; - src: url("/build/fonts/Poppins-Black.ttf") format("truetype"); + src: url("/fonts/Poppins-Black.ttf") format("truetype"); } @font-face { @@ -17,7 +17,7 @@ font-style: normal; font-weight: 300; font-display: swap; - src: url("/build/fonts/Poppins-Light.ttf") format("truetype"); + src: url("/fonts/Poppins-Light.ttf") format("truetype"); } @font-face { @@ -25,7 +25,7 @@ font-style: normal; font-weight: 500; font-display: swap; - src: url("/build/fonts/Poppins-Medium.ttf") format("truetype"); + src: url("/fonts/Poppins-Medium.ttf") format("truetype"); } @font-face { @@ -33,7 +33,7 @@ font-style: normal; font-weight: 400; font-display: swap; - src: url("/build/fonts/Poppins-Regular.ttf") format("truetype"); + src: url("/fonts/Poppins-Regular.ttf") format("truetype"); } @font-face { @@ -41,7 +41,7 @@ font-style: normal; font-weight: 600; font-display: swap; - src: url("/build/fonts/Poppins-SemiBold.ttf") format("truetype"); + src: url("/fonts/Poppins-SemiBold.ttf") format("truetype"); } // Default Theme diff --git a/resources/scripts/Crater.js b/resources/scripts/InvoiceShelf.js similarity index 97% rename from resources/scripts/Crater.js rename to resources/scripts/InvoiceShelf.js index 03569170..708ff097 100644 --- a/resources/scripts/Crater.js +++ b/resources/scripts/InvoiceShelf.js @@ -11,7 +11,7 @@ import { VTooltip } from 'v-tooltip' const app = createApp(App) -export default class Crater { +export default class InvoiceShelf { constructor() { this.bootingCallbacks = [] this.messages = messages diff --git a/resources/scripts/admin/layouts/LayoutLogin.vue b/resources/scripts/admin/layouts/LayoutLogin.vue index 91540649..3a0b0d39 100644 --- a/resources/scripts/admin/layouts/LayoutLogin.vue +++ b/resources/scripts/admin/layouts/LayoutLogin.vue @@ -149,14 +149,14 @@ const pageDescription = computed(() => { return window.login_page_description } - return 'Crater helps you track expenses, record payments & generate beautiful invoices & estimates.' + return 'InvoiceShelf helps you track expenses, record payments & generate beautiful invoices & estimates.' }) const copyrightText = computed(() => { if (window.copyright_text) { return window.copyright_text } - return 'Copyright @ Crater Invoice, Inc.' + return 'Copyright @ IDEOLOGIX MEDIA DOOEL.' }) const loginPageLogo = computed(() => { diff --git a/resources/scripts/admin/layouts/partials/TheSiteSidebar.vue b/resources/scripts/admin/layouts/partials/TheSiteSidebar.vue index ee0f5b1d..d709b6fb 100644 --- a/resources/scripts/admin/layouts/partials/TheSiteSidebar.vue +++ b/resources/scripts/admin/layouts/partials/TheSiteSidebar.vue @@ -67,7 +67,7 @@
diff --git a/resources/scripts/admin/views/installation/Installation.vue b/resources/scripts/admin/views/installation/Installation.vue index 31adf417..572d9905 100644 --- a/resources/scripts/admin/views/installation/Installation.vue +++ b/resources/scripts/admin/views/installation/Installation.vue @@ -1,9 +1,9 @@