diff --git a/default.tpl b/default.tpl index 3cfd99b..d1541c6 100644 --- a/default.tpl +++ b/default.tpl @@ -303,7 +303,7 @@ confirm=Are you sure? {.$icons.css.} button { background-color: #bcd; color: #444; padding: .5em 1em; border: transparent; text-decoration: none; border-radius: .3em; vertical-align: middle; cursor:pointer; } -body { font-family:tahoma, verdana, arial, helvetica, sans; transition:background-color 1s ease; } +body { font-family:tahoma, verdana, arial, helvetica, sans; transition:background-color 1s ease; color:#777; } a { text-decoration:none; color:#357; border:1px solid transparent; padding:0 0.1em; } #folder-path { float:left; margin-bottom: 0.2em; } #folder-path button { padding: .4em; } @@ -311,7 +311,7 @@ a { text-decoration:none; color:#357; border:1px solid transparent; padding:0 0. button i.fa { font-size:110% } .item { margin-bottom:.3em; padding:.3em .8em; border-top:1px solid #ddd; } .item:hover { background:#f8f8f8; } -.item-props { float:right; font-size:90%; margin-left:12px; color:#777; margin-top:.2em; } +.item-props { float:right; font-size:90%; margin-left:12px; margin-top:.2em; } .item-link { float:left; word-break:break-word; /* fix long names without spaces on mobile */ } .item img { vertical-align: text-bottom; margin:0 0.2em; } .item .fa-lock { margin-right: 0.2em; } diff --git a/main.pas b/main.pas index 0733326..556d0cb 100644 --- a/main.pas +++ b/main.pas @@ -36,8 +36,8 @@ uses HSlib, traylib, monoLib, progFrmLib, classesLib; const - VERSION = '2.4 beta2'; - VERSION_BUILD = '304'; + VERSION = '2.4 beta3'; + VERSION_BUILD = '305'; VERSION_STABLE = {$IFDEF STABLE } TRUE {$ELSE} FALSE {$ENDIF}; CURRENT_VFS_FORMAT :integer = 1; CRLF = #13#10; @@ -5272,7 +5272,7 @@ var if addressmatch(forwardedMask, conn.address) then begin data.address:=getTill(':', getTill(',', conn.getHeader('x-forwarded-for'))); - if not checkAddressSyntax(data.address) then + if not checkAddressSyntax(data.address, FALSE) then data.address:=conn.address; end;