Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Zellige-core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
IdA Public
Zellige-core
Merge requests
!32
Resolve "Version number as variable"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Version number as variable"
14-version-number-as-variable
into
dev
Overview
0
Commits
1
Pipelines
2
Changes
1
Merged
Céline TREBEAU
requested to merge
14-version-number-as-variable
into
dev
2 years ago
Overview
0
Commits
1
Pipelines
2
Changes
1
Expand
Related to
#14 (closed)
Edited
2 years ago
by
Céline TREBEAU
0
0
Merge request reports
Compare
dev
version 1
228212dc
2 years ago
dev (base)
and
latest version
latest version
228212dc
1 commit,
2 years ago
version 1
228212dc
1 commit,
2 years ago
1 file
+
2
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/main/java/fr/pasteur/ida/zellige/command/Zellige.java
+
2
−
1
Options
@@ -33,6 +33,7 @@ import fr.pasteur.ida.zellige.gui.MainAppFrame;
import
net.imagej.ImageJ
;
import
org.scijava.command.ContextCommand
;
import
org.scijava.plugin.Plugin
;
import
org.scijava.util.VersionUtils
;
import
java.io.File
;
import
java.io.IOException
;
@@ -76,7 +77,7 @@ public class Zellige extends ContextCommand
// Launch JavaFX interface
MainAppFrame
app
=
new
MainAppFrame
(
context
()
);
app
.
setTitle
(
"Zellige v1.0.2"
);
app
.
setTitle
(
VersionUtils
.
getVersion
(
Zellige
.
class
)
);
app
.
init
();
}
Loading