{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":84589501,"defaultBranch":"master","name":"gnome-shell","ownerLogin":"endlessm","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2017-03-10T18:30:50.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/1930958?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1718187512.0","currentOid":""},"activityList":{"items":[{"before":"42620f32be1ee4808b6e75e9b8c9a6b88e7b5cae","after":"3026bc01ca5041879085475e4ae05300286e17ad","ref":"refs/heads/master","pushedAt":"2024-06-12T02:56:15.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"eos-shell-build","name":null,"path":"/eos-shell-build","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4185042?s=80&v=4"},"commit":{"message":"New translations from Transifex","shortMessageHtmlLink":"New translations from Transifex"}},{"before":"42620f32be1ee4808b6e75e9b8c9a6b88e7b5cae","after":"3026bc01ca5041879085475e4ae05300286e17ad","ref":"refs/heads/eos6.0","pushedAt":"2024-06-12T02:56:13.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"eos-shell-build","name":null,"path":"/eos-shell-build","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4185042?s=80&v=4"},"commit":{"message":"New translations from Transifex","shortMessageHtmlLink":"New translations from Transifex"}},{"before":"59064e2daf40fb5f033af51cd87b6583b3453424","after":"42620f32be1ee4808b6e75e9b8c9a6b88e7b5cae","ref":"refs/heads/master","pushedAt":"2024-04-29T15:50:54.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"eos-shell-build","name":null,"path":"/eos-shell-build","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4185042?s=80&v=4"},"commit":{"message":"New translations from Transifex","shortMessageHtmlLink":"New translations from Transifex"}},{"before":"59064e2daf40fb5f033af51cd87b6583b3453424","after":"42620f32be1ee4808b6e75e9b8c9a6b88e7b5cae","ref":"refs/heads/eos6.0","pushedAt":"2024-04-29T15:50:53.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"eos-shell-build","name":null,"path":"/eos-shell-build","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4185042?s=80&v=4"},"commit":{"message":"New translations from Transifex","shortMessageHtmlLink":"New translations from Transifex"}},{"before":"20aa2f107754d7aa7dd3ea0ced131e213dddd8a0","after":"59064e2daf40fb5f033af51cd87b6583b3453424","ref":"refs/heads/eos6.0","pushedAt":"2024-04-25T10:02:15.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"wjt","name":"Will Thompson","path":"/wjt","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/86760?s=80&v=4"},"commit":{"message":"Merge pull request #757 from endlessm/T31812-add-fallback-latin-layout\n\nkeyboard: Ensure a Latin layout is always available","shortMessageHtmlLink":"Merge pull request #757 from endlessm/T31812-add-fallback-latin-layout"}},{"before":"20aa2f107754d7aa7dd3ea0ced131e213dddd8a0","after":"59064e2daf40fb5f033af51cd87b6583b3453424","ref":"refs/heads/master","pushedAt":"2024-04-24T22:32:26.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"wjt","name":"Will Thompson","path":"/wjt","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/86760?s=80&v=4"},"commit":{"message":"Merge pull request #757 from endlessm/T31812-add-fallback-latin-layout\n\nkeyboard: Ensure a Latin layout is always available","shortMessageHtmlLink":"Merge pull request #757 from endlessm/T31812-add-fallback-latin-layout"}},{"before":"d423b938684853a430c5a1078f377dd6a88e3ea3","after":"9d6d14e7973aa7fc69fc9bf42230238be452b44c","ref":"refs/heads/T31812-add-fallback-latin-layout","pushedAt":"2024-04-24T22:30:17.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"wjt","name":"Will Thompson","path":"/wjt","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/86760?s=80&v=4"},"commit":{"message":"keyboard: Ensure a Latin layout is always available\n\nIn past versions of Endless OS, we added the concept of a “password mode” to\nGNOME Shell, which is triggered either within GNOME Shell's own password\nfields, or from applications by setting a D-Bus property on the shell. In this\nmode, Shell would check whether any configured input source could type the\nEnglish letters a through z, and if not, append the US English keyboard layout\nto the list of available sources. The intent is to ensure, for example, that it\nis possible to type Wi-Fi passwords, which typically use only English ASCII\nletters even in regions where the local language uses some other script, even\nif the user's keyboard layout is (say) Thai.\n\nThis approach requires coöperation from applications (which we previously\npatched GNOME Initial Setup to do, for example) and does not solve the related\nproblem that URLs and email addresses are also typically written in English\nASCII letters throughout the world.\n\nFor Endless OS 6, we had removed this feature entirely, but I am concerned that\nexisting users may be relying on this feature to enter their account password\nusing Latin characters at GDM while only having a non-Latin input source\nconfigured.\n\nSo, reintroduce the logic, but apply it at all times, rather than when a\npassword is being entered. This will, for example, allow entering URLs on a\nsystem configured with only a Thai layout. This patch is derived from\ncommit e2fbf6f8908f6ed6aa63c3b34d6c943927de116a, the version of the\npassword-mode feature we shipped in eos5.1.\n\nThe logic for detecting whether a fallback method is needed is a little\nsimplistic and does not handle some cases correctly. Some IBus methods, such as\nlibzhuyin for Chinese, provide a built-in passthrough mode to enter English\ntext; but this logic will add a fallback US English method if libzhuyin is the\nonly configured method. This seems acceptable as a stop-gap.\n\nThere is ongoing work in GNOME to solve this problem more generally, including\nhandling the case of some IBus methods providing their own passthrough mode.\nSee https://gitlab.gnome.org/GNOME/gnome-initial-setup/-/merge_requests/213 and\nlinked issues & merge requests.\n\nhttps://phabricator.endlessm.com/T19956\nhttps://phabricator.endlessm.com/T31812","shortMessageHtmlLink":"keyboard: Ensure a Latin layout is always available"}},{"before":"a6da614d4de8e1c7304fe8ee842fa6b521a6c826","after":"f51a68e0f064a16b0527b4af16a83b47a1caa62b","ref":"refs/heads/debian-master","pushedAt":"2024-04-24T22:22:44.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"wjt","name":"Will Thompson","path":"/wjt","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/86760?s=80&v=4"},"commit":{"message":"Revert \"eos: Add downstream gnome-shell-overrides-reset.sh tool\"\n\nThis reverts commit c19f4d656c6e93f12f87a01df3ff575172d2a907. See\n24500d1b1 for rationale.","shortMessageHtmlLink":"Revert \"eos: Add downstream gnome-shell-overrides-reset.sh tool\""}},{"before":"a6da614d4de8e1c7304fe8ee842fa6b521a6c826","after":"f51a68e0f064a16b0527b4af16a83b47a1caa62b","ref":"refs/heads/debian-eos6.0","pushedAt":"2024-04-24T22:22:44.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"wjt","name":"Will Thompson","path":"/wjt","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/86760?s=80&v=4"},"commit":{"message":"Revert \"eos: Add downstream gnome-shell-overrides-reset.sh tool\"\n\nThis reverts commit c19f4d656c6e93f12f87a01df3ff575172d2a907. See\n24500d1b1 for rationale.","shortMessageHtmlLink":"Revert \"eos: Add downstream gnome-shell-overrides-reset.sh tool\""}},{"before":"24500d1b15ecf3015cc7cde4a5adce8120ff9184","after":null,"ref":"refs/heads/revert-dynamic-workspaces-migration","pushedAt":"2024-04-24T21:14:42.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"wjt","name":"Will Thompson","path":"/wjt","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/86760?s=80&v=4"}},{"before":"4bf11f6e318ea21000466e391d11fa4785188875","after":"20aa2f107754d7aa7dd3ea0ced131e213dddd8a0","ref":"refs/heads/eos6.0","pushedAt":"2024-04-24T21:14:34.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"wjt","name":"Will Thompson","path":"/wjt","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/86760?s=80&v=4"},"commit":{"message":"Merge pull request #758 from endlessm/revert-dynamic-workspaces-migration\n\nRevert “eos: Reset dynamic-workspaces key on EOS 4 → 5 transition”","shortMessageHtmlLink":"Merge pull request #758 from endlessm/revert-dynamic-workspaces-migra…"}},{"before":"4bf11f6e318ea21000466e391d11fa4785188875","after":"20aa2f107754d7aa7dd3ea0ced131e213dddd8a0","ref":"refs/heads/master","pushedAt":"2024-04-24T19:02:37.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"dylanmccall","name":"Dylan McCall","path":"/dylanmccall","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/132063?s=80&v=4"},"commit":{"message":"Merge pull request #758 from endlessm/revert-dynamic-workspaces-migration\n\nRevert “eos: Reset dynamic-workspaces key on EOS 4 → 5 transition”","shortMessageHtmlLink":"Merge pull request #758 from endlessm/revert-dynamic-workspaces-migra…"}},{"before":null,"after":"24500d1b15ecf3015cc7cde4a5adce8120ff9184","ref":"refs/heads/revert-dynamic-workspaces-migration","pushedAt":"2024-04-24T15:40:31.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"wjt","name":"Will Thompson","path":"/wjt","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/86760?s=80&v=4"},"commit":{"message":"Revert “eos: Reset dynamic-workspaces key on EOS 4 → 5 transition”\n\nThis reverts commit d1d176b995ee3113065a7accc0830e5d8f68eab0. Per its description:\n\n> It can be dropped any time after the\n> first checkpoint after the EOS 5 release. By that point, any users who\n> have upgrade from 4 → 5 (and triggered the bug this script fixes) should\n> have logged into EOS 5 at least once, hence run this script, and the\n> migration bug should be fixed for them.\n\nAt the time that I rebased this commit it was not clear whether we would have a\ncheckpoint between EOS 5 and 6, but now we know that we will, we can remove\nthis migration.\n\nActually the rationale is not completely accurate. On a multi-user system there\nis no guarantee that all users have logged into EOS 5 at least once; and even\non a single-user system it's possible to leave the computer sitting at the\nlogin screen, without logging in, and have automatic updates run their course.\nBut practically speaking it's true enough.\n\nhttps://phabricator.endlessm.com/T34300","shortMessageHtmlLink":"Revert “eos: Reset dynamic-workspaces key on EOS 4 → 5 transition”"}},{"before":"2b205ce78ca82eb92156882b9d5eaffd79d4831b","after":"d423b938684853a430c5a1078f377dd6a88e3ea3","ref":"refs/heads/T31812-add-fallback-latin-layout","pushedAt":"2024-04-24T14:39:44.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"wjt","name":"Will Thompson","path":"/wjt","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/86760?s=80&v=4"},"commit":{"message":"keyboard: Ensure a Latin layout is always available\n\nIn past versions of Endless OS, we added the concept of a “password mode” to\nGNOME Shell, which is triggered either within GNOME Shell's own password\nfields, or from applications by setting a D-Bus property on the shell. In this\nmode, Shell would check whether any configured input source could type the\nEnglish letters a through z, and if not, append the US English keyboard layout\nto the list of available sources. The intent is to ensure, for example, that it\nis possible to type Wi-Fi passwords, which typically use only English ASCII\nletters even in regions where the local language uses some other script, even\nif the user's keyboard layout is (say) Thai.\n\nThis approach requires coöperation from applications (which we previously\npatched GNOME Initial Setup to do, for example) and does not solve the related\nproblem that URLs and email addresses are also typically written in English\nASCII letters throughout the world.\n\nFor Endless OS 6, we had removed this feature entirely, but I am concerned that\nexisting users may be relying on this feature to enter their account password\nusing Latin characters at GDM while only having a non-Latin input source\nconfigured.\n\nSo, reintroduce the logic, but apply it at all times, rather than when a\npassword is being entered. This will, for example, allow entering URLs on a\nsystem configured with only a Thai layout.\n\nThe logic for detecting whether a fallback method is needed is a little\nsimplistic and does not handle some cases correctly. Some IBus methods, such as\nlibzhuyin for Chinese, provide a built-in passthrough mode to enter English\ntext; but this logic will add a fallback US English method if libzhuyin is the\nonly configured method. This seems acceptable as a stop-gap.\n\nThere is ongoing work in GNOME to solve this problem more generally, including\nhandling the case of some IBus methods providing their own passthrough mode.\nSee https://gitlab.gnome.org/GNOME/gnome-initial-setup/-/merge_requests/213 and\nlinked issues & merge requests.\n\nhttps://phabricator.endlessm.com/T31812","shortMessageHtmlLink":"keyboard: Ensure a Latin layout is always available"}},{"before":"7e6fac994dad24c75ada392f594e65e1fff4f41a","after":"2b205ce78ca82eb92156882b9d5eaffd79d4831b","ref":"refs/heads/T31812-add-fallback-latin-layout","pushedAt":"2024-04-24T14:38:23.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"wjt","name":"Will Thompson","path":"/wjt","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/86760?s=80&v=4"},"commit":{"message":"keyboard: Ensure a Latin layout is always available\n\nIn past versions of Endless OS, we added the concept of a “password mode” to\nGNOME Shell, which is triggered either within GNOME Shell's own password\nfields, or from applications by setting a D-Bus property on the shell. In this\nmode, Shell would check whether any configured input source could type the\nEnglish letters a through z, and if not, append the US English keyboard layout\nto the list of available sources. The intent is to ensure, for example, that it\nis possible to type Wi-Fi passwords, which typically use only English ASCII\nletters even in regions where the local language uses some other script, even\nif the user's keyboard layout is (say) Thai.\n\nThis approach requires coöperation from applications (which we previously\npatched GNOME Initial Setup to do, for example) and does not solve the related\nproblem that URLs and email addresses are also typically written in English\nASCII letters throughout the world.\n\nFor Endless OS 6, we had removed this feature entirely, but I am concerned that\nexisting users may be relying on this feature to enter their account password\nusing Latin characters at GDM while only having a non-Latin input source\nconfigured.\n\nSo, reintroduce the logic, but apply it at all times, rather than when a\npassword is being entered. This will, for example, allow entering URLs on a\nsystem configured with only a Thai layout.\n\nThe logic for detecting whether a fallback method is needed is a little\nsimplistic and does not handle some cases correctly. Some IBus methods, such as\nlibzhuyin for Chinese, provide a built-in passthrough mode to enter English\ntext; but this logic will add a fallback US English method if libzhuyin is the\nonly configured method. This seems acceptable as a stop-gap.\n\nThere is ongoing work in GNOME to solve this problem more generally, including\nhandling the case of some IBus methods providing their own passthrough mode.\nSee https://gitlab.gnome.org/GNOME/gnome-initial-setup/-/merge_requests/213 and\nlinked issues & merge requests.\n\nhttps://phabricator.endlessm.com/T31812","shortMessageHtmlLink":"keyboard: Ensure a Latin layout is always available"}},{"before":"8fee691edda15780786e8d8358522a3711eb3f69","after":"7e6fac994dad24c75ada392f594e65e1fff4f41a","ref":"refs/heads/T31812-add-fallback-latin-layout","pushedAt":"2024-04-24T14:11:13.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"wjt","name":"Will Thompson","path":"/wjt","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/86760?s=80&v=4"},"commit":{"message":"keyboard: Ensure a Latin layout is always available\n\nIn past versions of Endless OS, we added the concept of a “password mode” to\nGNOME Shell, which is triggered either within GNOME Shell's own password\nfields, or from applications by setting a D-Bus property on the shell. In this\nmode, Shell would check whether any configured input source could type the\nEnglish letters a through z, and if not, append the US English keyboard layout\nto the list of available sources. The intent is to ensure, for example, that it\nis possible to type Wi-Fi passwords, which typically use only English ASCII\nletters even in regions where the local language uses some other script, even\nif the user's keyboard layout is (say) Thai.\n\nThis approach requires coöperation from applications (which we previously\npatched GNOME Initial Setup to do, for example) and does not solve the related\nproblem that URLs and email addresses are also typically written in English\nASCII letters throughout the world.\n\nFor Endless OS 6, we had removed this feature entirely, but I am concerned that\nexisting users may be relying on this feature to enter their account password\nusing Latin characters at GDM while only having a non-Latin input source\nconfigured.\n\nSo, reintroduce the logic, but apply it at all times, rather than when a\npassword is being entered. This will, for example, allow entering URLs on a\nsystem configured with only a Thai layout.\n\nThe logic for detecting whether a fallback method is needed is a little\nsimplistic and does not handle some cases correctly. Some IBus methods, such as\nlibzhuyin for Chinese, provide a built-in passthrough mode to enter English\ntext; but this logic will add a fallback US English method if libzhuyin is the\nonly configured method. This seems acceptable as a stop-gap.\n\nThere is ongoing work in GNOME to solve this problem more generally, including\nhandling the case of some IBus methods providing their own passthrough mode.\nSee https://gitlab.gnome.org/GNOME/gnome-initial-setup/-/merge_requests/213 and\nlinked issues & merge requests.\n\nhttps://phabricator.endlessm.com/T31812","shortMessageHtmlLink":"keyboard: Ensure a Latin layout is always available"}},{"before":null,"after":"8fee691edda15780786e8d8358522a3711eb3f69","ref":"refs/heads/T31812-add-fallback-latin-layout","pushedAt":"2024-04-23T16:03:21.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"wjt","name":"Will Thompson","path":"/wjt","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/86760?s=80&v=4"},"commit":{"message":"keyboard: Ensure a Latin layout is always available\n\nIn past versions of Endless OS, we added the concept of a “password mode” to\nGNOME Shell, which is triggered either within GNOME Shell's own password\nfields, or from applications by setting a D-Bus property on the shell. In this\nmode, Shell would check whether any configured input source could type the\nEnglish letters a through z, and if not, append the US English keyboard layout\nto the list of available sources. The intent is to ensure, for example, that it\nis possible to type Wi-Fi passwords, which typically use only English ASCII\nletters even in regions where the local language uses some other script, even\nif the user's keyboard layout is (say) Thai.\n\nThis approach requires coöperation from applications (which we previously\npatched GNOME Initial Setup to do, for example) and does not solve the related\nproblem that URLs and email addresses are also typically written in English\nASCII letters throughout the world.\n\nFor Endless OS 6, we had removed this feature entirely, but I am concerned that\nexisting users may be relying on this feature to enter their account password\nusing Latin characters at GDM while only having a non-Latin input source\nconfigured.\n\nSo, reintroduce the logic, but apply it at all times, rather than when a\npassword is being entered. This will, for example, allow entering URLs on a\nsystem configured with only a Thai layout.\n\nThe logic for detecting whether a fallback method is needed is a little\nsimplistic and does not handle some cases correctly. Some IBus methods, such as\nlibzhuyin for Chinese, provide a built-in passthrough mode to enter English\ntext; but this logic will add a fallback US English method if libzhuyin is the\nonly configured method. This seems acceptable as a stop-gap.\n\nThere is ongoing work in GNOME to solve this problem more generally, including\nhandling the case of some IBus methods providing their own passthrough mode.\nSee https://gitlab.gnome.org/GNOME/gnome-initial-setup/-/merge_requests/213 and\nlinked issues & merge requests.\n\nhttps://phabricator.endlessm.com/T31812","shortMessageHtmlLink":"keyboard: Ensure a Latin layout is always available"}},{"before":"c4a4d2aefdb1ef1e0e465b3ce475ced525427d4f","after":"4bf11f6e318ea21000466e391d11fa4785188875","ref":"refs/heads/master","pushedAt":"2024-04-17T02:56:51.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"eos-shell-build","name":null,"path":"/eos-shell-build","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4185042?s=80&v=4"},"commit":{"message":"New translations from Transifex","shortMessageHtmlLink":"New translations from Transifex"}},{"before":"c4a4d2aefdb1ef1e0e465b3ce475ced525427d4f","after":"4bf11f6e318ea21000466e391d11fa4785188875","ref":"refs/heads/eos6.0","pushedAt":"2024-04-17T02:56:50.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"eos-shell-build","name":null,"path":"/eos-shell-build","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4185042?s=80&v=4"},"commit":{"message":"New translations from Transifex","shortMessageHtmlLink":"New translations from Transifex"}},{"before":"c5183b34cb2269dc2c9d593d504a314bebc601c3","after":null,"ref":"refs/heads/T35218-fix-welcome-version","pushedAt":"2024-04-10T12:03:14.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"wjt","name":"Will Thompson","path":"/wjt","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/86760?s=80&v=4"}},{"before":"4dc1072f654e990010a32c302d4ec9c6e0a6bcde","after":"c4a4d2aefdb1ef1e0e465b3ce475ced525427d4f","ref":"refs/heads/eos6.0","pushedAt":"2024-04-10T12:03:09.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"wjt","name":"Will Thompson","path":"/wjt","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/86760?s=80&v=4"},"commit":{"message":"Merge pull request #756 from endlessm/T35218-fix-welcome-version\n\nfixup! welcomeDialog: Welcome users to Endless OS, not GNOME","shortMessageHtmlLink":"Merge pull request #756 from endlessm/T35218-fix-welcome-version"}},{"before":"4dc1072f654e990010a32c302d4ec9c6e0a6bcde","after":"c4a4d2aefdb1ef1e0e465b3ce475ced525427d4f","ref":"refs/heads/master","pushedAt":"2024-04-10T12:02:39.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"wjt","name":"Will Thompson","path":"/wjt","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/86760?s=80&v=4"},"commit":{"message":"Merge pull request #756 from endlessm/T35218-fix-welcome-version\n\nfixup! welcomeDialog: Welcome users to Endless OS, not GNOME","shortMessageHtmlLink":"Merge pull request #756 from endlessm/T35218-fix-welcome-version"}},{"before":null,"after":"c5183b34cb2269dc2c9d593d504a314bebc601c3","ref":"refs/heads/T35218-fix-welcome-version","pushedAt":"2024-04-10T11:50:46.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"manuq","name":null,"path":"/manuq","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/83944?s=80&v=4"},"commit":{"message":"fixup! welcomeDialog: Welcome users to Endless OS, not GNOME","shortMessageHtmlLink":"fixup! welcomeDialog: Welcome users to Endless OS, not GNOME"}},{"before":null,"after":"4dc1072f654e990010a32c302d4ec9c6e0a6bcde","ref":"refs/heads/eos6.0","pushedAt":"2024-04-03T08:37:32.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"eos-shell-build","name":null,"path":"/eos-shell-build","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4185042?s=80&v=4"},"commit":{"message":"Merge pull request #753 from endlessm/T35064-add-payg-patches\n\nT35064 add payg patches","shortMessageHtmlLink":"Merge pull request #753 from endlessm/T35064-add-payg-patches"}},{"before":null,"after":"a6da614d4de8e1c7304fe8ee842fa6b521a6c826","ref":"refs/heads/debian-eos6.0","pushedAt":"2024-04-03T08:37:32.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"eos-shell-build","name":null,"path":"/eos-shell-build","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4185042?s=80&v=4"},"commit":{"message":"Merge pull request #755 from endlessm/T35077-remove-eos-watermark-extension-debian\n\nRemove eos-watermark from 'endless' session mode","shortMessageHtmlLink":"Merge pull request #755 from endlessm/T35077-remove-eos-watermark-ext…"}},{"before":"b0ba71671acbe81689b8593c6bf915a31f2976b1","after":null,"ref":"refs/heads/T35077-remove-eos-watermark-extension-debian","pushedAt":"2024-03-04T17:29:33.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"manuq","name":null,"path":"/manuq","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/83944?s=80&v=4"}},{"before":"adf5d102a239afb778148c340b9822d51c512ee4","after":"a6da614d4de8e1c7304fe8ee842fa6b521a6c826","ref":"refs/heads/debian-master","pushedAt":"2024-03-04T17:29:30.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"manuq","name":null,"path":"/manuq","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/83944?s=80&v=4"},"commit":{"message":"Merge pull request #755 from endlessm/T35077-remove-eos-watermark-extension-debian\n\nRemove eos-watermark from 'endless' session mode","shortMessageHtmlLink":"Merge pull request #755 from endlessm/T35077-remove-eos-watermark-ext…"}},{"before":null,"after":"b0ba71671acbe81689b8593c6bf915a31f2976b1","ref":"refs/heads/T35077-remove-eos-watermark-extension-debian","pushedAt":"2024-03-04T16:17:08.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"wjt","name":"Will Thompson","path":"/wjt","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/86760?s=80&v=4"},"commit":{"message":"Remove eos-watermark from 'endless' session mode\n\nWe are removing this from the OS.\n\nThis is very lightly used, not enough to justify updating it for GNOME\n43 compatibility.\n\nIf we wish to bring this functionality back in future, we should instead\npackage https://pagure.io/background-logo-extension, which is actually\nthe ancestral source of the eos-watermark-extension code and which is\nactively maintained by a core Shell developer for each Fedora release.\n\nhttps://phabricator.endlessm.com/T35077","shortMessageHtmlLink":"Remove eos-watermark from 'endless' session mode"}},{"before":"a5b06276a508fec34fea8af3b2e0936534db0e2d","after":"bd016d2c2f34b590d1ee4c7fcd00f1e04e2c530e","ref":"refs/heads/eos5.1","pushedAt":"2024-03-01T15:50:10.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"eos-shell-build","name":null,"path":"/eos-shell-build","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4185042?s=80&v=4"},"commit":{"message":"New translations from Transifex","shortMessageHtmlLink":"New translations from Transifex"}},{"before":null,"after":"1068bca2852942bce0015c9746b19f8f7ccfb805","ref":"refs/heads/T34672-moveitem-error","pushedAt":"2024-02-01T01:50:05.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dylanmccall","name":"Dylan McCall","path":"/dylanmccall","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/132063?s=80&v=4"},"commit":{"message":"appDisplay: Handle an error moving nonexistent app icons\n\nWith the added set of application aliases, it is possible that\nBaseAppGridViewLayout._redisplay will call _moveItem for an application\nwhich is no longer present in the icon grid. This requires an unusual\nseries of events, so for simplicity, we will simply log the exception\nand carry on.\n\nhttps://phabricator.endlessm.com/T34672","shortMessageHtmlLink":"appDisplay: Handle an error moving nonexistent app icons"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEYtbSAQA","startCursor":null,"endCursor":null}},"title":"Activity · endlessm/gnome-shell"}