Skip to content

Commit d1345d7

Browse files
committed
v1.5.3
1 parent 3d62184 commit d1345d7

11 files changed

+27
-10
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,19 @@ All notable changes to this project will be documented in this file.
1313
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
1414
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
1515

16+
## [1.5.3] - 2023-09-03
17+
18+
Fixed the issue were when the hostname was too long it would push the clock out of bounds
19+
20+
### Added
21+
- Nothing added
22+
23+
### Changed
24+
- Some CSS realated to the hostname
25+
26+
### Fixed
27+
- The [issue](https://github.com/TheWisker/Shikai/issues/11) were when the hostname was too long it would push the clock out of bounds
28+
1629
## [1.5.2] - 2023-07-21
1730

1831
Added scroll to the style page and improved and fixed the colorpickers

CITATION.cff

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ message: "If you use this software in your work, or make a fork of it, please ci
33
authors:
44
- given-names: "TheWisker"
55
title: "Shikai Project"
6-
version: 1.5.2
6+
version: 1.5.3
77
date-released: 2023-03-31
88
url: "https://github.com/TheWisker/Shikai"

CONTRIBUTORS.md

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
These are the **Shikai** project **contributors**, ordered from most recent to least recent:
1414

15+
- [Josh]https://github.com/Hibyehello) => Opened an [issue](https://github.com/TheWisker/Shikai/issues/11) which resulted in a bug fix.
1516
- [Talin Sharma](https://github.com/TalinTheDev) => Made a [pull request](https://github.com/TheWisker/Shikai/pull/10) which resulted in an enhancement and some style fixes.
1617
- [Talin Sharma](https://github.com/TalinTheDev) => Opened an [issue](https://github.com/TheWisker/Shikai/issues/7) which resulted in an enhancement.
1718
- [Faisal Almalki](https://github.com/Faisal-beep22) => Added Arab language file in this [issue](https://github.com/TheWisker/Shikai/issues/5) and this [pull request](https://github.com/TheWisker/Shikai/pull/6).

dist/LICENSE.shikai

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
/*!
88
*
9-
* shikai 1.5.2 distribution
9+
* shikai 1.5.3 distribution
1010
*
1111
* Copyright (c) 2023, TheWisker (https://github.com/TheWisker)
1212
* All rights reserved.

dist/index.css

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/monitor.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/monitor.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
shikai 1.5.2 distribution
2+
shikai 1.5.3 distribution
33
44
Copyright (c) 2023, TheWisker (https://github.com/TheWisker)
55
All rights reserved.

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "shikai",
3-
"version": "1.5.2",
3+
"version": "1.5.3",
44
"description": "Modern lightdm webkit2 theme",
55
"keywords": [
66
"lightdm",

src/css/_objects.scss

+3
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,12 @@
127127
}
128128

129129
.hostname {
130+
overflow: clip;
130131
font-size: 0.9em;
131132
font-weight: 1000;
133+
max-width: 100px;
132134
white-space: nowrap;
135+
text-overflow: ellipsis;
133136
text-transform: uppercase;
134137
font-family: "Aesthetic", "Genjyuu", "Arabic", sans;
135138
}

0 commit comments

Comments
 (0)