gvcsfx 0.5.0 → 0.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/gvcsfx.gemspec +1 -1
- data/handlers/workspace.rb +22 -7
- data/lib/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6369ef6276b5fe3056d998870df86a3e6287738bdd59c79e0c60f2085a82716a
|
4
|
+
data.tar.gz: d9ea8e3ade3d700ea3111febd00b700e755e4f8e1966d9b1f08cb45d12304732
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3961b8dbb580e43449bfce3137a4a1945fb24e9791109c95976a184dcef1517cb1e748ce29f69ec48ba0b96ed26985e28490f6c9e619b691e09f61dc91144107
|
7
|
+
data.tar.gz: ee05aee7df0644b55f72b19f6191de68a12ea32d5ae055b82b42af9d2439ff84adca121e934cf4f38579a404a17dd20cd5b013186b6a995a6a42117e1c8086c2
|
data/gvcsfx.gemspec
CHANGED
data/handlers/workspace.rb
CHANGED
@@ -47,7 +47,7 @@ module GvcsFx
|
|
47
47
|
def value
|
48
48
|
self
|
49
49
|
end
|
50
|
-
end
|
50
|
+
end # class TreeWorkspace
|
51
51
|
|
52
52
|
class WorkspaceCellFactory < javafx.scene.control.TreeTableCell
|
53
53
|
include Antrapol::ToolRack::ExceptionUtils
|
@@ -69,10 +69,26 @@ module GvcsFx
|
|
69
69
|
end
|
70
70
|
end
|
71
71
|
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
72
|
+
#
|
73
|
+
# This code was changed from setGraphic(Text.new(cont)) to setText
|
74
|
+
# because if using setGraphic it shall corrupt the tree node display
|
75
|
+
# on OpenJFX. It is however not an issue for Oracle JFX.
|
76
|
+
# Reported and discussion is here:
|
77
|
+
# https://stackoverflow.com/q/65084285/3625825
|
78
|
+
# Answer is here:
|
79
|
+
# https://stackoverflow.com/a/65138569/3625825
|
80
|
+
#
|
81
|
+
# Checked on the JavaFX bug database found the issue already reported
|
82
|
+
# - https://bugs.java.com/bugdatabase/view_bug.do?bug_id=8238991
|
83
|
+
# * the issue is marked as Resolved but the comment seems indicate this issue
|
84
|
+
# is linked to another Open issue at
|
85
|
+
# https://bugs.java.com/bugdatabase/view_bug.do?bug_id=JDK-8231644
|
86
|
+
# at the time of this writing
|
87
|
+
#
|
88
|
+
setText(cont)
|
89
|
+
|
90
|
+
end # updateItem
|
91
|
+
end # class WorkspaceCellFactory
|
76
92
|
|
77
93
|
|
78
94
|
LEAF_PROJ_DESC = "Leaf Workspaces (Workspace without bind to a project)"
|
@@ -94,7 +110,6 @@ module GvcsFx
|
|
94
110
|
col = []
|
95
111
|
tcUrl = TreeTableColumn.new("Path")
|
96
112
|
tcUrl.cell_value_factory = Proc.new do |e|
|
97
|
-
#p e.value.value
|
98
113
|
if e.value.value.is_a?(TreeWorkspace)
|
99
114
|
e.value.value
|
100
115
|
else
|
@@ -182,7 +197,7 @@ module GvcsFx
|
|
182
197
|
refresh_workspace_list
|
183
198
|
|
184
199
|
end
|
185
|
-
end
|
200
|
+
end # Platform.run_later
|
186
201
|
end)
|
187
202
|
|
188
203
|
refresh_workspace_list
|
data/lib/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gvcsfx
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-12-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
@@ -85,7 +85,7 @@ dependencies:
|
|
85
85
|
requirements:
|
86
86
|
- - "~>"
|
87
87
|
- !ruby/object:Gem::Version
|
88
|
-
version: 0.
|
88
|
+
version: 0.2.0
|
89
89
|
name: devops_helper
|
90
90
|
prerelease: false
|
91
91
|
type: :development
|
@@ -93,7 +93,7 @@ dependencies:
|
|
93
93
|
requirements:
|
94
94
|
- - "~>"
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
version: 0.
|
96
|
+
version: 0.2.0
|
97
97
|
description: Simple and effective VCS workflow management
|
98
98
|
email:
|
99
99
|
- chrisliaw@antrapol.com
|