-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1.2.0 #173
base: master
Are you sure you want to change the base?
1.2.0 #173
Changes from 2 commits
bd594f9
1537d72
a889b43
fa82e50
84e1626
6fbb412
d123b13
7203919
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# | ||
# https://help.github.com/articles/dealing-with-line-endings/ | ||
# | ||
# Linux start script should use lf | ||
/gradlew text eol=lf | ||
|
||
# These are Windows script files and should use crlf | ||
*.bat text eol=crlf | ||
|
||
# Binary files should be left untouched | ||
*.jar binary |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
# Borrowed from ViaVersion | ||
name: Bug Report | ||
description: Report a bug or console error | ||
labels: [ Unconfirmed ] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
**Before reporting a bug, please see if using master/dev builds from https://modrinth.com/plugin/limboapi/ fixes your issue.** | ||
Whenever you see fit, you can upload images or videos to any of the text fields. | ||
- type: textarea | ||
attributes: | ||
label: "`/velocity dump` Output" | ||
description: | | ||
Run `/velocity dump` in the console or in the chat, then attach produced report file here or upload it to the mclo.gs. | ||
value: | | ||
``` | ||
Attach report file here or put the mclo.gs link or text here. | ||
``` | ||
placeholder: Please do not remove the grave accents; simply replace the line of text in the middle. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Console Error | ||
description: | | ||
If you encounter warnings/errors in your console, **paste them with https://mclo.gs/ and put the paste link here**. | ||
If the error is small/less than 10 lines, you may put it directly into this field. | ||
value: | | ||
``` | ||
Put the mclo.gs link or text here. | ||
``` | ||
placeholder: Please do not remove the grave accents; simply replace the line of text in the middle. | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Bug Description | ||
description: | | ||
Describe the unexpected behavior. | ||
If you want to attach screenshots, use the comment field at the bottom of the page. | ||
placeholder: | | ||
Example: "Changed uuid causes tamed parrots and cats cannot be sat down." | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Steps to Reproduce | ||
description: | | ||
List the steps on how we can reproduce the issue. Make sure we can easily understand what you mean with each step. | ||
placeholder: | | ||
Example: | ||
1. Подключиться к оффлайн серверу с LimboAuth с лицензионного клиента | ||
2. Приручить кота | ||
3. При правом клике кота нельзя посадить | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Expected Behavior | ||
description: | | ||
Describe what exactly you expected to happen. | ||
placeholder: | | ||
Example: "Кот должен сесть." | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Также, может перевести этот текст на английский? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. забыл |
||
validations: | ||
required: true | ||
- type: checkboxes | ||
attributes: | ||
label: Checklist | ||
description: Make sure you have followed each of the steps outlined here. | ||
options: | ||
- label: I have included a Velocity dump. | ||
required: true | ||
- label: If applicable, I have included a paste (**not a screenshot**) of the error. | ||
required: true | ||
- label: I have tried the latest build(s) from https://modrinth.com/plugin/limboapi/ and the issue still persists. | ||
required: true |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Borrowed from ViaVersion | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Dev builds | ||
url: https://modrinth.com/plugin/limboapi/ | ||
about: Before reporting a bug, please check if using master/dev builds from our modrinth page fixes your issue. | ||
- name: Discord | ||
url: https://discord.gg/sxVzYv2dbR | ||
about: For smaller issues or questions, you can also join our Discord server. |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Borrowed from ViaVersion | ||
name: Feature Request | ||
description: Suggest a feature to be added | ||
labels: [ Feature Request ] | ||
|
||
body: | ||
- type: textarea | ||
attributes: | ||
label: Problem Description | ||
description: | | ||
Describe the issue you are facing or why you need the feature to be added. | ||
placeholder: | | ||
I am always frustrated with... | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Solution Description | ||
description: | | ||
Describe the solution you would like to see. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Alternatives | ||
description: | | ||
Describe alternatives you have considered. | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Additional Info | ||
description: | | ||
Does the feature apply to any specific version or environment? | ||
validations: | ||
required: false |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Java CI with Gradle | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
# Only run on PRs if the source branch is on a different repo. We do not need to run everything twice. (From ViaVersion) | ||
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/[email protected] | ||
- name: Setup Java | ||
uses: actions/[email protected] | ||
with: | ||
distribution: temurin | ||
java-version: 17 | ||
- name: Setup Gradle | ||
uses: gradle/actions/[email protected] | ||
- name: Build with Gradle | ||
run: ./gradlew build | ||
- name: Upload a Build Artifact | ||
uses: actions/[email protected] | ||
with: | ||
name: LimboAPI | ||
path: "build/libs/limboapi-*.jar" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Publish to Modrinth | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
publish: | ||
if: github.repository_owner == 'LimboAPI' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/[email protected] | ||
- name: Setup Java | ||
uses: actions/[email protected] | ||
with: | ||
distribution: temurin | ||
java-version: 17 | ||
check-latest: true | ||
- name: Setup Gradle | ||
uses: gradle/actions/[email protected] | ||
- name: Publish | ||
env: | ||
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }} | ||
run: ./gradlew build modrinth |
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Может перевести этот текст на английский?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
потом chatgpt попрошу перевести, как я обычно это и делаю))