-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into QWebEngineView
- Loading branch information
Showing
56 changed files
with
2,627 additions
and
386 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,63 @@ | ||
name: Bug report | ||
description: File a bug/issue | ||
title: "[BUG] <title>" | ||
labels: [bug] | ||
body: | ||
- type: checkboxes | ||
id: low-effort-checks | ||
attributes: | ||
label: Please confirm | ||
description: Issues without all checks may be ignored/closed. | ||
options: | ||
- label: I have searched existing issues | ||
- label: This issue is not a duplicate of an existing one | ||
- label: I have read the [README](https://github.com/KrisCris/Palworld-Pal-Editor?tab=readme-ov-file#palworld-pal-editor) | ||
- label: I have attached logs to this bug report (failure to include logs will mean your issue may not be responded to). | ||
- label: I have checked for both game and editor updates, and understand that issues on older versions may not be resolved. | ||
|
||
- type: textarea | ||
attributes: | ||
label: Bug Report Description | ||
description: A clear and concise description of what the bug is and if possible, the steps you used to get to the bug. If appropriate, include screenshots or videos. | ||
placeholder: | | ||
When I try to use ... | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Expected Behaviour | ||
description: A brief description of the expected behavior. | ||
placeholder: It should be ... | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
attributes: | ||
label: Editor Version | ||
placeholder: "0.8.1" | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
attributes: | ||
label: Game Version | ||
placeholder: "0.3.3" | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Logs | ||
description: Please copy the most recent `.log` file, which is stored right next to the executable. | ||
placeholder: 2024-07-11_15-15-11.log | ||
validations: | ||
required: true | ||
|
||
|
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 |
---|---|---|
|
@@ -4,6 +4,7 @@ on: | |
push: | ||
tags: | ||
- "v*" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
release-build: | ||
|
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 |
---|---|---|
|
@@ -4,6 +4,7 @@ on: | |
push: | ||
tags: | ||
- "v*" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build-and-push-docker-image: | ||
|
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 |
---|---|---|
@@ -1,26 +1,28 @@ | ||
FROM nikolaik/python-nodejs:python3.12-nodejs21-slim | ||
|
||
ENV PATH=/usr/local/nginx/bin:$PATH | ||
EXPOSE $APP_PORT | ||
EXPOSE 58888 | ||
VOLUME [ "/mnt/gamesave" ] | ||
|
||
WORKDIR /app | ||
|
||
RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
tini \ | ||
gosu \ | ||
tzdata \ | ||
&& apt-get clean && rm -rf /var/lib/apt/lists/* | ||
|
||
COPY --chown=pn:pn ./ /app | ||
COPY --chown=pn:pn --chmod=777 ./ /app | ||
|
||
RUN cd "/app/frontend/palworld-pal-editor-webui" \ | ||
&& npm install \ | ||
&& npm run build \ | ||
&& mv "/app/frontend/palworld-pal-editor-webui/dist" "/app/src/palworld_pal_editor/webui" | ||
|
||
RUN pip install --no-cache-dir -r requirements.txt \ | ||
&& pip install -e . | ||
pip install -e . | ||
|
||
RUN chmod +x /app/docker/app.sh | ||
|
||
ENTRYPOINT ["tini", "-g", "--"] | ||
|
||
CMD ["/app/docker/app.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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
Oops, something went wrong.