-
-
Notifications
You must be signed in to change notification settings - Fork 318
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
123 changed files
with
8,664 additions
and
5,859 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: Report LuaLS.github.io issues | ||
url: https://github.com/LuaLS/LuaLS.github.io/issues | ||
about: Please report issues regarding our website (and the documentation on it) in the website repository. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Documentation Report | ||
description: Report an issue with documentation in the lua-language-server. | ||
labels: | ||
- documentation | ||
assignees: | ||
- carsakiller | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: > | ||
For issues with our [website](https://luals.github.io) and its wiki, | ||
please visit the [correct repository](https://github.com/LuaLS/LuaLS.github.io/issues). | ||
- type: markdown | ||
attributes: | ||
value: > | ||
**Please check for similar issues before continuing!** | ||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: Issue Description | ||
description: Please describe the documentation issue. Is something incorrect, missing or improveable? | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: additional-notes | ||
attributes: | ||
label: Additional Notes | ||
description: > | ||
Please provide any additional notes, context, | ||
and media you have. | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thank you very much for helping improve the language server! ❤️ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
CHANGELOG_FILE="changelog.md" | ||
|
||
git fetch origin $GITHUB_BASE_REF | ||
git fetch | ||
|
||
# Check if the changelog file was modified in the PR | ||
if git diff --name-only origin/$GITHUB_BASE_REF..remotes/pull/$GITHUB_SOURCE_REF | grep -q $CHANGELOG_FILE; then | ||
echo "Thank you for updating the changelog!" | ||
exit 0 | ||
else | ||
echo "Changelog has not been updated. Please update $CHANGELOG_FILE!" | ||
exit 1 | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: changelog | ||
|
||
on: | ||
pull_request: | ||
types: [opened, synchronize] | ||
branches: | ||
- master | ||
|
||
jobs: | ||
check-changelog: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up environment | ||
run: | | ||
echo "GITHUB_SOURCE_REF=${{ github.ref_name }}" >> $GITHUB_ENV | ||
echo "GITHUB_BASE_REF=${{ github.base_ref }}" >> $GITHUB_ENV | ||
- name: Check if changelog is updated | ||
run: .github/scripts/check-changelog.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule EmmyLuaCodeStyle
updated
22 files
Submodule love-api
updated
9 files
+11 −14 | .github/workflows/gh-pages.yml | |
+2 −2 | README.md | |
+2 −2 | love_api.lua | |
+49 −0 | modules/graphics/Graphics.lua | |
+3 −1 | modules/graphics/types/Image.lua | |
+6 −0 | modules/graphics/types/Mesh.lua | |
+1 −0 | modules/graphics/types/Texture.lua | |
+19 −0 | modules/image/types/ImageData.lua | |
+4 −14 | modules/physics/types/Fixture.lua |
Submodule luamake
updated
21 files
+1 −1 | bee.lua | |
+31 −30 | compile/ninja/android.ninja | |
+31 −30 | compile/ninja/freebsd.ninja | |
+31 −30 | compile/ninja/linux.ninja | |
+31 −31 | compile/ninja/macos.ninja | |
+59 −46 | compile/ninja/mingw.ninja | |
+61 −48 | compile/ninja/msvc.ninja | |
+34 −33 | compile/ninja/netbsd.ninja | |
+31 −30 | compile/ninja/openbsd.ninja | |
+1 −0 | make.lua | |
+11 −14 | scripts/action.lua | |
+4 −1 | scripts/command/shell.lua | |
+68 −0 | scripts/compiler/wasi.lua | |
+2 −1 | scripts/env/ndk.lua | |
+2 −0 | scripts/env/wasi.lua | |
+1 −1 | scripts/globals.lua | |
+5 −0 | scripts/log.lua | |
+1 −1 | scripts/perf.lua | |
+5 −5 | scripts/sandbox.lua | |
+1 −1 | scripts/version.lua | |
+5 −6 | scripts/writer.lua |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Dockerfile | ||
|
||
FROM ubuntu:18.04 | ||
|
||
# Install necessary packages | ||
RUN apt-get update && \ | ||
apt-get install -y software-properties-common && \ | ||
add-apt-repository -y ppa:ubuntu-toolchain-r/test && \ | ||
add-apt-repository -y ppa:git-core/ppa && \ | ||
apt-get install -y git gcc-9 g++-9 wget tar gzip rsync ninja-build | ||
|
||
# Use alternative gcc | ||
RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 100 && \ | ||
update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-9 100 |
Oops, something went wrong.