mirror of
https://github.com/CappielloAntonio/tempo.git
synced 2025-12-23 16:08:00 -05:00
refactor: app name
This commit is contained in:
2
.idea/.name
generated
2
.idea/.name
generated
@@ -1 +1 @@
|
||||
Play
|
||||
Tempo
|
||||
@@ -7,7 +7,7 @@ android {
|
||||
buildToolsVersion '33.0.0'
|
||||
|
||||
defaultConfig {
|
||||
applicationId 'com.cappielloantonio.playforsubsonic'
|
||||
applicationId 'com.cappielloantonio.tempo'
|
||||
minSdkVersion 24
|
||||
targetSdkVersion 33
|
||||
versionCode 4
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
package com.cappielloantonio.play.database;
|
||||
|
||||
import androidx.room.AutoMigration;
|
||||
import androidx.room.Database;
|
||||
import androidx.room.Room;
|
||||
import androidx.room.RoomDatabase;
|
||||
@@ -20,13 +19,13 @@ import com.cappielloantonio.play.model.RecentSearch;
|
||||
import com.cappielloantonio.play.model.Server;
|
||||
|
||||
@Database(
|
||||
version = 62,
|
||||
version = 1,
|
||||
entities = {Queue.class, Server.class, RecentSearch.class, Download.class, Chronology.class}
|
||||
// autoMigrations = {@AutoMigration(from = 61, to = 62)}
|
||||
)
|
||||
@TypeConverters({DateConverters.class})
|
||||
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;
|
||||
|
||||
public static synchronized AppDatabase getInstance() {
|
||||
|
||||
@@ -7,7 +7,7 @@ import java.util.UUID;
|
||||
public class SubsonicPreferences {
|
||||
private String serverUrl;
|
||||
private String username;
|
||||
private String clientName = "Play";
|
||||
private String clientName = "Tempo";
|
||||
private SubsonicAuthentication authentication;
|
||||
|
||||
public String getServerUrl() {
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<string name="album_page_extra_info_button">More like this</string>
|
||||
<string name="album_page_play_button">Play</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_shuffle">Shuffle</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_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="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_audio_transcode_format_mobile">Transcode format in mobile</string>
|
||||
<string name="settings_audio_transcode_format_wifi">Transcode format in Wi-Fi</string>
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
include ':app'
|
||||
rootProject.name = "Play"
|
||||
rootProject.name = "Tempo"
|
||||
Reference in New Issue
Block a user