glimmer-cw-cdatetime-nebula 1.4.0.0 → 1.4.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +10 -5
- data/VERSION +1 -1
- data/lib/views/nebula/c_date_time.rb +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 69a8e6e32c80b91fce577118bd5f5eeb19dd0f30748e5b524e7f568f8b915a52
|
4
|
+
data.tar.gz: efefaf44e19b27f5177140403c6352bb33cdde12e42bbd78fa081746148f164d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4632c85efeb1f6ef23c0847606e0e93911ef3367cbb3c7aa283bb0e64baf75860a289d9221619711a6596fe476130996ed7adfc8fcd6c701a0d33d0e16d74f21
|
7
|
+
data.tar.gz: 81151d0176099eac6c53d7fc14b331f734a7ba07526810885d38a500e70ee3e266f2f229347c7449acaa3eb43d6deac90ce22860f1d6ed90282e6fc2a1673f0c
|
data/README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
# Nebula CDateTime Widget 1.4.0.
|
2
|
-
## [Glimmer Custom Widget](https://github.com/AndyObtiva/glimmer#custom-widget-gem)
|
1
|
+
# Nebula CDateTime Widget 1.4.0.1
|
2
|
+
## [<img src="https://raw.githubusercontent.com/AndyObtiva/glimmer/master/images/glimmer-logo-hi-res.png" height=40 /> Glimmer Custom Widget](https://github.com/AndyObtiva/glimmer#custom-widget-gem)
|
3
3
|
[![Gem Version](https://badge.fury.io/rb/glimmer-cw-cdatetime-nebula.svg)](http://badge.fury.io/rb/glimmer-cw-cdatetime-nebula)
|
4
4
|
|
5
5
|
[<img alt="Nebula CDateTime Widget" src="https://www.eclipse.org/nebula/widgets/cdatetime/images/CDTSnippet02.png" />](https://www.eclipse.org/nebula/widgets/cdatetime/cdatetime.php)
|
@@ -31,7 +31,7 @@ It also configures them in [Glimmer](https://github.com/AndyObtiva/glimmer) for
|
|
31
31
|
Add the following to a [Glimmer](https://github.com/AndyObtiva/glimmer) application `Gemfile`:
|
32
32
|
|
33
33
|
```ruby
|
34
|
-
gem 'glimmer-cw-cdatetime-nebula', '1.4.0.
|
34
|
+
gem 'glimmer-cw-cdatetime-nebula', '1.4.0.1'
|
35
35
|
```
|
36
36
|
|
37
37
|
Run:
|
@@ -114,6 +114,7 @@ Here is the Nebula CDateTime Widget [Javadoc API page](https://www.eclipse.org/n
|
|
114
114
|
|
115
115
|
## Change Log
|
116
116
|
|
117
|
+
- 1.4.0.1: Prevent table editor from saving upon traversing months in drop down Calendar
|
117
118
|
- 1.4.0.0: Initial version
|
118
119
|
|
119
120
|
## Contributing to glimmer-cw-cdatetime-nebula
|
@@ -128,6 +129,10 @@ Here is the Nebula CDateTime Widget [Javadoc API page](https://www.eclipse.org/n
|
|
128
129
|
|
129
130
|
## Copyright
|
130
131
|
|
131
|
-
[MIT](
|
132
|
+
[MIT](LICENSE.txt)
|
132
133
|
|
133
|
-
Copyright (c) 2020 - Andy Maleh
|
134
|
+
Copyright (c) 2020 - Andy Maleh
|
135
|
+
|
136
|
+
--
|
137
|
+
|
138
|
+
[<img src="https://raw.githubusercontent.com/AndyObtiva/glimmer/master/images/glimmer-logo-hi-res.png" height=40 />](https://github.com/AndyObtiva/glimmer) Built for [Glimmer](https://github.com/AndyObtiva/glimmer) (Ruby Desktop Development GUI Library).
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.4.0.
|
1
|
+
1.4.0.1
|
@@ -21,11 +21,11 @@ module Nebula
|
|
21
21
|
table_proxy.cancel_edit!
|
22
22
|
end
|
23
23
|
}
|
24
|
-
on_widget_selected { |event|
|
25
|
-
table_proxy.finish_edit!
|
24
|
+
on_widget_selected { |event|
|
25
|
+
table_proxy.finish_edit! unless event.widget.is_open
|
26
26
|
}
|
27
27
|
on_widget_default_selected { |event|
|
28
|
-
table_proxy.finish_edit!
|
28
|
+
table_proxy.finish_edit! unless event.widget.is_open
|
29
29
|
}
|
30
30
|
}
|
31
31
|
table_editor_widget_proxy
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: glimmer-cw-cdatetime-nebula
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.4.0.
|
4
|
+
version: 1.4.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andy Maleh
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-08-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|