Update logo/screenshots

This commit is contained in:
Darko Gjorgjijoski
2024-01-28 02:59:42 +01:00
parent 06a196029e
commit cec86c39ed
28 changed files with 24 additions and 28 deletions

View File

@@ -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(() => {

View File

@@ -67,7 +67,7 @@
<div class="flex items-center shrink-0 px-4 mb-10">
<MainLogo
class="block h-auto max-w-full w-36 text-primary-400"
alt="Crater Logo"
alt="InvoiceShelf Logo"
/>
</div>

View File

@@ -1,9 +1,9 @@
<template>
<div class="flex flex-col items-center justify-between w-full pt-10">
<img
id="logo-crater"
src="/img/crater-logo.png"
alt="Crater Logo"
id="logo-invoiceshelf"
src="/img/logo.png"
alt="InvoiceShelf Logo"
class="h-12 mb-5 md:mb-10"
/>

View File

@@ -864,10 +864,10 @@ async function installModule() {
let displayMsg = ref('')
if (
requestResponse.data.message === 'crater_version_is_not_supported'
requestResponse.data.message === 'invoiceshelf_version_is_not_supported'
) {
displayMsg.value = t('modules.version_not_supported', {
version: requestResponse.data.min_crater_version,
version: requestResponse.data.min_invoiceshelf_version,
})
} else {
displayMsg.value = getErrorMessage(requestResponse.data.message)