-
-
Notifications
You must be signed in to change notification settings - Fork 369
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #330 from glanceapp/release/v0.7.0
Release/v0.7.0
- Loading branch information
Showing
171 changed files
with
8,635 additions
and
4,025 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
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,37 @@ | ||
name: Bug report | ||
description: Let us know if something isn't working as expected | ||
labels: ["bug report"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
> [!NOTE] | ||
> | ||
> Do not prefix your title with "[BUG]", "[Bug report]", etc., a label will be added automatically. | ||
If you're unsure whether you're experiencing a bug or not, consider using the [Discussions](https://github.com/glanceapp/glance/discussions) or [Discord](https://discord.com/invite/7KQ7Xa9kJd) to ask for help. | ||
Please include only the information you think is relevant to the bug: | ||
* How did you install Glance? (Docker container, manual binary install, etc) | ||
* Which version of Glance are you using? | ||
* Include the relevant parts of your `glance.yml` if applicable (widget, data source, properties used, etc) | ||
* Include any relevant logs or screenshots if applicable | ||
* Is the issue specific to a certain browser or OS? | ||
* Steps to reliably reproduce the issue | ||
* Are you hosting Glance on a VPS? | ||
* Anything else you think might be relevant | ||
**No need to copy the above list into your description, it's just a guide to help you provide the most useful information.** | ||
- type: textarea | ||
id: description | ||
validations: | ||
required: true | ||
attributes: | ||
label: Description | ||
|
||
- type: markdown | ||
attributes: | ||
value: | | ||
Thank you for taking the time to submit a bug report. |
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,8 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Discussions | ||
url: https://github.com/glanceapp/glance/discussions | ||
about: For help, feedback, guides, resources and more | ||
- name: Discord | ||
url: https://discord.com/invite/7KQ7Xa9kJd | ||
about: Much like the discussions but more chatty |
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,33 @@ | ||
name: Feature request | ||
description: Share your ideas for new features or improvements | ||
labels: ["feature request"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
> [!NOTE] | ||
> | ||
> Do not prefix your title with "[REQUEST]", "[Feature request]", etc., a label will be added automatically. | ||
Please provide a detailed description of what the feature would do and what it would look like: | ||
* What problem would this feature solve? | ||
* Are there any potential downsides to this feature? | ||
* If applicable, what would the configuration for this feature look like? | ||
* Are there any existing examples of this feature in other software? | ||
* If applicable, include any external documentation required to implement this feature | ||
* Anything else you think might be relevant | ||
**No need to copy the above list into your description, it's just a guide to help you provide the most useful information.** | ||
- type: textarea | ||
id: description | ||
validations: | ||
required: true | ||
attributes: | ||
label: Description | ||
|
||
- type: markdown | ||
attributes: | ||
value: | | ||
Thank you for taking the time to submit your idea. |
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,7 +1 @@ | ||
<!-- | ||
If your pull request adds new features or changes existing ones please use the latest release/* branch as the base. | ||
Documentation updates (including new themes) can be submitted to the main branch. | ||
--> | ||
<!-- If your pull request adds new features, changes existing ones or fixes any bugs, please use the dev branch as the base, otherwise use the main branch --> |
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,4 +1,5 @@ | ||
/assets | ||
/build | ||
/playground | ||
glance*.yml | ||
/.idea | ||
/glance*.yml |
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,13 +1,16 @@ | ||
FROM golang:1.22.5-alpine3.20 AS builder | ||
FROM golang:1.23.6-alpine3.21 AS builder | ||
|
||
WORKDIR /app | ||
COPY . /app | ||
RUN CGO_ENABLED=0 go build . | ||
|
||
FROM alpine:3.20 | ||
FROM alpine:3.21 | ||
|
||
WORKDIR /app | ||
COPY --from=builder /app/glance . | ||
|
||
HEALTHCHECK --timeout=10s --start-period=60s --interval=60s \ | ||
CMD wget --spider -q http://localhost:8080/api/healthz | ||
|
||
EXPOSE 8080/tcp | ||
ENTRYPOINT ["/app/glance"] | ||
ENTRYPOINT ["/app/glance", "--config", "/app/config/glance.yml"] |
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,8 +1,10 @@ | ||
FROM alpine:3.20 | ||
FROM alpine:3.21 | ||
|
||
WORKDIR /app | ||
COPY glance . | ||
|
||
EXPOSE 8080/tcp | ||
HEALTHCHECK --timeout=10s --start-period=60s --interval=60s \ | ||
CMD wget --spider -q http://localhost:8080/api/healthz | ||
|
||
ENTRYPOINT ["/app/glance"] | ||
EXPOSE 8080/tcp | ||
ENTRYPOINT ["/app/glance", "--config", "/app/config/glance.yml"] |
Oops, something went wrong.