{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":146205552,"defaultBranch":"develop","name":"papyrus-lang","ownerLogin":"joelday","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2018-08-26T18:21:18.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/228880?v=4","public":true,"private":false,"isOrgOwned":false},"refInfo":{"name":"","listCacheKey":"v0:1682747587.0","currentOid":""},"activityList":{"items":[{"before":"e91902ef7e9a97c8aa1b35bb5029f02df92e6590","after":"495b412b7af8b7b82790127ffa518e7f1a82337f","ref":"refs/heads/develop","pushedAt":"2023-10-01T02:33:32.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"joelday","name":"Joel Day","path":"/joelday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/228880?s=80&v=4"},"commit":{"message":"feat: add eslint and fix errors (#183)\n\nDiscord user: _wk\r\n\r\n↓\r\n\r\nClose #88","shortMessageHtmlLink":"feat: add eslint and fix errors (#183)"}},{"before":"ebf7b64855493d9c1604753da858281511c4be5f","after":"e91902ef7e9a97c8aa1b35bb5029f02df92e6590","ref":"refs/heads/develop","pushedAt":"2023-09-05T22:13:55.000Z","pushType":"pr_merge","commitsCount":25,"pusher":{"login":"joelday","name":"Joel Day","path":"/joelday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/228880?s=80&v=4"},"commit":{"message":"DebugServer: Switch DAP library to `cppdap` (#174)\n\n`cppdap` is a more consistently updated, modern library than the old\r\nSamsung one we were using. With this, we can take advantage of newer\r\nfeatures in the protocol, like function breakpoints.\r\n\r\nI have not yet removed `DebugAdapterProxy`, as we need to switch to pyro\r\nfor the single source of truth for the project so we can fix path\r\nresolution, but I have added the logic to manage the project paths and\r\nthe relevant fields to the `attach` request that we process (see\r\nsrc/DarkId.Papyrus.DebugServer/Protocol/struct_extensions.h )","shortMessageHtmlLink":"DebugServer: Switch DAP library to cppdap (#174)"}},{"before":null,"after":"05c5d3687b09f7cd37928fdf5ec3f8374c35bff0","ref":"refs/heads/dependabot/npm_and_yarn/src/papyrus-lang-vscode/xml2js-and-vscode/vsce-0.5.0","pushedAt":"2023-04-29T05:53:07.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"build(deps): bump xml2js and @vscode/vsce in /src/papyrus-lang-vscode\n\nBumps [xml2js](https://github.com/Leonidas-from-XIV/node-xml2js) to 0.5.0 and updates ancestor dependency [@vscode/vsce](https://github.com/Microsoft/vsce). These dependencies need to be updated together.\n\n\nUpdates `xml2js` from 0.4.23 to 0.5.0\n- [Release notes](https://github.com/Leonidas-from-XIV/node-xml2js/releases)\n- [Commits](https://github.com/Leonidas-from-XIV/node-xml2js/commits/0.5.0)\n\nUpdates `@vscode/vsce` from 2.16.0 to 2.19.0\n- [Release notes](https://github.com/Microsoft/vsce/releases)\n- [Commits](https://github.com/Microsoft/vsce/compare/v2.16.0...v2.19.0)\n\n---\nupdated-dependencies:\n- dependency-name: xml2js\n dependency-type: indirect\n- dependency-name: \"@vscode/vsce\"\n dependency-type: direct:development\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump xml2js and @vscode/vsce in /src/papyrus-lang-vscode"}},{"before":"13fe2861912ee26ba45cbec9b873359c82a0dbda","after":"ad6a206d7ea15ac3c2adfd41e4cc63086f035011","ref":"refs/heads/main","pushedAt":"2023-03-15T09:15:52.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"joelday","name":"Joel Day","path":"/joelday","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/228880?s=80&v=4"},"commit":{"message":"chore(release): 3.2.0 [skip ci]\n\n# [3.2.0](https://github.com/joelday/papyrus-lang/compare/v3.1.1...v3.2.0) (2023-03-15)\n\n### Features\n\n* Support Multi-Line and String Escapes ([#175](https://github.com/joelday/papyrus-lang/issues/175)) ([13fe286](https://github.com/joelday/papyrus-lang/commit/13fe2861912ee26ba45cbec9b873359c82a0dbda))","shortMessageHtmlLink":"chore(release): 3.2.0 [skip ci]"}},{"before":"49e8ad1ebf7814d1dc948b34b09e400c3c7941dc","after":"13fe2861912ee26ba45cbec9b873359c82a0dbda","ref":"refs/heads/main","pushedAt":"2023-03-15T08:28:31.000Z","pushType":"pr_merge","commitsCount":3,"pusher":{"login":"nikitalita","name":null,"path":"/nikitalita","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/69168929?s=80&v=4"},"commit":{"message":"feat: Support Multi-Line and String Escapes (#175)\n\nThe Papyrus compiler supports escaping in, as far as I know, three\r\ncontexts:\r\n\r\n* Within a string. The following are valid:\r\n | Escape | Resulting Character |\r\n | :-: | :-: |\r\n | `\\n` | New Line |\r\n | `\\t` | Tab Character |\r\n | `\\\"` | `\"` |\r\n | `\\\\` | `\\` |\r\n* At the end of a line. For example:\r\n ```papyrus\r\n event onInit()\r\n Game.GetPlayer() \\\r\n .Kill()\r\n endEvent\r\n ```\r\n* Within parameter lists. *While this falls into the previous by\r\ndefinition, the syntax highlighting method does not.*\r\n Example:\r\n ```papyrus\r\n function testingFunction(\\\r\n , Form akForm1, Location akLoc1, Form akForm2, \\\r\n Form akForm3, Location akLoc2, Form akForm4 \\\r\n , Form akForm5, Location akLoc3, Form akForm6 \\\r\n , Form akForm7, Location akLoc4, Form akForm8 \\\r\n )\r\n endFunction\r\n ```\r\n\r\nThis pull request addresses all three of these cases within the Papyrus\r\ngrammar.","shortMessageHtmlLink":"feat: Support Multi-Line and String Escapes (#175)"}},{"before":null,"after":"48e0053b64bb6b7118925c21f90d8310d028aa9e","ref":"refs/heads/dependabot/npm_and_yarn/src/papyrus-lang-vscode/webpack-5.76.0","pushedAt":"2023-03-15T08:19:28.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"build(deps-dev): bump webpack in /src/papyrus-lang-vscode\n\nBumps [webpack](https://github.com/webpack/webpack) from 5.75.0 to 5.76.0.\n- [Release notes](https://github.com/webpack/webpack/releases)\n- [Commits](https://github.com/webpack/webpack/compare/v5.75.0...v5.76.0)\n\n---\nupdated-dependencies:\n- dependency-name: webpack\n dependency-type: direct:development\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps-dev): bump webpack in /src/papyrus-lang-vscode"}}],"hasNextPage":false,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAADjKJ9mgA","startCursor":null,"endCursor":null}},"title":"Activity · joelday/papyrus-lang"}