Skip to content

Commit 24ece7b

Browse files
committed
v15.1.14101-Beta
1 parent cecb9e5 commit 24ece7b

File tree

1,551 files changed

+47877
-224994
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,551 files changed

+47877
-224994
lines changed

CS/CalDAVServer.FileSystemStorage.AspNetCore/CalDAVServer.FileSystemStorage.AspNetCore.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
<Project Sdk="Microsoft.NET.Sdk.Web">
33
<PropertyGroup>
4-
<VersionPrefix>15.0.13942-Beta</VersionPrefix>
4+
<VersionPrefix>15.1.14101-Beta</VersionPrefix>
55
<AssemblyName>CalDAVServer.FileSystemStorage.AspNetCore</AssemblyName>
6-
<TargetFramework>net8.0</TargetFramework>
6+
<TargetFramework>net9.0</TargetFramework>
77
<LangVersion>9.0</LangVersion>
88
<NullableContextOptions>enable</NullableContextOptions>
99
</PropertyGroup>
@@ -16,9 +16,9 @@
1616
</Content>
1717
</ItemGroup>
1818
<ItemGroup>
19-
<PackageReference Include="ITHit.Server" Version="15.0.13942-Beta" />
20-
<PackageReference Include="ITHit.Server.Core" Version="15.0.13942-Beta" />
21-
<PackageReference Include="ITHit.WebDAV.Server" Version="15.0.13942-Beta" />
19+
<PackageReference Include="ITHit.Server" Version="15.1.14101-Beta" />
20+
<PackageReference Include="ITHit.Server.Core" Version="15.1.14101-Beta" />
21+
<PackageReference Include="ITHit.WebDAV.Server" Version="15.1.14101-Beta" />
2222
<PackageReference Include="System.Data.OleDb" Version="8.0.1" />
2323
</ItemGroup>
2424
<ItemGroup>

CS/CalDAVServer.FileSystemStorage.AspNetCore/DavFolder.cs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,11 @@ public virtual async Task<IFile> CreateFileAsync(string name, Stream content, st
122122
}
123123

124124
DavFile file = (DavFile)await context.GetHierarchyItemAsync(Path + EncodeUtil.EncodeUrlPart(name));
125-
// write file content
126-
await file.WriteInternalAsync(content, contentType, 0, totalFileSize);
125+
if (content != null)
126+
{
127+
// write file content
128+
await file.WriteInternalAsync(content, contentType, 0, totalFileSize);
129+
}
127130

128131
return file;
129132
}

CS/CalDAVServer.SqlStorage.AspNetCore/CalDAVServer.SqlStorage.AspNetCore.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
<Project Sdk="Microsoft.NET.Sdk.Web">
33
<PropertyGroup>
4-
<VersionPrefix>15.0.13942-Beta</VersionPrefix>
4+
<VersionPrefix>15.1.14101-Beta</VersionPrefix>
55
<AssemblyName>CalDAVServer.SqlStorage.AspNetCore</AssemblyName>
6-
<TargetFramework>net8.0</TargetFramework>
6+
<TargetFramework>net9.0</TargetFramework>
77
<LangVersion>9.0</LangVersion>
88
<NullableContextOptions>enable</NullableContextOptions>
99
</PropertyGroup>
@@ -19,9 +19,9 @@
1919
</Content>
2020
</ItemGroup>
2121
<ItemGroup>
22-
<PackageReference Include="ITHit.Server" Version="15.0.13942-Beta" />
23-
<PackageReference Include="ITHit.Server.Core" Version="15.0.13942-Beta" />
24-
<PackageReference Include="ITHit.WebDAV.Server" Version="15.0.13942-Beta" />
22+
<PackageReference Include="ITHit.Server" Version="15.1.14101-Beta" />
23+
<PackageReference Include="ITHit.Server.Core" Version="15.1.14101-Beta" />
24+
<PackageReference Include="ITHit.WebDAV.Server" Version="15.1.14101-Beta" />
2525
<PackageReference Include="System.Data.SqlClient" Version="4.8.6" />
2626
</ItemGroup>
2727
<ItemGroup>

CS/CardDAVServer.FileSystemStorage.AspNetCore/CardDAVServer.FileSystemStorage.AspNetCore.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
<Project Sdk="Microsoft.NET.Sdk.Web">
33
<PropertyGroup>
4-
<VersionPrefix>15.0.13942-Beta</VersionPrefix>
4+
<VersionPrefix>15.1.14101-Beta</VersionPrefix>
55
<AssemblyName>CardDAVServer.FileSystemStorage.AspNetCore</AssemblyName>
6-
<TargetFramework>net8.0</TargetFramework>
6+
<TargetFramework>net9.0</TargetFramework>
77
<LangVersion>9.0</LangVersion>
88
<NullableContextOptions>enable</NullableContextOptions>
99
</PropertyGroup>
@@ -16,9 +16,9 @@
1616
</Content>
1717
</ItemGroup>
1818
<ItemGroup>
19-
<PackageReference Include="ITHit.Server" Version="15.0.13942-Beta" />
20-
<PackageReference Include="ITHit.Server.Core" Version="15.0.13942-Beta" />
21-
<PackageReference Include="ITHit.WebDAV.Server" Version="15.0.13942-Beta" />
19+
<PackageReference Include="ITHit.Server" Version="15.1.14101-Beta" />
20+
<PackageReference Include="ITHit.Server.Core" Version="15.1.14101-Beta" />
21+
<PackageReference Include="ITHit.WebDAV.Server" Version="15.1.14101-Beta" />
2222
<PackageReference Include="System.Data.OleDb" Version="8.0.1" />
2323
</ItemGroup>
2424
<ItemGroup>

CS/CardDAVServer.FileSystemStorage.AspNetCore/DavFolder.cs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,11 @@ public async Task<IFile> CreateFileAsync(string name, Stream content, string con
122122
}
123123

124124
DavFile file = (DavFile)await context.GetHierarchyItemAsync(Path + EncodeUtil.EncodeUrlPart(name));
125-
// write file content
126-
await file.WriteInternalAsync(content, contentType, 0, totalFileSize);
125+
if (content != null)
126+
{
127+
// write file content
128+
await file.WriteInternalAsync(content, contentType, 0, totalFileSize);
129+
}
127130

128131
return file;
129132
}

CS/CardDAVServer.SqlStorage.AspNetCore/CardDAVServer.SqlStorage.AspNetCore.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
<Project Sdk="Microsoft.NET.Sdk.Web">
33
<PropertyGroup>
4-
<VersionPrefix>15.0.13942-Beta</VersionPrefix>
4+
<VersionPrefix>15.1.14101-Beta</VersionPrefix>
55
<AssemblyName>CardDAVServer.SqlStorage.AspNetCore</AssemblyName>
6-
<TargetFramework>net8.0</TargetFramework>
6+
<TargetFramework>net9.0</TargetFramework>
77
<LangVersion>9.0</LangVersion>
88
<NullableContextOptions>enable</NullableContextOptions>
99
</PropertyGroup>
@@ -19,9 +19,9 @@
1919
</Content>
2020
</ItemGroup>
2121
<ItemGroup>
22-
<PackageReference Include="ITHit.Server" Version="15.0.13942-Beta" />
23-
<PackageReference Include="ITHit.Server.Core" Version="15.0.13942-Beta" />
24-
<PackageReference Include="ITHit.WebDAV.Server" Version="15.0.13942-Beta" />
22+
<PackageReference Include="ITHit.Server" Version="15.1.14101-Beta" />
23+
<PackageReference Include="ITHit.Server.Core" Version="15.1.14101-Beta" />
24+
<PackageReference Include="ITHit.WebDAV.Server" Version="15.1.14101-Beta" />
2525
<PackageReference Include="System.Data.SqlClient" Version="4.8.6" />
2626
</ItemGroup>
2727
<ItemGroup>

CS/HttpListener/HttpListener.Android/HttpListener.Android.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@
5252
<BundleAssemblies>false</BundleAssemblies>
5353
</PropertyGroup>
5454
<ItemGroup>
55-
<Reference Include="ITHit.WebDAV.Server, Version=15.0.13942-Beta, Culture=neutral, PublicKeyToken=d057f7b1134051b5, processorArchitecture=MSIL">
56-
<HintPath>..\packages\ITHit.WebDAV.Server.15.0.13942-Beta\lib\netstandard1.6\ITHit.WebDAV.Server.dll</HintPath>
55+
<Reference Include="ITHit.WebDAV.Server, Version=15.1.14101-Beta, Culture=neutral, PublicKeyToken=d057f7b1134051b5, processorArchitecture=MSIL">
56+
<HintPath>..\packages\ITHit.WebDAV.Server.15.1.14101-Beta\lib\netstandard1.6\ITHit.WebDAV.Server.dll</HintPath>
5757
</Reference>
58-
<Reference Include="ITHit.WebDAV.Server.HttpListener, Version=15.0.13942-Beta, Culture=neutral, PublicKeyToken=d057f7b1134051b5, processorArchitecture=MSIL">
59-
<HintPath>..\packages\ITHit.WebDAV.Server.HttpListener.15.0.13942-Beta\lib\netstandard2.0\ITHit.WebDAV.Server.HttpListener.dll</HintPath>
58+
<Reference Include="ITHit.WebDAV.Server.HttpListener, Version=15.1.14101-Beta, Culture=neutral, PublicKeyToken=d057f7b1134051b5, processorArchitecture=MSIL">
59+
<HintPath>..\packages\ITHit.WebDAV.Server.HttpListener.15.1.14101-Beta\lib\netstandard2.0\ITHit.WebDAV.Server.HttpListener.dll</HintPath>
6060
</Reference>
6161
<Reference Include="Microsoft.AspNetCore.Hosting, Version=2.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
6262
<HintPath>..\packages\Microsoft.AspNetCore.Hosting.2.0.0\lib\netstandard2.0\Microsoft.AspNetCore.Hosting.dll</HintPath>

CS/HttpListener/HttpListener.Android/packages.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="ITHit.WebDAV.Server" version="15.0.13942-Beta" targetFramework="monoandroid60" />
4-
<package id="ITHit.WebDAV.Server.HttpListener" version="15.0.13942-Beta" targetFramework="monoandroid60" />
3+
<package id="ITHit.WebDAV.Server" version="15.1.14101-Beta" targetFramework="monoandroid60" />
4+
<package id="ITHit.WebDAV.Server.HttpListener" version="15.1.14101-Beta" targetFramework="monoandroid60" />
55
<package id="Microsoft.AspNetCore.Hosting" version="2.0.0" targetFramework="monoandroid71" />
66
<package id="Microsoft.AspNetCore.Hosting.Abstractions" version="2.0.0" targetFramework="monoandroid71" />
77
<package id="Microsoft.AspNetCore.Hosting.Server.Abstractions" version="2.0.0" targetFramework="monoandroid71" />

CS/HttpListener/HttpListener.iOS/HttpListener.iOS.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,11 +114,11 @@
114114
</InterfaceDefinition>
115115
</ItemGroup>
116116
<ItemGroup>
117-
<Reference Include="ITHit.WebDAV.Server, Version=15.0.13942-Beta, Culture=neutral, PublicKeyToken=d057f7b1134051b5, processorArchitecture=MSIL">
118-
<HintPath>..\packages\ITHit.WebDAV.Server.15.0.13942-Beta\lib\netstandard1.6\ITHit.WebDAV.Server.dll</HintPath>
117+
<Reference Include="ITHit.WebDAV.Server, Version=15.1.14101-Beta, Culture=neutral, PublicKeyToken=d057f7b1134051b5, processorArchitecture=MSIL">
118+
<HintPath>..\packages\ITHit.WebDAV.Server.15.1.14101-Beta\lib\netstandard1.6\ITHit.WebDAV.Server.dll</HintPath>
119119
</Reference>
120-
<Reference Include="ITHit.WebDAV.Server.HttpListener, Version=15.0.13942-Beta, Culture=neutral, PublicKeyToken=d057f7b1134051b5, processorArchitecture=MSIL">
121-
<HintPath>..\packages\ITHit.WebDAV.Server.HttpListener.15.0.13942-Beta\lib\netstandard2.0\ITHit.WebDAV.Server.HttpListener.dll</HintPath>
120+
<Reference Include="ITHit.WebDAV.Server.HttpListener, Version=15.1.14101-Beta, Culture=neutral, PublicKeyToken=d057f7b1134051b5, processorArchitecture=MSIL">
121+
<HintPath>..\packages\ITHit.WebDAV.Server.HttpListener.15.1.14101-Beta\lib\netstandard2.0\ITHit.WebDAV.Server.HttpListener.dll</HintPath>
122122
</Reference>
123123
<Reference Include="Microsoft.AspNetCore.Hosting, Version=2.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
124124
<HintPath>..\packages\Microsoft.AspNetCore.Hosting.2.0.0\lib\netstandard2.0\Microsoft.AspNetCore.Hosting.dll</HintPath>

CS/HttpListener/HttpListener.iOS/packages.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="ITHit.WebDAV.Server" version="15.0.13942-Beta" targetFramework="xamarinios10" />
4-
<package id="ITHit.WebDAV.Server.HttpListener" version="15.0.13942-Beta" targetFramework="xamarinios10" />
3+
<package id="ITHit.WebDAV.Server" version="15.1.14101-Beta" targetFramework="xamarinios10" />
4+
<package id="ITHit.WebDAV.Server.HttpListener" version="15.1.14101-Beta" targetFramework="xamarinios10" />
55
<package id="Microsoft.AspNetCore.Hosting" version="2.0.0" targetFramework="xamarinios10" />
66
<package id="Microsoft.AspNetCore.Hosting.Abstractions" version="2.0.0" targetFramework="xamarinios10" />
77
<package id="Microsoft.AspNetCore.Hosting.Server.Abstractions" version="2.0.0" targetFramework="xamarinios10" />

CS/HttpListener/HttpListenerLibrary/HttpListenerLibrary.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<TargetFramework>netstandard2.0</TargetFramework>
44
</PropertyGroup>
55
<ItemGroup>
6-
<PackageReference Include="ITHit.WebDAV.Server.HttpListener" Version="15.0.13942-Beta" />
6+
<PackageReference Include="ITHit.WebDAV.Server.HttpListener" Version="15.1.14101-Beta" />
77
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="2.0.0" />
88
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.0.0" />
99
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="2.0.0" />

CS/HttpListener/SharedMobile/SharedMobile.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<TargetFramework>netstandard2.0</TargetFramework>
44
</PropertyGroup>
55
<ItemGroup>
6-
<PackageReference Include="ITHit.WebDAV.Server" Version="15.0.13942-Beta" />
6+
<PackageReference Include="ITHit.WebDAV.Server" Version="15.1.14101-Beta" />
77
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="2.0.0" />
88
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
99
</ItemGroup>

CS/WebDAVServer.FileSystemStorage.AspNet/App_Data/WebDav/Storage/Library/General.docx

Whitespace-only changes.
Binary file not shown.

CS/WebDAVServer.FileSystemStorage.AspNet/App_Data/WebDav/Storage/Products/General.docx

Whitespace-only changes.

CS/WebDAVServer.FileSystemStorage.AspNet/App_Data/WebDav/Storage/Sales/Australia/Plan.docx

Whitespace-only changes.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 20 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,24 @@
1-
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2-
3-
# dependencies
4-
/node_modules
5-
/.pnp
6-
.pnp.js
7-
8-
# testing
9-
/coverage
10-
11-
# production
12-
/build
13-
/dist
14-
15-
# misc
16-
.DS_Store
17-
.env.local
18-
.env.development.local
19-
.env.test.local
20-
.env.production.local
21-
1+
# Logs
2+
logs
3+
*.log
224
npm-debug.log*
235
yarn-debug.log*
246
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
259

26-
/.vscode
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?
Lines changed: 50 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,50 @@
1-
# Getting Started with Create React App
2-
3-
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
4-
5-
## Available Scripts
6-
7-
In the project directory, you can run:
8-
9-
### `npm start`
10-
11-
Runs the app in the development mode.\
12-
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
13-
14-
The page will reload if you make edits.\
15-
You will also see any lint errors in the console.
16-
17-
### `npm test`
18-
19-
Launches the test runner in the interactive watch mode.\
20-
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
21-
22-
### `npm run build`
23-
24-
Builds the app for production to the `build` folder.\
25-
It correctly bundles React in production mode and optimizes the build for the best performance.
26-
27-
The build is minified and the filenames include the hashes.\
28-
Your app is ready to be deployed!
29-
30-
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
31-
32-
### `npm run eject`
33-
34-
**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
35-
36-
If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
37-
38-
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
39-
40-
You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
41-
42-
## Learn More
43-
44-
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
45-
46-
To learn React, check out the [React documentation](https://reactjs.org/).
1+
# React + TypeScript + Vite
2+
3+
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
4+
5+
Currently, two official plugins are available:
6+
7+
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
8+
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
9+
10+
## Expanding the ESLint configuration
11+
12+
If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
13+
14+
- Configure the top-level `parserOptions` property like this:
15+
16+
```js
17+
export default tseslint.config({
18+
languageOptions: {
19+
// other options...
20+
parserOptions: {
21+
project: ['./tsconfig.node.json', './tsconfig.app.json'],
22+
tsconfigRootDir: import.meta.dirname,
23+
},
24+
},
25+
})
26+
```
27+
28+
- Replace `tseslint.configs.recommended` to `tseslint.configs.recommendedTypeChecked` or `tseslint.configs.strictTypeChecked`
29+
- Optionally add `...tseslint.configs.stylisticTypeChecked`
30+
- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and update the config:
31+
32+
```js
33+
// eslint.config.js
34+
import react from 'eslint-plugin-react'
35+
36+
export default tseslint.config({
37+
// Set the react version
38+
settings: { react: { version: '18.3' } },
39+
plugins: {
40+
// Add the react plugin
41+
react,
42+
},
43+
rules: {
44+
// other rules...
45+
// Enable its recommended rules
46+
...react.configs.recommended.rules,
47+
...react.configs['jsx-runtime'].rules,
48+
},
49+
})
50+
```

CS/WebDAVServer.FileSystemStorage.AspNet/ClientAppSrc/build.js

Lines changed: 0 additions & 45 deletions
This file was deleted.

0 commit comments

Comments
 (0)