ver 1.0.25

This commit is contained in:
Surya Paolo
2024-02-03 23:05:06 +01:00
parent dd26d0f839
commit dbcd2aee63
16 changed files with 25 additions and 14 deletions

View File

@@ -1,4 +1,4 @@
APP_VERSION="1.0.24"
APP_VERSION="1.0.25"
SERVICE_WORKER_FILE="service-worker.js"
APP_ID="13"
DIRECTORY_LOCAL="newfreeplanet"

View File

@@ -1,4 +1,4 @@
APP_VERSION="1.0.24"
APP_VERSION="1.0.25"
SERVICE_WORKER_FILE="service-worker.js"
APP_ID="13"
DIRECTORY_LOCAL=newfreeplanet

View File

@@ -1,4 +1,4 @@
APP_VERSION="1.0.24"
APP_VERSION="1.0.25"
SERVICE_WORKER_FILE="service-worker.js"
APP_ID="17"
DIRECTORY_LOCAL=newfreeplanet

View File

@@ -1,4 +1,4 @@
APP_VERSION="1.0.24"
APP_VERSION="1.0.25"
SERVICE_WORKER_FILE="service-worker.js"
APP_ID="17"
DIRECTORY_LOCAL=newfreeplanet

View File

@@ -1,4 +1,4 @@
APP_VERSION="1.0.24"
APP_VERSION="1.0.25"
SERVICE_WORKER_FILE="service-worker.js"
APP_ID="13"
DIRECTORY_LOCAL=newfreeplanet

View File

@@ -1,4 +1,4 @@
APP_VERSION="1.0.24"
APP_VERSION="1.0.25"
SERVICE_WORKER_FILE="service-worker.js"
APP_ID="13"
DIRECTORY_LOCAL=newfreeplanet

1
.gitignore vendored
View File

@@ -35,7 +35,6 @@ yarn-error.log
!/_ALL_SITES/riso.app/.env.test
!/_ALL_SITES/riso.app/.env.production
!/_ALL_SITES/riso.app/.env.development
key.pem
_ALL_SITES/kolibrilab.it/.env.development
_ALL_SITES/kolibrilab.it/.env.test

6
.vscode/launch.json vendored
View File

@@ -19,5 +19,11 @@
"request": "launch",
"type": "node-terminal"
},
{
"command": "npm run dev",
"name": "DEV",
"request": "launch",
"type": "node-terminal"
},
]
}

View File

@@ -11,8 +11,10 @@
"vetur.experimental.templateInterpolationService": true,
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/images/**": true,
"**/node_modules/**": true,
"**/public": true,
"**/images": true,
"**/node_modules/**": true
"**/public/**": true,
"**/public/upload/**": true
},
}

View File

@@ -1,4 +1,4 @@
APP_VERSION="1.0.24"
APP_VERSION="1.0.25"
SERVICE_WORKER_FILE="service-worker.js"
APP_ID="13"
DIRECTORY_LOCAL="newfreeplanet"

View File

@@ -1,4 +1,4 @@
APP_VERSION="1.0.24"
APP_VERSION="1.0.25"
SERVICE_WORKER_FILE="service-worker.js"
APP_ID="16"
DIRECTORY_LOCAL=newfreeplanet

View File

@@ -149,6 +149,7 @@ module.exports = configure((ctx) => ({
https: false,
port: 8084,
open: false, // opens browser window automatically
hot: false, // Disable hot module replacement
headers: {
'Access-Control-Allow-Origin': '*',
'Access-Control-Allow-Headers': '*',

View File

@@ -116,7 +116,8 @@ export default defineComponent({
function getlistimages() {
if (gallerylist.value)
// return gallerylist.value.slice().sort((a: any, b: any) => a.order! - b.order!)
return gallerylist.value.filter(filename => !filename)
//return gallerylist.value.filter(filename => !filename)
return gallerylist.value
else
return null
}

View File

@@ -6,6 +6,7 @@
<q-card v-if="isListImgValid" :class="getclass()" @click="apri">
<div v-for="(mygallery, index) in getlistimages()" :key="index">
<div v-if="index === 0">
<q-img
:src="getsrcimg(mygallery)" :class="getclimg()"
:alt="mygallery.alt">
@@ -53,7 +54,7 @@
<!--<q-draggable-rows
v-model="order">-->
<div v-for="(mygallery, index) in getlistimages()" :key="index">
<div v-for="(mygallery, index) in getlistimages()" :key="index">
<div
class="q-pa-sm q-gutter-sm"
@dragenter="onDragEnter"

View File

@@ -1,6 +1,7 @@
ù<template>
<div>
<div class="q-my-xs">
AAA
<CGridTableRec
v-if="filtercustom.length > 0 && col && col.length > 0"
:prop_mytable="table"

Binary file not shown.

After

Width:  |  Height:  |  Size: 184 KiB