u3d 1.3.0 → 1.3.1
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/.github_changelog_generator +1 -1
- data/CHANGELOG.md +13 -0
- data/Gemfile.lock +1 -1
- data/lib/u3d/hub_modules_parser.rb +2 -2
- data/lib/u3d/ini_modules_parser.rb +1 -1
- data/lib/u3d/utils.rb +4 -0
- data/lib/u3d/version.rb +1 -1
- 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: 2cf79a6e28cc0f34c0089479cc30fd56a41095a858af99718380c303dc272858
|
|
4
|
+
data.tar.gz: c07493cd5e872a9929b3da5292dfef80256928096251c8a131de69788c980fea
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3cdd4923d39924b863c44e4757a40c32a16134c3b8087d2761be13149d97508d6da0c9b5dd9d1dd8454c86b4013fe2bf2a0e8fc9e65f90ac0a379d883180824c
|
|
7
|
+
data.tar.gz: c5df159522cc12eb2b3bd1648317bfa9c79c7357328cbd08cf94a8a60525ad0b430d5303411544735e5a9eec0126aecd89838bd65661070743a160ca0ccc6037
|
data/.github_changelog_generator
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [v1.3.1](https://github.com/DragonBox/u3d/tree/v1.3.1) (2022-05-18)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.3.0...v1.3.1)
|
|
6
|
+
|
|
7
|
+
**Closed issues:**
|
|
8
|
+
|
|
9
|
+
- `u3d install 2019.4.35f1` fails at 1.3.0 [\#421](https://github.com/DragonBox/u3d/issues/421)
|
|
10
|
+
|
|
11
|
+
**Merged pull requests:**
|
|
12
|
+
|
|
13
|
+
- \[Fix\] Broken install command, fixes \#421 [\#422](https://github.com/DragonBox/u3d/pull/422) ([lacostej](https://github.com/lacostej))
|
|
14
|
+
- Release 1.3.0 [\#420](https://github.com/DragonBox/u3d/pull/420) ([lacostej](https://github.com/lacostej))
|
|
15
|
+
|
|
3
16
|
## [v1.3.0](https://github.com/DragonBox/u3d/tree/v1.3.0) (2022-05-16)
|
|
4
17
|
|
|
5
18
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.2.3...v1.3.0)
|
data/Gemfile.lock
CHANGED
|
@@ -36,9 +36,9 @@ module U3d
|
|
|
36
36
|
path = modules_path(version, os)
|
|
37
37
|
|
|
38
38
|
# force download if no hub file present
|
|
39
|
-
download_modules(os: os) if !
|
|
39
|
+
download_modules(os: os) if !Utils.file_exists_not_empty?(path) && !offline
|
|
40
40
|
|
|
41
|
-
unless
|
|
41
|
+
unless Utils.file_exists_not_empty?(path)
|
|
42
42
|
UI.verbose "No modules registered for UnityHub for version #{version}"
|
|
43
43
|
# cached_versions.keys.map{|s| UnityVersionNumber.new(s)}
|
|
44
44
|
# searching for closest version
|
|
@@ -44,7 +44,7 @@ module U3d
|
|
|
44
44
|
ini_name = format(INI_NAME, version: version, os: os)
|
|
45
45
|
Utils.ensure_dir(default_ini_path)
|
|
46
46
|
ini_path = File.expand_path(ini_name, default_ini_path)
|
|
47
|
-
unless
|
|
47
|
+
unless Utils.file_exists_not_empty?(ini_path)
|
|
48
48
|
raise "INI file does not exist at #{ini_path}" if offline
|
|
49
49
|
|
|
50
50
|
download_ini(version, cached_versions, os, ini_name, ini_path)
|
data/lib/u3d/utils.rb
CHANGED
data/lib/u3d/version.rb
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
## --- END LICENSE BLOCK ---
|
|
24
24
|
|
|
25
25
|
module U3d
|
|
26
|
-
VERSION = '1.3.
|
|
26
|
+
VERSION = '1.3.1'
|
|
27
27
|
DESCRIPTION = 'Provides numerous tools for installing, managing and running the Unity game engine from command line.'
|
|
28
28
|
UNITY_VERSIONS_NOTE = "Unity uses the following version formatting: 0.0.0x0. The \'x\' can takes different values:\n"\
|
|
29
29
|
"\t. 'f' are the main release candidates for Unity\n"\
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: u3d
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jerome Lacoste
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2022-05-
|
|
12
|
+
date: 2022-05-18 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: colored
|