Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
Terminal user interface- command line
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Arjun Sundaram
Terminal user interface- command line
Commits
35bbe8f5
Commit
35bbe8f5
authored
9 years ago
by
Francesco Andreuzzi
Browse files
Options
Downloads
Patches
Plain Diff
version name in output
parent
1b5e3e32
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
app/src/main/java/ohi/andre/consolelauncher/commands/raw/about.java
+4
-1
4 additions, 1 deletion
...in/java/ohi/andre/consolelauncher/commands/raw/about.java
with
4 additions
and
1 deletion
app/src/main/java/ohi/andre/consolelauncher/commands/raw/about.java
+
4
−
1
View file @
35bbe8f5
package
ohi.andre.consolelauncher.commands.raw
;
package
ohi.andre.consolelauncher.commands.raw
;
import
ohi.andre.consolelauncher.BuildConfig
;
import
ohi.andre.consolelauncher.R
;
import
ohi.andre.consolelauncher.R
;
import
ohi.andre.consolelauncher.commands.CommandAbstraction
;
import
ohi.andre.consolelauncher.commands.CommandAbstraction
;
import
ohi.andre.consolelauncher.commands.ExecInfo
;
import
ohi.andre.consolelauncher.commands.ExecInfo
;
import
ohi.andre.consolelauncher.tuils.Tuils
;
public
class
about
implements
CommandAbstraction
{
public
class
about
implements
CommandAbstraction
{
@Override
@Override
public
String
exec
(
ExecInfo
info
)
{
public
String
exec
(
ExecInfo
info
)
{
return
info
.
res
.
getString
(
R
.
string
.
output_about
);
return
info
.
res
.
getString
(
R
.
string
.
version_label
)
+
Tuils
.
SPACE
+
BuildConfig
.
VERSION_NAME
+
Tuils
.
NEWLINE
+
Tuils
.
NEWLINE
+
info
.
res
.
getString
(
R
.
string
.
output_about
);
}
}
@Override
@Override
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment