rsence 2.0.3.14 → 2.0.4.15
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.
- data/INSTALL.rdoc +2 -2
- data/VERSION +1 -1
- data/setup/welcome/gui/welcome.yaml +68 -0
- data/setup/welcome/text/welcome.html +8 -0
- metadata +6 -4
data/INSTALL.rdoc
CHANGED
@@ -43,12 +43,12 @@ RSence works just fine on Windows too, with a few limitations.
|
|
43
43
|
Windows compatibility has been officially tested on Windows XP SP3 and Windows 7 (64 bit).
|
44
44
|
|
45
45
|
==== 1.3.1. Install ruby 1.8.7:
|
46
|
-
* Download Ruby 1.8.7-p249 (RC2) from http://rubyinstaller.org/
|
46
|
+
* Download Ruby 1.8.7-p249 (RC2) from http://rubyinstaller.org/downloads
|
47
47
|
* Run the downloaded exe to install ruby
|
48
48
|
* In the installation and destination prompt, check these options:
|
49
49
|
* Add Ruby executables to your PATH
|
50
50
|
* Associate .rb and .rbw files with this Ruby installation
|
51
|
-
* Download and Install the Development Kit from http://rubyinstaller.org/
|
51
|
+
* Download and Install the Development Kit from http://rubyinstaller.org/downloads
|
52
52
|
* Extract the included directories into the directory where you installed ruby.
|
53
53
|
* It's +C:\ruby+ by default.
|
54
54
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.0.
|
1
|
+
2.0.4.15
|
@@ -0,0 +1,68 @@
|
|
1
|
+
type: GUITree
|
2
|
+
version: 0.6
|
3
|
+
|
4
|
+
dependencies:
|
5
|
+
- default_theme
|
6
|
+
- controls
|
7
|
+
|
8
|
+
class: RSence.GUIApp
|
9
|
+
options:
|
10
|
+
title: Welcome App
|
11
|
+
priority: 20
|
12
|
+
subviews:
|
13
|
+
- class: HSheet
|
14
|
+
rect: [ 0, 0, 600, 500 ]
|
15
|
+
bind: :values.close
|
16
|
+
extend:
|
17
|
+
refreshValue: |
|
18
|
+
function(){
|
19
|
+
this.base();
|
20
|
+
if ( this.value==1 ) {
|
21
|
+
this.app.die();
|
22
|
+
}
|
23
|
+
}
|
24
|
+
subviews:
|
25
|
+
- class: HScrollView
|
26
|
+
rect: [ 0, 0, 550, 300, 0, 42 ]
|
27
|
+
options:
|
28
|
+
scrollX: false
|
29
|
+
scrollY: auto
|
30
|
+
style:
|
31
|
+
- [ 'background-color', 'white' ]
|
32
|
+
- [ 'border-bottom', '1px solid black' ]
|
33
|
+
subviews:
|
34
|
+
- class: HImageView
|
35
|
+
rect: [ 18, 10, 559, 110 ]
|
36
|
+
options:
|
37
|
+
value: http://rsence.org/rsence_org_logo.gif
|
38
|
+
- class: HView
|
39
|
+
rect: [ null, 95, 310, 25, 35, null ]
|
40
|
+
options:
|
41
|
+
html: |
|
42
|
+
<i style="font-family:Helvetica,Arial,sans-serif;font-size:16px;">
|
43
|
+
<a style="color:#28c;font-weight:bold" href="http://rsence.org/">http://www.rsence.org/</a>
|
44
|
+
</i>
|
45
|
+
style:
|
46
|
+
- - text-align
|
47
|
+
- right
|
48
|
+
- class: HInlineView
|
49
|
+
rect: [ 0, 0, null, null, 0, 0 ]
|
50
|
+
options:
|
51
|
+
html: :text.welcome
|
52
|
+
style:
|
53
|
+
- - font-family
|
54
|
+
- 'Helvetica, Arial, sans-serif'
|
55
|
+
- - font-size
|
56
|
+
- 16px
|
57
|
+
- - line-height
|
58
|
+
- 20px
|
59
|
+
- class: HClickValueButton
|
60
|
+
rect: [ null, null, 60, 24, 8, 8 ]
|
61
|
+
bind: :values.close
|
62
|
+
options:
|
63
|
+
label: Close
|
64
|
+
- class: HCheckbox
|
65
|
+
rect: [ null, null, 130, 24, 74, 8 ]
|
66
|
+
bind: :values.dont_show_again
|
67
|
+
options:
|
68
|
+
label: Don't show again
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<div style="margin-left:40px;margin-top:140px;margin-right:20px">
|
2
|
+
<h1>Congratulations!</h1>
|
3
|
+
<p>This message is served to you by RSence running in your new environment.</p>
|
4
|
+
<p>The next time you create an RSence environment, use the <code>--blank</code> option of the <code>rsence initenv</code> command to avoid this message.</p>
|
5
|
+
<p>Use the <code>rsence help</code> command to learn more about the <code>rsence</code> command-line tool and its various commands and options.</p>
|
6
|
+
<p>You may want to install or write some software to run in your new RSence environment next.</p>
|
7
|
+
<p>Go to <a href="http://rsence.org/">rsence.org</a> to learn more about RSence.</p>
|
8
|
+
</span>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rsence
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 97
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 2
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
-
|
11
|
-
version: 2.0.
|
9
|
+
- 4
|
10
|
+
- 15
|
11
|
+
version: 2.0.4.15
|
12
12
|
platform: ruby
|
13
13
|
authors:
|
14
14
|
- Riassence Inc.
|
@@ -80,7 +80,9 @@ files:
|
|
80
80
|
- lib/util/ruby19_fixes.rb
|
81
81
|
- lib/values/hvalue.rb
|
82
82
|
- lib/values/valuemanager.rb
|
83
|
+
- setup/welcome/gui/welcome.yaml
|
83
84
|
- setup/welcome/info.yaml
|
85
|
+
- setup/welcome/text/welcome.html
|
84
86
|
- setup/welcome/values.yaml
|
85
87
|
- setup/welcome/welcome.rb
|
86
88
|
- conf/default_conf.yaml
|