ref: rename net.angeltech to jp.angeltech to match domain
|
Before Width: | Height: | Size: 5.0 KiB After Width: | Height: | Size: 5.0 KiB |
|
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 4.9 KiB |
|
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 5.1 KiB |
|
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 4.9 KiB |
@@ -1,4 +1,4 @@
|
||||
application_id = 'net.angeltech.MoeMoji'
|
||||
application_id = 'jp.angeltech.MoeMoji'
|
||||
|
||||
scalable_dir = join_paths('hicolor', 'scalable', 'apps')
|
||||
install_data(
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<component type="desktop-application">
|
||||
<id>net.angeltech.MoeMoji</id>
|
||||
<id>jp.angeltech.MoeMoji</id>
|
||||
|
||||
<name>MoeMoji</name>
|
||||
<summary>Moe picker!</summary>
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
<metadata_license>CC0-1.0</metadata_license>
|
||||
|
||||
<launchable type="desktop-id">net.angeltech.MoeMoji.desktop</launchable>
|
||||
<launchable type="desktop-id">jp.angeltech.MoeMoji.desktop</launchable>
|
||||
<project_license>WTFPL</project_license>
|
||||
<content_rating type="oars-1.1" />
|
||||
</component>
|
||||
@@ -2,7 +2,7 @@
|
||||
Type=Application
|
||||
Name=MoeMoji
|
||||
Comment=Japanese emoticon picker!
|
||||
Icon=net.angeltech.MoeMoji
|
||||
Icon=jp.angeltech.MoeMoji
|
||||
Exec=moemoji
|
||||
Terminal=false
|
||||
Categories=Accessibility;GTK;Utility;
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<schemalist gettext-domain="moemoji">
|
||||
<schema id='net.angeltech.MoeMoji' path='/net/angeltech/MoeMoji/'>
|
||||
<schema id='jp.angeltech.MoeMoji' path='/jp/angeltech/MoeMoji/'>
|
||||
</schema>
|
||||
</schemalist>
|
||||
@@ -1,6 +1,6 @@
|
||||
desktop_file = i18n.merge_file(
|
||||
input: 'net.angeltech.MoeMoji.desktop.in',
|
||||
output: 'net.angeltech.MoeMoji.desktop',
|
||||
input: 'jp.angeltech.MoeMoji.desktop.in',
|
||||
output: 'jp.angeltech.MoeMoji.desktop',
|
||||
type: 'desktop',
|
||||
po_dir: '../po',
|
||||
install: true,
|
||||
@@ -15,8 +15,8 @@ if desktop_utils.found()
|
||||
endif
|
||||
|
||||
appstream_file = i18n.merge_file(
|
||||
input: 'net.angeltech.MoeMoji.appdata.xml.in',
|
||||
output: 'net.angeltech.MoeMoji.appdata.xml',
|
||||
input: 'jp.angeltech.MoeMoji.appdata.xml.in',
|
||||
output: 'jp.angeltech.MoeMoji.appdata.xml',
|
||||
po_dir: '../po',
|
||||
install: true,
|
||||
install_dir: join_paths(get_option('datadir'), 'appdata')
|
||||
@@ -29,12 +29,12 @@ if appstream_util.found()
|
||||
)
|
||||
endif
|
||||
|
||||
gnome.compile_schemas(build_by_default: true, depend_files: 'net.angeltech.MoeMoji.gschema.xml')
|
||||
gnome.compile_schemas(build_by_default: true, depend_files: 'jp.angeltech.MoeMoji.gschema.xml')
|
||||
devenv = environment()
|
||||
devenv.set('GSETTINGS_SCHEMA_DIR', meson.current_build_dir() / 'data')
|
||||
meson.add_devenv(devenv)
|
||||
|
||||
install_data('net.angeltech.MoeMoji.gschema.xml',
|
||||
install_data('jp.angeltech.MoeMoji.gschema.xml',
|
||||
install_dir: join_paths(get_option('datadir'), 'glib-2.0/schemas')
|
||||
)
|
||||
|
||||
|
||||