Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
87 changes: 0 additions & 87 deletions Yamux.sln

This file was deleted.

22 changes: 22 additions & 0 deletions Yamux.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<Solution>
<Folder Name="/.github/" />
<Folder Name="/.github/workflows/">
<File Path=".github/workflows/lunet-gh-pages.yml" />
<File Path=".github/workflows/nuget-publish.yml" />
</Folder>
<Folder Name="/benchmarks/">
<Project Path="benchmarks/Yamux.Benchmark/Yamux.Benchmark.csproj" />
</Folder>
<Folder Name="/samples/">
<Project Path="samples/FileTransfer/FileTransfer.csproj" />
<Project Path="samples/Sample/Sample.csproj" />
</Folder>
<Folder Name="/Solution Items/">
<File Path="Directory.Build.props" />
<File Path="README.md" />
</Folder>
<Folder Name="/test/">
<Project Path="test/Yamux.Tests/Yamux.Tests.csproj" />
</Folder>
<Project Path="src/Yamux.csproj" />
</Solution>
7 changes: 7 additions & 0 deletions docs/config.scriban
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
extend "lunet-io/templates"

template_theme_default_mode = "dark"
template_theme_override_styles = ["/css/theme-override.scss"]

site_project_baseurl = "https://pableess.github.io"
site_project_basepath = "/yamux-dotnet"
Expand All @@ -9,8 +10,14 @@ site_project_description = "A .NET implementation of the HashiCorp Yamux multipl
site_project_github_user = "pableess"
site_project_github_repo = "yamux-dotnet"
site_project_owner_name = "Paul Bleess"
site_project_owner_alias = "pableess"
site_project_owner_url = "https://github.com/pableess"
site_project_license_name = "MIT"
site_project_content_license_name = "MIT"
site_project_content_license_url = "https://opensource.org/licenses/MIT"

# Logo configuration
site_project_logo_path = "/img/yamux.png"

# Use index.md (not readme.md) as the home page
readme_as_index = false
Expand Down
27 changes: 27 additions & 0 deletions docs/css/theme-override.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
/* Round corners and transparent background for images */
img {
border-radius: 8px;
background: transparent !important;
}

/* Lighten card backgrounds */
.card,
.card-header,
.card-body {
background: transparent !important;
}

.card {
background-color: color-mix(in srgb, var(--lunet-color-surface-1) 50%, transparent) !important;
backdrop-filter: blur(4px);
}

/* Lighten the hero image area */
.text-center img {
border-radius: 12px;
}

/* Lighten code blocks */
pre {
background-color: color-mix(in srgb, var(--lunet-color-code-bg, var(--lunet-color-surface-1)) 50%, transparent) !important;
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 10 additions & 0 deletions docs/docs/menu.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
doc:
- {path: getting-started.md, title: "Getting Started"}
- {path: Session.md, title: "Session"}
- {path: Channels.md, title: "Channels"}
- {path: SessionOptions.md, title: "SessionOptions"}
- {path: SessionChannelOptions.md, title: "SessionChannelOptions"}
- {path: Statistics.md, title: "Statistics"}
- {path: Transport.md, title: "Transport"}
- {path: Exceptions.md, title: "Exceptions"}
- {path: Performance.md, title: "Performance"}
Binary file added docs/img/yamux-dotnet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/img/yamux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading