Skip to content
This repository was archived by the owner on May 14, 2025. It is now read-only.

Commit 4e7b75b

Browse files
Merge pull request #11 from DanielGilbert/dev
Release v3.0.10
2 parents 138a752 + b238c82 commit 4e7b75b

File tree

5 files changed

+13
-14
lines changed

5 files changed

+13
-14
lines changed

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [unreleased]
99

10+
## [3.0.10] - 2023-07-17
11+
12+
### Changed
13+
- Design of tables has been changed in the light layout.
14+
- The navigation is now hidden in the root element.
15+
1016
## [3.0.9] - 2023-07-17
1117

1218
### Fixed
@@ -87,8 +93,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8793
- Majority of code is now under test.
8894

8995

90-
[unreleased]: https://github.com/DanielGilbert/Radia/compare/v3.0.9...HEAD
91-
[3.0.8]: https://github.com/DanielGilbert/Radia/compare/v3.0.8...v3.0.9
96+
[unreleased]: https://github.com/DanielGilbert/Radia/compare/v3.0.10...HEAD
97+
[3.0.10]: https://github.com/DanielGilbert/Radia/compare/v3.0.9...v3.0.10
98+
[3.0.9]: https://github.com/DanielGilbert/Radia/compare/v3.0.8...v3.0.9
9299
[3.0.8]: https://github.com/DanielGilbert/Radia/compare/v3.0.7...v3.0.8
93100
[3.0.7]: https://github.com/DanielGilbert/Radia/compare/v3.0.6...v3.0.7
94101
[3.0.6]: https://github.com/DanielGilbert/Radia/compare/v3.0.5...v3.0.6

Radia/Radia.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
<ImplicitUsings>enable</ImplicitUsings>
77
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
88
<DockerComposeProjectPath>..\docker-compose.dcproj</DockerComposeProjectPath>
9-
<AssemblyVersion>3.0.9</AssemblyVersion>
10-
<FileVersion>3.0.9</FileVersion>
11-
<Version>3.0.9</Version>
9+
<AssemblyVersion>3.0.10</AssemblyVersion>
10+
<FileVersion>3.0.10</FileVersion>
11+
<Version>3.0.10</Version>
1212
</PropertyGroup>
1313

1414
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">

Radia/templates/default/css/light.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ body {
66
}
77

88
table, td, th {
9-
border: 1px solid #666;
9+
border: 1px solid #bbb;
1010
}
1111

1212
a {

Radia/templates/default/views/FolderView.liquid

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@
99
{% endfor %}
1010
<li>{{LastAncestor.Name}}</li>
1111
</ul>
12-
{% else %}
13-
<ul class="breadcrumb">
14-
<li>home</li>
15-
</ul>
1612
{% endif %}
1713
</nav>
1814
</header>

Radia/templates/default/views/ProcessedFileView.liquid

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@
99
{% endfor %}
1010
<li>{{LastAncestor.Name}}</li>
1111
</ul>
12-
{% else %}
13-
<ul class="breadcrumb">
14-
<li>home</li>
15-
</ul>
1612
{% endif %}
1713
</nav>
1814
</header>

0 commit comments

Comments
 (0)