Skip to content

Commit 7635da3

Browse files
committed
chore: update application version to v1.4.0 and enhance changelog with improvements to the auth LDAP button styles
- Closes #179
1 parent 406b4b3 commit 7635da3

9 files changed

Lines changed: 22 additions & 12 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## v1.4.0 STABLE
4+
5+
### Improved
6+
7+
- Styles for the auth LDAP button were improved. by @nayskutzu
8+
9+
10+
311
## v1.3.7.3 STABLE
412

513
### Added

app

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ define('APP_ADDONS_DIR', APP_STORAGE_DIR . 'addons');
4848
define('APP_SOURCECODE_DIR', APP_DIR . 'app');
4949
define('APP_ROUTES_DIR', APP_SOURCECODE_DIR . '/Api');
5050
define('SYSTEM_KERNEL_NAME', php_uname('s'));
51-
define('APP_VERSION', 'v1.3.7.3');
51+
define('APP_VERSION', 'v1.4.0');
5252
define('APP_UPSTREAM', 'stable');
5353
define('TELEMETRY', true);
5454
define('IS_CLI', true);

backend/cli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ define('APP_START', microtime(true));
4242
define('APP_DIR', APP_PUBLIC . '/');
4343
define('APP_CRON_DIR', APP_PUBLIC . '/storage/cron/');
4444
define('SYSTEM_KERNEL_NAME', php_uname('s'));
45-
define('APP_VERSION', 'v1.3.7.3');
45+
define('APP_VERSION', 'v1.4.0');
4646
define('APP_UPSTREAM', 'stable');
4747
define('REQUEST_ID', uniqid());
4848
define('TELEMETRY', true);

backend/public/index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
define('SYSTEM_OS_NAME', gethostname() . '/' . PHP_OS_FAMILY);
3535
define('SYSTEM_KERNEL_NAME', php_uname('s'));
3636
define('TELEMETRY', true);
37-
define('APP_VERSION', 'v1.3.7.3');
37+
define('APP_VERSION', 'v1.4.0');
3838
define('APP_UPSTREAM', 'stable');
3939
define('REQUEST_ID', uniqid());
4040

backend/storage/addons/.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
/*/
2-
*.sh
2+
*.sh
3+
*.build.log

frontendv2/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "frontendv2",
3-
"version": "1.3.7+3",
3+
"version": "1.4.0",
44
"license": "AGPL-3.0-or-later",
55
"type": "module",
66
"scripts": {

frontendv2/src/app/(app)/auth/login/LoginForm.tsx

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -768,14 +768,15 @@ export default function LoginForm() {
768768
<Button
769769
type='button'
770770
variant='outline'
771-
className={`group border-primary/20 bg-primary/5 hover:border-primary/50 hover:bg-primary/10 h-auto w-full justify-between px-3 py-3 text-left ${className}`}
771+
className={`group h-auto w-full !justify-between px-3 py-3 text-left ${className}`}
772+
disabled={loading}
772773
onClick={() => setShowLdapLogin(true)}
773774
>
774775
<span className='flex min-w-0 items-center gap-3'>
775-
<span className='bg-primary/15 text-primary flex h-9 w-9 shrink-0 items-center justify-center rounded-lg'>
776+
<span className='bg-primary/10 text-primary flex h-9 w-9 shrink-0 items-center justify-center rounded-lg'>
776777
<Network className='h-4 w-4' />
777778
</span>
778-
<span className='min-w-0'>
779+
<span className='min-w-0 text-left'>
779780
<span className='text-foreground block text-sm font-semibold'>{t('auth.login.ldapLogin')}</span>
780781
<span className='text-muted-foreground block truncate text-xs font-normal'>
781782
{t('auth.login.ldapLoginDescription')}
@@ -1459,7 +1460,7 @@ export default function LoginForm() {
14591460
<Button
14601461
type='button'
14611462
variant='outline'
1462-
className='group h-auto w-full justify-between px-3 py-3 text-left'
1463+
className='group h-auto w-full !justify-between px-3 py-3 text-left'
14631464
disabled={loading}
14641465
onClick={() => {
14651466
const u = (form.username_or_email || '').trim();
@@ -1470,7 +1471,7 @@ export default function LoginForm() {
14701471
<span className='bg-primary/10 text-primary flex h-9 w-9 shrink-0 items-center justify-center rounded-lg'>
14711472
<Fingerprint className='h-4 w-4' />
14721473
</span>
1473-
<span className='min-w-0'>
1474+
<span className='min-w-0 text-left'>
14741475
<span className='text-foreground block text-sm font-semibold'>
14751476
{t('auth.passkey.signIn')}
14761477
</span>

runner/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

runner/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "async-runner"
3-
version = "1.3.7+3"
3+
version = "1.4.0"
44
edition = "2021"
55

66
[dependencies]

0 commit comments

Comments
 (0)