diff --git a/README.md b/README.md index 4836974..3416f53 100644 --- a/README.md +++ b/README.md @@ -135,12 +135,14 @@ Below are some planned features for potential future releases: ## Download +Beta builds are available from [GitHub releases](https://github.com/Sparronator9999/YAMDCC/releases). + Development builds are available through [GitHub Actions](https://github.com/Sparronator9999/YAMDCC/actions). -Alternatively, if you don't have a GitHub account, you can download the latest build from +If you don't have a GitHub account, you can also download the latest development build from [nightly.link](https://nightly.link/Sparronator9999/YAMDCC/workflows/build/main?preview). -(You probably want the `Release` build, unless you're debugging issues with the program) +You're probably looking for the `Release` build, unless you're debugging issues with the program. Alternatively, you can [build the program yourself](#build). diff --git a/YAMDCC.Config/YAMDCC.Config.csproj b/YAMDCC.Config/YAMDCC.Config.csproj index 057020b..cbdc7c9 100644 --- a/YAMDCC.Config/YAMDCC.Config.csproj +++ b/YAMDCC.Config/YAMDCC.Config.csproj @@ -12,8 +12,8 @@ win7-x64;win7-x86;win-x64;win-x86 net48 YAMDCC config library - 0.6.9.420 - dev + 1.0.0.0 + beta.1 none diff --git a/YAMDCC.Config/packages.lock.json b/YAMDCC.Config/packages.lock.json index 9cb623c..4e8173e 100644 --- a/YAMDCC.Config/packages.lock.json +++ b/YAMDCC.Config/packages.lock.json @@ -7,4 +7,4 @@ ".NETFramework,Version=v4.8/win7-x64": {}, ".NETFramework,Version=v4.8/win7-x86": {} } -} \ No newline at end of file +} diff --git a/YAMDCC.ConfigEditor/MainWindow.cs b/YAMDCC.ConfigEditor/MainWindow.cs index 07905b9..c2d6430 100644 --- a/YAMDCC.ConfigEditor/MainWindow.cs +++ b/YAMDCC.ConfigEditor/MainWindow.cs @@ -561,8 +561,7 @@ private void tsiAbout_Click(object sender, EventArgs e) => new VersionDialog().ShowDialog(); private void tsiSrc_Click(object sender, EventArgs e) => - // TODO: add GitHub project link - Process.Start("https://youtu.be/dQw4w9WgXcQ"); + Process.Start(Paths.SourcePrefix); #endregion #endregion diff --git a/YAMDCC.ConfigEditor/Utils.cs b/YAMDCC.ConfigEditor/Utils.cs index 3f39f33..80d1956 100644 --- a/YAMDCC.ConfigEditor/Utils.cs +++ b/YAMDCC.ConfigEditor/Utils.cs @@ -14,7 +14,6 @@ // You should have received a copy of the GNU General Public License along with // YAMDCC. If not, see . -using System; using System.Diagnostics; using System.IO; using System.Linq; diff --git a/YAMDCC.ConfigEditor/YAMDCC.ConfigEditor.csproj b/YAMDCC.ConfigEditor/YAMDCC.ConfigEditor.csproj index bb418e3..7ce1fb3 100644 --- a/YAMDCC.ConfigEditor/YAMDCC.ConfigEditor.csproj +++ b/YAMDCC.ConfigEditor/YAMDCC.ConfigEditor.csproj @@ -20,8 +20,8 @@ net48 YAMDCC configuration utility true - 0.6.9.420 - dev + 1.0.0.0 + beta.1 none diff --git a/YAMDCC.ConfigEditor/packages.lock.json b/YAMDCC.ConfigEditor/packages.lock.json index 60fe435..93cc11d 100644 --- a/YAMDCC.ConfigEditor/packages.lock.json +++ b/YAMDCC.ConfigEditor/packages.lock.json @@ -104,10 +104,10 @@ "yamdccsvc": { "type": "Project", "dependencies": { - "YAMDCC.Config": "[0.6.9.420-dev, )", - "YAMDCC.ECAccess": "[0.6.9.420-dev, )", - "YAMDCC.IPC": "[2.0.2-release, )", - "YAMDCC.Logs": "[0.6.9.420-dev, )" + "YAMDCC.Config": "[1.0.0-beta.1, )", + "YAMDCC.ECAccess": "[1.0.0-beta.1, )", + "YAMDCC.IPC": "[2.1.0-release, )", + "YAMDCC.Logs": "[1.0.0-beta.1, )" } } }, diff --git a/YAMDCC.ECAccess/YAMDCC.ECAccess.csproj b/YAMDCC.ECAccess/YAMDCC.ECAccess.csproj index 1d1cf79..d23ce47 100644 --- a/YAMDCC.ECAccess/YAMDCC.ECAccess.csproj +++ b/YAMDCC.ECAccess/YAMDCC.ECAccess.csproj @@ -13,8 +13,8 @@ win7-x64;win7-x86;win-x64;win-x86 net48 YAMDCC EC access library - 0.6.9.420 - dev + 1.0.0.0 + beta.1 none diff --git a/YAMDCC.ECAccess/packages.lock.json b/YAMDCC.ECAccess/packages.lock.json index 9cb623c..4e8173e 100644 --- a/YAMDCC.ECAccess/packages.lock.json +++ b/YAMDCC.ECAccess/packages.lock.json @@ -7,4 +7,4 @@ ".NETFramework,Version=v4.8/win7-x64": {}, ".NETFramework,Version=v4.8/win7-x86": {} } -} \ No newline at end of file +} diff --git a/YAMDCC.Logs/YAMDCC.Logs.csproj b/YAMDCC.Logs/YAMDCC.Logs.csproj index f51e468..4f9f1e6 100644 --- a/YAMDCC.Logs/YAMDCC.Logs.csproj +++ b/YAMDCC.Logs/YAMDCC.Logs.csproj @@ -12,8 +12,8 @@ win7-x64;win7-x86;win-x64;win-x86 net48 YAMDCC logging library - 0.6.9.420 - dev + 1.0.0.0 + beta.1 none diff --git a/YAMDCC.Logs/packages.lock.json b/YAMDCC.Logs/packages.lock.json index 9cb623c..4e8173e 100644 --- a/YAMDCC.Logs/packages.lock.json +++ b/YAMDCC.Logs/packages.lock.json @@ -7,4 +7,4 @@ ".NETFramework,Version=v4.8/win7-x64": {}, ".NETFramework,Version=v4.8/win7-x86": {} } -} \ No newline at end of file +} diff --git a/YAMDCC.Service/Program.cs b/YAMDCC.Service/Program.cs index be584b4..45db5f8 100644 --- a/YAMDCC.Service/Program.cs +++ b/YAMDCC.Service/Program.cs @@ -29,7 +29,11 @@ internal static class Program private static readonly Logger Log = new() { ConsoleLogLevel = LogLevel.None, +#if DEBUG FileLogLevel = LogLevel.Debug, +#else + FileLogLevel = LogLevel.Info, +#endif }; /// diff --git a/YAMDCC.Service/YAMDCC.Service.csproj b/YAMDCC.Service/YAMDCC.Service.csproj index 7431030..ed7ab84 100644 --- a/YAMDCC.Service/YAMDCC.Service.csproj +++ b/YAMDCC.Service/YAMDCC.Service.csproj @@ -14,8 +14,8 @@ win7-x64;win7-x86;win-x64;win-x86 net48 YAMDCC helper service - 0.6.9.420 - dev + 1.0.0.0 + beta.1 app.manifest diff --git a/YAMDCC.Service/packages.lock.json b/YAMDCC.Service/packages.lock.json index abf62a4..829b6b9 100644 --- a/YAMDCC.Service/packages.lock.json +++ b/YAMDCC.Service/packages.lock.json @@ -107,4 +107,4 @@ ".NETFramework,Version=v4.8/win7-x64": {}, ".NETFramework,Version=v4.8/win7-x86": {} } -} \ No newline at end of file +}