Fare procedura per cambiare gli username in giro nelle varie tabelle
fix icon Android "Badge" black and white.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
APP_VERSION="0.5.46"
|
||||
APP_VERSION="0.5.49"
|
||||
SERVICE_WORKER_FILE="service-worker.js"
|
||||
APP_ID="13"
|
||||
DIRECTORY_LOCAL="newfreeplanet"
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
APP_VERSION="0.5.46"
|
||||
APP_VERSION="0.5.49"
|
||||
SERVICE_WORKER_FILE="service-worker.js"
|
||||
APP_ID="13"
|
||||
DIRECTORY_LOCAL=newfreeplanet
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
APP_VERSION="0.5.46"
|
||||
APP_VERSION="0.5.49"
|
||||
SERVICE_WORKER_FILE="service-worker.js"
|
||||
APP_ID="13"
|
||||
DIRECTORY_LOCAL="newfreeplanet"
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
APP_VERSION="0.5.46"
|
||||
APP_VERSION="0.5.49"
|
||||
SERVICE_WORKER_FILE="service-worker.js"
|
||||
APP_ID="13"
|
||||
DIRECTORY_LOCAL=newfreeplanet
|
||||
|
||||
BIN
_ALL_SITES/riso.app/images/android-chrome-192x192.png
Normal file
BIN
_ALL_SITES/riso.app/images/android-chrome-192x192.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 43 KiB |
BIN
_ALL_SITES/riso.app/images/badge-96x96.png
Normal file
BIN
_ALL_SITES/riso.app/images/badge-96x96.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 27 KiB |
@@ -1,4 +1,4 @@
|
||||
APP_VERSION="0.5.46"
|
||||
APP_VERSION="0.5.49"
|
||||
SERVICE_WORKER_FILE="service-worker.js"
|
||||
APP_ID="14"
|
||||
DIRECTORY_LOCAL="newfreeplanet"
|
||||
|
||||
BIN
public/images/badge-96x96.png
Normal file
BIN
public/images/badge-96x96.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 27 KiB |
@@ -617,7 +617,7 @@ self.addEventListener('push', (event) => {
|
||||
options = {
|
||||
body: data.content,
|
||||
icon: data.icon ? data.icon : '/images/android-chrome-192x192.png',
|
||||
badge: data.badge ? data.badge : '/images/android-chrome-192x192.png',
|
||||
badge: data.badge ? data.badge : '/images/badge-96x96.png',
|
||||
data: {
|
||||
url: data.url,
|
||||
},
|
||||
@@ -633,7 +633,7 @@ self.addEventListener('push', (event) => {
|
||||
options = {
|
||||
body: text,
|
||||
icon: '/images/android-chrome-192x192.png',
|
||||
badge: '/images/android-chrome-192x192.png',
|
||||
badge: '/images/badge-96x96.png',
|
||||
data: {
|
||||
url: '/',
|
||||
},
|
||||
|
||||
@@ -14,15 +14,6 @@
|
||||
:label="$t('reg.submit')"
|
||||
>
|
||||
</q-btn>
|
||||
<q-btn
|
||||
color="blue"
|
||||
label="pippo"
|
||||
type="a"
|
||||
size="sm"
|
||||
href="http://pippo.it"
|
||||
target="_blank"
|
||||
>
|
||||
</q-btn>
|
||||
</div>
|
||||
<q-carousel
|
||||
v-if="start"
|
||||
|
||||
@@ -24,9 +24,11 @@ export default defineComponent({
|
||||
const date_start = ref(new Date())
|
||||
const col = ref(0)
|
||||
const placca = ref('')
|
||||
const search_username = ref('')
|
||||
const replace_username = ref('')
|
||||
const incaricamento = ref(false)
|
||||
|
||||
function EseguiFunz(miafunz: string) {
|
||||
function EseguiFunz(miafunz: string, search_username?: string, replace_username?: string) {
|
||||
const userStore = useUserStore()
|
||||
const globalStore = useGlobalStore()
|
||||
|
||||
@@ -47,6 +49,8 @@ export default defineComponent({
|
||||
col: col,
|
||||
date_start: date_start,
|
||||
numpersone: numpersone,
|
||||
search_username,
|
||||
replace_username,
|
||||
}
|
||||
|
||||
incaricamento.value = true
|
||||
@@ -77,6 +81,8 @@ export default defineComponent({
|
||||
EseguiFunz,
|
||||
tools,
|
||||
costanti,
|
||||
search_username,
|
||||
replace_username
|
||||
}
|
||||
},
|
||||
})
|
||||
|
||||
@@ -271,6 +271,15 @@
|
||||
@click="EseguiFunz('RewriteContribType')"></q-btn>
|
||||
<br>
|
||||
</div>
|
||||
<div class="row">
|
||||
<q-input v-model="search_username" label="Username Search" style="width: 300px;"></q-input>
|
||||
<q-input v-model="replace_username" label="Username Replace" style="width: 300px;"></q-input>
|
||||
|
||||
<q-btn
|
||||
label="Replace Username" color="primary"
|
||||
@click="EseguiFunz('ReplaceUsername', search_username, replace_username)"></q-btn>
|
||||
<br>
|
||||
</div>
|
||||
|
||||
|
||||
<q-field
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<q-page padding class="signup">
|
||||
<CSignUp :showcell="false" :showaportador="true" :show_namesurname="false" :need_Telegram="true" :regexpire="regexpire">
|
||||
<CSignUp :showcell="false" :showaportador="true" :show_namesurname="true" :need_Telegram="true" :regexpire="regexpire">
|
||||
|
||||
</CSignUp>
|
||||
</q-page>
|
||||
|
||||
Reference in New Issue
Block a user