{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":373814100,"defaultBranch":"main","name":"parley","ownerLogin":"linebender","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2021-06-04T11:05:04.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/46134943?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1717410367.0","currentOid":""},"activityList":{"items":[{"before":"a103f1887fd2c99fd5663a4ef9e85bd5f95375cf","after":null,"ref":"refs/heads/gh-readonly-queue/main/pr-72-8e10403e7bcbe4d436822b89341616e425f8dfcf","pushedAt":"2024-06-03T10:26:07.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"github-merge-queue[bot]","name":null,"path":"/apps/github-merge-queue","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/9919?s=80&v=4"}},{"before":"8e10403e7bcbe4d436822b89341616e425f8dfcf","after":"a103f1887fd2c99fd5663a4ef9e85bd5f95375cf","ref":"refs/heads/main","pushedAt":"2024-06-03T10:26:05.000Z","pushType":"merge_queue_merge","commitsCount":1,"pusher":{"login":"github-merge-queue[bot]","name":null,"path":"/apps/github-merge-queue","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/9919?s=80&v=4"},"commit":{"message":"fontique: Make `icu_properties` optional (#72)\n\nThis doesn't seem like everyone using `fontique` will need this (or\nalready have it in their dependency graph).\n\nI left this in `default` since that's the current behavior, but I think\nthere's a good case for not doing so.","shortMessageHtmlLink":"fontique: Make icu_properties optional (#72)"}},{"before":null,"after":"a103f1887fd2c99fd5663a4ef9e85bd5f95375cf","ref":"refs/heads/gh-readonly-queue/main/pr-72-8e10403e7bcbe4d436822b89341616e425f8dfcf","pushedAt":"2024-06-03T10:23:19.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"github-merge-queue[bot]","name":null,"path":"/apps/github-merge-queue","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/9919?s=80&v=4"},"commit":{"message":"fontique: Make `icu_properties` optional (#72)\n\nThis doesn't seem like everyone using `fontique` will need this (or\nalready have it in their dependency graph).\n\nI left this in `default` since that's the current behavior, but I think\nthere's a good case for not doing so.","shortMessageHtmlLink":"fontique: Make icu_properties optional (#72)"}},{"before":"13a2a940633353104fe2f51f32a6fc7244dbd403","after":"5aba7645c39c8b2c9e28de59086ab0dea470e9c0","ref":"refs/heads/document_stack","pushedAt":"2024-06-01T12:48:13.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"PoignardAzur","name":"Olivier FAURE","path":"/PoignardAzur","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8573618?s=80&v=4"},"commit":{"message":"Samm fix 2","shortMessageHtmlLink":"Samm fix 2"}},{"before":null,"after":"13a2a940633353104fe2f51f32a6fc7244dbd403","ref":"refs/heads/document_stack","pushedAt":"2024-05-30T11:16:44.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"PoignardAzur","name":"Olivier FAURE","path":"/PoignardAzur","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8573618?s=80&v=4"},"commit":{"message":"Add \"Parley text stack\" section.\n\nBased on writeup by Nico Burns: https://xi.zulipchat.com/#narrow/stream/205635-text/topic/what.20are.20these.20crates/near/439119470","shortMessageHtmlLink":"Add \"Parley text stack\" section."}},{"before":"8e10403e7bcbe4d436822b89341616e425f8dfcf","after":null,"ref":"refs/heads/gh-readonly-queue/main/pr-54-11967bcdbce12ffc5d33edfa63922ead58d8aa7f","pushedAt":"2024-05-23T22:37:51.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"github-merge-queue[bot]","name":null,"path":"/apps/github-merge-queue","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/9919?s=80&v=4"}},{"before":"11967bcdbce12ffc5d33edfa63922ead58d8aa7f","after":"8e10403e7bcbe4d436822b89341616e425f8dfcf","ref":"refs/heads/main","pushedAt":"2024-05-23T22:37:49.000Z","pushType":"merge_queue_merge","commitsCount":1,"pusher":{"login":"github-merge-queue[bot]","name":null,"path":"/apps/github-merge-queue","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/9919?s=80&v=4"},"commit":{"message":"Implement simple example using swash to render to png (#54)\n\nThis is basically working. But it could definitely do with some actual\nreview and cleanup before merging.\n\n## Output\n\n\n![output](https://github.com/linebender/parley/assets/1007307/f18b2850-0638-496b-93c6-3c2aa9c90f2b)\n\n## Notes\n\n- ~Emoji rendering is not working~\n- Font fallback for arabic text does seem to be working (note: I pulled\nthe arabic text from cosmic text's sample files. Google translate\ntranslate the included arabic text as \"arabic\", but I cannot otherwise\nvouch for it's content).\n- Subpixel rendering is not enabled (does this make sense when rendering\nto image?)\n- The rendered text doesn't look fantastic. Possibly my blending code\n(used to apply the Swash alpha mask to an RGBA ImageBuffer from the\nimage buffer is incorrect / too naive?). Cosmic-text pulls in tiny-skia\nin it's examples. I was hoping to avoid that here, but perhaps it's\nnecessary?\n- ~Converting from a `parley::Font` to a `swash::FontRef` is very\nawkward, specifically when the font file is a collection. The Parley\n`Font` stores the index of the font within the collection, but Swash's\n`FontRef` expect the byte offset of the font within the collection. I\ncould not find this exposed anywhere in\nparley/fontique/skrifa/read-fonts so I'm currently doing pointer\narithmetic to get it.~\n- ~I'm currently writing to a file called `output.png` in the users\ncurrent working directory. Possibly we could do better than that (some\nkind of gitignored \"data\" directory in the parley repo?)~\n- ~I've added an impl of `Brush` for `peniko::Color`, but possibly we\nought to just blanket impl for all types implementing the requisite\nsuper traits?~\n- ~I'm not using the `NormalizedCoords` as they always seemed to be\nempty in my example (what are they for?)~","shortMessageHtmlLink":"Implement simple example using swash to render to png (#54)"}},{"before":null,"after":"8e10403e7bcbe4d436822b89341616e425f8dfcf","ref":"refs/heads/gh-readonly-queue/main/pr-54-11967bcdbce12ffc5d33edfa63922ead58d8aa7f","pushedAt":"2024-05-23T22:34:52.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"github-merge-queue[bot]","name":null,"path":"/apps/github-merge-queue","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/9919?s=80&v=4"},"commit":{"message":"Implement simple example using swash to render to png (#54)\n\nThis is basically working. But it could definitely do with some actual\nreview and cleanup before merging.\n\n## Output\n\n\n![output](https://github.com/linebender/parley/assets/1007307/f18b2850-0638-496b-93c6-3c2aa9c90f2b)\n\n## Notes\n\n- ~Emoji rendering is not working~\n- Font fallback for arabic text does seem to be working (note: I pulled\nthe arabic text from cosmic text's sample files. Google translate\ntranslate the included arabic text as \"arabic\", but I cannot otherwise\nvouch for it's content).\n- Subpixel rendering is not enabled (does this make sense when rendering\nto image?)\n- The rendered text doesn't look fantastic. Possibly my blending code\n(used to apply the Swash alpha mask to an RGBA ImageBuffer from the\nimage buffer is incorrect / too naive?). Cosmic-text pulls in tiny-skia\nin it's examples. I was hoping to avoid that here, but perhaps it's\nnecessary?\n- ~Converting from a `parley::Font` to a `swash::FontRef` is very\nawkward, specifically when the font file is a collection. The Parley\n`Font` stores the index of the font within the collection, but Swash's\n`FontRef` expect the byte offset of the font within the collection. I\ncould not find this exposed anywhere in\nparley/fontique/skrifa/read-fonts so I'm currently doing pointer\narithmetic to get it.~\n- ~I'm currently writing to a file called `output.png` in the users\ncurrent working directory. Possibly we could do better than that (some\nkind of gitignored \"data\" directory in the parley repo?)~\n- ~I've added an impl of `Brush` for `peniko::Color`, but possibly we\nought to just blanket impl for all types implementing the requisite\nsuper traits?~\n- ~I'm not using the `NormalizedCoords` as they always seemed to be\nempty in my example (what are they for?)~","shortMessageHtmlLink":"Implement simple example using swash to render to png (#54)"}},{"before":"11967bcdbce12ffc5d33edfa63922ead58d8aa7f","after":null,"ref":"refs/heads/gh-readonly-queue/main/pr-66-49e055af9c3057df73eb367935bf75f70f2ff115","pushedAt":"2024-05-23T20:26:33.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"github-merge-queue[bot]","name":null,"path":"/apps/github-merge-queue","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/9919?s=80&v=4"}},{"before":"49e055af9c3057df73eb367935bf75f70f2ff115","after":"11967bcdbce12ffc5d33edfa63922ead58d8aa7f","ref":"refs/heads/main","pushedAt":"2024-05-23T20:26:33.000Z","pushType":"merge_queue_merge","commitsCount":1,"pusher":{"login":"github-merge-queue[bot]","name":null,"path":"/apps/github-merge-queue","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/9919?s=80&v=4"},"commit":{"message":"Update stable Rust and other dependencies. (#66)\n\nThe stable Rust toolchain is now 1.78.\n\nOther dependencies were updated with:\n```sh\ncargo upgrade --ignore-rust-version\ncargo update\n```","shortMessageHtmlLink":"Update stable Rust and other dependencies. (#66)"}},{"before":null,"after":"11967bcdbce12ffc5d33edfa63922ead58d8aa7f","ref":"refs/heads/gh-readonly-queue/main/pr-66-49e055af9c3057df73eb367935bf75f70f2ff115","pushedAt":"2024-05-23T20:23:16.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"github-merge-queue[bot]","name":null,"path":"/apps/github-merge-queue","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/9919?s=80&v=4"},"commit":{"message":"Update stable Rust and other dependencies. (#66)\n\nThe stable Rust toolchain is now 1.78.\n\nOther dependencies were updated with:\n```sh\ncargo upgrade --ignore-rust-version\ncargo update\n```","shortMessageHtmlLink":"Update stable Rust and other dependencies. (#66)"}},{"before":"49e055af9c3057df73eb367935bf75f70f2ff115","after":null,"ref":"refs/heads/gh-readonly-queue/main/pr-59-eb2c68a226bf710baedd2338ee676d05dd1c8003","pushedAt":"2024-05-23T14:09:38.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"github-merge-queue[bot]","name":null,"path":"/apps/github-merge-queue","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/9919?s=80&v=4"}},{"before":"eb2c68a226bf710baedd2338ee676d05dd1c8003","after":"49e055af9c3057df73eb367935bf75f70f2ff115","ref":"refs/heads/main","pushedAt":"2024-05-23T14:09:36.000Z","pushType":"merge_queue_merge","commitsCount":1,"pusher":{"login":"github-merge-queue[bot]","name":null,"path":"/apps/github-merge-queue","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/9919?s=80&v=4"},"commit":{"message":"Migrate to multi-crate layout. (#59)\n\nThis moves all `parley` items into a subdirectory next to `fontique`.","shortMessageHtmlLink":"Migrate to multi-crate layout. (#59)"}},{"before":null,"after":"49e055af9c3057df73eb367935bf75f70f2ff115","ref":"refs/heads/gh-readonly-queue/main/pr-59-eb2c68a226bf710baedd2338ee676d05dd1c8003","pushedAt":"2024-05-23T14:07:07.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"github-merge-queue[bot]","name":null,"path":"/apps/github-merge-queue","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/9919?s=80&v=4"},"commit":{"message":"Migrate to multi-crate layout. (#59)\n\nThis moves all `parley` items into a subdirectory next to `fontique`.","shortMessageHtmlLink":"Migrate to multi-crate layout. (#59)"}},{"before":"eb2c68a226bf710baedd2338ee676d05dd1c8003","after":null,"ref":"refs/heads/gh-readonly-queue/main/pr-63-f7f339b6e816eeb719ecfa8e971fb0942232eb96","pushedAt":"2024-05-23T14:03:55.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"github-merge-queue[bot]","name":null,"path":"/apps/github-merge-queue","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/9919?s=80&v=4"}},{"before":"f7f339b6e816eeb719ecfa8e971fb0942232eb96","after":"eb2c68a226bf710baedd2338ee676d05dd1c8003","ref":"refs/heads/main","pushedAt":"2024-05-23T14:03:53.000Z","pushType":"merge_queue_merge","commitsCount":1,"pusher":{"login":"github-merge-queue[bot]","name":null,"path":"/apps/github-merge-queue","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/9919?s=80&v=4"},"commit":{"message":"Add automatic CI support for packages without the `std` feature. (#63)\n\nWith #55 we introduced a package that doesn't have the `std` feature.\nThe CI was adjusted to cope with that.\n\nThis PR here improves support for such packages in key ways:\n* Automatically support it using the `--ignore-unknown-features` flag.\n* Remove the manual listing of `PRIMARY_PKGS` and `EXAMPLE_PKGS` and\nrestore usage of `--workspace` so that the CI will automatically pick up\nnew packages.\n* Restores support for \"primary packages\" that don't need to follow\nMSRV.","shortMessageHtmlLink":"Add automatic CI support for packages without the std feature. (#63)"}},{"before":null,"after":"eb2c68a226bf710baedd2338ee676d05dd1c8003","ref":"refs/heads/gh-readonly-queue/main/pr-63-f7f339b6e816eeb719ecfa8e971fb0942232eb96","pushedAt":"2024-05-23T14:01:35.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"github-merge-queue[bot]","name":null,"path":"/apps/github-merge-queue","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/9919?s=80&v=4"},"commit":{"message":"Add automatic CI support for packages without the `std` feature. (#63)\n\nWith #55 we introduced a package that doesn't have the `std` feature.\nThe CI was adjusted to cope with that.\n\nThis PR here improves support for such packages in key ways:\n* Automatically support it using the `--ignore-unknown-features` flag.\n* Remove the manual listing of `PRIMARY_PKGS` and `EXAMPLE_PKGS` and\nrestore usage of `--workspace` so that the CI will automatically pick up\nnew packages.\n* Restores support for \"primary packages\" that don't need to follow\nMSRV.","shortMessageHtmlLink":"Add automatic CI support for packages without the std feature. (#63)"}},{"before":"f7f339b6e816eeb719ecfa8e971fb0942232eb96","after":null,"ref":"refs/heads/gh-readonly-queue/main/pr-62-94c5d78214b0a2c50d0c3e11d700a0e38080e7b9","pushedAt":"2024-05-23T13:31:51.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"github-merge-queue[bot]","name":null,"path":"/apps/github-merge-queue","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/9919?s=80&v=4"}},{"before":"94c5d78214b0a2c50d0c3e11d700a0e38080e7b9","after":"f7f339b6e816eeb719ecfa8e971fb0942232eb96","ref":"refs/heads/main","pushedAt":"2024-05-23T13:31:50.000Z","pushType":"merge_queue_merge","commitsCount":1,"pusher":{"login":"github-merge-queue[bot]","name":null,"path":"/apps/github-merge-queue","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/9919?s=80&v=4"},"commit":{"message":"tiny_skia_render: Fix unused qualifications. (#62)","shortMessageHtmlLink":"tiny_skia_render: Fix unused qualifications. (#62)"}},{"before":null,"after":"f7f339b6e816eeb719ecfa8e971fb0942232eb96","ref":"refs/heads/gh-readonly-queue/main/pr-62-94c5d78214b0a2c50d0c3e11d700a0e38080e7b9","pushedAt":"2024-05-23T13:29:18.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"github-merge-queue[bot]","name":null,"path":"/apps/github-merge-queue","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/9919?s=80&v=4"},"commit":{"message":"tiny_skia_render: Fix unused qualifications. (#62)","shortMessageHtmlLink":"tiny_skia_render: Fix unused qualifications. (#62)"}},{"before":"94c5d78214b0a2c50d0c3e11d700a0e38080e7b9","after":null,"ref":"refs/heads/gh-readonly-queue/main/pr-55-c982ffc22e861f66419b43b7323fea3754085c6d","pushedAt":"2024-05-23T13:03:49.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"github-merge-queue[bot]","name":null,"path":"/apps/github-merge-queue","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/9919?s=80&v=4"}},{"before":"c982ffc22e861f66419b43b7323fea3754085c6d","after":"94c5d78214b0a2c50d0c3e11d700a0e38080e7b9","ref":"refs/heads/main","pushedAt":"2024-05-23T13:03:47.000Z","pushType":"merge_queue_merge","commitsCount":1,"pusher":{"login":"github-merge-queue[bot]","name":null,"path":"/apps/github-merge-queue","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/9919?s=80&v=4"},"commit":{"message":"Implement Tiny-Skia example (#55)\n\nThis example uses `skrifa` and `tiny-skia` rather than `swash` and\n`image` as in #54.\n\n## Output\n\n\n![tiny_skia_render](https://github.com/linebender/parley/assets/1007307/74cbf3b6-380c-4dff-91e4-976612982fac)\n\n## Notes\n\n- This has the same issue as #54 around emoji rendering not working /\nbeing implemented\n- There is an issue with the centers of closed letter forms incorrectly\nbeing filled\n- The code for this is IMO much nicer than the swash version (at the\ncost of the heavier tiny-skia dependency)\n- This example does not have hinting enabled","shortMessageHtmlLink":"Implement Tiny-Skia example (#55)"}},{"before":null,"after":"94c5d78214b0a2c50d0c3e11d700a0e38080e7b9","ref":"refs/heads/gh-readonly-queue/main/pr-55-c982ffc22e861f66419b43b7323fea3754085c6d","pushedAt":"2024-05-23T13:01:03.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"github-merge-queue[bot]","name":null,"path":"/apps/github-merge-queue","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/9919?s=80&v=4"},"commit":{"message":"Implement Tiny-Skia example (#55)\n\nThis example uses `skrifa` and `tiny-skia` rather than `swash` and\n`image` as in #54.\n\n## Output\n\n\n![tiny_skia_render](https://github.com/linebender/parley/assets/1007307/74cbf3b6-380c-4dff-91e4-976612982fac)\n\n## Notes\n\n- This has the same issue as #54 around emoji rendering not working /\nbeing implemented\n- There is an issue with the centers of closed letter forms incorrectly\nbeing filled\n- The code for this is IMO much nicer than the swash version (at the\ncost of the heavier tiny-skia dependency)\n- This example does not have hinting enabled","shortMessageHtmlLink":"Implement Tiny-Skia example (#55)"}},{"before":"c982ffc22e861f66419b43b7323fea3754085c6d","after":null,"ref":"refs/heads/gh-readonly-queue/main/pr-61-634d18cc829476109a3401b5005de58b7ff3f6a2","pushedAt":"2024-05-23T12:37:03.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"github-merge-queue[bot]","name":null,"path":"/apps/github-merge-queue","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/9919?s=80&v=4"}},{"before":"634d18cc829476109a3401b5005de58b7ff3f6a2","after":"c982ffc22e861f66419b43b7323fea3754085c6d","ref":"refs/heads/main","pushedAt":"2024-05-23T12:37:02.000Z","pushType":"merge_queue_merge","commitsCount":1,"pusher":{"login":"github-merge-queue[bot]","name":null,"path":"/apps/github-merge-queue","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/9919?s=80&v=4"},"commit":{"message":"Move `unused_qualifications` to the lints table. (#61)\n\nWe don't need to wait for MSRV support to use the lints table. The MSRV\n`cargo check` commands won't fail, they'll just warn that there is an\nunused manifest key but the CI will still pass. The stable toolchain\nwill do the actual linting.\n\nThis won't be a problem for projects higher up the stack either, as\nCargo doesn't complain about unused manifest keys of dependencies.","shortMessageHtmlLink":"Move unused_qualifications to the lints table. (#61)"}},{"before":null,"after":"c982ffc22e861f66419b43b7323fea3754085c6d","ref":"refs/heads/gh-readonly-queue/main/pr-61-634d18cc829476109a3401b5005de58b7ff3f6a2","pushedAt":"2024-05-23T12:34:42.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"github-merge-queue[bot]","name":null,"path":"/apps/github-merge-queue","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/9919?s=80&v=4"},"commit":{"message":"Move `unused_qualifications` to the lints table. (#61)\n\nWe don't need to wait for MSRV support to use the lints table. The MSRV\n`cargo check` commands won't fail, they'll just warn that there is an\nunused manifest key but the CI will still pass. The stable toolchain\nwill do the actual linting.\n\nThis won't be a problem for projects higher up the stack either, as\nCargo doesn't complain about unused manifest keys of dependencies.","shortMessageHtmlLink":"Move unused_qualifications to the lints table. (#61)"}},{"before":"634d18cc829476109a3401b5005de58b7ff3f6a2","after":null,"ref":"refs/heads/gh-readonly-queue/main/pr-60-fab8d0a1e4a5271c045dd52090176b11db8657af","pushedAt":"2024-05-23T10:12:02.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"github-merge-queue[bot]","name":null,"path":"/apps/github-merge-queue","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/9919?s=80&v=4"}},{"before":"fab8d0a1e4a5271c045dd52090176b11db8657af","after":"634d18cc829476109a3401b5005de58b7ff3f6a2","ref":"refs/heads/main","pushedAt":"2024-05-23T10:12:01.000Z","pushType":"merge_queue_merge","commitsCount":1,"pusher":{"login":"github-merge-queue[bot]","name":null,"path":"/apps/github-merge-queue","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/9919?s=80&v=4"},"commit":{"message":"fontique: README can link to own copy of LICENSE. (#60)\n\nSince the `fontique` directory contains a copy of the LICENSE files, it\ncan link to them rather than up a directory.","shortMessageHtmlLink":"fontique: README can link to own copy of LICENSE. (#60)"}},{"before":null,"after":"634d18cc829476109a3401b5005de58b7ff3f6a2","ref":"refs/heads/gh-readonly-queue/main/pr-60-fab8d0a1e4a5271c045dd52090176b11db8657af","pushedAt":"2024-05-23T10:08:44.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"github-merge-queue[bot]","name":null,"path":"/apps/github-merge-queue","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/9919?s=80&v=4"},"commit":{"message":"fontique: README can link to own copy of LICENSE. (#60)\n\nSince the `fontique` directory contains a copy of the LICENSE files, it\ncan link to them rather than up a directory.","shortMessageHtmlLink":"fontique: README can link to own copy of LICENSE. (#60)"}},{"before":"fab8d0a1e4a5271c045dd52090176b11db8657af","after":null,"ref":"refs/heads/gh-readonly-queue/main/pr-58-4d3273d5ac3a4fd7989be07ff818a55d669bb0c7","pushedAt":"2024-05-23T07:56:46.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"github-merge-queue[bot]","name":null,"path":"/apps/github-merge-queue","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/9919?s=80&v=4"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEWs0P1gA","startCursor":null,"endCursor":null}},"title":"Activity ยท linebender/parley"}