Skip to content

Commit 289c78e

Browse files
(v2) Replace all boniatillo.com to phasereditor2d.com.
1 parent b807d33 commit 289c78e

File tree

26 files changed

+44
-44
lines changed

26 files changed

+44
-44
lines changed

source/v2/phasereditor/org.json/META-INF/MANIFEST.MF

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Bundle-ManifestVersion: 2
33
Bundle-Name: JSON (Modified)
44
Bundle-SymbolicName: org.json
55
Bundle-Version: 1.4.0.20170412
6-
Bundle-Vendor: org.json (boniatillo.com modfications)
6+
Bundle-Vendor: org.json (phasereditor2d.com modfications)
77
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
8-
Export-Package: com.boniatillo.json,
8+
Export-Package: com.phasereditor2d.json,
99
org.json
1010
Automatic-Module-Name: org.json

source/v2/phasereditor/org.json/src/com/boniatillo/json/JSONUtils.java renamed to source/v2/phasereditor/org.json/src/com/phasereditor2d/json/JSONUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
2020
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
2121
// USE OR OTHER DEALINGS IN THE SOFTWARE.
22-
package com.boniatillo.json;
22+
package com.phasereditor2d.json;
2323

2424
import java.lang.reflect.Array;
2525
import java.util.ArrayList;

source/v2/phasereditor/phasereditor.assetpack.core/src/phasereditor/assetpack/core/AssetPackModel.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060

6161
public final class AssetPackModel {
6262
public static final String MEMENT_PROJECT_KEY = "projectName";
63-
static final String MEMENTO_KEY = "com.boniatillo.assetpack.ept.AssetPackModel";
63+
static final String MEMENTO_KEY = "phasereditor.assetpack.core.AssetPackModel";
6464
public static final String PROP_DIRTY = "dirty";
6565
public static final String PROP_FILE = "file";
6666
public static final String PROP_ASSET_KEY = "assetKey";
@@ -162,9 +162,9 @@ private static void writeMeta(JSONObject pack) {
162162
pack.put("meta", meta);
163163
meta.put("generated", Long.toString(System.currentTimeMillis()));
164164
meta.put("app", "Phaser Editor");
165-
meta.put("url", "http://phasereditor.boniatillo.com");
165+
meta.put("url", "https://phasereditor2d.com");
166166
meta.put("version", "1.0");
167-
meta.put("copyright", "Arian Fornaris (c) 2015,2016");
167+
meta.put("copyright", "Arian Fornaris (c) 2015,2018");
168168
}
169169

170170
public void save(IProgressMonitor monitor) {

source/v2/phasereditor/phasereditor.assetpack.core/src/phasereditor/assetpack/core/AudioAssetModel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
import org.json.JSONObject;
3333
import org.json.JSONTokener;
3434

35-
import com.boniatillo.json.JSONUtils;
35+
import com.phasereditor2d.json.JSONUtils;
3636

3737
public class AudioAssetModel extends AssetModel {
3838

source/v2/phasereditor/phasereditor.assetpack.core/src/phasereditor/assetpack/core/VideoAssetModel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
import org.json.JSONException;
3131
import org.json.JSONObject;
3232

33-
import com.boniatillo.json.JSONUtils;
33+
import com.phasereditor2d.json.JSONUtils;
3434

3535
/**
3636
* @author arian

source/v2/phasereditor/phasereditor.assets/feature.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
license-feature="org.eclipse.platform"
88
license-feature-version="4.7.3.v20180301-0715">
99

10-
<description url="http://phasereditor.boniatillo.com">
10+
<description url="http://phasereditor2d.com">
1111
Phaser Asset Pack tooling.
1212
</description>
1313

14-
<copyright url="http://phasereditor.boniatillo.com/blog/about">
14+
<copyright url="http://phasereditor2d.com/blog/about">
1515
Arian Fornaris Copyright - 2015, 2016
1616
</copyright>
1717

source/v2/phasereditor/phasereditor.atlas/feature.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
license-feature="org.eclipse.platform"
88
license-feature-version="4.7.3.v20180301-0715">
99

10-
<description url="http://phasereditor.boniatillo.com">
10+
<description url="http://phasereditor2d.com">
1111
Texture atlas tools.
1212
</description>
1313

14-
<copyright url="http://phasereditor.boniatillo.com/blog/about">
14+
<copyright url="http://phasereditor2d.com/blog/about">
1515
Arian Fornaris Copyright - 2015, 2016
1616
</copyright>
1717

source/v2/phasereditor/phasereditor.audio/feature.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
license-feature="org.eclipse.platform"
88
license-feature-version="4.7.3.v20180301-0715">
99

10-
<description url="http://phasereditor.boniatillo.com">
10+
<description url="http://phasereditor2d.com">
1111
Audio player and related.
1212
</description>
1313

14-
<copyright url="http://phasereditor.boniatillo.com/blog/about">
14+
<copyright url="http://phasereditor2d.com/blog/about">
1515
Arian Fornaris Copyright - 2015, 2016
1616
</copyright>
1717

source/v2/phasereditor/phasereditor.audiosprite/feature.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
license-feature="org.eclipse.platform"
88
license-feature-version="4.7.3.v20180301-0715">
99

10-
<description url="http://phasereditor.boniatillo.com">
10+
<description url="http://phasereditor2d.com">
1111
AudioSprite tooling.
1212
</description>
1313

14-
<copyright url="http://phasereditor.boniatillo.com/blog/about">
14+
<copyright url="http://phasereditor2d.com/blog/about">
1515
Arian Fornaris Copyright - 2015, 2016
1616
</copyright>
1717

source/v2/phasereditor/phasereditor.canvas/feature.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
license-feature="org.eclipse.platform"
88
license-feature-version="4.7.3.v20180301-0715">
99

10-
<description url="http://phasereditor.boniatillo.com">
10+
<description url="http://phasereditor2d.com">
1111
Scene, levels and game objects visual editor.
1212
</description>
1313

14-
<copyright url="http://phasereditor.boniatillo.com/blog/about">
14+
<copyright url="http://phasereditor2d.com/blog/about">
1515
Arian Fornaris Copyright - 2015, 2016
1616
</copyright>
1717

0 commit comments

Comments
 (0)