Skip to content

Commit

Permalink
refactor: app name
Browse files Browse the repository at this point in the history
  • Loading branch information
CappielloAntonio committed Jun 4, 2023
1 parent d6d29d5 commit abd488b
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ android {
buildToolsVersion '33.0.0'

defaultConfig {
applicationId 'com.cappielloantonio.playforsubsonic'
applicationId 'com.cappielloantonio.tempo'
minSdkVersion 24
targetSdkVersion 33
versionCode 4
Expand Down
Original file line number Diff line number Diff line change
@@ -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;
Expand All @@ -20,13 +19,13 @@
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() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
public class SubsonicPreferences {
private String serverUrl;
private String username;
private String clientName = "Play";
private String clientName = "Tempo";
private SubsonicAuthentication authentication;

public String getServerUrl() {
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
include ':app'
rootProject.name = "Play"
rootProject.name = "Tempo"

0 comments on commit abd488b

Please sign in to comment.