mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-07 05:31:24 +00:00
Update logo/screenshots
This commit is contained in:
@@ -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
|
||||
@@ -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(() => {
|
||||
|
||||
@@ -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>
|
||||
|
||||
|
||||
@@ -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"
|
||||
/>
|
||||
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -94,7 +94,7 @@ const shareableLink = computed(() => {
|
||||
})
|
||||
|
||||
function getLogo() {
|
||||
const imgUrl = new URL('/img/crater-logo-gray.png', import.meta.url)
|
||||
const imgUrl = new URL('/img/logo-gray.png', import.meta.url)
|
||||
return imgUrl
|
||||
}
|
||||
|
||||
|
||||
@@ -47,7 +47,7 @@
|
||||
top-1/2
|
||||
left-1/2
|
||||
"
|
||||
alt="Crater Logo"
|
||||
alt="InvoiceShelf Logo"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@@ -63,10 +63,6 @@ const props = defineProps({
|
||||
},
|
||||
})
|
||||
|
||||
function getCraterLogo() {
|
||||
const imgUrl = new URL('/img/crater-logo.png', import.meta.url)
|
||||
return imgUrl
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import '../sass/crater.scss'
|
||||
import '../sass/invoiceshelf.scss'
|
||||
import 'v-tooltip/dist/v-tooltip.css'
|
||||
import '@/scripts/plugins/axios.js'
|
||||
import * as VueRouter from 'vue-router'
|
||||
@@ -10,10 +10,10 @@ import * as Vuelidate from '@vuelidate/core'
|
||||
window.pinia = pinia
|
||||
window.Vuelidate = Vuelidate
|
||||
|
||||
import Crater from './Crater'
|
||||
import InvoiceShelf from './InvoiceShelf'
|
||||
|
||||
window.Vue = Vue
|
||||
window.router = router
|
||||
window.VueRouter = VueRouter
|
||||
|
||||
window.Crater = new Crater()
|
||||
window.InvoiceShelf = new InvoiceShelf()
|
||||
|
||||
Reference in New Issue
Block a user