Skip to content

Commit c045629

Browse files
committed
Updated dependencies
1 parent fa52db1 commit c045629

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

Gemfile.lock

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,14 @@ GEM
6767
zeitwerk (~> 2.3)
6868
base64 (0.2.0)
6969
bindex (0.8.1)
70-
brakeman (7.0.0)
70+
brakeman (7.0.2)
7171
racc
7272
builder (3.3.0)
7373
concurrent-ruby (1.3.4)
7474
crass (1.0.6)
7575
date (3.4.1-java)
7676
erubi (1.13.1)
77-
ffi (1.17.1-java)
77+
ffi (1.17.2-java)
7878
globalid (1.2.1)
7979
activesupport (>= 6.1)
8080
i18n (1.14.7)
@@ -102,10 +102,10 @@ GEM
102102
mime-types (3.6.2)
103103
logger
104104
mime-types-data (~> 3.2015)
105-
mime-types-data (3.2025.0325)
105+
mime-types-data (3.2025.0415)
106106
mini_mime (1.1.5)
107107
minitest (5.25.5)
108-
net-imap (0.5.6)
108+
net-imap (0.5.7)
109109
date
110110
net-protocol
111111
net-pop (0.1.2)
@@ -115,7 +115,7 @@ GEM
115115
net-smtp (0.5.1)
116116
net-protocol
117117
nio4r (2.7.4-java)
118-
nokogiri (1.18.7-java)
118+
nokogiri (1.18.8-java)
119119
racc (~> 1.4)
120120
playwright-ruby-client (1.51.0)
121121
concurrent-ruby (>= 1.1.6)
@@ -172,8 +172,9 @@ GEM
172172
sprockets (> 3.0)
173173
sprockets-rails
174174
tilt
175-
sprockets (4.2.1)
175+
sprockets (4.2.2)
176176
concurrent-ruby (~> 1.0)
177+
logger
177178
rack (>= 2.2.4, < 4)
178179
sprockets-rails (3.5.2)
179180
actionpack (>= 6.1)

app/assets/javascripts/application.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,14 +87,14 @@ function useIndicator(url){
8787
));
8888
}
8989

90-
async function showIndicator(url) {
90+
function showIndicator(url) {
9191
if (useIndicator(url)){ // Unterdrücken der Anzeige Indikator
9292
indicator_call_stack_depth = indicator_call_stack_depth + 1;
9393
jQuery("#ajax_indicator").dialog("open");
9494
}
9595
}
9696

97-
async function hideIndicator(url) {
97+
function hideIndicator(url) {
9898
if (useIndicator(url)) { // Unterdrücken des Löschens des Indikator
9999
indicator_call_stack_depth = indicator_call_stack_depth - 1;
100100
if (indicator_call_stack_depth < 0)

config/application.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
module Panorama
1212
# VERSION and RELEASE_DATE should have fix syntax and positions because they are parsed from other sites
13-
VERSION = '2.17.70'
14-
RELEASE_DATE = Date.parse('2025-03-20')
13+
VERSION = '2.17.71'
14+
RELEASE_DATE = Date.parse('2025-04-22')
1515

1616
RELEASE_DAY = "%02d" % RELEASE_DATE.day
1717
RELEASE_MONTH = "%02d" % RELEASE_DATE.month

0 commit comments

Comments
 (0)