From e425a887ef31e861caa864fc003b856b24f63bb4 Mon Sep 17 00:00:00 2001 From: mxve <68632137+mxve@users.noreply.github.com> Date: Thu, 10 Oct 2024 13:23:46 +0200 Subject: [PATCH 1/3] update github --- .github/CODEOWNERS | 3 --- .github/ISSUE_TEMPLATE/config.yml | 8 ++++---- .github/ISSUE_TEMPLATE/get-help.md | 2 +- .github/pull_request_template.md | 4 ++-- .github/workflows/build.yml | 5 ++--- README.md | 2 +- 6 files changed, 10 insertions(+), 14 deletions(-) delete mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS deleted file mode 100644 index 639efdba7..000000000 --- a/.github/CODEOWNERS +++ /dev/null @@ -1,3 +0,0 @@ -# SPDX-License-Identifier: GPL-3.0 - -* @XLabsProject/Developers diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index bfa69ba1e..bd7c89090 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,8 +1,8 @@ blank_issues_enabled: false contact_links: - name: Discord Server - url: https://discord.gg/sKeVmR3/ + url: https://discord.gg/2ETE8engZM about: Please ask and answer support questions here. - - name: XLabsProject Website - url: https://xlabs.dev/ - about: The official website. \ No newline at end of file + - name: AlterWare Forum + url: https://forum.alterware.dev/ + about: Find guides and ask questions here. \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/get-help.md b/.github/ISSUE_TEMPLATE/get-help.md index f7dea0a1b..fa4bd0348 100644 --- a/.github/ISSUE_TEMPLATE/get-help.md +++ b/.github/ISSUE_TEMPLATE/get-help.md @@ -8,7 +8,7 @@ assignees: '' --- _Do not open an issue here if you need help with modding or have a problem getting the client to run. -Ask in `iw4x-support` or `iw4x-modding` channels on the [Discord](https://discord.gg/tKTQJxcCkk) server if you still have problems. +Ask in MW2 channels on the [Discord](https://discord.gg/2ETE8engZM) server if you still have problems. If this does not apply, please continue by filling in the template below._ **What are you trying to do?** diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 82a087e1f..3e1e6f17e 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -14,6 +14,6 @@ Add any other context about your changes here. **Did you check all the boxes?** - [ ] Focus on a single fix or feature; remove any unrelated formatting or code changes -- [ ] Mention any [related issues](https://github.com/XLabsProject/iw4x-client/issues) (put `closes #XXXX` in comment to auto-close issue when PR is merged) -- [ ] Follow our [coding conventions](https://github.com/XLabsProject/iw4x-client/blob/master/CODESTYLE.md) +- [ ] Mention any [related issues](https://github.com/iw4x/iw4x-client/issues) (put `closes #XXXX` in comment to auto-close issue when PR is merged) +- [ ] Follow our [coding conventions](https://github.com/iw4x/iw4x-client/blob/master/CODESTYLE.md) - [ ] Minimize the number of commits diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f102479ab..461148936 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,7 +22,7 @@ jobs: configuration: - Debug - Release - steps: + steps: - name: Check out files uses: actions/checkout@v3.5.3 with: @@ -49,5 +49,4 @@ jobs: name: ${{matrix.configuration}} binaries path: | build/bin/Win32/${{matrix.configuration}}/iw4x.dll - build/bin/Win32/${{matrix.configuration}}/iw4x.pdb - + build/bin/Win32/${{matrix.configuration}}/iw4x.pdb \ No newline at end of file diff --git a/README.md b/README.md index 227ac02b3..da1cf519d 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ -IW4x is a community-driven project that aims to revitalize and enhance the [Call of Duty: Modern Warfare 2 (2009) ](https://store.steampowered.com/app/10180/Call_of_Duty_Modern_Warfare_2_2009/)multiplayer experience by providing a stable platform with support for dedicated servers and modding. +IW4x is a community-driven project that aims to revitalize and enhance the [Call of Duty: Modern Warfare 2 (2009)](https://store.steampowered.com/app/10180/Call_of_Duty_Modern_Warfare_2_2009/) multiplayer experience by providing a stable platform with support for dedicated servers and modding. IW4x is currently distributed through the [AlterWare Launcher](https://github.com/mxve/alterware-launcher). From a017f176fbd1dea0333a540b75f8264211b5c7fc Mon Sep 17 00:00:00 2001 From: mxve <68632137+mxve@users.noreply.github.com> Date: Sat, 12 Oct 2024 17:09:47 +0200 Subject: [PATCH 2/3] update build.yml --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 461148936..0589abf9b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,7 +24,7 @@ jobs: - Release steps: - name: Check out files - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4 with: submodules: true fetch-depth: 0 @@ -32,7 +32,7 @@ jobs: lfs: false - name: Add msbuild to PATH - uses: microsoft/setup-msbuild@v1.3.1 + uses: microsoft/setup-msbuild@v2 - name: Generate project files run: tools/premake5 vs2022 @@ -44,7 +44,7 @@ jobs: run: msbuild /m /v:minimal /p:Configuration=${{matrix.configuration}} /p:Platform=Win32 build/iw4x.sln - name: Upload ${{matrix.configuration}} binaries - uses: actions/upload-artifact@v3.1.2 + uses: actions/upload-artifact@v4 with: name: ${{matrix.configuration}} binaries path: | From 4cd79f4c4fcb6838ba838034bc6d2e674175df9f Mon Sep 17 00:00:00 2001 From: mxve <68632137+mxve@users.noreply.github.com> Date: Sun, 13 Oct 2024 09:02:03 +0200 Subject: [PATCH 3/3] update security.md --- SECURITY.md | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/SECURITY.md b/SECURITY.md index ab88d3a65..228831177 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -1,17 +1,23 @@ ## iw4x-client Security -We take security very seriously at XLabsProject. We welcome any peer review of our 100% free software source code to ensure nobody's IW4x clients or servers are ever compromised or hacked. +We welcome any peer review of our 100% free software source code to ensure nobody's IW4x clients or servers are ever compromised or hacked. ### Where should I report security issues? In order to give the community time to respond and upgrade we strongly urge you report all security issues privately. -Please e-mail MauriceHeumann@gmail.com directly to provide details and repro steps. -### Other key people +#### Discord +- Louvenarde: `louvenarde` -In the exceptional case that you do not receive a response within a reasonable time frame from our lead developer, please contact any of the following people: -- Future/diamante0018: iw4x-sp@proton.me +#### E-Mail +- Future/diamante0018: `iw4x-sp@proton.me` -We will try respond as soon as possible, but please note: +--- + +> Also feel free to join [our Discord server](https://discord.gg/2ETE8engZM) and mention that you want to report a security issue. + +--- + +We will try to respond as soon as possible, but please note: ### This is an entirely free software project. It is maintained in our spare time. ### We cannot guarantee quick responses but we very much appreciate your discretion when reporting security vulnerabilities.