Skip to content

Commit 9537ad1

Browse files
committed
bump to YAF 4.0.4
1 parent cbd9978 commit 9537ad1

File tree

4 files changed

+86
-6
lines changed

4 files changed

+86
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
YAF.SampleWebApplication
22
========================
33

4-
This Application is a Standard Visual Studio Sample ASP.NET Core Application (.NET 9.0), including integrated YAF.NET v4.0.2, and using the MS SQL as database.
4+
This Application is a Standard Visual Studio Sample ASP.NET Core Application (.NET 10.0), including integrated YAF.NET v4.0.4, and using the MS SQL as database.
55

66
> [!NOTE]
77
> The [netfx branch](https://github.com/YAFNET/YAF.SampleWebApplication/tree/netfx) includes the .NET Framework Version with YAF 3.2.x

YAF.SampleApp/YAF.SampleApp.csproj

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22

33
<PropertyGroup>
44
<TargetFramework>net10.0</TargetFramework>
5-
<ImplicitUsings>enable</ImplicitUsings>
6-
<CompressionEnabled>false</CompressionEnabled>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<AspNetCoreHostingModel>OutOfProcess</AspNetCoreHostingModel>
7+
<TypeScriptJSXEmit>preserve</TypeScriptJSXEmit>
8+
<CompressionEnabled>false</CompressionEnabled>
79
</PropertyGroup>
810

911
<ItemGroup>
@@ -12,9 +14,10 @@
1214
</ItemGroup>
1315

1416
<ItemGroup>
15-
<PackageReference Include="YAFNET.Data.SqlServer" Version="4.0.2" />
16-
<PackageReference Include="YAFNET.RazorPages" Version="4.0.2" />
17-
<PackageReference Include="YAFNET.UI.Chat" Version="4.0.2" />
17+
<PackageReference Include="YAFNET.Data.SqlServer" Version="4.0.4" />
18+
<PackageReference Include="YAFNET.RazorPages" Version="4.0.4" />
19+
<PackageReference Include="SimdLinq" Version="1.3.2" />
20+
<PackageReference Include="YAFNET.UI.Chat" Version="4.0.4" />
1821
</ItemGroup>
1922

2023
<ItemGroup>

YAF.SampleApp/wwwroot/GeoIP.dat

3.87 MB
Binary file not shown.
Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
{
2+
"name": "YetAnotherForum.NET",
3+
"short_name": "YAF.NET",
4+
"description": "YetAnotherForum.NET (YAF.NET) ASP.NET Core Open Source Forum solution! ",
5+
"start_url": "/",
6+
"scope": "/",
7+
"display": "standalone",
8+
"background_color": "#ffffff",
9+
"theme_color": "#ffffff",
10+
"orientation": "portrait-primary",
11+
"categories": [ "productivity" ],
12+
"shortcuts": [
13+
{
14+
"name": "Your Notifications",
15+
"url": "/MyTopics"
16+
},
17+
{
18+
"name": "View today's events",
19+
"url": "/Notification"
20+
}
21+
],
22+
"icons": [
23+
{
24+
"src": "/assets/manifest-icon-192.maskable.webp",
25+
"sizes": "192x192",
26+
"type": "image/webp",
27+
"purpose": "any"
28+
},
29+
{
30+
"src": "/assets/manifest-icon-192.maskable.webp",
31+
"sizes": "192x192",
32+
"type": "image/webp",
33+
"purpose": "maskable"
34+
},
35+
{
36+
"src": "/assets/manifest-icon-512.maskable.webp",
37+
"sizes": "512x512",
38+
"type": "image/webp",
39+
"purpose": "any"
40+
},
41+
{
42+
"src": "/assets/manifest-icon-512.maskable.webp",
43+
"sizes": "512x512",
44+
"type": "image/webp",
45+
"purpose": "maskable"
46+
}
47+
],
48+
"screenshots": [
49+
{
50+
"src": "/assets/main.webp",
51+
"sizes": "2560x1440",
52+
"type": "image/webp",
53+
"form_factor": "wide",
54+
"label": "Home screen showing main navigation and featured content"
55+
},
56+
{
57+
"src": "/assets/forum.webp",
58+
"sizes": "2560x1440",
59+
"type": "image/webp",
60+
"form_factor": "wide",
61+
"label": "Screen showing a forum"
62+
},
63+
{
64+
"src": "/assets/topic.webp",
65+
"sizes": "2560x1440",
66+
"type": "image/webp",
67+
"form_factor": "wide",
68+
"label": "Topic screen showing a forum topic "
69+
},
70+
{
71+
"src": "/assets/admin.webp",
72+
"sizes": "2560x1440",
73+
"type": "image/webp",
74+
"label": "Admin Dashboard view displaying key metrics"
75+
}
76+
]
77+
}

0 commit comments

Comments
 (0)