diff --git a/.github/workflows/mvn-ci.yml b/.github/workflows/build-ci.yml similarity index 63% rename from .github/workflows/mvn-ci.yml rename to .github/workflows/build-ci.yml index 080d9e9..ab135c7 100644 --- a/.github/workflows/mvn-ci.yml +++ b/.github/workflows/build-ci.yml @@ -1,4 +1,4 @@ -name: MVN-CI +name: Build CI on: push: @@ -12,7 +12,7 @@ on: - 'v*.*.*' jobs: - build: + build-java: runs-on: [ubuntu-24.04] steps: @@ -45,3 +45,28 @@ jobs: with: name: release-to-issue-jar-with-dependencies.jar path: release-to-issue-java/target/release-to-issue-java-*-jar-with-dependencies.jar + + build-docker: + runs-on: [ubuntu-24.04] + needs: [build-java] + + steps: + # Set up + - uses: actions/checkout@v4 + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + # - name: Download executable JAR + # uses: actions/download-artifact@v4 + # with: + # name: release-to-issue-jar-with-dependencies.jar + + # Build Docker image + - name: Build Docker image + uses: docker/build-push-action@v5 + with: + context: . + push: false + tags: maxkratz/release-to-issue + platforms: linux/amd64,linux/arm64 diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..541fa09 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,16 @@ +# Build the application within Docker +FROM maven:3.9.9-eclipse-temurin-21 AS build +WORKDIR /app +COPY release-to-issue-java/pom.xml . +COPY release-to-issue-java/src ./src +RUN mvn clean compile assembly:single -DskipTests + +# Base image and maintainer +FROM openjdk:17 +LABEL maintainer="Max Kratz " + +COPY --from=build /app/target/release-to-issue-java-*-jar-with-dependencies.jar . + +# Copy and define the entrypoint script +COPY entrypoint.sh /entrypoint.sh +ENTRYPOINT ["/entrypoint.sh"] diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..f613240 --- /dev/null +++ b/action.yml @@ -0,0 +1,39 @@ +# action.yml +name: 'Release to issue' +description: 'Create a new issue in your GitHub repository based on new releases of other GitHub repositories.' +inputs: + source-repo: + description: 'Which repo to check for new releases' + required: true + default: 'maxkratz/release-to-issue-docker-action' + target-repo: + description: 'Which repo to check for new releases' + required: true + start-date: + description: 'Date limit to ignore older releases' + required: true + default: '2025-01-01' + assignee-name: + description: 'Which GitHub user should be assigned to newly created issues' + required: true + github-username: + description: 'Which GitHub user should be used to query the GitHub API' + required: true + github-token: + description: 'Which GitHub token should be used to query the GitHub API' + required: true + dry-run: + description: 'If true, the Action will not create any issues but just simulate them' + require: false + default: false +runs: + using: 'docker' + image: 'Dockerfile' + args: + - ${{ inputs.source-repo }} + - ${{ inputs.target-repo }} + - ${{ inputs.start-date }} + - ${{ inputs.assignee-name }} + - ${{ inputs.github-username }} + - ${{ inputs.github-token }} + - ${{ inputs.dry-run }} diff --git a/entrypoint.sh b/entrypoint.sh new file mode 100755 index 0000000..2288c85 --- /dev/null +++ b/entrypoint.sh @@ -0,0 +1,38 @@ +#!/bin/bash + +set -e + +# Give the arguments nice variable names +SOURCE_REPO=$1 +TARGET_REPO=$2 +START_DATE=$3 +ASSIGNEE=$4 +GITHUB_USERNAME=$5 +GITHUB_TOKEN=$6 +DRY_RUN=$7 + +# Output dry run value +if [ -z ${DRY_RUN} ]; then + DRY_RUN=0 +fi +echo "Dry run: $DRY_RUN" + +# Create tmp file with GitHub credentials +echo "login=$GITHUB_USERNAME" > /github.properties +echo "password=$GITHUB_TOKEN" > /github.properties + +# Determin JAR file name +JAR=release-to-issue-java-*-jar-with-dependencies.jar + +# Run Java program +if [ "$DRY_RUN" -eq "1" ]; then + echo "Running dry." + java -jar $JAR --sourcerepo $SOURCE_REPO --targetrepo $TARGET_REPO --datelimit $START_DATE --assignee $ASSIGNEE --dryrun +else + echo "Running wet." + java -jar $JAR --sourcerepo $SOURCE_REPO --targetrepo $TARGET_REPO --datelimit $START_DATE --assignee $ASSIGNEE +fi + +# Delete tmp file with GitHub credentials +rm -f /github.properties +exit 0 diff --git a/release.json b/release.json new file mode 100644 index 0000000..baea856 --- /dev/null +++ b/release.json @@ -0,0 +1,2199 @@ +[ + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/189676094", + "assets_url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/189676094/assets", + "upload_url": "https://uploads.github.com/repos/lectureStudio/lectureStudio/releases/189676094/assets{?name,label}", + "html_url": "https://github.com/lectureStudio/lectureStudio/releases/tag/v6.1.1025", + "id": 189676094, + "author": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "RE_kwDOFNCUy84LTjo-", + "tag_name": "v6.1.1025", + "target_commitish": "main", + "name": "Version 6.1.1025", + "draft": false, + "prerelease": false, + "created_at": "2024-12-03T12:47:02Z", + "published_at": "2024-12-16T12:41:52Z", + "assets": [ + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/212081601", + "id": 212081601, + "node_id": "RA_kwDOFNCUy84MpBvB", + "name": "lectureStudio-6.1.1025-linux-x86_64.zip", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/zip", + "state": "uploaded", + "size": 217302608, + "download_count": 18, + "created_at": "2024-12-09T09:54:32Z", + "updated_at": "2024-12-09T09:55:27Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v6.1.1025/lectureStudio-6.1.1025-linux-x86_64.zip" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/212080996", + "id": 212080996, + "node_id": "RA_kwDOFNCUy84MpBlk", + "name": "lecturestudio-6.1.1025-linux.x86_64.rpm", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/x-rpm", + "state": "uploaded", + "size": 216890340, + "download_count": 5, + "created_at": "2024-12-09T09:52:36Z", + "updated_at": "2024-12-09T09:53:38Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v6.1.1025/lecturestudio-6.1.1025-linux.x86_64.rpm" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/213984418", + "id": 213984418, + "node_id": "RA_kwDOFNCUy84MwSSi", + "name": "lectureStudio-6.1.1025-mac-arm64.pkg", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 207222344, + "download_count": 10, + "created_at": "2024-12-17T16:28:49Z", + "updated_at": "2024-12-17T16:32:31Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v6.1.1025/lectureStudio-6.1.1025-mac-arm64.pkg" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/219528030", + "id": 219528030, + "node_id": "RA_kwDOFNCUy84NFbte", + "name": "lectureStudio-6.1.1025-mac-x86_64.pkg", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 208150140, + "download_count": 4, + "created_at": "2025-01-10T22:40:14Z", + "updated_at": "2025-01-10T22:42:20Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v6.1.1025/lectureStudio-6.1.1025-mac-x86_64.pkg" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/212077000", + "id": 212077000, + "node_id": "RA_kwDOFNCUy84MpAnI", + "name": "lectureStudio-6.1.1025-windows-x86_64.msi", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 221806960, + "download_count": 20, + "created_at": "2024-12-09T09:35:41Z", + "updated_at": "2024-12-09T09:36:54Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v6.1.1025/lectureStudio-6.1.1025-windows-x86_64.msi" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/212081278", + "id": 212081278, + "node_id": "RA_kwDOFNCUy84MpBp-", + "name": "lecturestudio_6.1.1025-linux_amd64.deb", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/vnd.debian.binary-package", + "state": "uploaded", + "size": 197571516, + "download_count": 13, + "created_at": "2024-12-09T09:53:38Z", + "updated_at": "2024-12-09T09:54:32Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v6.1.1025/lecturestudio_6.1.1025-linux_amd64.deb" + } + ], + "tarball_url": "https://api.github.com/repos/lectureStudio/lectureStudio/tarball/v6.1.1025", + "zipball_url": "https://api.github.com/repos/lectureStudio/lectureStudio/zipball/v6.1.1025", + "body": "### Changelog\r\n\r\n#### lecturePresenter\r\n- Added PDFPC time functionalities https://github.com/lectureStudio/lectureStudio/pull/978.\r\n- Added stream service heartbeat https://github.com/lectureStudio/lectureStudio/issues/969.\r\n- Added a screen inhibition config option.\r\n- Fixed ui hanging after opening a document from the command line.\r\n- Fixed slide text sort contract issue causing document render empty slides.\r\n- Fixed speech menu selected indicator https://github.com/lectureStudio/lectureStudio/issues/967.\r\n- Fixed speech positioning https://github.com/lectureStudio/lectureStudio/issues/967.\r\n- Fixed recording state propagation on stream start https://github.com/lectureStudio/lectureStudio/issues/935.\r\n- Fixed restarting minimized windows for sharing https://github.com/lectureStudio/lectureStudio/issues/954.\r\n- Fixed recording path selection https://github.com/lectureStudio/lectureStudio/issues/733.\r\n- Fixed stream and messenger state https://github.com/lectureStudio/lectureStudio/issues/379.\r\n- Fixed menu state for messenger https://github.com/lectureStudio/lectureStudio/issues/379.\r\n- Fixed stopping all screen recordings.\r\n- Show error on record page failure.\r\n\r\n#### lectureEditor\r\n- Fixed audio clicks at the beginning of the recording https://github.com/lectureStudio/lectureStudio/issues/977.\r\n- Fixed PDF slide export https://github.com/lectureStudio/lectureStudio/issues/976.\r\n- Fixed time marker position after splitting https://github.com/lectureStudio/lectureStudio/issues/973.\r\n- Fast video rendering https://github.com/lectureStudio/lectureStudio/pull/944.\r\n- Fixed video seeking by taking a performance hit https://github.com/lectureStudio/lectureStudio/issues/957.\r\n- Slower but precise video seeking https://github.com/lectureStudio/lectureStudio/issues/946.\r\n- Fixed playing paused screen recordings https://github.com/lectureStudio/lectureStudio/issues/948.\r\n- Fixed opening recording files via double click https://github.com/lectureStudio/lectureStudio/issues/945.\r\n- Fixed page image rendering after the end of video.\r\n- Fixed annotation over video rendering.\r\n- Added feature to insert PDF pages.\r\n\r\n#### Project\r\n- Updated dependencies having reported CVEs.\r\n- Fixed macOS builds by using the notarytool." + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/158873044", + "assets_url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/158873044/assets", + "upload_url": "https://uploads.github.com/repos/lectureStudio/lectureStudio/releases/158873044/assets{?name,label}", + "html_url": "https://github.com/lectureStudio/lectureStudio/releases/tag/v6.1.963", + "id": 158873044, + "author": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "RE_kwDOFNCUy84JeDXU", + "tag_name": "v6.1.963", + "target_commitish": "main", + "name": "Version 6.1.963", + "draft": false, + "prerelease": false, + "created_at": "2024-05-28T11:56:06Z", + "published_at": "2024-06-04T20:13:11Z", + "assets": [ + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/171911689", + "id": 171911689, + "node_id": "RA_kwDOFNCUy84KPyoJ", + "name": "lectureStudio-6.1.963-linux-x86_64.zip", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/x-zip-compressed", + "state": "uploaded", + "size": 189238857, + "download_count": 17, + "created_at": "2024-06-04T20:06:07Z", + "updated_at": "2024-06-04T20:07:14Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v6.1.963/lectureStudio-6.1.963-linux-x86_64.zip" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/171912029", + "id": 171912029, + "node_id": "RA_kwDOFNCUy84KPytd", + "name": "lecturestudio-6.1.963-linux.x86_64.rpm", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 188818922, + "download_count": 11, + "created_at": "2024-06-04T20:08:17Z", + "updated_at": "2024-06-04T20:09:50Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v6.1.963/lecturestudio-6.1.963-linux.x86_64.rpm" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/171911248", + "id": 171911248, + "node_id": "RA_kwDOFNCUy84KPyhQ", + "name": "lectureStudio-6.1.963-windows-x86_64.msi", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 192090368, + "download_count": 54, + "created_at": "2024-06-04T20:03:58Z", + "updated_at": "2024-06-04T20:06:07Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v6.1.963/lectureStudio-6.1.963-windows-x86_64.msi" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/171911868", + "id": 171911868, + "node_id": "RA_kwDOFNCUy84KPyq8", + "name": "lecturestudio_6.1.963-linux_amd64.deb", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 169695704, + "download_count": 15, + "created_at": "2024-06-04T20:07:14Z", + "updated_at": "2024-06-04T20:08:17Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v6.1.963/lecturestudio_6.1.963-linux_amd64.deb" + } + ], + "tarball_url": "https://api.github.com/repos/lectureStudio/lectureStudio/tarball/v6.1.963", + "zipball_url": "https://api.github.com/repos/lectureStudio/lectureStudio/zipball/v6.1.963", + "body": "### Changelog\r\n\r\n#### lecturePresenter\r\n* Fixed edited chat message to slide conversion.\r\n* Fixed opening whiteboard via toolbar https://github.com/lectureStudio/lectureStudio/issues/894.\r\n* Fixed slide overlay detection for some slide sets https://github.com/lectureStudio/lectureStudio/issues/889.\r\n* Fixed (disable) focus for tabbed panes.\r\n* Show error notification if a slide could not be recorded https://github.com/lectureStudio/lectureStudio/issues/912.\r\n* Fixed mouse wheel scrolling in the slides view https://github.com/lectureStudio/lectureStudio/issues/916.\r\n* Improved whitespaces in MessageDocument https://github.com/lectureStudio/lectureStudio/issues/903.\r\n* Expand slide notes tab when notes are available https://github.com/lectureStudio/lectureStudio/issues/919.\r\n* Fixed recent documents list size in Linux https://github.com/lectureStudio/lectureStudio/issues/915.\r\n* Fixed text tool and box size.\r\n* Reduced text-box fonts to only embedded ones.\r\n\r\n#### lectureEditor\r\n* Fixed event table flickering https://github.com/lectureStudio/lectureStudio/issues/921.\r\n* Fixed text font issues with custom text on slides https://github.com/lectureStudio/lectureStudio/issues/910.\r\n* Fixed audio render progress precision https://github.com/lectureStudio/lectureStudio/issues/908.\r\n\r\n#### Project\r\n* Provide DEB and RPM packages for Linux distributions.", + "reactions": { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/158873044/reactions", + "total_count": 1, + "+1": 1, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + } + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/142355054", + "assets_url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/142355054/assets", + "upload_url": "https://uploads.github.com/repos/lectureStudio/lectureStudio/releases/142355054/assets{?name,label}", + "html_url": "https://github.com/lectureStudio/lectureStudio/releases/tag/v6.1.920", + "id": 142355054, + "author": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "RE_kwDOFNCUy84IfCpu", + "tag_name": "v6.1.920", + "target_commitish": "main", + "name": "Version 6.1.920", + "draft": false, + "prerelease": false, + "created_at": "2024-02-16T14:22:19Z", + "published_at": "2024-02-16T15:59:33Z", + "assets": [ + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/151940472", + "id": 151940472, + "node_id": "RA_kwDOFNCUy84JDm14", + "name": "lectureStudio-6.1.920-linux-x86_64.zip", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/x-zip-compressed", + "state": "uploaded", + "size": 188710013, + "download_count": 15, + "created_at": "2024-02-16T16:23:30Z", + "updated_at": "2024-02-16T16:24:25Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v6.1.920/lectureStudio-6.1.920-linux-x86_64.zip" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/175162973", + "id": 175162973, + "node_id": "RA_kwDOFNCUy84KcMZd", + "name": "lectureStudio-6.1.920-mac-arm64.pkg", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 180447210, + "download_count": 18, + "created_at": "2024-06-21T16:33:34Z", + "updated_at": "2024-06-21T16:34:22Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v6.1.920/lectureStudio-6.1.920-mac-arm64.pkg" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/151946583", + "id": 151946583, + "node_id": "RA_kwDOFNCUy84JDoVX", + "name": "lectureStudio-6.1.920-mac-x86_64.pkg", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 179044461, + "download_count": 19, + "created_at": "2024-02-16T17:06:52Z", + "updated_at": "2024-02-16T17:08:23Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v6.1.920/lectureStudio-6.1.920-mac-x86_64.pkg" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/151936572", + "id": 151936572, + "node_id": "RA_kwDOFNCUy84JDl48", + "name": "lectureStudio-6.1.920-windows-x86_64.msi", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 191410432, + "download_count": 33, + "created_at": "2024-02-16T16:01:03Z", + "updated_at": "2024-02-16T16:01:48Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v6.1.920/lectureStudio-6.1.920-windows-x86_64.msi" + } + ], + "tarball_url": "https://api.github.com/repos/lectureStudio/lectureStudio/tarball/v6.1.920", + "zipball_url": "https://api.github.com/repos/lectureStudio/lectureStudio/zipball/v6.1.920", + "body": "### Changelog\r\n\r\n#### lecturePresenter\r\n* Added the most relevant features of pdfpc (a GTK-based presentation application).\r\n* Added participant banning from the participant list.\r\n\r\n#### lectureEditor\r\n* Fixed missing slide-view on Linux (#870)\r\n* Fixed deletion of pages by moving page events in the timeline (#864)\r\n\r\n#### Project\r\n* Updated to the latest version of MuPDF (1.23.10).\r\n* Added Apple Silicon native library support.\r\n* Apple Silicon builds will be from now on released for the Mac." + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/134828588", + "assets_url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/134828588/assets", + "upload_url": "https://uploads.github.com/repos/lectureStudio/lectureStudio/releases/134828588/assets{?name,label}", + "html_url": "https://github.com/lectureStudio/lectureStudio/releases/tag/v6.0.912", + "id": 134828588, + "author": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "RE_kwDOFNCUy84ICVIs", + "tag_name": "v6.0.912", + "target_commitish": "main", + "name": "Version 6.0.912", + "draft": false, + "prerelease": false, + "created_at": "2023-12-21T19:42:42Z", + "published_at": "2023-12-21T20:26:23Z", + "assets": [ + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/150778645", + "id": 150778645, + "node_id": "RA_kwDOFNCUy84I_LMV", + "name": "lectureStudio-6.0.912-linux-x86_64.zip", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/x-zip-compressed", + "state": "uploaded", + "size": 163948633, + "download_count": 7, + "created_at": "2024-02-09T21:52:24Z", + "updated_at": "2024-02-09T21:53:15Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v6.0.912/lectureStudio-6.0.912-linux-x86_64.zip" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/141868106", + "id": 141868106, + "node_id": "RA_kwDOFNCUy84IdLxK", + "name": "lectureStudio-6.0.912-mac-x86_64.pkg", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 156054578, + "download_count": 7, + "created_at": "2023-12-21T20:50:01Z", + "updated_at": "2023-12-21T20:50:44Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v6.0.912/lectureStudio-6.0.912-mac-x86_64.pkg" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/141862295", + "id": 141862295, + "node_id": "RA_kwDOFNCUy84IdKWX", + "name": "lectureStudio-6.0.912-windows-x86_64.msi", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 166269216, + "download_count": 33, + "created_at": "2023-12-21T19:54:53Z", + "updated_at": "2023-12-21T19:55:35Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v6.0.912/lectureStudio-6.0.912-windows-x86_64.msi" + } + ], + "tarball_url": "https://api.github.com/repos/lectureStudio/lectureStudio/tarball/v6.0.912", + "zipball_url": "https://api.github.com/repos/lectureStudio/lectureStudio/zipball/v6.0.912", + "body": "### Changelog\r\n\r\n#### lecturePresenter\r\n* Stable screen sharing feature.\r\n* Record screen shares to MP4 videos along the presentation recording.\r\n* Added a participant list for online sessions.\r\n* Added JCEF to view own stream within the app.\r\n* Fixed various issues with text-boxes.\r\n* Fixed various issues with quizzes.\r\n* Fixed notifications for dis-connected audio/video devices.\r\n* Improved establishment of interrupted connections.\r\n\r\n#### lectureEditor\r\n* Added the split recording feature.\r\n* Added the ability to move slide change events without modifying any other parts of the recording.\r\n* Added the ability to replace multiple slides in the recording at once.\r\n* Added the ability to add new annotations, with the same toolbar as in lecturePresenter.\r\n* Audio Loudness Normaliaztion and QoL improvements.\r\n* Fixed rendering issues with various tools.\r\n* Fixed audio device handling.\r\n* Fixed crash on playback of denoised audio.\r\n\r\n#### Project\r\n* Set required Java version to 17." + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/79814528", + "assets_url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/79814528/assets", + "upload_url": "https://uploads.github.com/repos/lectureStudio/lectureStudio/releases/79814528/assets{?name,label}", + "html_url": "https://github.com/lectureStudio/lectureStudio/releases/tag/v5.3.725", + "id": 79814528, + "author": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "RE_kwDOFNCUy84Ewd-A", + "tag_name": "v5.3.725", + "target_commitish": "main", + "name": "Version 5.3.725", + "draft": false, + "prerelease": false, + "created_at": "2022-10-13T16:54:26Z", + "published_at": "2022-10-13T18:42:58Z", + "assets": [ + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/80924883", + "id": 80924883, + "node_id": "RA_kwDOFNCUy84E0tDT", + "name": "lectureStudio-5.3.725-linux-x86_64.zip", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/x-zip-compressed", + "state": "uploaded", + "size": 158116595, + "download_count": 33, + "created_at": "2022-10-13T18:11:26Z", + "updated_at": "2022-10-13T18:34:29Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v5.3.725/lectureStudio-5.3.725-linux-x86_64.zip" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/80927706", + "id": 80927706, + "node_id": "RA_kwDOFNCUy84E0tva", + "name": "lectureStudio-5.3.725-mac-x86_64.pkg", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 149121012, + "download_count": 15, + "created_at": "2022-10-13T18:41:53Z", + "updated_at": "2022-10-13T18:42:55Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v5.3.725/lectureStudio-5.3.725-mac-x86_64.pkg" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/80924301", + "id": 80924301, + "node_id": "RA_kwDOFNCUy84E0s6N", + "name": "lectureStudio-5.3.725-windows-x86_64.msi", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 141804172, + "download_count": 135, + "created_at": "2022-10-13T18:03:24Z", + "updated_at": "2022-10-13T18:05:23Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v5.3.725/lectureStudio-5.3.725-windows-x86_64.msi" + } + ], + "tarball_url": "https://api.github.com/repos/lectureStudio/lectureStudio/tarball/v5.3.725", + "zipball_url": "https://api.github.com/repos/lectureStudio/lectureStudio/zipball/v5.3.725", + "body": "### Changelog\r\n\r\n#### lecturePresenter\r\n* Changed screen-share workflow with multiple document tabs.\r\n* Fixed screen-sharing state between multiple shared sources.\r\n* Fixed stopping running screen-share.", + "reactions": { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/79814528/reactions", + "total_count": 1, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 1, + "eyes": 0 + } + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/79784443", + "assets_url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/79784443/assets", + "upload_url": "https://uploads.github.com/repos/lectureStudio/lectureStudio/releases/79784443/assets{?name,label}", + "html_url": "https://github.com/lectureStudio/lectureStudio/releases/tag/v5.3.720", + "id": 79784443, + "author": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "RE_kwDOFNCUy84EwWn7", + "tag_name": "v5.3.720", + "target_commitish": "main", + "name": "", + "draft": false, + "prerelease": true, + "created_at": "2022-10-12T06:54:55Z", + "published_at": "2022-10-13T14:04:26Z", + "assets": [ + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/80900910", + "id": 80900910, + "node_id": "RA_kwDOFNCUy84E0nMu", + "name": "lectureStudio-5.3.720-windows-x86_64.msi", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 141804172, + "download_count": 13, + "created_at": "2022-10-13T14:02:16Z", + "updated_at": "2022-10-13T14:04:17Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v5.3.720/lectureStudio-5.3.720-windows-x86_64.msi" + } + ], + "tarball_url": "https://api.github.com/repos/lectureStudio/lectureStudio/tarball/v5.3.720", + "zipball_url": "https://api.github.com/repos/lectureStudio/lectureStudio/zipball/v5.3.720", + "body": "### Changelog\r\n\r\n#### lecturePresenter\r\n* Changed screen-share workflow with multiple document tabs.\r\n* Fixed screen-sharing state between multiple shared sources." + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/78068662", + "assets_url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/78068662/assets", + "upload_url": "https://uploads.github.com/repos/lectureStudio/lectureStudio/releases/78068662/assets{?name,label}", + "html_url": "https://github.com/lectureStudio/lectureStudio/releases/tag/v5.3.710", + "id": 78068662, + "author": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "RE_kwDOFNCUy84Epzu2", + "tag_name": "v5.3.710", + "target_commitish": "feature/chat-next", + "name": "Version 5.3.710", + "draft": false, + "prerelease": false, + "created_at": "2022-09-25T09:55:34Z", + "published_at": "2022-09-26T18:59:33Z", + "assets": [ + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/78950248", + "id": 78950248, + "node_id": "RA_kwDOFNCUy84EtK9o", + "name": "lectureStudio-5.3.710-linux-x86_64.zip", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/x-zip-compressed", + "state": "uploaded", + "size": 159832435, + "download_count": 42, + "created_at": "2022-09-25T10:46:11Z", + "updated_at": "2022-09-25T11:10:43Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v5.3.710/lectureStudio-5.3.710-linux-x86_64.zip" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/78954692", + "id": 78954692, + "node_id": "RA_kwDOFNCUy84EtMDE", + "name": "lectureStudio-5.3.710-mac-x86_64.pkg", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 149100447, + "download_count": 22, + "created_at": "2022-09-25T12:03:07Z", + "updated_at": "2022-09-25T12:46:22Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v5.3.710/lectureStudio-5.3.710-mac-x86_64.pkg" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/78948864", + "id": 78948864, + "node_id": "RA_kwDOFNCUy84EtKoA", + "name": "lectureStudio-5.3.710-windows-x86_64.msi", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 141869708, + "download_count": 94, + "created_at": "2022-09-25T10:14:40Z", + "updated_at": "2022-09-25T10:46:04Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v5.3.710/lectureStudio-5.3.710-windows-x86_64.msi" + } + ], + "tarball_url": "https://api.github.com/repos/lectureStudio/lectureStudio/tarball/v5.3.710", + "zipball_url": "https://api.github.com/repos/lectureStudio/lectureStudio/zipball/v5.3.710", + "body": "### Changelog\r\n\r\n#### lecturePresenter\r\n* Added screen-sharing.\r\n* Added stream participants list.\r\n* Send chat messages to all participants.\r\n* Receive private chat messages.\r\n\r\n#### lectureEditor\r\n* Fixed import of recordings with a different audio format.", + "reactions": { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/78068662/reactions", + "total_count": 1, + "+1": 1, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + } + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/69548762", + "assets_url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/69548762/assets", + "upload_url": "https://uploads.github.com/repos/lectureStudio/lectureStudio/releases/69548762/assets{?name,label}", + "html_url": "https://github.com/lectureStudio/lectureStudio/releases/tag/v5.1.660", + "id": 69548762, + "author": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "RE_kwDOFNCUy84EJTra", + "tag_name": "v5.1.660", + "target_commitish": "main", + "name": "Version 5.1.660", + "draft": false, + "prerelease": false, + "created_at": "2022-06-15T16:37:03Z", + "published_at": "2022-06-15T18:25:18Z", + "assets": [ + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/68962374", + "id": 68962374, + "node_id": "RA_kwDOFNCUy84EHEhG", + "name": "lectureStudio-5.1.660-linux-x86_64.zip", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/x-zip-compressed", + "state": "uploaded", + "size": 147839443, + "download_count": 32, + "created_at": "2022-06-19T20:22:55Z", + "updated_at": "2022-06-19T20:25:05Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v5.1.660/lectureStudio-5.1.660-linux-x86_64.zip" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/68588883", + "id": 68588883, + "node_id": "RA_kwDOFNCUy84EFpVT", + "name": "lectureStudio-5.1.660-mac-x86_64.pkg", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 138886551, + "download_count": 18, + "created_at": "2022-06-15T18:24:06Z", + "updated_at": "2022-06-15T18:24:54Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v5.1.660/lectureStudio-5.1.660-mac-x86_64.pkg" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/68961694", + "id": 68961694, + "node_id": "RA_kwDOFNCUy84EHEWe", + "name": "lectureStudio-5.1.660-windows-x86_64.msi", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 131572068, + "download_count": 53, + "created_at": "2022-06-19T20:11:39Z", + "updated_at": "2022-06-19T20:13:29Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v5.1.660/lectureStudio-5.1.660-windows-x86_64.msi" + } + ], + "tarball_url": "https://api.github.com/repos/lectureStudio/lectureStudio/tarball/v5.1.660", + "zipball_url": "https://api.github.com/repos/lectureStudio/lectureStudio/zipball/v5.1.660", + "body": "### Changelog\r\n\r\n#### lecturePresenter\r\n* 🆕 Select PDF document templates for whiteboards, quizzes and message slides.\r\n* Changed quiz file storage format which fixed multiple quiz format related bugs.\r\n* Simplified, removed old and unsupported settings.\r\n* Fixed page removal with whiteboards.\r\n* Added device selection dialog prior starting a recording.\r\n* Fixed Linux build for older (e.g. Ubuntu 16.04) systems.\r\n* Closed memory leak while recording.\r\n\r\n#### lectureEditor\r\n* Reintroduced deletion of single actions without markers.\r\n* Faster waveform generation.\r\n* Increased zoom level for the waveform.\r\n* Fixed rendering issues with the timeline.\r\n* Fixed zoomed view-port rendering." + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/63528701", + "assets_url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/63528701/assets", + "upload_url": "https://uploads.github.com/repos/lectureStudio/lectureStudio/releases/63528701/assets{?name,label}", + "html_url": "https://github.com/lectureStudio/lectureStudio/releases/tag/v5.1.555", + "id": 63528701, + "author": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "RE_kwDOFNCUy84DyV79", + "tag_name": "v5.1.555", + "target_commitish": "main", + "name": "Version 5.1.555", + "draft": false, + "prerelease": false, + "created_at": "2022-04-04T13:50:46Z", + "published_at": "2022-04-04T14:32:13Z", + "assets": [ + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/61511312", + "id": 61511312, + "node_id": "RA_kwDOFNCUy84DqpaQ", + "name": "lectureStudio-5.1.555-linux-x86_64.zip", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/x-zip-compressed", + "state": "uploaded", + "size": 146774756, + "download_count": 27, + "created_at": "2022-04-04T14:20:27Z", + "updated_at": "2022-04-04T14:20:59Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v5.1.555/lectureStudio-5.1.555-linux-x86_64.zip" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/61511247", + "id": 61511247, + "node_id": "RA_kwDOFNCUy84DqpZP", + "name": "lectureStudio-5.1.555-mac-x86_64.pkg", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 136056645, + "download_count": 19, + "created_at": "2022-04-04T14:19:50Z", + "updated_at": "2022-04-04T14:20:27Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v5.1.555/lectureStudio-5.1.555-mac-x86_64.pkg" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/61511338", + "id": 61511338, + "node_id": "RA_kwDOFNCUy84Dqpaq", + "name": "lectureStudio-5.1.555-windows-x86_64.msi", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 128741684, + "download_count": 68, + "created_at": "2022-04-04T14:20:59Z", + "updated_at": "2022-04-04T14:21:27Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v5.1.555/lectureStudio-5.1.555-windows-x86_64.msi" + } + ], + "tarball_url": "https://api.github.com/repos/lectureStudio/lectureStudio/tarball/v5.1.555", + "zipball_url": "https://api.github.com/repos/lectureStudio/lectureStudio/zipball/v5.1.555", + "body": "### Changelog\r\n\r\n#### lecturePresenter\r\n* Removed save quiz results menu item. Quiz results still can be saved via document export.\r\n* Preserve compatibility to old configs.\r\n* Configurable streaming server name in stream settings.\r\n* Fixed drag and drop of toolbar-buttons that now render the icon dragged into the toolbar on Linux systems.\r\n* Fixed package version number on Linux systems.\r\n* Fixed starting a stream without any connected cameras on Linux.\r\n\r\n#### lectureEditor\r\n* Fixed STA vs. MTA issue which blocked the usage of audio playback devices on some systems.\r\n", + "reactions": { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/63528701/reactions", + "total_count": 1, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 1, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + } + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/62917921", + "assets_url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/62917921/assets", + "upload_url": "https://uploads.github.com/repos/lectureStudio/lectureStudio/releases/62917921/assets{?name,label}", + "html_url": "https://github.com/lectureStudio/lectureStudio/releases/tag/v5.1.544", + "id": 62917921, + "author": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "RE_kwDOFNCUy84DwA0h", + "tag_name": "v5.1.544", + "target_commitish": "main", + "name": "Version 5.1.544", + "draft": false, + "prerelease": false, + "created_at": "2022-03-28T07:51:46Z", + "published_at": "2022-03-28T13:11:11Z", + "assets": [ + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/60830930", + "id": 60830930, + "node_id": "RA_kwDOFNCUy84DoDTS", + "name": "lectureStudio-5.1.544-linux-x86_64.zip", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/x-zip-compressed", + "state": "uploaded", + "size": 146796087, + "download_count": 17, + "created_at": "2022-03-28T13:08:43Z", + "updated_at": "2022-03-28T13:10:47Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v5.1.544/lectureStudio-5.1.544-linux-x86_64.zip" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/60828951", + "id": 60828951, + "node_id": "RA_kwDOFNCUy84DoC0X", + "name": "lectureStudio-5.1.544-mac-x86_64.pkg", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 136077851, + "download_count": 23, + "created_at": "2022-03-28T12:48:44Z", + "updated_at": "2022-03-28T13:08:43Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v5.1.544/lectureStudio-5.1.544-mac-x86_64.pkg" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/60827397", + "id": 60827397, + "node_id": "RA_kwDOFNCUy84DoCcF", + "name": "lectureStudio-5.1.544-windows-x86_64.msi", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 128766260, + "download_count": 28, + "created_at": "2022-03-28T12:30:12Z", + "updated_at": "2022-03-28T12:48:44Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v5.1.544/lectureStudio-5.1.544-windows-x86_64.msi" + } + ], + "tarball_url": "https://api.github.com/repos/lectureStudio/lectureStudio/tarball/v5.1.544", + "zipball_url": "https://api.github.com/repos/lectureStudio/lectureStudio/zipball/v5.1.544", + "body": "### Changelog\r\n\r\n#### lecturePresenter\r\n* Fixed and improved many quiz related issues (handling, rendering, etc.).\r\n* Introduced new multi-screen layout options for the main view.\r\n * Create external windows for messages, speech, and slide preview.\r\n* Change position of tabs in the main view.\r\n* Show received text messages on slides that can be recorded and shared via stream.\r\n* Improved local camera image quality.\r\n* Improved stream event handling.\r\n* Quality based selection of camera stream profiles.\r\n\r\n#### lectureEditor\r\n* Fixed audio playback device selection when device is gone.\r\n* Fixed rare cases of cutting tool events.\r\n\r\n#### All apps\r\n* Updated dependencies that have security issues fixed.\r\n\r\n### Known Bugs :construction:\r\n* Drag and drop of toolbar-buttons does not render the icon of the button dragged into the toolbar on some Linux systems.\r\n" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/57301972", + "assets_url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/57301972/assets", + "upload_url": "https://uploads.github.com/repos/lectureStudio/lectureStudio/releases/57301972/assets{?name,label}", + "html_url": "https://github.com/lectureStudio/lectureStudio/releases/tag/v5.0.438", + "id": 57301972, + "author": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "RE_kwDOFNCUy84DalvU", + "tag_name": "v5.0.438", + "target_commitish": "main", + "name": "Version 5.0.438", + "draft": false, + "prerelease": false, + "created_at": "2022-01-17T14:37:09Z", + "published_at": "2022-01-17T18:48:46Z", + "assets": [ + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/54200801", + "id": 54200801, + "node_id": "RA_kwDOFNCUy84DOwnh", + "name": "lectureStudio-5.0.438-linux-x86_64.zip", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/zip", + "state": "uploaded", + "size": 192635494, + "download_count": 17, + "created_at": "2022-01-17T16:16:15Z", + "updated_at": "2022-01-17T16:17:50Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v5.0.438/lectureStudio-5.0.438-linux-x86_64.zip" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/54198750", + "id": 54198750, + "node_id": "RA_kwDOFNCUy84DOwHe", + "name": "lectureStudio-5.0.438-mac-x86_64.pkg", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 178670915, + "download_count": 15, + "created_at": "2022-01-17T15:47:26Z", + "updated_at": "2022-01-17T15:48:29Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v5.0.438/lectureStudio-5.0.438-mac-x86_64.pkg" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/54198600", + "id": 54198600, + "node_id": "RA_kwDOFNCUy84DOwFI", + "name": "lectureStudio-5.0.438-windows-x86_64.msi", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 165828543, + "download_count": 34, + "created_at": "2022-01-17T15:44:26Z", + "updated_at": "2022-01-17T15:47:10Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v5.0.438/lectureStudio-5.0.438-windows-x86_64.msi" + } + ], + "tarball_url": "https://api.github.com/repos/lectureStudio/lectureStudio/tarball/v5.0.438", + "zipball_url": "https://api.github.com/repos/lectureStudio/lectureStudio/zipball/v5.0.438", + "body": "### Changelog\r\n\r\n#### New WebRTC based streaming\r\nVisit the [streaming portal](https://lecturestudio.dek.e-technik.tu-darmstadt.de) to setup your course you want to stream (**members of TU Darmstadt only**). On the website you will find the manual (currently in German) how to stream and attend your course.\r\n\r\n#### lecturePresenter\r\n* Customizable toolbar.\r\n* Added new buttons to the toolbar: previous/next slide, start stream, start quiz, (un)mute microphone and camera for the stream.\r\n* Improved audio recording quality: new audio system implementation with high-pass filter, echo cancellation and noise suppression.\r\n* Select best native camera format for selected aspect ratio.\r\n* Integrated quizzes into streamed courses, including presenting quiz results.\r\n* Fixed stylus drawing in fullscreen mode.\r\n* Fixed text-field input conflict with some shortcuts.\r\n* Fixed close PDF document and saving this document afterwards.\r\n* Block quiz-slide selection until the quiz is closed.\r\n* Simplified settings.\r\n\r\n#### lectureEditor\r\n* Fixed rare UI render issues on some platforms.\r\n* Fixed cutting annotations which manipulate the view state.\r\n\r\n#### All apps\r\n* Append app version to app logs.\r\n\r\n### Known Bugs :construction:\r\n* Drag and drop of toolbar-buttons does not render the icon of the button dragged into the toolbar on some Linux systems.\r\n\r\n" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/44207215", + "assets_url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/44207215/assets", + "upload_url": "https://uploads.github.com/repos/lectureStudio/lectureStudio/releases/44207215/assets{?name,label}", + "html_url": "https://github.com/lectureStudio/lectureStudio/releases/tag/v4.4.170", + "id": 44207215, + "author": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "MDc6UmVsZWFzZTQ0MjA3MjE1", + "tag_name": "v4.4.170", + "target_commitish": "main", + "name": "Version 4.4.170", + "draft": false, + "prerelease": false, + "created_at": "2021-06-07T12:06:01Z", + "published_at": "2021-06-07T14:10:07Z", + "assets": [ + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/38220114", + "id": 38220114, + "node_id": "MDEyOlJlbGVhc2VBc3NldDM4MjIwMTE0", + "name": "lectureStudio-4.4.170-linux-x86_64.zip", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/zip", + "state": "uploaded", + "size": 192759444, + "download_count": 33, + "created_at": "2021-06-07T19:13:30Z", + "updated_at": "2021-06-07T19:19:12Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v4.4.170/lectureStudio-4.4.170-linux-x86_64.zip" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/38219875", + "id": 38219875, + "node_id": "MDEyOlJlbGVhc2VBc3NldDM4MjE5ODc1", + "name": "lectureStudio-4.4.170-mac-x86_64.pkg", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 172872951, + "download_count": 15, + "created_at": "2021-06-07T19:08:06Z", + "updated_at": "2021-06-07T19:13:03Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v4.4.170/lectureStudio-4.4.170-mac-x86_64.pkg" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/38207335", + "id": 38207335, + "node_id": "MDEyOlJlbGVhc2VBc3NldDM4MjA3MzM1", + "name": "lectureStudio-4.4.170-windows-x86_64.msi", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 167100404, + "download_count": 45, + "created_at": "2021-06-07T14:46:33Z", + "updated_at": "2021-06-07T14:51:55Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v4.4.170/lectureStudio-4.4.170-windows-x86_64.msi" + } + ], + "tarball_url": "https://api.github.com/repos/lectureStudio/lectureStudio/tarball/v4.4.170", + "zipball_url": "https://api.github.com/repos/lectureStudio/lectureStudio/zipball/v4.4.170", + "body": "### Changelog\r\n#### lecturePresenter\r\n* Fixed camera preview in camera settings.\r\n* Fixed recording quiz slides.\r\n* Fixed recording of PDF slides.\r\n* Fixed saving recording name with combination of whiteboards.\r\n* Introduced broadcast profiles in live stream settings.\r\n* Minor UI state fixes.\r\n\r\n#### lectureEditor\r\n* Fixed rendering of the main slide view.\r\n* Fixed default path when saving the changed recording.\r\n* Show document preview in it's final playback state.\r\n* Show document preview in it's final playback state in video export\r\n\r\n#### lectureBroadcaster\r\n* Switched to a more efficient and faster Quarkus implementation.\r\n\r\n#### Web services\r\n* Improved security with rolling certificates.\r\n* Fixed starting quizzes without to stop the previous one.\r\n\r\n#### All apps\r\n* New version checking that will show a notification if a new version of lectureStudio is available (**to receive notifications please make sure that the corresponding setting is activated in the general settings of the app**).\r\n" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/42270247", + "assets_url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/42270247/assets", + "upload_url": "https://uploads.github.com/repos/lectureStudio/lectureStudio/releases/42270247/assets{?name,label}", + "html_url": "https://github.com/lectureStudio/lectureStudio/releases/tag/v4.4.96", + "id": 42270247, + "author": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "MDc6UmVsZWFzZTQyMjcwMjQ3", + "tag_name": "v4.4.96", + "target_commitish": "main", + "name": "Version 4.4.96", + "draft": false, + "prerelease": false, + "created_at": "2021-04-30T11:35:52Z", + "published_at": "2021-04-30T15:29:28Z", + "assets": [ + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/36114122", + "id": 36114122, + "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MTE0MTIy", + "name": "lectureStudio-4.4.96-linux-x86_64.zip", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/x-zip-compressed", + "state": "uploaded", + "size": 163115505, + "download_count": 18, + "created_at": "2021-04-30T14:50:56Z", + "updated_at": "2021-04-30T14:55:47Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v4.4.96/lectureStudio-4.4.96-linux-x86_64.zip" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/36116582", + "id": 36116582, + "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MTE2NTgy", + "name": "lectureStudio-4.4.96-mac-x86_64.pkg", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 154424433, + "download_count": 18, + "created_at": "2021-04-30T15:24:47Z", + "updated_at": "2021-04-30T15:29:09Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v4.4.96/lectureStudio-4.4.96-mac-x86_64.pkg" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/36114930", + "id": 36114930, + "node_id": "MDEyOlJlbGVhc2VBc3NldDM2MTE0OTMw", + "name": "lectureStudio-4.4.96-windows-x86_64.msi", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 147357968, + "download_count": 34, + "created_at": "2021-04-30T14:57:39Z", + "updated_at": "2021-04-30T15:01:49Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v4.4.96/lectureStudio-4.4.96-windows-x86_64.msi" + } + ], + "tarball_url": "https://api.github.com/repos/lectureStudio/lectureStudio/tarball/v4.4.96", + "zipball_url": "https://api.github.com/repos/lectureStudio/lectureStudio/zipball/v4.4.96", + "body": "### Changelog\r\n#### lecturePresenter\r\n* Fixed microphone settings (adjustment and recording test)\r\n* Fixed recorded slides to PDF export (annotation positions, blending mode and extended/zoomed view)\r\n* Fixed scaling of recorded pointer and zoom-rectangle\r\n* Simplified slides to PDF export view (less user interaction required)\r\n* Option for full screen mode in general settings\r\n\r\n#### lectureEditor\r\n* Simplified recording export options (HTML video player automatically created with the compressed video)\r\n* Fixed rendering of text annotations\r\n* Fixed inconsistencies with multiple deletions\r\n* Shrink selection and glue selection sliders to the main slider\r\n* **New feature:** save document to PDF (File - Save document)\r\n* **New feature:** replace selected pages with new ones\r\n* **New feature (alpha stage):** in-/decrease volume in selected areas\r\n\r\n\r\n\r\n#### lecturePlayer (Web)\r\n* Fixed annotation rendering in preview slides\r\n* Improved pointer appearance\r\n\r\n#### All apps\r\n* Fixed language setting\r\n* Added notification that a restart of the app is required to take effect of the language setting\r\n* Added 'Info' tab to about view\r\n* Stabilized Linux and macOS versions\r\n* Save and re-use the recently used directory when opening/saving files\r\n" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/41631676", + "assets_url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/41631676/assets", + "upload_url": "https://uploads.github.com/repos/lectureStudio/lectureStudio/releases/41631676/assets{?name,label}", + "html_url": "https://github.com/lectureStudio/lectureStudio/releases/tag/v4.4.71", + "id": 41631676, + "author": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "node_id": "MDc6UmVsZWFzZTQxNjMxNjc2", + "tag_name": "v4.4.71", + "target_commitish": "main", + "name": "Version 4.4.71", + "draft": false, + "prerelease": false, + "created_at": "2021-04-18T18:10:34Z", + "published_at": "2021-04-19T10:06:47Z", + "assets": [ + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/35371667", + "id": 35371667, + "node_id": "MDEyOlJlbGVhc2VBc3NldDM1MzcxNjY3", + "name": "lectureStudio-4.4.71-linux-x86_64.zip", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/x-zip-compressed", + "state": "uploaded", + "size": 167404421, + "download_count": 9, + "created_at": "2021-04-19T09:19:03Z", + "updated_at": "2021-04-19T09:23:46Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v4.4.71/lectureStudio-4.4.71-linux-x86_64.zip" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/35372960", + "id": 35372960, + "node_id": "MDEyOlJlbGVhc2VBc3NldDM1MzcyOTYw", + "name": "lectureStudio-4.4.71-mac-x86_64.pkg", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 154398516, + "download_count": 9, + "created_at": "2021-04-19T09:36:27Z", + "updated_at": "2021-04-19T09:40:47Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v4.4.71/lectureStudio-4.4.71-mac-x86_64.pkg" + }, + { + "url": "https://api.github.com/repos/lectureStudio/lectureStudio/releases/assets/35372429", + "id": 35372429, + "node_id": "MDEyOlJlbGVhc2VBc3NldDM1MzcyNDI5", + "name": "lectureStudio-4.4.71-windows-x86_64.msi", + "label": null, + "uploader": { + "login": "devopvoid", + "id": 58339654, + "node_id": "MDQ6VXNlcjU4MzM5NjU0", + "avatar_url": "https://avatars.githubusercontent.com/u/58339654?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/devopvoid", + "html_url": "https://github.com/devopvoid", + "followers_url": "https://api.github.com/users/devopvoid/followers", + "following_url": "https://api.github.com/users/devopvoid/following{/other_user}", + "gists_url": "https://api.github.com/users/devopvoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/devopvoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/devopvoid/subscriptions", + "organizations_url": "https://api.github.com/users/devopvoid/orgs", + "repos_url": "https://api.github.com/users/devopvoid/repos", + "events_url": "https://api.github.com/users/devopvoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/devopvoid/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 147333392, + "download_count": 14, + "created_at": "2021-04-19T09:27:52Z", + "updated_at": "2021-04-19T09:31:59Z", + "browser_download_url": "https://github.com/lectureStudio/lectureStudio/releases/download/v4.4.71/lectureStudio-4.4.71-windows-x86_64.msi" + } + ], + "tarball_url": "https://api.github.com/repos/lectureStudio/lectureStudio/tarball/v4.4.71", + "zipball_url": "https://api.github.com/repos/lectureStudio/lectureStudio/zipball/v4.4.71", + "body": "### Changelog\r\n#### lecturePresenter\r\n* Fixed microphone settings (adjustment and recording test)\r\n* Fixed recorded slides to PDF export (annotation positions, blending mode and extended/zoomed view)\r\n* Fixed scaling of recorded pointer and zoom-rectangle\r\n* Simplified slides to PDF export view (less user interaction required)\r\n* Option for full screen mode in general settings\r\n\r\n#### lectureEditor\r\n* Simplified recording export options (HTML video player automatically created with the compressed video)\r\n* Fixed rendering of text annotations\r\n\r\n#### lecturePlayer (Web)\r\n* Fixed annotation rendering in preview slides\r\n* Improved pointer appearance\r\n\r\n#### All apps\r\n* Fixed language setting\r\n* Added notification that a restart of the app is required to take effect of the language setting\r\n* Added 'Info' tab to about view\r\n* Stabilized Linux and macOS versions\r\n* Save and re-use the recently used directory when opening/saving files\r\n\r\n#### WIP\r\n- [ ] #21 lectureEditor: Slider positions of the volume change area are not recalculated when deleting / pasting\r\n- [ ] #27 lectureEditor: Inconsitencies with multiple deletions\r\n- [ ] #43 lecturePresenter: The default directory for the save dialog of PDF is always 'user.home'" + } +] diff --git a/test.json b/test.json new file mode 100644 index 0000000..3277a29 --- /dev/null +++ b/test.json @@ -0,0 +1,4301 @@ +[ + { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/65", + "repository_url": "https://api.github.com/repos/maxkratz/docker_texlive", + "labels_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/65/labels{/name}", + "comments_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/65/comments", + "events_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/65/events", + "html_url": "https://github.com/maxkratz/docker_texlive/pull/65", + "id": 2905267391, + "node_id": "PR_kwDOFWkNFM6N5Exw", + "number": 65, + "title": "Adds TeX Live 2025", + "user": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 2925625351, + "node_id": "MDU6TGFiZWwyOTI1NjI1MzUx", + "url": "https://api.github.com/repos/maxkratz/docker_texlive/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2025-03-09T07:51:21Z", + "updated_at": "2025-03-10T12:31:24Z", + "closed_at": "2025-03-10T12:31:22Z", + "author_association": "OWNER", + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/pulls/65", + "html_url": "https://github.com/maxkratz/docker_texlive/pull/65", + "diff_url": "https://github.com/maxkratz/docker_texlive/pull/65.diff", + "patch_url": "https://github.com/maxkratz/docker_texlive/pull/65.patch", + "merged_at": "2025-03-10T12:31:22Z" + }, + "body": "Closes #40.", + "closed_by": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "reactions": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/65/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/65/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/64", + "repository_url": "https://api.github.com/repos/maxkratz/docker_texlive", + "labels_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/64/labels{/name}", + "comments_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/64/comments", + "events_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/64/events", + "html_url": "https://github.com/maxkratz/docker_texlive/pull/64", + "id": 2878006340, + "node_id": "PR_kwDOFWkNFM6Mczsx", + "number": 64, + "title": "Updates Gradle to v8.13.0", + "user": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 2925625351, + "node_id": "MDU6TGFiZWwyOTI1NjI1MzUx", + "url": "https://api.github.com/repos/maxkratz/docker_texlive/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2025-02-25T10:58:41Z", + "updated_at": "2025-02-26T06:25:01Z", + "closed_at": "2025-02-26T06:24:59Z", + "author_association": "OWNER", + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/pulls/64", + "html_url": "https://github.com/maxkratz/docker_texlive/pull/64", + "diff_url": "https://github.com/maxkratz/docker_texlive/pull/64.diff", + "patch_url": "https://github.com/maxkratz/docker_texlive/pull/64.patch", + "merged_at": "2025-02-26T06:24:58Z" + }, + "body": "Closes #63.", + "closed_by": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "reactions": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/64/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/64/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/63", + "repository_url": "https://api.github.com/repos/maxkratz/docker_texlive", + "labels_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/63/labels{/name}", + "comments_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/63/comments", + "events_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/63/events", + "html_url": "https://github.com/maxkratz/docker_texlive/issues/63", + "id": 2877984051, + "node_id": "I_kwDOFWkNFM6rio0z", + "number": 63, + "title": "Update Gradle to v8.13.0", + "user": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 2925625351, + "node_id": "MDU6TGFiZWwyOTI1NjI1MzUx", + "url": "https://api.github.com/repos/maxkratz/docker_texlive/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2025-02-25T10:50:36Z", + "updated_at": "2025-02-26T06:24:59Z", + "closed_at": "2025-02-26T06:24:59Z", + "author_association": "OWNER", + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "active_lock_reason": null, + "body": "- GitHub release: https://github.com/gradle/gradle/releases/tag/v8.13.0", + "closed_by": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "reactions": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/63/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/63/timeline", + "performed_via_github_app": null, + "state_reason": "completed" + }, + { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/62", + "repository_url": "https://api.github.com/repos/maxkratz/docker_texlive", + "labels_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/62/labels{/name}", + "comments_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/62/comments", + "events_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/62/events", + "html_url": "https://github.com/maxkratz/docker_texlive/pull/62", + "id": 2809619350, + "node_id": "PR_kwDOFWkNFM6I6HER", + "number": 62, + "title": "Updates Gradle to v8.12.1", + "user": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 2925625351, + "node_id": "MDU6TGFiZWwyOTI1NjI1MzUx", + "url": "https://api.github.com/repos/maxkratz/docker_texlive/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2025-01-24T14:39:52Z", + "updated_at": "2025-01-25T08:41:24Z", + "closed_at": "2025-01-25T08:41:21Z", + "author_association": "OWNER", + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/pulls/62", + "html_url": "https://github.com/maxkratz/docker_texlive/pull/62", + "diff_url": "https://github.com/maxkratz/docker_texlive/pull/62.diff", + "patch_url": "https://github.com/maxkratz/docker_texlive/pull/62.patch", + "merged_at": "2025-01-25T08:41:21Z" + }, + "body": "Closes #61.", + "closed_by": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "reactions": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/62/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/62/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/61", + "repository_url": "https://api.github.com/repos/maxkratz/docker_texlive", + "labels_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/61/labels{/name}", + "comments_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/61/comments", + "events_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/61/events", + "html_url": "https://github.com/maxkratz/docker_texlive/issues/61", + "id": 2809595997, + "node_id": "I_kwDOFWkNFM6ndwhd", + "number": 61, + "title": "Update Gradle to v8.12.1", + "user": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 2925625351, + "node_id": "MDU6TGFiZWwyOTI1NjI1MzUx", + "url": "https://api.github.com/repos/maxkratz/docker_texlive/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2025-01-24T14:29:41Z", + "updated_at": "2025-01-25T08:41:22Z", + "closed_at": "2025-01-25T08:41:22Z", + "author_association": "OWNER", + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "active_lock_reason": null, + "body": "- GitHub release: https://github.com/gradle/gradle/releases/tag/v8.12.1", + "closed_by": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "reactions": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/61/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/61/timeline", + "performed_via_github_app": null, + "state_reason": "completed" + }, + { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/60", + "repository_url": "https://api.github.com/repos/maxkratz/docker_texlive", + "labels_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/60/labels{/name}", + "comments_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/60/comments", + "events_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/60/events", + "html_url": "https://github.com/maxkratz/docker_texlive/pull/60", + "id": 2753810137, + "node_id": "PR_kwDOFWkNFM6F-Jfj", + "number": 60, + "title": "Updates Gradle to v8.12.0", + "user": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 2925625351, + "node_id": "MDU6TGFiZWwyOTI1NjI1MzUx", + "url": "https://api.github.com/repos/maxkratz/docker_texlive/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2024-12-21T06:51:13Z", + "updated_at": "2024-12-22T08:50:53Z", + "closed_at": "2024-12-22T08:50:51Z", + "author_association": "OWNER", + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/pulls/60", + "html_url": "https://github.com/maxkratz/docker_texlive/pull/60", + "diff_url": "https://github.com/maxkratz/docker_texlive/pull/60.diff", + "patch_url": "https://github.com/maxkratz/docker_texlive/pull/60.patch", + "merged_at": "2024-12-22T08:50:51Z" + }, + "body": "Closes #59.", + "closed_by": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "reactions": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/60/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/60/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/59", + "repository_url": "https://api.github.com/repos/maxkratz/docker_texlive", + "labels_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/59/labels{/name}", + "comments_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/59/comments", + "events_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/59/events", + "html_url": "https://github.com/maxkratz/docker_texlive/issues/59", + "id": 2753127793, + "node_id": "I_kwDOFWkNFM6kGWVx", + "number": 59, + "title": "Update Gradle to v8.12.0", + "user": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 2925625351, + "node_id": "MDU6TGFiZWwyOTI1NjI1MzUx", + "url": "https://api.github.com/repos/maxkratz/docker_texlive/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2024-12-20T17:06:28Z", + "updated_at": "2024-12-22T08:50:52Z", + "closed_at": "2024-12-22T08:50:52Z", + "author_association": "OWNER", + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "active_lock_reason": null, + "body": "- GitHub release: https://github.com/gradle/gradle/releases/tag/v8.12.0", + "closed_by": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "reactions": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/59/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/59/timeline", + "performed_via_github_app": null, + "state_reason": "completed" + }, + { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/58", + "repository_url": "https://api.github.com/repos/maxkratz/docker_texlive", + "labels_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/58/labels{/name}", + "comments_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/58/comments", + "events_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/58/events", + "html_url": "https://github.com/maxkratz/docker_texlive/pull/58", + "id": 2677025191, + "node_id": "PR_kwDOFWkNFM6Ck3M2", + "number": 58, + "title": "Updates Gradle to v8.11.1", + "user": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 2925625351, + "node_id": "MDU6TGFiZWwyOTI1NjI1MzUx", + "url": "https://api.github.com/repos/maxkratz/docker_texlive/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2024-11-20T19:58:15Z", + "updated_at": "2024-11-24T07:00:44Z", + "closed_at": "2024-11-24T07:00:42Z", + "author_association": "OWNER", + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/pulls/58", + "html_url": "https://github.com/maxkratz/docker_texlive/pull/58", + "diff_url": "https://github.com/maxkratz/docker_texlive/pull/58.diff", + "patch_url": "https://github.com/maxkratz/docker_texlive/pull/58.patch", + "merged_at": "2024-11-24T07:00:42Z" + }, + "body": "Closes #57.", + "closed_by": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "reactions": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/58/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/58/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/57", + "repository_url": "https://api.github.com/repos/maxkratz/docker_texlive", + "labels_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/57/labels{/name}", + "comments_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/57/comments", + "events_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/57/events", + "html_url": "https://github.com/maxkratz/docker_texlive/issues/57", + "id": 2677019878, + "node_id": "I_kwDOFWkNFM6fkBTm", + "number": 57, + "title": "Update Gradle to v8.11.1", + "user": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 2925625351, + "node_id": "MDU6TGFiZWwyOTI1NjI1MzUx", + "url": "https://api.github.com/repos/maxkratz/docker_texlive/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2024-11-20T19:55:17Z", + "updated_at": "2024-11-24T07:00:43Z", + "closed_at": "2024-11-24T07:00:43Z", + "author_association": "OWNER", + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "active_lock_reason": null, + "body": "- GitHub release: https://github.com/gradle/gradle/releases/tag/v8.11.1", + "closed_by": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "reactions": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/57/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/57/timeline", + "performed_via_github_app": null, + "state_reason": "completed" + }, + { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/56", + "repository_url": "https://api.github.com/repos/maxkratz/docker_texlive", + "labels_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/56/labels{/name}", + "comments_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/56/comments", + "events_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/56/events", + "html_url": "https://github.com/maxkratz/docker_texlive/pull/56", + "id": 2649939704, + "node_id": "PR_kwDOFWkNFM6BicUd", + "number": 56, + "title": "Updates Gradle to v8.11.0", + "user": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 2925625351, + "node_id": "MDU6TGFiZWwyOTI1NjI1MzUx", + "url": "https://api.github.com/repos/maxkratz/docker_texlive/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2024-11-11T17:28:54Z", + "updated_at": "2024-11-15T20:48:03Z", + "closed_at": "2024-11-15T20:48:00Z", + "author_association": "OWNER", + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/pulls/56", + "html_url": "https://github.com/maxkratz/docker_texlive/pull/56", + "diff_url": "https://github.com/maxkratz/docker_texlive/pull/56.diff", + "patch_url": "https://github.com/maxkratz/docker_texlive/pull/56.patch", + "merged_at": "2024-11-15T20:48:00Z" + }, + "body": "Closes #55.", + "closed_by": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "reactions": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/56/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/56/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/55", + "repository_url": "https://api.github.com/repos/maxkratz/docker_texlive", + "labels_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/55/labels{/name}", + "comments_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/55/comments", + "events_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/55/events", + "html_url": "https://github.com/maxkratz/docker_texlive/issues/55", + "id": 2649819031, + "node_id": "I_kwDOFWkNFM6d8QeX", + "number": 55, + "title": "Update Gradle to v8.11.0", + "user": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 2925625351, + "node_id": "MDU6TGFiZWwyOTI1NjI1MzUx", + "url": "https://api.github.com/repos/maxkratz/docker_texlive/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2024-11-11T16:35:54Z", + "updated_at": "2024-11-15T20:48:01Z", + "closed_at": "2024-11-15T20:48:01Z", + "author_association": "OWNER", + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "active_lock_reason": null, + "body": "- GitHub release: https://github.com/gradle/gradle/releases/tag/v8.11.0", + "closed_by": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "reactions": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/55/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/55/timeline", + "performed_via_github_app": null, + "state_reason": "completed" + }, + { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/54", + "repository_url": "https://api.github.com/repos/maxkratz/docker_texlive", + "labels_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/54/labels{/name}", + "comments_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/54/comments", + "events_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/54/events", + "html_url": "https://github.com/maxkratz/docker_texlive/pull/54", + "id": 2544450221, + "node_id": "PR_kwDOFWkNFM58d8nC", + "number": 54, + "title": "Updates Gradle to v8.10.2", + "user": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 2925625351, + "node_id": "MDU6TGFiZWwyOTI1NjI1MzUx", + "url": "https://api.github.com/repos/maxkratz/docker_texlive/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2024-09-24T06:20:53Z", + "updated_at": "2024-09-28T13:15:39Z", + "closed_at": "2024-09-28T13:15:37Z", + "author_association": "OWNER", + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/pulls/54", + "html_url": "https://github.com/maxkratz/docker_texlive/pull/54", + "diff_url": "https://github.com/maxkratz/docker_texlive/pull/54.diff", + "patch_url": "https://github.com/maxkratz/docker_texlive/pull/54.patch", + "merged_at": "2024-09-28T13:15:37Z" + }, + "body": "Closes #53.", + "closed_by": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "reactions": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/54/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/54/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/53", + "repository_url": "https://api.github.com/repos/maxkratz/docker_texlive", + "labels_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/53/labels{/name}", + "comments_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/53/comments", + "events_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/53/events", + "html_url": "https://github.com/maxkratz/docker_texlive/issues/53", + "id": 2544445505, + "node_id": "I_kwDOFWkNFM6XqShB", + "number": 53, + "title": "Update Gradle to v8.10.2", + "user": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 2925625351, + "node_id": "MDU6TGFiZWwyOTI1NjI1MzUx", + "url": "https://api.github.com/repos/maxkratz/docker_texlive/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2024-09-24T06:17:54Z", + "updated_at": "2024-09-28T13:15:38Z", + "closed_at": "2024-09-28T13:15:37Z", + "author_association": "OWNER", + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "active_lock_reason": null, + "body": "- GitHub release: https://github.com/gradle/gradle/releases/tag/v8.10.2", + "closed_by": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "reactions": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/53/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/53/timeline", + "performed_via_github_app": null, + "state_reason": "completed" + }, + { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/52", + "repository_url": "https://api.github.com/repos/maxkratz/docker_texlive", + "labels_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/52/labels{/name}", + "comments_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/52/comments", + "events_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/52/events", + "html_url": "https://github.com/maxkratz/docker_texlive/pull/52", + "id": 2518518523, + "node_id": "PR_kwDOFWkNFM57GIJn", + "number": 52, + "title": "Updates Gradle to v8.10.1", + "user": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 2925625351, + "node_id": "MDU6TGFiZWwyOTI1NjI1MzUx", + "url": "https://api.github.com/repos/maxkratz/docker_texlive/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2024-09-11T05:25:02Z", + "updated_at": "2024-09-14T12:50:55Z", + "closed_at": "2024-09-14T12:50:53Z", + "author_association": "OWNER", + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/pulls/52", + "html_url": "https://github.com/maxkratz/docker_texlive/pull/52", + "diff_url": "https://github.com/maxkratz/docker_texlive/pull/52.diff", + "patch_url": "https://github.com/maxkratz/docker_texlive/pull/52.patch", + "merged_at": "2024-09-14T12:50:53Z" + }, + "body": "Closes #51.", + "closed_by": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "reactions": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/52/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/52/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/51", + "repository_url": "https://api.github.com/repos/maxkratz/docker_texlive", + "labels_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/51/labels{/name}", + "comments_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/51/comments", + "events_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/51/events", + "html_url": "https://github.com/maxkratz/docker_texlive/issues/51", + "id": 2513939316, + "node_id": "I_kwDOFWkNFM6V16t0", + "number": 51, + "title": "Update Gradle to v8.10.1", + "user": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 2925625351, + "node_id": "MDU6TGFiZWwyOTI1NjI1MzUx", + "url": "https://api.github.com/repos/maxkratz/docker_texlive/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2024-09-09T13:13:50Z", + "updated_at": "2024-09-14T12:50:53Z", + "closed_at": "2024-09-14T12:50:53Z", + "author_association": "OWNER", + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "active_lock_reason": null, + "body": "- GitHub release: https://github.com/gradle/gradle/releases/tag/v8.10.1", + "closed_by": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "reactions": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/51/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/51/timeline", + "performed_via_github_app": null, + "state_reason": "completed" + }, + { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/50", + "repository_url": "https://api.github.com/repos/maxkratz/docker_texlive", + "labels_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/50/labels{/name}", + "comments_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/50/comments", + "events_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/50/events", + "html_url": "https://github.com/maxkratz/docker_texlive/pull/50", + "id": 2485107588, + "node_id": "PR_kwDOFWkNFM55WUzI", + "number": 50, + "title": "Fixes deprecated ENV key value format", + "user": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 2925625348, + "node_id": "MDU6TGFiZWwyOTI1NjI1MzQ4", + "url": "https://api.github.com/repos/maxkratz/docker_texlive/labels/bug", + "name": "bug", + "color": "d73a4a", + "default": true, + "description": "Something isn't working" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2024-08-25T07:42:17Z", + "updated_at": "2024-09-03T06:58:00Z", + "closed_at": "2024-09-03T06:57:57Z", + "author_association": "OWNER", + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/pulls/50", + "html_url": "https://github.com/maxkratz/docker_texlive/pull/50", + "diff_url": "https://github.com/maxkratz/docker_texlive/pull/50.diff", + "patch_url": "https://github.com/maxkratz/docker_texlive/pull/50.patch", + "merged_at": "2024-09-03T06:57:57Z" + }, + "body": "Closes #49.", + "closed_by": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "reactions": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/50/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/50/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/49", + "repository_url": "https://api.github.com/repos/maxkratz/docker_texlive", + "labels_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/49/labels{/name}", + "comments_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/49/comments", + "events_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/49/events", + "html_url": "https://github.com/maxkratz/docker_texlive/issues/49", + "id": 2485107526, + "node_id": "I_kwDOFWkNFM6UH7tG", + "number": 49, + "title": "`LegacyKeyValueFormat` in Gradle variants: update format", + "user": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 2925625348, + "node_id": "MDU6TGFiZWwyOTI1NjI1MzQ4", + "url": "https://api.github.com/repos/maxkratz/docker_texlive/labels/bug", + "name": "bug", + "color": "d73a4a", + "default": true, + "description": "Something isn't working" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2024-08-25T07:42:06Z", + "updated_at": "2024-09-03T06:57:58Z", + "closed_at": "2024-09-03T06:57:58Z", + "author_association": "OWNER", + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "active_lock_reason": null, + "body": "```\r\n[...]\r\n 2 warnings found (use --debug to expand):\r\n - LegacyKeyValueFormat: \"ENV key=value\" should be used instead of legacy \"ENV key value\" format (line 17)\r\n - LegacyKeyValueFormat: \"ENV key=value\" should be used instead of legacy \"ENV key value\" format (line 18)\r\n[...]\r\n```\r\n\r\nExample: https://github.com/maxkratz/docker_texlive/actions/runs/10466803700/job/29193493032", + "closed_by": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "reactions": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/49/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/49/timeline", + "performed_via_github_app": null, + "state_reason": "completed" + }, + { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/48", + "repository_url": "https://api.github.com/repos/maxkratz/docker_texlive", + "labels_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/48/labels{/name}", + "comments_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/48/comments", + "events_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/48/events", + "html_url": "https://github.com/maxkratz/docker_texlive/pull/48", + "id": 2485106465, + "node_id": "PR_kwDOFWkNFM55WUkT", + "number": 48, + "title": "Updates OpenJDK to v21", + "user": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 2925625351, + "node_id": "MDU6TGFiZWwyOTI1NjI1MzUx", + "url": "https://api.github.com/repos/maxkratz/docker_texlive/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2024-08-25T07:38:38Z", + "updated_at": "2024-08-31T05:38:04Z", + "closed_at": "2024-08-31T05:38:01Z", + "author_association": "OWNER", + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/pulls/48", + "html_url": "https://github.com/maxkratz/docker_texlive/pull/48", + "diff_url": "https://github.com/maxkratz/docker_texlive/pull/48.diff", + "patch_url": "https://github.com/maxkratz/docker_texlive/pull/48.patch", + "merged_at": "2024-08-31T05:38:01Z" + }, + "body": "Closes #47.", + "closed_by": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "reactions": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/48/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/48/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/47", + "repository_url": "https://api.github.com/repos/maxkratz/docker_texlive", + "labels_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/47/labels{/name}", + "comments_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/47/comments", + "events_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/47/events", + "html_url": "https://github.com/maxkratz/docker_texlive/issues/47", + "id": 2482348508, + "node_id": "I_kwDOFWkNFM6T9aHc", + "number": 47, + "title": "Update OpenJDK to v21", + "user": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 2925625351, + "node_id": "MDU6TGFiZWwyOTI1NjI1MzUx", + "url": "https://api.github.com/repos/maxkratz/docker_texlive/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2024-08-23T05:36:07Z", + "updated_at": "2024-08-31T05:38:02Z", + "closed_at": "2024-08-31T05:38:02Z", + "author_association": "OWNER", + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "active_lock_reason": null, + "body": null, + "closed_by": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "reactions": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/47/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/47/timeline", + "performed_via_github_app": null, + "state_reason": "completed" + }, + { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/46", + "repository_url": "https://api.github.com/repos/maxkratz/docker_texlive", + "labels_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/46/labels{/name}", + "comments_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/46/comments", + "events_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/46/events", + "html_url": "https://github.com/maxkratz/docker_texlive/pull/46", + "id": 2466129705, + "node_id": "PR_kwDOFWkNFM54X8oE", + "number": 46, + "title": "Updates Gradle to v8.10.0", + "user": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 2925625351, + "node_id": "MDU6TGFiZWwyOTI1NjI1MzUx", + "url": "https://api.github.com/repos/maxkratz/docker_texlive/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2024-08-14T15:06:58Z", + "updated_at": "2024-08-20T06:58:18Z", + "closed_at": "2024-08-20T06:58:16Z", + "author_association": "OWNER", + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/pulls/46", + "html_url": "https://github.com/maxkratz/docker_texlive/pull/46", + "diff_url": "https://github.com/maxkratz/docker_texlive/pull/46.diff", + "patch_url": "https://github.com/maxkratz/docker_texlive/pull/46.patch", + "merged_at": "2024-08-20T06:58:16Z" + }, + "body": "Closes #45.", + "closed_by": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "reactions": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/46/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/46/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/45", + "repository_url": "https://api.github.com/repos/maxkratz/docker_texlive", + "labels_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/45/labels{/name}", + "comments_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/45/comments", + "events_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/45/events", + "html_url": "https://github.com/maxkratz/docker_texlive/issues/45", + "id": 2466122619, + "node_id": "I_kwDOFWkNFM6S_gt7", + "number": 45, + "title": "Update Gradle to v8.10.0", + "user": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 2925625351, + "node_id": "MDU6TGFiZWwyOTI1NjI1MzUx", + "url": "https://api.github.com/repos/maxkratz/docker_texlive/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2024-08-14T15:03:35Z", + "updated_at": "2024-08-20T06:58:17Z", + "closed_at": "2024-08-20T06:58:17Z", + "author_association": "OWNER", + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "active_lock_reason": null, + "body": "- GitHub release: https://github.com/gradle/gradle/releases/tag/v8.10.0", + "closed_by": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "reactions": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/45/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/45/timeline", + "performed_via_github_app": null, + "state_reason": "completed" + }, + { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/44", + "repository_url": "https://api.github.com/repos/maxkratz/docker_texlive", + "labels_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/44/labels{/name}", + "comments_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/44/comments", + "events_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/44/events", + "html_url": "https://github.com/maxkratz/docker_texlive/pull/44", + "id": 2413530412, + "node_id": "PR_kwDOFWkNFM51o0mH", + "number": 44, + "title": "Updates Gradle to v8.9.0", + "user": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 2925625351, + "node_id": "MDU6TGFiZWwyOTI1NjI1MzUx", + "url": "https://api.github.com/repos/maxkratz/docker_texlive/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2024-07-17T12:44:19Z", + "updated_at": "2024-07-24T05:59:41Z", + "closed_at": "2024-07-24T05:59:39Z", + "author_association": "OWNER", + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/pulls/44", + "html_url": "https://github.com/maxkratz/docker_texlive/pull/44", + "diff_url": "https://github.com/maxkratz/docker_texlive/pull/44.diff", + "patch_url": "https://github.com/maxkratz/docker_texlive/pull/44.patch", + "merged_at": "2024-07-24T05:59:39Z" + }, + "body": "Closes #43.", + "closed_by": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "reactions": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/44/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/44/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/43", + "repository_url": "https://api.github.com/repos/maxkratz/docker_texlive", + "labels_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/43/labels{/name}", + "comments_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/43/comments", + "events_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/43/events", + "html_url": "https://github.com/maxkratz/docker_texlive/issues/43", + "id": 2403809042, + "node_id": "I_kwDOFWkNFM6PRzcS", + "number": 43, + "title": "Update Gradle to v8.9.0", + "user": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 2925625351, + "node_id": "MDU6TGFiZWwyOTI1NjI1MzUx", + "url": "https://api.github.com/repos/maxkratz/docker_texlive/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2024-07-11T18:18:15Z", + "updated_at": "2024-07-24T05:59:40Z", + "closed_at": "2024-07-24T05:59:40Z", + "author_association": "OWNER", + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "active_lock_reason": null, + "body": "- GitHub release: https://github.com/gradle/gradle/releases/tag/v8.9.0", + "closed_by": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "reactions": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/43/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/43/timeline", + "performed_via_github_app": null, + "state_reason": "completed" + }, + { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/42", + "repository_url": "https://api.github.com/repos/maxkratz/docker_texlive", + "labels_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/42/labels{/name}", + "comments_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/42/comments", + "events_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/42/events", + "html_url": "https://github.com/maxkratz/docker_texlive/pull/42", + "id": 2391945146, + "node_id": "PR_kwDOFWkNFM50gMNB", + "number": 42, + "title": "Switches 2024 CTAN repo to upstream", + "user": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 2925625351, + "node_id": "MDU6TGFiZWwyOTI1NjI1MzUx", + "url": "https://api.github.com/repos/maxkratz/docker_texlive/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 1, + "created_at": "2024-07-05T06:41:25Z", + "updated_at": "2024-07-15T13:43:32Z", + "closed_at": "2024-07-15T13:43:29Z", + "author_association": "OWNER", + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/pulls/42", + "html_url": "https://github.com/maxkratz/docker_texlive/pull/42", + "diff_url": "https://github.com/maxkratz/docker_texlive/pull/42.diff", + "patch_url": "https://github.com/maxkratz/docker_texlive/pull/42.patch", + "merged_at": "2024-07-15T13:43:29Z" + }, + "body": "Closes #41.", + "closed_by": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "reactions": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/42/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/42/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/41", + "repository_url": "https://api.github.com/repos/maxkratz/docker_texlive", + "labels_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/41/labels{/name}", + "comments_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/41/comments", + "events_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/41/events", + "html_url": "https://github.com/maxkratz/docker_texlive/issues/41", + "id": 2390641236, + "node_id": "I_kwDOFWkNFM6OfkpU", + "number": 41, + "title": "Set deterministic CTAN mirror via a configuration option", + "user": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 2925625351, + "node_id": "MDU6TGFiZWwyOTI1NjI1MzUx", + "url": "https://api.github.com/repos/maxkratz/docker_texlive/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2024-07-04T11:26:12Z", + "updated_at": "2024-07-15T13:43:30Z", + "closed_at": "2024-07-15T13:43:30Z", + "author_association": "OWNER", + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "active_lock_reason": null, + "body": null, + "closed_by": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "reactions": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/41/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/41/timeline", + "performed_via_github_app": null, + "state_reason": "completed" + }, + { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/40", + "repository_url": "https://api.github.com/repos/maxkratz/docker_texlive", + "labels_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/40/labels{/name}", + "comments_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/40/comments", + "events_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/40/events", + "html_url": "https://github.com/maxkratz/docker_texlive/issues/40", + "id": 2388304312, + "node_id": "I_kwDOFWkNFM6OWqG4", + "number": 40, + "title": "Add texlive 2025 as version (once it is released)", + "user": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 2925625349, + "node_id": "MDU6TGFiZWwyOTI1NjI1MzQ5", + "url": "https://api.github.com/repos/maxkratz/docker_texlive/labels/documentation", + "name": "documentation", + "color": "0075ca", + "default": true, + "description": "Improvements or additions to documentation" + }, + { + "id": 2925625351, + "node_id": "MDU6TGFiZWwyOTI1NjI1MzUx", + "url": "https://api.github.com/repos/maxkratz/docker_texlive/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2024-07-03T10:46:52Z", + "updated_at": "2025-03-10T12:31:23Z", + "closed_at": "2025-03-10T12:31:23Z", + "author_association": "OWNER", + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "active_lock_reason": null, + "body": "https://www.tug.org/texlive/\r\n\r\n```\r\nPlan for TeX Live 2025:\r\n1feb: candidate/final sources committed, test builds begin.\r\n8feb: [TL pretest](https://www.tug.org/texlive/pretest.html) starts, CTAN updates continue there and in tlnet.\r\n22feb: code freeze for final build, major bug fixes only.\r\n1mar: final updates from CTAN, final doc tweaks.\r\n8mar: release TL and MacTeX.\r\n```", + "closed_by": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "reactions": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/40/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/40/timeline", + "performed_via_github_app": null, + "state_reason": "completed" + }, + { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/39", + "repository_url": "https://api.github.com/repos/maxkratz/docker_texlive", + "labels_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/39/labels{/name}", + "comments_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/39/comments", + "events_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/39/events", + "html_url": "https://github.com/maxkratz/docker_texlive/pull/39", + "id": 2328936460, + "node_id": "PR_kwDOFWkNFM5xL5d9", + "number": 39, + "title": "Updates Gradle to v8.8.0", + "user": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 2925625351, + "node_id": "MDU6TGFiZWwyOTI1NjI1MzUx", + "url": "https://api.github.com/repos/maxkratz/docker_texlive/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2024-06-01T05:51:30Z", + "updated_at": "2024-06-06T13:11:33Z", + "closed_at": "2024-06-03T04:52:35Z", + "author_association": "OWNER", + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/pulls/39", + "html_url": "https://github.com/maxkratz/docker_texlive/pull/39", + "diff_url": "https://github.com/maxkratz/docker_texlive/pull/39.diff", + "patch_url": "https://github.com/maxkratz/docker_texlive/pull/39.patch", + "merged_at": "2024-06-03T04:52:35Z" + }, + "body": "Closes #38.", + "closed_by": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "reactions": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/39/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/39/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/38", + "repository_url": "https://api.github.com/repos/maxkratz/docker_texlive", + "labels_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/38/labels{/name}", + "comments_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/38/comments", + "events_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/38/events", + "html_url": "https://github.com/maxkratz/docker_texlive/issues/38", + "id": 2328934554, + "node_id": "I_kwDOFWkNFM6K0Lia", + "number": 38, + "title": "Update Gradle to v8.8.0", + "user": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 2925625351, + "node_id": "MDU6TGFiZWwyOTI1NjI1MzUx", + "url": "https://api.github.com/repos/maxkratz/docker_texlive/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2024-06-01T05:46:04Z", + "updated_at": "2024-06-03T04:52:35Z", + "closed_at": "2024-06-03T04:52:35Z", + "author_association": "OWNER", + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "active_lock_reason": null, + "body": "- GitHub release: https://github.com/gradle/gradle/releases/tag/v8.8.0", + "closed_by": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "reactions": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/38/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/38/timeline", + "performed_via_github_app": null, + "state_reason": "completed" + }, + { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/37", + "repository_url": "https://api.github.com/repos/maxkratz/docker_texlive", + "labels_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/37/labels{/name}", + "comments_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/37/comments", + "events_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/37/events", + "html_url": "https://github.com/maxkratz/docker_texlive/pull/37", + "id": 2303955178, + "node_id": "PR_kwDOFWkNFM5v2yvj", + "number": 37, + "title": "Moves the build-and-push job for 2023 back into the build matrix", + "user": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 2925625351, + "node_id": "MDU6TGFiZWwyOTI1NjI1MzUx", + "url": "https://api.github.com/repos/maxkratz/docker_texlive/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2024-05-18T09:21:24Z", + "updated_at": "2024-05-19T09:44:31Z", + "closed_at": "2024-05-18T19:17:39Z", + "author_association": "OWNER", + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/pulls/37", + "html_url": "https://github.com/maxkratz/docker_texlive/pull/37", + "diff_url": "https://github.com/maxkratz/docker_texlive/pull/37.diff", + "patch_url": "https://github.com/maxkratz/docker_texlive/pull/37.patch", + "merged_at": "2024-05-18T19:17:39Z" + }, + "body": "... since all images will be built by self-hosted runners anyway\r\n\r\nCloses #36.", + "closed_by": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "reactions": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/37/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/37/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/36", + "repository_url": "https://api.github.com/repos/maxkratz/docker_texlive", + "labels_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/36/labels{/name}", + "comments_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/36/comments", + "events_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/36/events", + "html_url": "https://github.com/maxkratz/docker_texlive/issues/36", + "id": 2303327076, + "node_id": "I_kwDOFWkNFM6JSftk", + "number": 36, + "title": "CI: integrate 2023 variant into build matrix", + "user": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "labels": [ + { + "id": 2925625351, + "node_id": "MDU6TGFiZWwyOTI1NjI1MzUx", + "url": "https://api.github.com/repos/maxkratz/docker_texlive/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "assignees": [ + { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + } + ], + "milestone": null, + "comments": 0, + "created_at": "2024-05-17T18:09:02Z", + "updated_at": "2024-05-18T19:17:40Z", + "closed_at": "2024-05-18T19:17:40Z", + "author_association": "OWNER", + "sub_issues_summary": { + "total": 0, + "completed": 0, + "percent_completed": 0 + }, + "active_lock_reason": null, + "body": "As a follow-up of #35 and the related [commit](https://github.com/maxkratz/docker_texlive/commit/5d87e8bef919397c230ed0af414cda3e7599989a), [this GitHub Actions CI job](https://github.com/maxkratz/docker_texlive/blob/main/.github/workflows/build-and-push.yml#L62-L89) could easily be integrated into the build matrix.\r\nBeforehand, the separation was necessary because the build matrix did not use self-hosted runners.", + "closed_by": { + "login": "maxkratz", + "id": 20956405, + "node_id": "MDQ6VXNlcjIwOTU2NDA1", + "avatar_url": "https://avatars.githubusercontent.com/u/20956405?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/maxkratz", + "html_url": "https://github.com/maxkratz", + "followers_url": "https://api.github.com/users/maxkratz/followers", + "following_url": "https://api.github.com/users/maxkratz/following{/other_user}", + "gists_url": "https://api.github.com/users/maxkratz/gists{/gist_id}", + "starred_url": "https://api.github.com/users/maxkratz/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/maxkratz/subscriptions", + "organizations_url": "https://api.github.com/users/maxkratz/orgs", + "repos_url": "https://api.github.com/users/maxkratz/repos", + "events_url": "https://api.github.com/users/maxkratz/events{/privacy}", + "received_events_url": "https://api.github.com/users/maxkratz/received_events", + "type": "User", + "user_view_type": "public", + "site_admin": false + }, + "reactions": { + "url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/36/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/maxkratz/docker_texlive/issues/36/timeline", + "performed_via_github_app": null, + "state_reason": "completed" + } +] \ No newline at end of file