mirror of
https://github.com/f-droid/fdroidserver.git
synced 2026-01-29 17:51:50 -05:00
rename 'app-id' to standard Android 'applicationId'
* https://developer.android.com/studio/build/application-id.html * https://sites.google.com/a/android.com/tools/tech-docs/new-build-system/applicationid-vs-packagename This only changes the term in the human texts, not var names or CLI flags.
This commit is contained in:
@@ -996,7 +996,7 @@ def parse_commandline():
|
||||
|
||||
parser = ArgumentParser(usage="%(prog)s [options] [APPID[:VERCODE] [APPID[:VERCODE] ...]]")
|
||||
common.setup_global_opts(parser)
|
||||
parser.add_argument("appid", nargs='*', help=_("app-id with optional versionCode in the form APPID[:VERCODE]"))
|
||||
parser.add_argument("appid", nargs='*', help=_("applicationId with optional versionCode in the form APPID[:VERCODE]"))
|
||||
parser.add_argument("-l", "--latest", action="store_true", default=False,
|
||||
help=_("Build only the latest version of each package"))
|
||||
parser.add_argument("-s", "--stop", action="store_true", default=False,
|
||||
|
||||
@@ -510,7 +510,7 @@ def main():
|
||||
# Parse command line...
|
||||
parser = ArgumentParser(usage="%(prog)s [options] [APPID [APPID ...]]")
|
||||
common.setup_global_opts(parser)
|
||||
parser.add_argument("appid", nargs='*', help=_("app-id to check for updates"))
|
||||
parser.add_argument("appid", nargs='*', help=_("applicationId to check for updates"))
|
||||
parser.add_argument("--auto", action="store_true", default=False,
|
||||
help=_("Process auto-updates"))
|
||||
parser.add_argument("--autoonly", action="store_true", default=False,
|
||||
|
||||
@@ -409,7 +409,7 @@ def main():
|
||||
|
||||
parser.add_argument(
|
||||
"app_id", nargs='*',
|
||||
help=_("app-id with optional versioncode in the form APPID[:VERCODE]"))
|
||||
help=_("applicationId with optional versionCode in the form APPID[:VERCODE]"))
|
||||
parser.add_argument(
|
||||
"-l", "--latest", action="store_true", default=False,
|
||||
help=_("Scan only the latest version of each package"))
|
||||
|
||||
@@ -50,7 +50,7 @@ def main():
|
||||
# Parse command line...
|
||||
parser = ArgumentParser(usage="%(prog)s [options] [APPID[:VERCODE] [APPID[:VERCODE] ...]]")
|
||||
common.setup_global_opts(parser)
|
||||
parser.add_argument("appid", nargs='*', help=_("app-id with optional versionCode in the form APPID[:VERCODE]"))
|
||||
parser.add_argument("appid", nargs='*', help=_("applicationId with optional versionCode in the form APPID[:VERCODE]"))
|
||||
parser.add_argument("-a", "--all", action="store_true", default=False,
|
||||
help=_("Install all signed applications available"))
|
||||
options = parser.parse_args()
|
||||
|
||||
@@ -417,7 +417,7 @@ def main():
|
||||
common.setup_global_opts(parser)
|
||||
parser.add_argument("-f", "--format", action="store_true", default=False,
|
||||
help=_("Also warn about formatting issues, like rewritemeta -l"))
|
||||
parser.add_argument("appid", nargs='*', help=_("app-id in the form APPID"))
|
||||
parser.add_argument("appid", nargs='*', help=_("applicationId in the form APPID"))
|
||||
metadata.add_metadata_arguments(parser)
|
||||
options = parser.parse_args()
|
||||
metadata.warnings_action = options.W
|
||||
|
||||
@@ -44,7 +44,7 @@ def main():
|
||||
parser = ArgumentParser(usage="%(prog)s [options] "
|
||||
"[APPID[:VERCODE] [APPID[:VERCODE] ...]]")
|
||||
common.setup_global_opts(parser)
|
||||
parser.add_argument("appid", nargs='*', help=_("app-id with optional versionCode in the form APPID[:VERCODE]"))
|
||||
parser.add_argument("appid", nargs='*', help=_("applicationId with optional versionCode in the form APPID[:VERCODE]"))
|
||||
metadata.add_metadata_arguments(parser)
|
||||
options = parser.parse_args()
|
||||
metadata.warnings_action = options.W
|
||||
|
||||
@@ -55,7 +55,7 @@ def main():
|
||||
help=_("List files that would be reformatted"))
|
||||
parser.add_argument("-t", "--to", default=None,
|
||||
help=_("Rewrite to a specific format: ") + ', '.join(supported))
|
||||
parser.add_argument("appid", nargs='*', help=_("app-id in the form APPID"))
|
||||
parser.add_argument("appid", nargs='*', help=_("applicationId in the form APPID"))
|
||||
metadata.add_metadata_arguments(parser)
|
||||
options = parser.parse_args()
|
||||
metadata.warnings_action = options.W
|
||||
|
||||
@@ -257,7 +257,7 @@ def main():
|
||||
# Parse command line...
|
||||
parser = ArgumentParser(usage="%(prog)s [options] [APPID[:VERCODE] [APPID[:VERCODE] ...]]")
|
||||
common.setup_global_opts(parser)
|
||||
parser.add_argument("appid", nargs='*', help=_("app-id with optional versionCode in the form APPID[:VERCODE]"))
|
||||
parser.add_argument("appid", nargs='*', help=_("applicationId with optional versionCode in the form APPID[:VERCODE]"))
|
||||
metadata.add_metadata_arguments(parser)
|
||||
options = parser.parse_args()
|
||||
metadata.warnings_action = options.W
|
||||
|
||||
@@ -39,7 +39,7 @@ def main():
|
||||
# Parse command line...
|
||||
parser = ArgumentParser(usage="%(prog)s [options] [APPID[:VERCODE] [APPID[:VERCODE] ...]]")
|
||||
common.setup_global_opts(parser)
|
||||
parser.add_argument("appid", nargs='*', help=_("app-id with optional versionCode in the form APPID[:VERCODE]"))
|
||||
parser.add_argument("appid", nargs='*', help=_("applicationId with optional versionCode in the form APPID[:VERCODE]"))
|
||||
options = parser.parse_args()
|
||||
|
||||
config = common.read_config(options)
|
||||
|
||||
Reference in New Issue
Block a user