Skip to content

Commit

Permalink
Merge pull request #136 from jemu75/dev-v4
Browse files Browse the repository at this point in the history
v4.5.3
  • Loading branch information
jemu75 authored Dec 12, 2024
2 parents 28af226 + da9c1b5 commit 27974fd
Show file tree
Hide file tree
Showing 14 changed files with 299 additions and 281 deletions.
318 changes: 164 additions & 154 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions public/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# v4.5.3 (12.12.2024)
## App
- bugfix for panel width on large screens
- update core modules and dependencies
# v4.5.2 (10.12.2024)
## Core
- bugfix for loading FHEMApp if darkmode over FHEM is not used
Expand Down
6 changes: 3 additions & 3 deletions src/views/DevicesView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@
for(const item of items) {
if(!res[colIdx]) res[colIdx] = []
res[colIdx].push(item)
colIdx = colIdx === cols.value ? 1 : colIdx + 1
colIdx = colIdx === showCols.value ? 1 : colIdx + 1
}
return res
})
const cols = computed(() => {
const showCols = computed(() => {
return getCols(fhem.app.currentView, fhem.app.navigation) || fhem.app.viewCols[fhem.app.display]
})
Expand All @@ -57,7 +57,7 @@

<template>
<v-row no-gutters>
<v-col v-for="col of cols" :key="col">
<v-col :cols="12 / showCols" v-for="col of showCols" :key="col">
<v-row no-gutters>
<v-col cols="12" v-for="(panel) of view[col]" :key="panel.name" class="pa-1">
<PanelCard :panel="panel"/>
Expand Down
4 changes: 4 additions & 0 deletions www/fhemapp4/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# v4.5.3 (12.12.2024)
## App
- bugfix for panel width on large screens
- update core modules and dependencies
# v4.5.2 (10.12.2024)
## Core
- bugfix for loading FHEMApp if darkmode over FHEM is not used
Expand Down
1 change: 0 additions & 1 deletion www/fhemapp4/assets/DevicesView-DV846U05.js

This file was deleted.

1 change: 1 addition & 0 deletions www/fhemapp4/assets/DevicesView-FLfiMKGY.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 27974fd

Please sign in to comment.