Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rebrand app to Dsub2000 #25

Merged
merged 1 commit into from
May 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ServerProxy/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="github.daneren2005.serverproxy">
package="github.paroj.serverproxy">

<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
</manifest>
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
Copyright 2014 (C) Scott Jackson
*/

package github.daneren2005.serverproxy;
package github.paroj.serverproxy;

import java.io.File;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
Copyright 2014 (C) Scott Jackson
*/

package github.daneren2005.serverproxy;
package github.paroj.serverproxy;

import java.io.File;
import java.net.Socket;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
Copyright 2014 (C) Scott Jackson
*/

package github.daneren2005.serverproxy;
package github.paroj.serverproxy;

import java.io.BufferedOutputStream;
import java.io.File;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,18 @@
Copyright 2014 (C) Scott Jackson
*/

package github.daneren2005.serverproxy;
package github.paroj.serverproxy;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;
import java.math.BigInteger;
import java.net.HttpURLConnection;
import java.net.InetAddress;
import java.net.ServerSocket;
import java.net.Socket;
import java.net.SocketTimeoutException;
import java.net.URL;
import java.net.URLDecoder;
import java.net.URLEncoder;
import java.net.UnknownHostException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
Copyright 2014 (C) Scott Jackson
*/

package github.daneren2005.serverproxy;
package github.paroj.serverproxy;

import android.content.Context;
import android.util.Log;
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ android {
compileSdkVersion 30

defaultConfig {
applicationId "github.daneren2005.dsub"
applicationId "github.paroj.dsub2000"
minSdkVersion 24
targetSdkVersion 30
versionCode 208
Expand Down Expand Up @@ -54,7 +54,7 @@ android {
}
}

namespace 'github.daneren2005.dsub'
namespace 'github.paroj.dsub2000'
lint {
checkReleaseBuilds false
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
package github.daneren2005.dsub;

import android.app.Application;
package github.paroj.dsub2000;

/**
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package github.daneren2005.dsub.activity;
package github.paroj.dsub2000.activity;

import github.daneren2005.dsub.R;
import github.paroj.dsub2000.R;
import androidx.test.rule.ActivityTestRule;

import org.junit.Before;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
package github.daneren2005.dsub.adapter;

import org.junit.Test;
package github.paroj.dsub2000.adapter;

import static org.junit.Assert.assertEquals;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

import github.daneren2005.dsub.domain.MusicDirectory.Entry;
import github.paroj.dsub2000.domain.MusicDirectory.Entry;


public class EntryGridAdapterTest {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package github.daneren2005.dsub.domain;
package github.paroj.dsub2000.domain;

import java.text.ParseException;
import java.text.SimpleDateFormat;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package github.daneren2005.dsub.domain;
package github.paroj.dsub2000.domain;

import java.util.ArrayList;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package github.daneren2005.dsub.domain;
package github.paroj.dsub2000.domain;

import java.text.ParseException;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
package github.daneren2005.dsub.service;
package github.paroj.dsub2000.service;

import static github.daneren2005.dsub.domain.PlayerState.COMPLETED;
import static github.daneren2005.dsub.domain.PlayerState.IDLE;
import static github.daneren2005.dsub.domain.PlayerState.PAUSED;
import static github.daneren2005.dsub.domain.PlayerState.STARTED;
import static github.daneren2005.dsub.domain.PlayerState.STOPPED;
import static github.paroj.dsub2000.domain.PlayerState.COMPLETED;
import static github.paroj.dsub2000.domain.PlayerState.IDLE;
import static github.paroj.dsub2000.domain.PlayerState.PAUSED;
import static github.paroj.dsub2000.domain.PlayerState.STARTED;
import static github.paroj.dsub2000.domain.PlayerState.STOPPED;
import java.util.List;

import github.daneren2005.dsub.activity.SubsonicFragmentActivity;
import github.daneren2005.dsub.domain.MusicDirectory;
import github.daneren2005.dsub.domain.PlayerState;
import github.paroj.dsub2000.activity.SubsonicFragmentActivity;
import github.paroj.dsub2000.domain.MusicDirectory;
import github.paroj.dsub2000.domain.PlayerState;

import java.util.LinkedList;

import android.app.Instrumentation;
import android.content.Context;
import android.util.Log;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package github.daneren2005.dsub.util.compat;
package github.paroj.dsub2000.util.compat;

import android.content.Context;
import androidx.mediarouter.media.MediaRouter;

import github.daneren2005.dsub.service.DownloadService;
import github.daneren2005.dsub.service.RemoteController;
import github.paroj.dsub2000.service.DownloadService;
import github.paroj.dsub2000.service.RemoteController;


// Provides stubs for Google-related functionality
Expand Down
4 changes: 2 additions & 2 deletions app/src/google/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<application android:label="@string/common.appname"
android:backupAgent="github.daneren2005.dsub.util.SettingsBackupAgent"
android:backupAgent="github.paroj.dsub2000.util.SettingsBackupAgent"
android:icon="@drawable/launch"
android:theme="@style/Theme.DSub.Light"
android:theme="@style/Theme.DSub2000.Light"
android:largeHeap="true">

<meta-data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
Copyright 2014 (C) Scott Jackson
*/

package github.daneren2005.dsub.service;
package github.paroj.dsub2000.service;

import android.content.SharedPreferences;
import android.net.Uri;
Expand All @@ -37,19 +37,19 @@
import java.io.File;
import java.io.IOException;

import github.daneren2005.dsub.R;
import github.daneren2005.dsub.domain.MusicDirectory;
import github.daneren2005.dsub.domain.PlayerState;
import github.daneren2005.dsub.domain.RemoteControlState;
import github.daneren2005.dsub.util.Constants;
import github.daneren2005.dsub.util.EnvironmentVariables;
import github.daneren2005.dsub.util.FileUtil;
import github.daneren2005.dsub.util.Util;
import github.daneren2005.serverproxy.FileProxy;
import github.daneren2005.serverproxy.ServerProxy;
import github.daneren2005.serverproxy.WebProxy;

import static github.daneren2005.dsub.util.compat.GoogleCompat.castApplicationId;
import github.paroj.dsub2000.R;
import github.paroj.dsub2000.domain.MusicDirectory;
import github.paroj.dsub2000.domain.PlayerState;
import github.paroj.dsub2000.domain.RemoteControlState;
import github.paroj.dsub2000.util.Constants;
import github.paroj.dsub2000.util.EnvironmentVariables;
import github.paroj.dsub2000.util.FileUtil;
import github.paroj.dsub2000.util.Util;
import github.paroj.serverproxy.FileProxy;
import github.paroj.serverproxy.ServerProxy;
import github.paroj.serverproxy.WebProxy;

import static github.paroj.dsub2000.util.compat.GoogleCompat.castApplicationId;

/**
* Created by owner on 2/9/14.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package github.daneren2005.dsub.util.compat;
package github.paroj.dsub2000.util.compat;

import android.content.Context;
import androidx.mediarouter.media.MediaRouter;
Expand All @@ -11,10 +11,10 @@
import com.google.android.gms.security.ProviderInstaller;
import static com.google.android.gms.cast.CastMediaControlIntent.DEFAULT_MEDIA_RECEIVER_APPLICATION_ID;

import github.daneren2005.dsub.service.ChromeCastController;
import github.daneren2005.dsub.service.DownloadService;
import github.daneren2005.dsub.service.RemoteController;
import github.daneren2005.dsub.util.EnvironmentVariables;
import github.paroj.dsub2000.service.ChromeCastController;
import github.paroj.dsub2000.service.DownloadService;
import github.paroj.dsub2000.service.RemoteController;
import github.paroj.dsub2000.util.EnvironmentVariables;

public final class GoogleCompat {

Expand Down
Loading