Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Bricked
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
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
Robert Goldmann
Bricked
Commits
06e1b2ee
Commit
06e1b2ee
authored
7 years ago
by
Robert Goldmann
Browse files
Options
Downloads
Patches
Plain Diff
added credits
parent
3188374a
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
bin/de/bricked/main/_de.properties
+5
-4
5 additions, 4 deletions
bin/de/bricked/main/_de.properties
src/de/bricked/main/_de.properties
+5
-4
5 additions, 4 deletions
src/de/bricked/main/_de.properties
src/de/bricked/ui/Controller.java
+9
-2
9 additions, 2 deletions
src/de/bricked/ui/Controller.java
with
19 additions
and
10 deletions
bin/de/bricked/main/_de.properties
+
5
−
4
View file @
06e1b2ee
app.name
=
Bricked
version.code
=
0
version.name
=
0
.0.0
version.date
=
23.
0
1.17
version.code
=
1
version.name
=
1
.0.0
version.date
=
23.
1
1.17
author
=
Max Wittig, Robert Goldmann (Vielen Dank an Tobias)
credits
=
used libraries:
\n
gson
\n
TinySound
\n\n
sounds:
\n
Soundbible.com - 2158-Text-Message-Alert-5
\n
Soundbible.com - 2157-Text-Message-Alert-4
\n
Soundbible.com - 2154-Text-Message-Alert-1
\n
Soundbible.com - 2068-Whoosh
\n
Soundbible.com - 2108-Shoot-Arrow
\n
SoundbSoundbible.comible - 783-Click
\n
Orangefreesounds - winning-sound-effect
\n
freesoundeffects.com - torpedo-explosion-466457
\n
Freesound.org - 4359
\n
Freesound.org - 332629
\n
Freesound.org - 162464
shortcut.debug.console
=
F12
This diff is collapsed.
Click to expand it.
src/de/bricked/main/_de.properties
+
5
−
4
View file @
06e1b2ee
app.name
=
Bricked
version.code
=
0
version.name
=
0
.0.0
version.date
=
23.
0
1.17
version.code
=
1
version.name
=
1
.0.0
version.date
=
23.
1
1.17
author
=
Max Wittig, Robert Goldmann (Vielen Dank an Tobias)
credits
=
used libraries:
\n
gson
\n
TinySound
\n\n
sounds:
\n
Soundbible.com - 2158-Text-Message-Alert-5
\n
Soundbible.com - 2157-Text-Message-Alert-4
\n
Soundbible.com - 2154-Text-Message-Alert-1
\n
Soundbible.com - 2068-Whoosh
\n
Soundbible.com - 2108-Shoot-Arrow
\n
SoundbSoundbible.comible - 783-Click
\n
Orangefreesounds - winning-sound-effect
\n
freesoundeffects.com - torpedo-explosion-466457
\n
Freesound.org - 4359
\n
Freesound.org - 332629
\n
Freesound.org - 162464
shortcut.debug.console
=
F12
This diff is collapsed.
Click to expand it.
src/de/bricked/ui/Controller.java
+
9
−
2
View file @
06e1b2ee
package
de.bricked.ui
;
import
java.io.IOException
;
import
java.util.ArrayList
;
import
java.util.Locale
;
import
java.util.ResourceBundle
;
...
...
@@ -141,7 +142,7 @@ public class Controller implements CommandLineAvailabale
public
void
showAchievements
()
{
//TODO add achievement ui
}
@Override
...
...
@@ -165,6 +166,12 @@ public class Controller implements CommandLineAvailabale
public
void
about
()
{
AlertGenerator
.
showAboutAlert
(
bundle
.
getString
(
"app.name"
),
bundle
.
getString
(
"version.name"
),
bundle
.
getString
(
"version.code"
),
bundle
.
getString
(
"version.date"
),
bundle
.
getString
(
"author"
),
icon
,
stage
,
null
,
false
);
ArrayList
<
String
>
creditLines
=
new
ArrayList
<>();
for
(
String
currentLine
:
bundle
.
getString
(
"credits"
).
split
(
"\n"
))
{
creditLines
.
add
(
currentLine
);
}
AlertGenerator
.
showAboutAlertWithCredits
(
bundle
.
getString
(
"app.name"
),
bundle
.
getString
(
"version.name"
),
bundle
.
getString
(
"version.code"
),
bundle
.
getString
(
"version.date"
),
bundle
.
getString
(
"author"
),
creditLines
,
icon
,
stage
,
null
,
false
);
}
}
\ No newline at end of file
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