mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-06-23 23:00:23 -07:00
Compare commits
15 Commits
a1ff3a42c6
...
353198df03
Author | SHA1 | Date | |
---|---|---|---|
|
353198df03 | ||
|
1f21e8ce0b | ||
|
d243a88b38 | ||
|
9d638b4284 | ||
|
c37f46b3dd | ||
|
5f79605a00 | ||
|
971ccf994d | ||
|
4cde20da93 | ||
|
0bd48993ee | ||
|
ff3e1c1cda | ||
|
08377f924e | ||
|
fa5e00d6ec | ||
|
74733e8d9e | ||
|
a4bd88dc0c | ||
|
e47589096d |
53
.github/workflows/bug-report-version.yml
vendored
Normal file
53
.github/workflows/bug-report-version.yml
vendored
Normal file
@ -0,0 +1,53 @@
|
||||
name: Check Bug Report Version
|
||||
on:
|
||||
issues:
|
||||
types: [opened]
|
||||
|
||||
jobs:
|
||||
check-version:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Get latest version
|
||||
id: read-version
|
||||
run: |
|
||||
version=$(grep -oPm1 "(?<=<Version>)[^<]+" Bloxstrap/Bloxstrap.csproj)
|
||||
echo "version=$version" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Check issue for Bloxstrap version
|
||||
uses: actions/github-script@v7
|
||||
id: check-issue
|
||||
with:
|
||||
script: |
|
||||
const issueBody = context.payload.issue.body;
|
||||
const versionHeader = issueBody.match(/### Bloxstrap Version/);
|
||||
const versionMatch = issueBody.match(/v?\d+[\.,]\d+[\.,]\d+/);
|
||||
const latestVersion = '${{ steps.read-version.outputs.version }}';
|
||||
|
||||
if (versionHeader && !versionMatch) {
|
||||
await github.rest.issues.createComment({
|
||||
issue_number: context.issue.number,
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
body: 'Please specify the Bloxstrap version you are using. Use the format `vX.Y.Z`.'
|
||||
});
|
||||
} else if (versionMatch) {
|
||||
const issueVersion = versionMatch[0];
|
||||
if (issueVersion !== latestVersion) {
|
||||
await github.rest.issues.createComment({
|
||||
issue_number: context.issue.number,
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
body: `You are using an outdated version of Bloxstrap (${issueVersion}). Please update to the [latest version of Bloxstrap](https://github.com/pizzaboxer/bloxstrap/releases/latest). If you are still experiencing the bug, please reopen this issue.`
|
||||
});
|
||||
return github.rest.issues.update({
|
||||
issue_number: context.issue.number,
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
state: 'closed',
|
||||
state_reason: 'not_planned'
|
||||
});
|
||||
}
|
||||
}
|
@ -36,10 +36,6 @@ Bloxstrap is only supported for PCs running Windows.
|
||||
|
||||
**A:** No, it shouldn't. Bloxstrap doesn't interact with the Roblox client in the same way that exploits do. [Read more about that here.](https://github.com/bloxstraplabs/bloxstrap/wiki/Why-it's-not-reasonably-possible-for-you-to-be-banned-by-Bloxstrap)
|
||||
|
||||
**Q: Why was multi-instance launching removed?**
|
||||
|
||||
**A:** It was removed starting with v2.6.0 for the [reasons stated here](https://github.com/bloxstraplabs/bloxstrap/wiki/Plans-to-remove-multi%E2%80%90instance-launching-from-Bloxstrap). It may be added back in the future when there are less issues with doing so.
|
||||
|
||||
## Features
|
||||
|
||||
- Hassle-free Discord Rich Presence to let your friends know what you're playing at a glance
|
||||
|
Loading…
Reference in New Issue
Block a user