Skip to content

Commit 3e9cf8e

Browse files
committed
change RDNN
1 parent a841210 commit 3e9cf8e

11 files changed

+27
-22
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
uses: flatpak/flatpak-github-actions/flatpak-builder@v6
3939
with:
4040
bundle: AppGenerator.flatpak
41-
manifest-path: io.github.ecommunity.app-generator.yml
41+
manifest-path: io.github.ellie_commons.app-generator.yml
4242
run-tests: true
4343
repository-name: appcenter
4444
repository-url: https://flatpak.elementary.io/repo.flatpakrepo

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<h3 align="center">Create an elementary OS app using one of the pre-made app templates</h3>
77
</div>
88

9-
![Screenshot](https://raw.githubusercontent.com/elementary-community/app-generator/refs/heads/main/data/io.github.ecommunity.app-generator.png)
9+
![Screenshot](https://raw.githubusercontent.com/elementary-community/app-generator/refs/heads/main/data/io.github.ellie_commons.app-generator.png)
1010

1111
## Building and Installation
1212

@@ -27,23 +27,23 @@ cd build
2727
ninja
2828
```
2929

30-
To install, use `ninja install`, then execute with `io.github.ecommunity.app-generator`
30+
To install, use `ninja install`, then execute with `io.github.ellie_commons.app-generator`
3131

3232
```bash
3333
ninja install
34-
io.github.ecommunity.app-generator
34+
io.github.ellie_commons.app-generator
3535
```
3636

3737
## Flatpak
3838

3939
Run `flatpak-builder` to configure the build environment, download dependencies, build, and install
4040

4141
```bash
42-
flatpak-builder build io.github.ecommunity.app-generator.yml --user --install --force-clean --install-deps-from=appcenter
42+
flatpak-builder build io.github.ellie_commons.app-generator.yml --user --install --force-clean --install-deps-from=appcenter
4343
```
4444

4545
Then execute with
4646

4747
```bash
48-
flatpak run io.github.ecommunity.app-generator
48+
flatpak run io.github.ellie_commons.app-generator
4949
```

data/app-generator.appdata.xml.in

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<component type="desktop-application">
3-
<id>io.github.ecommunity.app-generator</id>
3+
<id>io.github.ellie_commons.app-generator</id>
44
<metadata_license>CC-BY-4.0</metadata_license>
55
<project_license>GPL-3.0-or-later</project_license>
66
<name>App Generator</name>
@@ -12,17 +12,22 @@
1212
</description>
1313
<screenshots>
1414
<screenshot type="default">
15-
<image>https://raw.githubusercontent.com/elementary-community/app-generator/refs/heads/main/data/io.github.ecommunity.app-generator.png</image>
15+
<image>https://raw.githubusercontent.com/elementary-community/app-generator/refs/heads/main/data/io.github.ellie_commons.app-generator.png</image>
1616
</screenshot>
1717
</screenshots>
1818
<kudos>
1919
<kudo>ModernToolkit</kudo>
2020
<kudo>HiDpiIcon</kudo>
2121
</kudos>
2222
<developer_name translate="no">elementary Community</developer_name>
23+
24+
<developer id="org.elementaryos">
25+
<name>elementary, Inc.</name>
26+
</developer>
27+
2328
<url type="homepage">https://github.com/elementary-community/app-generator</url>
2429
<url type="bugtracker">https://github.com/elementary-community/app-generator/issues</url>
25-
<launchable type="desktop-id">io.github.ecommunity.app-generator.desktop</launchable>
30+
<launchable type="desktop-id">io.github.ellie_commons.app-generator.desktop</launchable>
2631
<releases>
2732
<release version="1.0.0" date="2024-10-08">
2833
<description>

data/app-generator.desktop.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ Name=App Generator
66
Comment=Create an elementary OS app using one of the pre-made app templates.
77
Categories=Development;Education;
88

9-
Icon=io.github.ecommunity.app-generator
10-
Exec=io.github.ecommunity.app-generator
9+
Icon=io.github.ellie_commons.app-generator
10+
Exec=io.github.ellie_commons.app-generator
1111
Terminal=false

data/app-generator.gresource.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<gresources>
3-
<gresource prefix="/io/github/ecommunity/app-generator/">
3+
<gresource prefix="/io/github/ellie_commons/app-generator/">
44
<file alias="Application.css">Application.css</file>
55
</gresource>
66
</gresources>

data/app-generator.gschema.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<schemalist>
3-
<schema path="/io/github/ecommunity/app-generator/" id="io.github.ecommunity.app-generator">
3+
<schema path="/io/github/ellie_commons/app-generator/" id="io.github.ellie_commons.app-generator">
44
<key name="window-height" type="i">
55
<default>700</default>
66
<summary>Most recent window height</summary>

io.github.ecommunity.app-generator.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This is the same ID that you've used in meson.build and other files
2-
app-id: io.github.ecommunity.app-generator
2+
app-id: io.github.ellie_commons.app-generator
33

44
# Instead of manually specifying a long list of build and runtime dependencies,
55
# we can use a convenient pre-made runtime and SDK. For this example, we'll be
@@ -10,7 +10,7 @@ sdk: io.elementary.Sdk
1010

1111
# This should match the exec line in your .desktop file and usually is the same
1212
# as your app ID
13-
command: io.github.ecommunity.app-generator
13+
command: io.github.ellie_commons.app-generator
1414

1515
# Here we can specify the kinds of permissions our app needs to run. Since we're
1616
# not using hardware like webcams, making sound, or reading external files, we

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# project name and programming language
22
project(
3-
'io.github.ecommunity.app-generator',
3+
'io.github.ellie_commons.app-generator',
44
'vala', 'c',
55
version: '0.1'
66
)

po/io.github.ecommunity.app-generator.pot

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# SOME DESCRIPTIVE TITLE.
22
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3-
# This file is distributed under the same license as the io.github.ecommunity.app-generator package.
3+
# This file is distributed under the same license as the io.github.ellie_commons.app-generator package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
#, fuzzy
77
msgid ""
88
msgstr ""
9-
"Project-Id-Version: io.github.ecommunity.app-generator\n"
9+
"Project-Id-Version: io.github.ellie_commons.app-generator\n"
1010
"Report-Msgid-Bugs-To: \n"
1111
"POT-Creation-Date: 2024-10-13 09:15+0300\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"

src/Application.vala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public class AppGenerator : Gtk.Application {
1919

2020
public AppGenerator () {
2121
Object (
22-
application_id: "io.github.ecommunity.app-generator",
22+
application_id: "io.github.ellie_commons.app-generator",
2323
flags: ApplicationFlags.FLAGS_NONE
2424
);
2525
}
@@ -55,7 +55,7 @@ public class AppGenerator : Gtk.Application {
5555
* Set maximize after height/width else window is min size on unmaximize
5656
* Bind maximize as SET else get get bad sizes
5757
*/
58-
var settings = new Settings ("io.github.ecommunity.app-generator");
58+
var settings = new Settings ("io.github.ellie_commons.app-generator");
5959
settings.bind ("window-height", main_window, "default-height", SettingsBindFlags.DEFAULT);
6060
settings.bind ("window-width", main_window, "default-width", SettingsBindFlags.DEFAULT);
6161

@@ -67,7 +67,7 @@ public class AppGenerator : Gtk.Application {
6767

6868
// Use Css
6969
var provider = new Gtk.CssProvider ();
70-
provider.load_from_resource ("/io/github/ecommunity/app-generator/Application.css");
70+
provider.load_from_resource ("/io/github/ellie_commons/app-generator/Application.css");
7171

7272
Gtk.StyleContext.add_provider_for_display (
7373
Gdk.Display.get_default (),

0 commit comments

Comments
 (0)