Skip to content

Commit 0c15c7c

Browse files
authored
Merge pull request #22 from Ramo-Y/develop
Develop
2 parents a9f7f5f + a082580 commit 0c15c7c

File tree

7 files changed

+62
-11
lines changed

7 files changed

+62
-11
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: "Short description of issue"
5+
labels: bug
6+
assignees: ''
7+
---
8+
9+
**Description:** Full description of issue here
10+
11+
**Expected behavior:** Screenshots and/or description of expected behavior
12+
13+
**OS:** OS on which the bug was encountered [e.g. linux x86_64 QTS 5.1.8 (20240712)]
14+
15+
**Docker version:** Docker version [e.g. 27.1.1]
16+
17+
**Total CPU:** Total available CPU
18+
19+
**Total RAM:** Total available RAM
20+
21+
**Application version:** Application version you are using [e.g. 1.0.1]
22+
23+
**Workaround** A workaround you may have found
24+
25+
[Pull requests](https://github.com/Ramo-Y/BulkRename/pulls) are very welcome.
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: "Short description of request"
5+
labels: feature request
6+
assignees: ''
7+
---
8+
9+
**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is.
10+
11+
**Describe the solution you'd like** A clear and concise description of what you want to happen.
12+
13+
**Describe alternatives you've considered** A clear and concise description of any alternative solutions or features you've considered.
14+
15+
**Additional context** Add any other context or screenshots about the feature request here.
16+
17+
[Pull requests](https://github.com/Ramo-Y/BulkRename/pulls) are very welcome.

src/BulkRename.IntegrationTests/BulkRename.IntegrationTests.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
<PrivateAssets>all</PrivateAssets>
1111
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1212
</PackageReference>
13-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
13+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
1414
<PackageReference Include="NUnit" Version="4.2.2" />
15-
<PackageReference Include="NUnit.Analyzers" Version="4.3.0">
15+
<PackageReference Include="NUnit.Analyzers" Version="4.4.0">
1616
<PrivateAssets>all</PrivateAssets>
1717
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1818
</PackageReference>

src/BulkRename/BulkRename.csproj

+4-5
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,14 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.10" />
9-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.10" />
10-
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.10">
8+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.11" />
9+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.11" />
10+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.11">
1111
<PrivateAssets>all</PrivateAssets>
1212
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1313
</PackageReference>
14-
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.21.0" />
1514
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
16-
<PackageReference Include="Serilog" Version="4.1.0" />
15+
<PackageReference Include="Serilog" Version="4.2.0" />
1716
<PackageReference Include="Serilog.AspNetCore" Version="8.0.3" />
1817
<PackageReference Include="Serilog.Sinks.Seq" Version="8.0.0" />
1918
</ItemGroup>

src/BulkRename/Models/PreparationDatabase.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ private async Task TrySeedData(DbContext context)
5555

5656
_logger.LogWarning("Database is propably not ready...");
5757
_logger.LogWarning($"Connection failed, will try again. Max timeout = {_connectionTimeOut}ms");
58-
Thread.Sleep(1000);
58+
59+
await Task.Delay(1000);
5960
await TrySeedData(context);
6061
}
6162
}

src/BulkRename/Views/Shared/_Layout.cshtml

+5-3
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,11 @@
4545
</main>
4646
</div>
4747

48-
<footer class="border-top footer text-muted">
49-
<div class="container">
50-
&copy; 2024 - BulkRename - <a asp-area="" asp-controller="Home" asp-action="Index">@SharedLocalizer[LocalizationConstants.HOME]</a>
48+
<footer class="footer text-muted">
49+
<div class="container footer-links">
50+
<a>&copy; 2024 - BulkRename</a>
51+
<a href="https://github.com/Ramo-Y/BulkRename">Project page</a>
52+
<a href="https://github.com/sponsors/Ramo-Y">&hearts; Support this project</a>
5153
</div>
5254
</footer>
5355
<script src="~/lib/jquery/dist/jquery.min.js"></script>

src/BulkRename/Views/Shared/_Layout.cshtml.css

+7
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,16 @@ button.accept-policy {
4040
}
4141

4242
.footer {
43+
border-top: 1px solid #ccc;
4344
position: absolute;
4445
bottom: 0;
4546
width: 100%;
4647
white-space: nowrap;
4748
line-height: 60px;
4849
}
50+
51+
.footer-links {
52+
display: flex;
53+
justify-content: space-evenly;
54+
align-items: center;
55+
}

0 commit comments

Comments
 (0)