Skip to content

Minor fixes to package export implementation #695

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

Merged
merged 2 commits into from
Jun 15, 2022
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
4 changes: 2 additions & 2 deletions mode/languages/mode.properties
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ menu.android.reset_adb = Reset ADB
# | File | Edit | Sketch | Android | Tools | Help |
# | Help |

menu.file.export_signed_package = Export Signed Package
menu.help.processing_for_android_site = Processing for Android Site
menu.help.android_developer_site = Android Developer Site

Expand Down Expand Up @@ -243,7 +244,7 @@ keystore_manager.country_code_label = Country code (XX):
# Manifest

manifest.warn.cannot_handle_file_title = Error handling %s
manifest.warn.cannot_handle_file_body = Errors occurred while reading or writing %s\nwhich means lots of things are likely to stop working properly.\nTo prevent losing any data, it's recommended that you use Save As”\n"to save a separate copy of your sketch, and then restart Processing.";
manifest.warn.cannot_handle_file_body = Errors occurred while reading or writing %s\nwhich means lots of things are likely to stop working properly.\nTo prevent losing any data, it's recommended that you use “Save As”\n"to save a separate copy of your sketch, and then restart Processing.";

# ---------------------------------------
# Permissions
Expand Down Expand Up @@ -309,4 +310,3 @@ sdk_updater.download_canceled_message = Download canceled
sdk_updater.update_button_label = Update
sdk_updater.cancel_button_label = Cancel
sdk_updater.close_button_label = Close

4 changes: 2 additions & 2 deletions mode/src/processing/mode/android/AndroidEditor.java
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public void actionPerformed(ActionEvent e) {
}
});

return buildFileMenu(new JMenuItem[] { exportBundle, exportProject});
return buildFileMenu(new JMenuItem[] {exportPackage, exportBundle, exportProject});
}


Expand Down Expand Up @@ -544,7 +544,7 @@ public void startExportPackage(final String keyStorePassword) {
new Thread() {
public void run() {
startIndeterminate();
statusNotice(AndroidMode.getTextString("android_editor.status.exporting_bundle"));
statusNotice(AndroidMode.getTextString("android_editor.status.exporting_package"));
AndroidBuild build = new AndroidBuild(sketch, androidMode, appComponent);
try {
File projectFolder = build.exportPackage(keyStorePassword);
Expand Down