Skip to content

Commit 1bd62db

Browse files
sonnyplw64
authored andcommitted
sonnyp/Workbench -> workbenchdev/Workbench
1 parent a1faaf8 commit 1bd62db

File tree

8 files changed

+17
-17
lines changed

8 files changed

+17
-17
lines changed

CONTRIBUTING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The following is the recommended setup:
88

99
1. Install [GNOME Builder from Flathub](https://flathub.org/apps/details/org.gnome.Builder)
1010
2. Open Builder and select "Clone Repository..."
11-
3. Clone `https://github.com/sonnyp/Workbench.git` (or your fork)
11+
3. Clone `https://github.com/workbenchdev/Workbench.git` (or your fork)
1212
4. Press the Run ▶ button
1313

1414
Make sure that you're building the development target `re.sonny.Workbench.Devel`.
@@ -74,7 +74,7 @@ Library examples and demos have 3 functions
7474

7575
Pick a widget and make a Library demo for it within Workbench directly.
7676

77-
Check [here for ideas](https://github.com/sonnyp/Workbench/issues/69) and [here for examples](https://github.com/sonnyp/Workbench/issues?q=label%3A%22Library+%F0%9F%93%9A%EF%B8%8F%22).
77+
Check [here for ideas](https://github.com/workbenchdev/Workbench/issues/69) and [here for examples](https://github.com/workbenchdev/Workbench/issues?q=label%3A%22Library+%F0%9F%93%9A%EF%B8%8F%22).
7878

7979
Feel free to reach out and ask for a topic or feedback.
8080

@@ -87,7 +87,7 @@ Some guidelines
8787
- Keep it concise and interactive
8888
- Add links to follow up on the topic covered
8989
- Follow the patterns of existing entries
90-
- Follow [the Style Guide](https://github.com/sonnyp/Workbench/wiki/Style-Guide)
90+
- Follow [the Style Guide](https://github.com/workbenchdev/Workbench/wiki/Style-Guide)
9191

9292
## Create Library entry
9393

@@ -119,13 +119,13 @@ Some guidelines:
119119
- Test your code before asking for review, for example by starting Workbench and opening the Library entry
120120
- Always review your own work before asking someone else
121121

122-
See also [the list of Library entries](https://github.com/sonnyp/Workbench/wiki/Language-support-table) and some additional instructions on the Wiki.
122+
See also [the list of Library entries](https://github.com/workbenchdev/Workbench/wiki/Language-support-table) and some additional instructions on the Wiki.
123123

124124
## Learn
125125

126126
Here is a compilation of resources to learn more about the GNOME platform.
127127

128-
- [Workbench](https://github.com/sonnyp/Workbench) 😉
128+
- [Workbench](https://github.com/workbenchdev/Workbench) 😉
129129
- [GObject](https://gjs.guide/guides/gobject/basics.html#gobject-construction)
130130
- [GTK4 + GJS Book](https://rmnvgr.gitlab.io/gtk4-gjs-book/)
131131
- [Asynchronous programming](https://gjs.guide/guides/gjs/asynchronous-programming.html)

data/app.metainfo.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,19 @@
3131
<url type="vcs-browser">https://workbench.sonny.re/source</url>
3232
<screenshots>
3333
<screenshot type="default">
34-
<image>https://raw.githubusercontent.com/sonnyp/Workbench/main/data/screenshot.png</image>
34+
<image>https://raw.githubusercontent.com/workbenchdev/Workbench/main/data/screenshot.png</image>
3535
</screenshot>
3636
<screenshot>
37-
<image>https://raw.githubusercontent.com/sonnyp/Workbench/main/data/screenshot-code.png</image>
37+
<image>https://raw.githubusercontent.com/workbenchdev/Workbench/main/data/screenshot-code.png</image>
3838
</screenshot>
3939
<screenshot>
40-
<image>https://raw.githubusercontent.com/sonnyp/Workbench/main/data/screenshot-library.png</image>
40+
<image>https://raw.githubusercontent.com/workbenchdev/Workbench/main/data/screenshot-library.png</image>
4141
</screenshot>
4242
<screenshot>
43-
<image>https://raw.githubusercontent.com/sonnyp/Workbench/main/data/screenshot-extensions.png</image>
43+
<image>https://raw.githubusercontent.com/workbenchdev/Workbench/main/data/screenshot-extensions.png</image>
4444
</screenshot>
4545
<screenshot>
46-
<image>https://raw.githubusercontent.com/sonnyp/Workbench/main/data/screenshot-manuals.png</image>
46+
<image>https://raw.githubusercontent.com/workbenchdev/Workbench/main/data/screenshot-manuals.png</image>
4747
</screenshot>
4848
</screenshots>
4949
<content_rating type="oars-1.1" />
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// Sorry, this demo is not available in Vala yet.
2-
// see https://github.com/sonnyp/Workbench/issues/110
2+
// see https://github.com/workbenchdev/Workbench/issues/110

src/Library/demos/Toasts/main.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public void main () {
1717
});
1818

1919
// Sorry, this example is not available in Vala yet.
20-
// see https://github.com/sonnyp/Workbench/issues/110
20+
// see https://github.com/workbenchdev/Workbench/issues/110
2121
var button_advanced = workbench.builder.get_object("button_advanced") as Gtk.Button;
2222
button_advanced.sensitive = false;
2323
}

src/Previewer/Internal.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export default function Internal({
128128
// AdwWindow and AdwApplicationWindow have child and titlebar properties but do not support setting them
129129
// "Using gtk_window_get_titlebar() and gtk_window_set_titlebar() is not supported and will result in a crash."
130130
// https://gnome.pages.gitlab.gnome.org/libadwaita/doc/1.4/class.Window.html
131-
// https://github.com/sonnyp/Workbench/issues/130
131+
// https://github.com/workbenchdev/Workbench/issues/130
132132
if (
133133
(object_preview instanceof Adw.Window ||
134134
object_preview instanceof Adw.ApplicationWindow) &&
@@ -200,7 +200,7 @@ export default function Internal({
200200

201201
let style = css;
202202
if (!style) return;
203-
// Workaround https://github.com/sonnyp/Workbench/issues/147
203+
// Workaround https://github.com/workbenchdev/Workbench/issues/147
204204
if (style.match(/#$/g)) return;
205205

206206
try {

src/about.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ ${getBlueprintVersion()}
3535
version: pkg.version,
3636
website: "https://workbench.sonny.re",
3737
application_icon: pkg.name,
38-
issue_url: "https://github.com/sonnyp/Workbench/issues",
38+
issue_url: "https://github.com/workbenchdev/Workbench/issues",
3939
// TRANSLATORS: eg. 'Translator Name <[email protected]>' or 'Translator Name https://website.example'
4040
translator_credits: _("translator-credits"),
4141
debug_info,

src/lsp/LSPClient.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ export default class LSPClient {
188188

189189
async _read_content(length) {
190190
// read_bytes is limited by some underlying max buffer size
191-
// see https://github.com/sonnyp/Workbench/issues/240#issuecomment-1475387647
191+
// see https://github.com/workbenchdev/Workbench/issues/240#issuecomment-1475387647
192192
// read_all is not supported in GJS so we do this instead
193193
// https://gitlab.gnome.org/GNOME/gjs/-/issues/501
194194
const uint8 = new Uint8Array(length);

src/overrides.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export function overrides() {
2424
// GTypeName must be unique globally
2525
// there is no unregister equivalent to registerClass and
2626
// this is what GNOME Shell does too according to Verdre
27-
// https://github.com/sonnyp/Workbench/issues/50
27+
// https://github.com/workbenchdev/Workbench/issues/50
2828
// https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/1011#note_451228
2929
// https://gitlab.gnome.org/GNOME/glib/-/issues/282#note_662735
3030
// https://gitlab.gnome.org/GNOME/glib/-/issues/2336

0 commit comments

Comments
 (0)