mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-04 00:49:02 -06:00 
			
		
		
		
	android: Adjust import/export saves dialog
This commit is contained in:
		@@ -99,7 +99,7 @@ class HomeSettingsFragment : Fragment() {
 | 
			
		||||
                R.drawable.ic_add
 | 
			
		||||
            ) { mainActivity.getGamesDirectory.launch(Intent(Intent.ACTION_OPEN_DOCUMENT_TREE).data) },
 | 
			
		||||
            HomeSetting(
 | 
			
		||||
                R.string.import_export_saves,
 | 
			
		||||
                R.string.manage_save_data,
 | 
			
		||||
                R.string.import_export_saves_description,
 | 
			
		||||
                R.drawable.ic_save
 | 
			
		||||
            ) { ImportExportSavesFragment().show(parentFragmentManager, ImportExportSavesFragment.TAG) },
 | 
			
		||||
 
 | 
			
		||||
@@ -68,19 +68,21 @@ class ImportExportSavesFragment : DialogFragment() {
 | 
			
		||||
    override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {
 | 
			
		||||
        return if (savesFolderRoot == "") {
 | 
			
		||||
            MaterialAlertDialogBuilder(requireContext())
 | 
			
		||||
                .setTitle(R.string.import_export_saves)
 | 
			
		||||
                .setTitle(R.string.manage_save_data)
 | 
			
		||||
                .setMessage(R.string.import_export_saves_no_profile)
 | 
			
		||||
                .setPositiveButton(android.R.string.ok, null)
 | 
			
		||||
                .show()
 | 
			
		||||
        } else {
 | 
			
		||||
            MaterialAlertDialogBuilder(requireContext())
 | 
			
		||||
                .setTitle(R.string.import_export_saves)
 | 
			
		||||
                .setPositiveButton(R.string.export_saves) { _, _ ->
 | 
			
		||||
                .setTitle(R.string.manage_save_data)
 | 
			
		||||
                .setMessage(R.string.manage_save_data_description)
 | 
			
		||||
                .setNegativeButton(R.string.export_saves) { _, _ ->
 | 
			
		||||
                    exportSave()
 | 
			
		||||
                }
 | 
			
		||||
                .setNeutralButton(R.string.import_saves) { _, _ ->
 | 
			
		||||
                .setPositiveButton(R.string.import_saves) { _, _ ->
 | 
			
		||||
                    documentPicker.launch(arrayOf("application/zip"))
 | 
			
		||||
                }
 | 
			
		||||
                .setNeutralButton(android.R.string.cancel, null)
 | 
			
		||||
                .show()
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
@@ -95,7 +97,10 @@ class ImportExportSavesFragment : DialogFragment() {
 | 
			
		||||
            tempFolder.mkdirs()
 | 
			
		||||
            val saveFolder = File(savesFolderRoot)
 | 
			
		||||
            val outputZipFile = File(
 | 
			
		||||
                tempFolder, "yuzu saves - ${LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm"))}.zip"
 | 
			
		||||
                tempFolder,
 | 
			
		||||
                "yuzu saves - ${
 | 
			
		||||
                    LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm"))
 | 
			
		||||
                }.zip"
 | 
			
		||||
            )
 | 
			
		||||
            outputZipFile.createNewFile()
 | 
			
		||||
            ZipOutputStream(BufferedOutputStream(FileOutputStream(outputZipFile))).use { zos ->
 | 
			
		||||
@@ -206,11 +211,10 @@ class ImportExportSavesFragment : DialogFragment() {
 | 
			
		||||
 | 
			
		||||
                withContext(Dispatchers.Main) {
 | 
			
		||||
                    if (!validZip) {
 | 
			
		||||
                        Toast.makeText(
 | 
			
		||||
                            context,
 | 
			
		||||
                            context.getString(R.string.save_file_invalid_zip_structure),
 | 
			
		||||
                            Toast.LENGTH_LONG
 | 
			
		||||
                        ).show()
 | 
			
		||||
                        MessageDialogFragment.newInstance(
 | 
			
		||||
                            R.string.save_file_invalid_zip_structure,
 | 
			
		||||
                            R.string.save_file_invalid_zip_structure_description
 | 
			
		||||
                        ).show(childFragmentManager, MessageDialogFragment.TAG)
 | 
			
		||||
                        return@withContext
 | 
			
		||||
                    }
 | 
			
		||||
                    Toast.makeText(
 | 
			
		||||
 
 | 
			
		||||
@@ -87,11 +87,13 @@
 | 
			
		||||
    <string name="no_file_manager">No file manager found</string>
 | 
			
		||||
    <string name="notification_no_directory_link">Could not open yuzu directory</string>
 | 
			
		||||
    <string name="notification_no_directory_link_description">Please locate the user folder with the file manager\'s side panel manually.</string>
 | 
			
		||||
    <string name="import_export_saves">Import/export saves</string>
 | 
			
		||||
    <string name="manage_save_data">Manage save data</string>
 | 
			
		||||
    <string name="manage_save_data_description">Save data found. Please select an option below.</string>
 | 
			
		||||
    <string name="import_export_saves_description">Import or export save files</string>
 | 
			
		||||
    <string name="import_export_saves_no_profile">No user profile found. Please launch a game first and retry.</string>
 | 
			
		||||
    <string name="save_file_imported_success">Save files were imported successfully</string>
 | 
			
		||||
    <string name="save_file_invalid_zip_structure">Invalid save directory structure: The first subfolder name must be the title ID of the game.</string>
 | 
			
		||||
    <string name="import_export_saves_no_profile">No save data found. Please launch a game and retry.</string>
 | 
			
		||||
    <string name="save_file_imported_success">Imported successfully</string>
 | 
			
		||||
    <string name="save_file_invalid_zip_structure">Invalid save directory structure</string>
 | 
			
		||||
    <string name="save_file_invalid_zip_structure_description">The first subfolder name must be the title ID of the game.</string>
 | 
			
		||||
    <string name="import_saves">Import</string>
 | 
			
		||||
    <string name="export_saves">Export</string>
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user