windows_gui 4.2.1 → 4.2.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/RELNOTES.md +4 -0
- data/examples/UIRibbon/Command.rbw +1 -4
- data/lib/windows_gui/common.rb +1 -1
- data/lib/windows_gui/shell.rb +1 -1
- data/lib/windows_gui/uiribbon.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2d9711525dbc6e2d6d21425fc4257574c62c0639
|
4
|
+
data.tar.gz: 4e682891a21e16500212dc51032e04f2944cc306
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 11d7fb0d6f10e8fb552a759dfb797a3c8b4c7bd891d0c2381b92fc7de6cb2140ee07d7f6da7d0a2d6f512089d5dd6d5ae9bdb222d5d428225a2d5fc603464b7a
|
7
|
+
data.tar.gz: 2cc64b84b87b5a4363a6d475dca636420d3b86c9a75af7e4158f2c9359f64e94d79f5c902631da997a183870b0167495b894af230442f2aa05e413b22da73e9a
|
data/RELNOTES.md
CHANGED
@@ -107,10 +107,7 @@ def OnCreate(hwnd,
|
|
107
107
|
# attempt to build UIRibbon resources if the resource dll is missing
|
108
108
|
# or UIRibbon description xml file exists and is newer than the resource dll
|
109
109
|
# (requires installed developement environment (Visual Studio Express will do))
|
110
|
-
UIResources.Build(
|
111
|
-
clean_byproducts: true,
|
112
|
-
open_log_if_failed: true
|
113
|
-
) if UIResources.BuildNeeded?()
|
110
|
+
UIResources.Build(clean: true, showLog: true) if UIResources.BuildNeeded?()
|
114
111
|
|
115
112
|
xtra[:uif] = UIF.new(hwnd)
|
116
113
|
xtra[:uich] = UICH.new(xtra[:uif])
|
data/lib/windows_gui/common.rb
CHANGED
data/lib/windows_gui/shell.rb
CHANGED
data/lib/windows_gui/uiribbon.rb
CHANGED
@@ -66,7 +66,7 @@ call "#{opts[:vcvars]}" >> "#{opts[:name]}.log" && \
|
|
66
66
|
|
67
67
|
if File.read(log_path) =~ /error/im
|
68
68
|
ShellExecute(nil, L('open'), L(log_path.dup), nil, nil, SW_SHOWNORMAL) if
|
69
|
-
opts[:
|
69
|
+
opts[:showLog]
|
70
70
|
|
71
71
|
raise "UIRibbon resources build FAILED - see #{log_path} for details"
|
72
72
|
end
|
@@ -81,7 +81,7 @@ call "#{opts[:vcvars]}" >> "#{opts[:name]}.log" && \
|
|
81
81
|
|
82
82
|
%w{bml h rc}.each { |ext|
|
83
83
|
File.delete("#{path}/#{opts[:name]}.#{ext}") if File.exist?("#{path}/#{opts[:name]}.#{ext}")
|
84
|
-
} if opts[:
|
84
|
+
} if opts[:clean]
|
85
85
|
|
86
86
|
STDERR.puts "UIRibbon resources build succeeded"
|
87
87
|
end
|