Found and updated some remaining old package paths.

This commit is contained in:
Relintai 2024-02-23 00:51:21 +01:00
parent d44d8c2bcd
commit 973b686a86
5 changed files with 6 additions and 6 deletions

View File

@ -1,12 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2017-2022 Rémi Verschelde <remi@godotengine.org> -->
<component type="desktop">
<id>net.relintai.pandemonium.Pandemonium</id>
<id>org.pandemoniumengine.pandemonium.Pandemonium</id>
<metadata_license>CC0-1.0</metadata_license>
<project_license>MIT</project_license>
<name>Pandemonium Engine</name>
<summary>Multi-platform 2D and 3D game engine with a feature-rich editor</summary>
<launchable type="desktop-id">net.relintai.pandemonium.Pandemonium.desktop</launchable>
<launchable type="desktop-id">org.pandemoniumengine.pandemonium.Pandemonium.desktop</launchable>
<description>
<p>
Pandemonium is an advanced, feature-packed, multi-platform 2D and 3D game

View File

@ -1,5 +1,5 @@
#!/bin/sh
SKIP_LIST="./.git,./bin,./thirdparty,*.gen.*,*.po,*.pot,package-lock.json,./core/string/locales.h,./DONORS.md,./misc/dist/linux/net.relintai.pandemonium.Pandemonium.desktop,./misc/scripts/codespell.sh,./modules/database_sqlite/sqlite/*,./modules/lz4/thirdparty/*,./modules/web/html/libs/*,./modules/mesh_utils/xatlas/*,./modules/mesh_utils/delaunay/*"
SKIP_LIST="./.git,./bin,./thirdparty,*.gen.*,*.po,*.pot,package-lock.json,./core/string/locales.h,./DONORS.md,./misc/dist/linux/org.pandemoniumengine.pandemonium.Pandemonium.desktop,./misc/scripts/codespell.sh,./modules/database_sqlite/sqlite/*,./modules/lz4/thirdparty/*,./modules/web/html/libs/*,./modules/mesh_utils/xatlas/*,./modules/mesh_utils/delaunay/*"
IGNORE_LIST="ba,childs,commiting,complies,curvelinear,doubleclick,expct,fave,findn,gird,inout,leapyear,lod,nd,numer,ois,readded,ro,statics,switchs,te,varius,varn,translater,acount,matc,ede"
codespell -w -q 3 -S "${SKIP_LIST}" -L "${IGNORE_LIST}"

View File

@ -8,7 +8,7 @@
<!-- Records the version of the Pandemonium library -->
<meta-data
android:name="net.relintai.pandemonium.library.version"
android:name="org.pandemoniumengine.pandemonium.library.version"
android:value="${pandemoniumLibraryVersion}" />
<service android:name=".PandemoniumDownloaderService" />

View File

@ -65,7 +65,7 @@ import org.pandemoniumengine.pandemonium.Pandemonium;
* A stable version is available for each release.
* <p>
* - The library must include a <meta-data> tag in its manifest file setup as follow:
* <meta-data android:name="net.relintai.pandemonium.plugin.v1.[PluginName]" android:value="[plugin.init.ClassFullName]" />
* <meta-data android:name="org.pandemoniumengine.pandemonium.plugin.v1.[PluginName]" android:value="[plugin.init.ClassFullName]" />
* Where:
* - 'PluginName' is the name of the plugin.
* - 'plugin.init.ClassFullName' is the full name (package + class name) of the plugin class

View File

@ -53,7 +53,7 @@ import org.pandemoniumengine.pandemonium.Pandemonium;
public final class PandemoniumPluginRegistry {
private static final String TAG = PandemoniumPluginRegistry.class.getSimpleName();
private static final String PANDEMONIUM_PLUGIN_V1_NAME_PREFIX = "net.relintai.pandemonium.plugin.v1.";
private static final String PANDEMONIUM_PLUGIN_V1_NAME_PREFIX = "org.pandemoniumengine.pandemonium.plugin.v1.";
private static PandemoniumPluginRegistry instance;
private final ConcurrentHashMap<String, PandemoniumPlugin> registry;