mirror of
https://github.com/antebudimir/tempus.git
synced 2025-12-31 09:33:33 +00:00
refactor: app name
This commit is contained in:
parent
d6d29d5998
commit
abd488b34a
6 changed files with 8 additions and 9 deletions
2
.idea/.name
generated
2
.idea/.name
generated
|
|
@ -1 +1 @@
|
||||||
Play
|
Tempo
|
||||||
|
|
@ -7,7 +7,7 @@ android {
|
||||||
buildToolsVersion '33.0.0'
|
buildToolsVersion '33.0.0'
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId 'com.cappielloantonio.playforsubsonic'
|
applicationId 'com.cappielloantonio.tempo'
|
||||||
minSdkVersion 24
|
minSdkVersion 24
|
||||||
targetSdkVersion 33
|
targetSdkVersion 33
|
||||||
versionCode 4
|
versionCode 4
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
package com.cappielloantonio.play.database;
|
package com.cappielloantonio.play.database;
|
||||||
|
|
||||||
import androidx.room.AutoMigration;
|
|
||||||
import androidx.room.Database;
|
import androidx.room.Database;
|
||||||
import androidx.room.Room;
|
import androidx.room.Room;
|
||||||
import androidx.room.RoomDatabase;
|
import androidx.room.RoomDatabase;
|
||||||
|
|
@ -20,13 +19,13 @@ import com.cappielloantonio.play.model.RecentSearch;
|
||||||
import com.cappielloantonio.play.model.Server;
|
import com.cappielloantonio.play.model.Server;
|
||||||
|
|
||||||
@Database(
|
@Database(
|
||||||
version = 62,
|
version = 1,
|
||||||
entities = {Queue.class, Server.class, RecentSearch.class, Download.class, Chronology.class}
|
entities = {Queue.class, Server.class, RecentSearch.class, Download.class, Chronology.class}
|
||||||
// autoMigrations = {@AutoMigration(from = 61, to = 62)}
|
// autoMigrations = {@AutoMigration(from = 61, to = 62)}
|
||||||
)
|
)
|
||||||
@TypeConverters({DateConverters.class})
|
@TypeConverters({DateConverters.class})
|
||||||
public abstract class AppDatabase extends RoomDatabase {
|
public abstract class AppDatabase extends RoomDatabase {
|
||||||
private final static String DB_NAME = "play_db";
|
private final static String DB_NAME = "tempo_db";
|
||||||
private static AppDatabase instance;
|
private static AppDatabase instance;
|
||||||
|
|
||||||
public static synchronized AppDatabase getInstance() {
|
public static synchronized AppDatabase getInstance() {
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ import java.util.UUID;
|
||||||
public class SubsonicPreferences {
|
public class SubsonicPreferences {
|
||||||
private String serverUrl;
|
private String serverUrl;
|
||||||
private String username;
|
private String username;
|
||||||
private String clientName = "Play";
|
private String clientName = "Tempo";
|
||||||
private SubsonicAuthentication authentication;
|
private SubsonicAuthentication authentication;
|
||||||
|
|
||||||
public String getServerUrl() {
|
public String getServerUrl() {
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
<string name="album_page_extra_info_button">More like this</string>
|
<string name="album_page_extra_info_button">More like this</string>
|
||||||
<string name="album_page_play_button">Play</string>
|
<string name="album_page_play_button">Play</string>
|
||||||
<string name="album_page_shuffle_button">Shuffle</string>
|
<string name="album_page_shuffle_button">Shuffle</string>
|
||||||
<string name="app_name">Play</string>
|
<string name="app_name">Tempo</string>
|
||||||
<string name="artist_bottom_sheet_instant_mix">Instant mix</string>
|
<string name="artist_bottom_sheet_instant_mix">Instant mix</string>
|
||||||
<string name="artist_bottom_sheet_shuffle">Shuffle</string>
|
<string name="artist_bottom_sheet_shuffle">Shuffle</string>
|
||||||
<string name="artist_catalogue_title">Artists</string>
|
<string name="artist_catalogue_title">Artists</string>
|
||||||
|
|
@ -154,7 +154,7 @@
|
||||||
<string name="server_unreachable_dialog_positive_button">Continue anyway</string>
|
<string name="server_unreachable_dialog_positive_button">Continue anyway</string>
|
||||||
<string name="server_unreachable_dialog_title">Server unreachable</string>
|
<string name="server_unreachable_dialog_title">Server unreachable</string>
|
||||||
<string name="server_unreachable_dialog_summary">The requested server is unavailable. If you choose to continue this dialog will not appear for the next hour.</string>
|
<string name="server_unreachable_dialog_summary">The requested server is unavailable. If you choose to continue this dialog will not appear for the next hour.</string>
|
||||||
<string name="settings_about_summary">Play is an open source and lightweight music client for Subsonic, designed and built natively for Android.</string>
|
<string name="settings_about_summary">Tempo is an open source and lightweight music client for Subsonic, designed and built natively for Android.</string>
|
||||||
<string name="settings_about_title">About</string>
|
<string name="settings_about_title">About</string>
|
||||||
<string name="settings_audio_transcode_format_mobile">Transcode format in mobile</string>
|
<string name="settings_audio_transcode_format_mobile">Transcode format in mobile</string>
|
||||||
<string name="settings_audio_transcode_format_wifi">Transcode format in Wi-Fi</string>
|
<string name="settings_audio_transcode_format_wifi">Transcode format in Wi-Fi</string>
|
||||||
|
|
|
||||||
|
|
@ -1,2 +1,2 @@
|
||||||
include ':app'
|
include ':app'
|
||||||
rootProject.name = "Play"
|
rootProject.name = "Tempo"
|
||||||
Loading…
Add table
Add a link
Reference in a new issue