Skip to content

Commit fe0596a

Browse files
committed
Updates dependencies and enhances UI functionality
Upgrades multiple library versions in composer.lock for improved stability and compatibility. Updates the Debian package metadata, including dependencies and changelog. Enhances the UI with new JavaScript functionality for sliding messages and visual improvements to the status bar. Adds new assets for better user experience.
1 parent dcfd81f commit fe0596a

File tree

7 files changed

+98
-46
lines changed

7 files changed

+98
-46
lines changed

composer.lock

Lines changed: 42 additions & 42 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

debian/changelog

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1-
csas-authorize (0.2.0) UNRELEASED; urgency=medium
1+
csas-authorize (0.2.1) UNRELEASED; urgency=medium
2+
3+
* ui update
4+
5+
-- vitex <[email protected]> Fri, 01 Aug 2025 11:55:51 +0200
6+
7+
csas-authorize (0.2.0) unstable; urgency=medium
28

39
* Send token renewal link by mail
410

5-
-- vitex <[email protected]> Tue, 11 Mar 2025 18:11:16 +0100
11+
-- vitex <[email protected]> Fri, 01 Aug 2025 11:55:39 +0200
612

713
csas-authorize (0.1.3) unstable; urgency=medium
814

debian/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Priority: optional
77
Homepage: https://github.com/Spoje-NET/csas-authorize
88

99
Package: csas-authorize
10-
Depends: ${misc:Depends}, composer-debian, php-intl,php-vitexsoftware-ease-bootstrap5, php-vitexsoftware-ease-html-widgets,php-vitexsoftware-ease-bootstrap5-widgets, php-vitexsoftware-ease-fluentpdo, php-spojenet-csas-accountsapi, php-robmorgan-phinx|php-cakephp-phinx, csas-authorize-sqlite|csas-authorize-mysql
10+
Depends: ${misc:Depends}, composer-debian, php-intl,php-vitexsoftware-ease-bootstrap5, php-vitexsoftware-ease-html-widgets (>=1.1.1),php-vitexsoftware-ease-bootstrap5-widgets, php-vitexsoftware-ease-fluentpdo, php-spojenet-csas-accountsapi, php-robmorgan-phinx|php-cakephp-phinx, csas-authorize-sqlite|csas-authorize-mysql
1111
Architecture: all
1212
Section: web
1313
Priority: optional

debian/csas-authorize.install

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
src/*.php usr/share/csas-authorize
2+
src/js/*.js usr/share/csas-authorize/js
23
src/favicon.ico usr/share/csas-authorize
34
src/images/* usr/share/csas-authorize/images
45
db/migrations/* usr/lib/csas-authorize/db/migrations

src/SpojeNet/CSas/Ui/PageTop.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public function finalize(): void
5858
5959
#smdrag { height: 8px;
6060
background-image: url( images/slidehandle.png );
61-
background-color: #ccc;
61+
background-color: #aaa;
6262
background-repeat: no-repeat;
6363
background-position: top center;
6464
cursor: ns-resize;

src/images/slidehandle.png

121 Bytes
Loading

src/js/slideupmessages.js

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
2+
/**
3+
* System.Spoje.Net - Zarolování statusbaru
4+
*
5+
* @author Vítězslav Dvořák <[email protected]>
6+
* @copyright 2015 Spoje.Net
7+
*/
8+
9+
10+
$(document).ready(function () {
11+
setTimeout(function () {
12+
$("#status-messages").slideUp("slow");
13+
$("#smdrag").fadeTo("slow", 0.25);
14+
}, 6000);
15+
16+
$('#smdrag').on('mousedown', function (e) {
17+
$("#smdrag").fadeTo("slow", 1);
18+
$("#status-messages").slideDown("slow");
19+
20+
var $dragable = $('#status-messages'),
21+
startHeight = $dragable.height() - 10,
22+
pY = e.pageY;
23+
24+
$(document).on('mouseup', function (e) {
25+
$(document).off('mouseup').off('mousemove');
26+
});
27+
$(document).on('mousemove', function (me) {
28+
var my = (me.pageY - pY);
29+
30+
$dragable.css({
31+
height: startHeight + my
32+
});
33+
});
34+
35+
});
36+
37+
$("#status-messages").click(function () {
38+
$("#status-messages").slideUp("slow");
39+
$("#status-messages").attr('data-state', 'up');
40+
$("#smdrag").fadeTo("slow", 0.25);
41+
});
42+
43+
});
44+
45+

0 commit comments

Comments
 (0)