Skip to content
Open
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
1 change: 0 additions & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,3 @@ jobs:
with:
files: .
dot: true
ignore_files: site/_includes/ # needs special treatment, ignore for now
5 changes: 5 additions & 0 deletions .markdownlintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# FIXME: Issue #126, markdowncli checks markdown before Liquid tags are rendered
# https://github.com/OpenTabletDriver/opentabletdriver.github.io/issues/126
# This file shouldn't be necessary once the above issue is solved
site/_includes/
site/_sections/Framework.md
2 changes: 2 additions & 0 deletions site/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ description: >- # this means to ignore newlines until "baseurl:"
OpenTabletDriver is an open source, cross-platform, low latency, user-mode tablet driver.
baseurl: "" # webserver path, blank for GitHub pages
url: https://opentabletdriver.net # full URI to website
# the .NET runtime version used by OpenTabletDriver. Used for user-facing content and download links
otd_dotnet_version: 8.0

sass:
sass_dir: _sass
Expand Down
20 changes: 12 additions & 8 deletions site/_sections/Framework.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,24 @@
title: Frameworks
---

## Windows
## .NET Desktop Runtime

[x64](https://aka.ms/dotnet/8.0/windowsdesktop-runtime-win-x64.exe)
OpenTabletDriver currently uses .NET {{ site.otd_dotnet_version }}.

## MacOS
### Windows

[arm64](https://aka.ms/dotnet/8.0/dotnet-runtime-osx-arm64.pkg)
[x64](https://aka.ms/dotnet/{{ site.otd_dotnet_version }}/windowsdesktop-runtime-win-x64.exe)

[x86-64/x64 (Intel based)](https://aka.ms/dotnet/8.0/dotnet-runtime-osx-x64.pkg)
### MacOS

## Linux
[arm64](https://aka.ms/dotnet/{{ site.otd_dotnet_version }}/dotnet-runtime-osx-arm64.pkg)

[x86-64/x64 (Intel based)](https://aka.ms/dotnet/{{ site.otd_dotnet_version }}/dotnet-runtime-osx-x64.pkg)

### Linux

See the [official Linux installation documentation](https://docs.microsoft.com/en-us/dotnet/core/install/linux).

## Uncommon builds
### Uncommon builds

[Windows arm64](https://aka.ms/dotnet/8.0/windowsdesktop-runtime-win-arm64.exe)
[Windows arm64](https://aka.ms/dotnet/{{ site.otd_dotnet_version }}/windowsdesktop-runtime-win-arm64.exe)
2 changes: 1 addition & 1 deletion site/_wiki/Install/Windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ hide_from_auto_list: true

## Dependencies {#dependencies}

1. Install the [.NET 8 Desktop Runtime x64]({% link _sections/Framework.md %})
1. Install the [.NET {{ site.otd_dotnet_version }} Desktop Runtime x64]({% link _sections/Framework.md %})

If you were previously using the standalone installer/updater (before v0.6), switch to the new
method for installing OpenTabletDriver below.
Expand Down
Loading