cosmos 3.5.2 → 3.5.3
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/data/crc.txt +1 -1
- data/demo/config/data/crc.txt +1 -1
- data/demo/tools/ToolLaunch.bat +15 -12
- data/install/config/data/crc.txt +1 -1
- data/install/tools/ToolLaunch.bat +15 -12
- data/lib/cosmos/version.rb +4 -4
- 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: df21dbeb06b5f5b922a79b5c7806640c169a9e96
|
|
4
|
+
data.tar.gz: 070302ef24249cb71e190b8e71af1f75b1ba6be8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d5f38472e2de8025beca2d3e5fbaa90180a34ad7db0814f4c9361a5d7a0735ca1ef79582836e64c71aadfe1f629364020d6654224ed1230dc82328de1dac3f7b
|
|
7
|
+
data.tar.gz: f08e5e614bdcd3a4435bd6b8c70f753e73689620eaf462a8b01ee396616d3813bbcfa813e479b81ed05751ad2117a582a1146885b4bf83e8cef334dacc242d64
|
data/data/crc.txt
CHANGED
|
@@ -234,7 +234,7 @@
|
|
|
234
234
|
"lib/cosmos/tools/tlm_viewer/tlm_viewer.rb" 0x895983E9
|
|
235
235
|
"lib/cosmos/system.rb" 0x735DFB42
|
|
236
236
|
"lib/cosmos/conversions.rb" 0x43679D05
|
|
237
|
-
"lib/cosmos/version.rb"
|
|
237
|
+
"lib/cosmos/version.rb" 0x46847B0C
|
|
238
238
|
"lib/cosmos/core_ext.rb" 0x1951B346
|
|
239
239
|
"lib/cosmos/interfaces.rb" 0x7E3EA326
|
|
240
240
|
"lib/cosmos/processors.rb" 0x5241327D
|
data/demo/config/data/crc.txt
CHANGED
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
"tools/PacketViewer.bat" 0x09A34857
|
|
101
101
|
"tools/TlmViewer.bat" 0x09A34857
|
|
102
102
|
"tools/TlmExtractor" 0x1EC4639A
|
|
103
|
-
"tools/ToolLaunch.bat"
|
|
103
|
+
"tools/ToolLaunch.bat" 0x7896E14C
|
|
104
104
|
"tools/CmdTlmServer.bat" 0x09A34857
|
|
105
105
|
"tools/OpenGLBuilder" 0x585EA691
|
|
106
106
|
"tools/Replay" 0xAC00D2AD
|
data/demo/tools/ToolLaunch.bat
CHANGED
|
@@ -16,19 +16,8 @@ IF NOT EXIST %~dp0tool_launch.rb (
|
|
|
16
16
|
exit /b
|
|
17
17
|
)
|
|
18
18
|
|
|
19
|
-
:: Get just the parameters for the tool
|
|
20
|
-
shift
|
|
21
|
-
shift
|
|
22
|
-
set PARAMS=%1
|
|
23
|
-
:loop
|
|
24
|
-
shift
|
|
25
|
-
if [%1]==[] goto afterloop
|
|
26
|
-
set PARAMS=!PARAMS! %1
|
|
27
|
-
goto loop
|
|
28
|
-
:afterloop
|
|
29
|
-
|
|
30
|
-
:: First look one directories up
|
|
31
19
|
SET "DESTINATION_DIR=%~dp0..\"
|
|
20
|
+
:: First look one directories up
|
|
32
21
|
IF NOT EXIST "!DESTINATION_DIR!Vendor\Ruby" (
|
|
33
22
|
:: Then look two directories up
|
|
34
23
|
SET "DESTINATION_DIR=%~dp0..\..\"
|
|
@@ -40,11 +29,24 @@ IF NOT EXIST "!DESTINATION_DIR!Vendor\Ruby" (
|
|
|
40
29
|
)
|
|
41
30
|
)
|
|
42
31
|
|
|
32
|
+
:: Get just the parameters for the tool
|
|
33
|
+
shift
|
|
34
|
+
shift
|
|
35
|
+
set PARAMS=%1
|
|
36
|
+
:loop
|
|
37
|
+
shift
|
|
38
|
+
if [%1]==[] goto afterloop
|
|
39
|
+
set PARAMS=!PARAMS! %1
|
|
40
|
+
goto loop
|
|
41
|
+
:afterloop
|
|
42
|
+
|
|
43
43
|
IF EXIST "!DESTINATION_DIR!Vendor\Ruby" (
|
|
44
44
|
:: Convert DESTINATION_DIR to absolute path
|
|
45
|
+
echo !DESTINATION_DIR!
|
|
45
46
|
pushd !DESTINATION_DIR!
|
|
46
47
|
SET "DESTINATION_DIR=!CD!\"
|
|
47
48
|
popd
|
|
49
|
+
echo !DESTINATION_DIR!
|
|
48
50
|
|
|
49
51
|
:: Set environmental variables
|
|
50
52
|
for /f "delims=" %%a in ('dir "!DESTINATION_DIR!Vendor\Ruby\lib\ruby\gems\2*" /on /ad /b') do set RUBY_ABI=%%a
|
|
@@ -61,6 +63,7 @@ IF EXIST "!DESTINATION_DIR!Vendor\Ruby" (
|
|
|
61
63
|
SET RUBYLIB=
|
|
62
64
|
|
|
63
65
|
:: Run tool using Installer Ruby
|
|
66
|
+
ECHO !GEM_HOME!
|
|
64
67
|
ECHO Starting tool using installer ruby in !DESTINATION_DIR!
|
|
65
68
|
START "COSMOS" "!DESTINATION_DIR!Vendor\Ruby\bin\!RUBYEXE!" "!TOOL!" !PARAMS!
|
|
66
69
|
) else (
|
data/install/config/data/crc.txt
CHANGED
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"tools/PacketViewer.bat" 0x09A34857
|
|
40
40
|
"tools/TlmViewer.bat" 0x09A34857
|
|
41
41
|
"tools/TlmExtractor" 0x1EC4639A
|
|
42
|
-
"tools/ToolLaunch.bat"
|
|
42
|
+
"tools/ToolLaunch.bat" 0x7896E14C
|
|
43
43
|
"tools/CmdTlmServer.bat" 0x09A34857
|
|
44
44
|
"tools/OpenGLBuilder" 0x585EA691
|
|
45
45
|
"tools/Replay" 0xAC00D2AD
|
|
@@ -16,19 +16,8 @@ IF NOT EXIST %~dp0tool_launch.rb (
|
|
|
16
16
|
exit /b
|
|
17
17
|
)
|
|
18
18
|
|
|
19
|
-
:: Get just the parameters for the tool
|
|
20
|
-
shift
|
|
21
|
-
shift
|
|
22
|
-
set PARAMS=%1
|
|
23
|
-
:loop
|
|
24
|
-
shift
|
|
25
|
-
if [%1]==[] goto afterloop
|
|
26
|
-
set PARAMS=!PARAMS! %1
|
|
27
|
-
goto loop
|
|
28
|
-
:afterloop
|
|
29
|
-
|
|
30
|
-
:: First look one directories up
|
|
31
19
|
SET "DESTINATION_DIR=%~dp0..\"
|
|
20
|
+
:: First look one directories up
|
|
32
21
|
IF NOT EXIST "!DESTINATION_DIR!Vendor\Ruby" (
|
|
33
22
|
:: Then look two directories up
|
|
34
23
|
SET "DESTINATION_DIR=%~dp0..\..\"
|
|
@@ -40,11 +29,24 @@ IF NOT EXIST "!DESTINATION_DIR!Vendor\Ruby" (
|
|
|
40
29
|
)
|
|
41
30
|
)
|
|
42
31
|
|
|
32
|
+
:: Get just the parameters for the tool
|
|
33
|
+
shift
|
|
34
|
+
shift
|
|
35
|
+
set PARAMS=%1
|
|
36
|
+
:loop
|
|
37
|
+
shift
|
|
38
|
+
if [%1]==[] goto afterloop
|
|
39
|
+
set PARAMS=!PARAMS! %1
|
|
40
|
+
goto loop
|
|
41
|
+
:afterloop
|
|
42
|
+
|
|
43
43
|
IF EXIST "!DESTINATION_DIR!Vendor\Ruby" (
|
|
44
44
|
:: Convert DESTINATION_DIR to absolute path
|
|
45
|
+
echo !DESTINATION_DIR!
|
|
45
46
|
pushd !DESTINATION_DIR!
|
|
46
47
|
SET "DESTINATION_DIR=!CD!\"
|
|
47
48
|
popd
|
|
49
|
+
echo !DESTINATION_DIR!
|
|
48
50
|
|
|
49
51
|
:: Set environmental variables
|
|
50
52
|
for /f "delims=" %%a in ('dir "!DESTINATION_DIR!Vendor\Ruby\lib\ruby\gems\2*" /on /ad /b') do set RUBY_ABI=%%a
|
|
@@ -61,6 +63,7 @@ IF EXIST "!DESTINATION_DIR!Vendor\Ruby" (
|
|
|
61
63
|
SET RUBYLIB=
|
|
62
64
|
|
|
63
65
|
:: Run tool using Installer Ruby
|
|
66
|
+
ECHO !GEM_HOME!
|
|
64
67
|
ECHO Starting tool using installer ruby in !DESTINATION_DIR!
|
|
65
68
|
START "COSMOS" "!DESTINATION_DIR!Vendor\Ruby\bin\!RUBYEXE!" "!TOOL!" !PARAMS!
|
|
66
69
|
) else (
|
data/lib/cosmos/version.rb
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# encoding: ascii-8bit
|
|
2
2
|
|
|
3
|
-
COSMOS_VERSION = '3.5.
|
|
3
|
+
COSMOS_VERSION = '3.5.3'
|
|
4
4
|
module Cosmos
|
|
5
5
|
module Version
|
|
6
6
|
MAJOR = '3'
|
|
7
7
|
MINOR = '5'
|
|
8
|
-
PATCH = '
|
|
9
|
-
BUILD = '
|
|
8
|
+
PATCH = '3'
|
|
9
|
+
BUILD = '351455c115f9d09210eb410fa47da30f60787489'
|
|
10
10
|
end
|
|
11
|
-
VERSION = '3.5.
|
|
11
|
+
VERSION = '3.5.3'
|
|
12
12
|
end
|