1
0
mirror of https://github.com/chylex/Discord-History-Tracker.git synced 2025-04-06 14:15:42 +02:00

Compare commits

...

4 Commits

6 changed files with 99 additions and 36 deletions

View File

@ -18,7 +18,7 @@ Folder organization:
* `app/` contains a Visual Studio solution for the desktop app
* `web/` contains source code of the [official website](https://dht.chylex.com), which can be used as a template when making your own website
To start editing source code for the desktop app, install the [.NET 8 SDK](https://dotnet.microsoft.com/en-us/download/dotnet/8.0), and then open `app/DiscordHistoryTracker.sln` in [Visual Studio](https://visualstudio.microsoft.com/downloads/) or [Rider](https://www.jetbrains.com/rider/).
To start editing source code for the desktop app, install the [.NET 9 SDK](https://dotnet.microsoft.com/en-us/download/dotnet/9.0), and then open `app/DiscordHistoryTracker.sln` in [Visual Studio](https://visualstudio.microsoft.com/downloads/) or [Rider](https://www.jetbrains.com/rider/).
### Building
@ -28,18 +28,18 @@ To build a `Release` version of the desktop app, follow the instructions for you
#### Release Windows (64-bit)
1. Install [Powershell 5](https://docs.microsoft.com/en-us/powershell/scripting/install/installing-powershell-on-windows) or newer (on Windows 10, the included version of Powershell should be enough)
1. Install Debian in WSL and open a terminal in the project folder.
2. Run the `app/build.wsl.sh` script.
3. Read the [Distribution](#distribution) section below.
Run the `app/build.bat` script, and read the [Distribution](#distribution) section below.
Note: The build script expects `dotnet.exe` to be installed in `C:\Program Files\dotnet`.
#### Release Other Operating Systems
1. Install the `zip` package from your repository
Run the `app/build.sh` script, and read the [Distribution](#distribution) section below.
1. Install the `zip` package from your repository.
2. Run the `app/build.sh` script.
3. Read the [Distribution](#distribution) section below.
#### Distribution
The mentioned build scripts will prepare `Release` builds ready for distribution. Once the script finishes, the `app/bin` folder will contain self-contained executables for each major operating system, and a portable version that works on all other systems but requires .NET 8 to be installed.
Note that when building on Windows, the generated `.zip` files for Linux and Mac will not have correct file permissions, so it will not be possible to run them by double-clicking the executable. Since .NET 8 fixed several issues with publishing Windows executables on Linux, I recommend using Linux to build the app for all operating systems.
The mentioned build scripts will prepare `Release` builds ready for distribution. Once the script finishes, the `app/bin` folder will contain self-contained executables for each major operating system, and a portable version that works on all other systems but requires the ASP.NET Core Runtime to be installed.

View File

@ -1,8 +1,8 @@
<Project>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>12</LangVersion>
<TargetFramework>net9.0</TargetFramework>
<LangVersion>13</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
@ -39,6 +39,7 @@
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugSymbols>false</DebugSymbols>
<DebugType>none</DebugType>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<PropertyGroup>

View File

@ -1,15 +0,0 @@
@echo off
set list=win-x64 linux-x64 osx-x64
rmdir /S /Q bin
(for %%a in (%list%) do (
dotnet publish Desktop -c Release -r %%a -o ./bin/%%a --self-contained true
powershell "Compress-Archive -Path ./bin/%%a/* -DestinationPath ./bin/%%a.zip -CompressionLevel Optimal"
))
dotnet publish Desktop -c Release -o ./bin/portable -p:PublishSingleFile=false -p:PublishTrimmed=false --self-contained false
powershell "Compress-Archive -Path ./bin/portable/* -DestinationPath ./bin/portable.zip -CompressionLevel Optimal"
echo Done
pause

View File

@ -1,25 +1,49 @@
#!/bin/bash
set -e
export TZ=UTC
if [ ! -f "DiscordHistoryTracker.sln" ]; then
echo "Missing DiscordHistoryTracker.sln in working directory!"
exit 1
echo "Missing DiscordHistoryTracker.sln in working directory!"
exit 1
fi
makezip() {
pushd "./bin/$1"
zip -9 -r "../$1.zip" .
popd
BIN_PATH="$(pwd)/bin"
pushd "$BIN_PATH/$1"
find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod 644 {} \;
chmod -f 755 DiscordHistoryTracker || true
chmod -f 755 DiscordHistoryTracker.exe || true
find . -type f | sort | zip -9 -X "$BIN_PATH/$1.zip" -@
popd
}
rm -rf "./bin"
configurations=(win-x64 linux-x64 osx-x64)
dedicated_runtimes=(win-x64 linux-x64)
skipped_portable_runtimes=(browser-wasm linux-mips64 linux-s390x linux-ppc64le)
for cfg in ${configurations[@]}; do
dotnet publish Desktop -c Release -r "$cfg" -o "./bin/$cfg" --self-contained true
makezip "$cfg"
# Dedicated Runtimes
for cfg in "${dedicated_runtimes[@]}"; do
dotnet publish Desktop -c Release -r "$cfg" -o "./bin/$cfg" --self-contained true
makezip "$cfg"
done
# Portable
dotnet publish Desktop -c Release -o "./bin/portable" -p:PublishSingleFile=false -p:PublishTrimmed=false --self-contained false
rm "./bin/portable/DiscordHistoryTracker"
for runtime in "${skipped_portable_runtimes[@]}"; do
rm -rf "./bin/portable/runtimes/$runtime"
done
makezip "portable"

53
app/build.wsl.sh Normal file
View File

@ -0,0 +1,53 @@
#!/bin/bash
set -e
export TZ=UTC
if [ ! -f "DiscordHistoryTracker.sln" ]; then
echo "Missing DiscordHistoryTracker.sln in working directory!"
exit 1
fi
makezip() {
TMP_PATH="/tmp/dht-build"
BIN_PATH="$(pwd)/bin"
rm -rf "$TMP_PATH"
cp -r "$BIN_PATH/$1/" "$TMP_PATH"
pushd "$TMP_PATH"
find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod 644 {} \;
chmod -f 755 DiscordHistoryTracker || true
chmod -f 755 DiscordHistoryTracker.exe || true
find . -type f | sort | zip -9 -X "$BIN_PATH/$1.zip" -@
popd
rm -rf "$TMP_PATH"
}
rm -rf "./bin"
dedicated_runtimes=(win-x64 linux-x64)
skipped_portable_runtimes=(browser-wasm linux-mips64 linux-s390x linux-ppc64le)
# Dedicated Runtimes
for cfg in "${dedicated_runtimes[@]}"; do
"/mnt/c/Program Files/dotnet/dotnet.exe" publish Desktop -c Release -r "$cfg" -o "./bin/$cfg" --self-contained true
makezip "$cfg"
done
# Portable
"/mnt/c/Program Files/dotnet/dotnet.exe" publish Desktop -c Release -o "./bin/portable" -p:PublishSingleFile=false -p:PublishTrimmed=false --self-contained false
rm "./bin/portable/DiscordHistoryTracker.exe"
for runtime in "${skipped_portable_runtimes[@]}"; do
rm -rf "./bin/portable/runtimes/$runtime"
done
makezip "portable"

View File

@ -1,6 +1,6 @@
{
"sdk": {
"version": "8.0.0",
"version": "9.0.0",
"rollForward": "latestMinor"
}
}