u3d 1.2.3 → 1.3.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 +5 -5
- data/.circleci/config.yml +33 -10
- data/.github/workflows/ci.yml +35 -0
- data/.github_changelog_generator +3 -1
- data/.gitignore +1 -0
- data/.rubocop.yml +15 -3
- data/CHANGELOG.md +86 -11
- data/Gemfile.lock +149 -87
- data/Rakefile +13 -8
- data/examples/Example1/Gemfile +4 -2
- data/examples/Example1/Gemfile.lock +8 -6
- data/examples/Example1/Rakefile +2 -0
- data/examples/Example1/fastlane/Fastfile +2 -0
- data/examples/Example2/Gemfile +4 -2
- data/examples/Example2/Gemfile.lock +12 -7
- data/examples/Example2/fastlane/Fastfile +2 -0
- data/exe/u3d +3 -1
- data/lib/u3d/asset.rb +6 -2
- data/lib/u3d/cache.rb +14 -10
- data/lib/u3d/commands.rb +14 -9
- data/lib/u3d/commands_generator.rb +6 -4
- data/lib/u3d/compatibility.rb +2 -0
- data/lib/u3d/download_validator.rb +6 -3
- data/lib/u3d/downloader.rb +12 -8
- data/lib/u3d/failure_reporter.rb +4 -3
- data/lib/u3d/hub_modules_parser.rb +24 -7
- data/lib/u3d/ini_modules_parser.rb +10 -8
- data/lib/u3d/installation.rb +31 -49
- data/lib/u3d/installer.rb +44 -33
- data/lib/u3d/log_analyzer.rb +31 -27
- data/lib/u3d/unity_license.rb +2 -0
- data/lib/u3d/unity_module.rb +2 -0
- data/lib/u3d/unity_project.rb +4 -1
- data/lib/u3d/unity_runner.rb +12 -10
- data/lib/u3d/unity_version_definition.rb +3 -0
- data/lib/u3d/unity_version_number.rb +8 -2
- data/lib/u3d/unity_versions.rb +28 -23
- data/lib/u3d/utils.rb +86 -15
- data/lib/u3d/version.rb +8 -6
- data/lib/u3d.rb +2 -0
- data/lib/u3d_core/admin_tools.rb +2 -0
- data/lib/u3d_core/command_executor.rb +11 -7
- data/lib/u3d_core/command_runner.rb +17 -19
- data/lib/u3d_core/core_ext/hash.rb +2 -0
- data/lib/u3d_core/core_ext/operating_system_symbol.rb +3 -0
- data/lib/u3d_core/core_ext/string.rb +2 -0
- data/lib/u3d_core/credentials.rb +9 -7
- data/lib/u3d_core/env.rb +3 -0
- data/lib/u3d_core/globals.rb +7 -7
- data/lib/u3d_core/helper.rb +6 -4
- data/lib/u3d_core/ui/disable_colors.rb +2 -0
- data/lib/u3d_core/ui/implementations/shell.rb +8 -5
- data/lib/u3d_core/ui/interface.rb +3 -0
- data/lib/u3d_core/ui/ui.rb +5 -4
- data/lib/u3d_core/update_checker/changelog.rb +4 -0
- data/lib/u3d_core/update_checker/update_checker.rb +8 -9
- data/lib/u3d_core/version.rb +2 -0
- data/lib/u3d_core.rb +2 -0
- data/u3d.gemspec +20 -9
- metadata +112 -28
- data/appveyor.yml +0 -21
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 3b8c6297024b13bd11984f6ec8aff579025e29453014a56fdcb39305dcd4327a
|
4
|
+
data.tar.gz: 4da0b498014481742d548b1c08da1853ced0993e685f0bedaf31a48c818ff5fc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6ad81c25616217fd76d77623d97a158ccdbf7e10ecf13890539ae3ff84a56c6585a6380e8b955c74bf8648b72f510e2b8f46328f4cec513b81ce27f22807d728
|
7
|
+
data.tar.gz: bcd292a2c041f976a6076d033f8eb66d94fac77b174bff7a76ffd6850d88c263d265fd951d08221fe16b6ca047be8e641c491a3c2b6e1d602b8385356a54d1ca
|
data/.circleci/config.yml
CHANGED
@@ -2,17 +2,40 @@
|
|
2
2
|
#
|
3
3
|
# Check https://circleci.com/docs/2.0/language-ruby/ for more details
|
4
4
|
#
|
5
|
-
version: 2
|
5
|
+
version: 2.1
|
6
|
+
|
7
|
+
orbs:
|
8
|
+
ruby: circleci/ruby@1.1
|
9
|
+
|
10
|
+
#executors:
|
11
|
+
# linux:
|
12
|
+
# docker:
|
13
|
+
# - image: cimg/base:2020.01
|
14
|
+
# macos:
|
15
|
+
# macos:
|
16
|
+
# xcode: 11.4
|
17
|
+
|
18
|
+
workflows:
|
19
|
+
all-tests:
|
20
|
+
jobs:
|
21
|
+
- build:
|
22
|
+
matrix:
|
23
|
+
parameters:
|
24
|
+
# os: [linux]
|
25
|
+
ruby-version: ["2.5", "2.6", "2.7", "3.0", "3.1"]
|
26
|
+
|
6
27
|
jobs:
|
7
28
|
build:
|
29
|
+
parameters:
|
30
|
+
# os:
|
31
|
+
# type: executor
|
32
|
+
ruby-version:
|
33
|
+
type: string
|
34
|
+
|
8
35
|
docker:
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
# Specify service dependencies here if necessary
|
13
|
-
# CircleCI maintains a library of pre-built images
|
14
|
-
# documented at https://circleci.com/docs/2.0/circleci-images/
|
15
|
-
# - image: circleci/postgres:9.4
|
36
|
+
- image: cimg/ruby:<< parameters.ruby-version >>
|
37
|
+
|
38
|
+
# executor: << parameters.os >>
|
16
39
|
|
17
40
|
working_directory: ~/repo
|
18
41
|
|
@@ -31,7 +54,7 @@ jobs:
|
|
31
54
|
command: |
|
32
55
|
echo 'export BUNDLER_VERSION=$(cat Gemfile.lock | tail -1 | tr -d " ")' >> $BASH_ENV
|
33
56
|
source $BASH_ENV
|
34
|
-
gem install bundler
|
57
|
+
gem install bundler -v "$BUNDLER_VERSION"
|
35
58
|
bundle config set path '.bundle'
|
36
59
|
|
37
60
|
- run:
|
@@ -61,4 +84,4 @@ jobs:
|
|
61
84
|
path: /tmp/rspec/
|
62
85
|
- store_artifacts:
|
63
86
|
path: /tmp/rspec/
|
64
|
-
destination: test-results
|
87
|
+
destination: test-results
|
@@ -0,0 +1,35 @@
|
|
1
|
+
name: CI
|
2
|
+
on: [push, pull_request]
|
3
|
+
jobs:
|
4
|
+
specs:
|
5
|
+
strategy:
|
6
|
+
fail-fast: false
|
7
|
+
matrix:
|
8
|
+
os: [ ubuntu, macos, windows ]
|
9
|
+
ruby: [ 2.5.9, 2.6.10, 2.7.6, 3.0.4, 3.1.2 ]
|
10
|
+
runs-on: ${{ matrix.os }}-latest
|
11
|
+
steps:
|
12
|
+
- name: git config autocrlf
|
13
|
+
run: git config --global core.autocrlf false
|
14
|
+
if: matrix.os == 'windows'
|
15
|
+
|
16
|
+
- uses: actions/checkout@v2
|
17
|
+
- uses: ruby/setup-ruby@v1
|
18
|
+
with:
|
19
|
+
ruby-version: ${{ matrix.ruby }}
|
20
|
+
bundler-cache: true
|
21
|
+
|
22
|
+
- name: Run specs (Linux)
|
23
|
+
if: matrix.os == 'ubuntu'
|
24
|
+
run: bundle exec rake
|
25
|
+
|
26
|
+
- name: Run specs (macOS)
|
27
|
+
if: matrix.os == 'macos'
|
28
|
+
run: bundle exec rake
|
29
|
+
|
30
|
+
- name: Run specs (Windows)
|
31
|
+
if: matrix.os == 'windows'
|
32
|
+
run: bundle exec rake
|
33
|
+
# Actions uses UTF8, causes test failures, similar to normal OS setup
|
34
|
+
#[Console]::OutputEncoding = [System.Text.Encoding]::GetEncoding("IBM437")
|
35
|
+
#[Console]::InputEncoding = [System.Text.Encoding]::GetEncoding("IBM437")
|
data/.github_changelog_generator
CHANGED
data/.gitignore
CHANGED
data/.rubocop.yml
CHANGED
@@ -5,16 +5,25 @@
|
|
5
5
|
#
|
6
6
|
# File.chmod(0o777, f)
|
7
7
|
#
|
8
|
+
require:
|
9
|
+
- rubocop-rake
|
10
|
+
#- rubocop-rspec
|
11
|
+
|
8
12
|
AllCops:
|
13
|
+
NewCops: enable
|
9
14
|
#Include:
|
10
15
|
# - '**/fastlane/Fastfile'
|
11
16
|
Exclude:
|
17
|
+
- 'vendor/**/*'
|
12
18
|
- './fastlane-plugin-u3d/**/*'
|
13
19
|
|
14
20
|
# broken in 0.52.1
|
15
21
|
Layout/EmptyLinesAroundArguments:
|
16
22
|
Enabled: false
|
17
23
|
|
24
|
+
Style/FetchEnvVar:
|
25
|
+
Enabled: false
|
26
|
+
|
18
27
|
Style/NumericLiteralPrefix:
|
19
28
|
Enabled: false
|
20
29
|
|
@@ -34,13 +43,13 @@ Metrics/ParameterLists:
|
|
34
43
|
Max: 8
|
35
44
|
|
36
45
|
Metrics/PerceivedComplexity:
|
37
|
-
Max:
|
46
|
+
Max: 12
|
38
47
|
|
39
48
|
Metrics/MethodLength:
|
40
49
|
Enabled: false
|
41
50
|
|
42
51
|
# Configuration parameters: AllowURI, URISchemes.
|
43
|
-
|
52
|
+
Layout/LineLength:
|
44
53
|
Max: 370
|
45
54
|
|
46
55
|
# We're not there yet
|
@@ -57,4 +66,7 @@ Layout/EndOfLine:
|
|
57
66
|
|
58
67
|
# Some issues with rspec style
|
59
68
|
Lint/AmbiguousBlockAssociation:
|
60
|
-
Enabled: false
|
69
|
+
Enabled: false
|
70
|
+
|
71
|
+
Lint/EmptyBlock:
|
72
|
+
Enabled: false
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,51 @@
|
|
1
|
-
#
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
## [v1.3.2](https://github.com/DragonBox/u3d/tree/v1.3.2) (2022-06-08)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.3.1...v1.3.2)
|
6
|
+
|
7
|
+
**Merged pull requests:**
|
8
|
+
|
9
|
+
- Add Fiddle to gemspec / dependencies [\#427](https://github.com/DragonBox/u3d/pull/427) ([lacostej](https://github.com/lacostej))
|
10
|
+
- Run rspec within bundle exec [\#426](https://github.com/DragonBox/u3d/pull/426) ([lacostej](https://github.com/lacostej))
|
11
|
+
- Remove appveyor [\#425](https://github.com/DragonBox/u3d/pull/425) ([lacostej](https://github.com/lacostej))
|
12
|
+
- Fix parameter to update\_checker [\#424](https://github.com/DragonBox/u3d/pull/424) ([lacostej](https://github.com/lacostej))
|
13
|
+
|
14
|
+
## [v1.3.1](https://github.com/DragonBox/u3d/tree/v1.3.1) (2022-05-18)
|
15
|
+
|
16
|
+
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.3.0...v1.3.1)
|
17
|
+
|
18
|
+
**Closed issues:**
|
19
|
+
|
20
|
+
- `u3d install 2019.4.35f1` fails at 1.3.0 [\#421](https://github.com/DragonBox/u3d/issues/421)
|
21
|
+
|
22
|
+
**Merged pull requests:**
|
23
|
+
|
24
|
+
- \[Fix\] Broken install command, fixes \#421 [\#422](https://github.com/DragonBox/u3d/pull/422) ([lacostej](https://github.com/lacostej))
|
25
|
+
- Release 1.3.0 [\#420](https://github.com/DragonBox/u3d/pull/420) ([lacostej](https://github.com/lacostej))
|
26
|
+
|
27
|
+
## [v1.3.0](https://github.com/DragonBox/u3d/tree/v1.3.0) (2022-05-16)
|
28
|
+
|
29
|
+
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.2.3...v1.3.0)
|
30
|
+
|
31
|
+
**Closed issues:**
|
32
|
+
|
33
|
+
- Install without password/sudo [\#418](https://github.com/DragonBox/u3d/issues/418)
|
34
|
+
- u3d install gives error about missing Win32 dependency. [\#415](https://github.com/DragonBox/u3d/issues/415)
|
35
|
+
- Segmentation Fault with Win32API [\#414](https://github.com/DragonBox/u3d/issues/414)
|
36
|
+
- Can't find 2019.4.14f LTS in u3d available. [\#412](https://github.com/DragonBox/u3d/issues/412)
|
37
|
+
- Missing Linux versions in central cache [\#408](https://github.com/DragonBox/u3d/issues/408)
|
38
|
+
- Cannot install 2019.4.4f1 [\#401](https://github.com/DragonBox/u3d/issues/401)
|
39
|
+
|
40
|
+
**Merged pull requests:**
|
41
|
+
|
42
|
+
- Various gem updates to solve security vulnerabilities in development tools [\#419](https://github.com/DragonBox/u3d/pull/419) ([lacostej](https://github.com/lacostej))
|
43
|
+
- Support ruby3 and later on Windows \(fixes \#414\) [\#417](https://github.com/DragonBox/u3d/pull/417) ([lacostej](https://github.com/lacostej))
|
44
|
+
- Fix installation of modules for non latest releases [\#416](https://github.com/DragonBox/u3d/pull/416) ([lacostej](https://github.com/lacostej))
|
45
|
+
- Fixing error when installing Unity 2020 version in Linux [\#410](https://github.com/DragonBox/u3d/pull/410) ([DiegoTorresSED](https://github.com/DiegoTorresSED))
|
2
46
|
|
3
47
|
## [v1.2.3](https://github.com/DragonBox/u3d/tree/v1.2.3) (2020-02-26)
|
48
|
+
|
4
49
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.2.2...v1.2.3)
|
5
50
|
|
6
51
|
**Merged pull requests:**
|
@@ -9,6 +54,7 @@
|
|
9
54
|
- Detect 2019 modules and allow to install 2019, skipping dmg install for now [\#392](https://github.com/DragonBox/u3d/pull/392) ([lacostej](https://github.com/lacostej))
|
10
55
|
|
11
56
|
## [v1.2.2](https://github.com/DragonBox/u3d/tree/v1.2.2) (2020-02-21)
|
57
|
+
|
12
58
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.2.1...v1.2.2)
|
13
59
|
|
14
60
|
**Fixed bugs:**
|
@@ -29,6 +75,7 @@
|
|
29
75
|
- u3d/install: verify package names before we ensure setup coherence \(fixes \#385\) \(regression from 1.2.0\) [\#387](https://github.com/DragonBox/u3d/pull/387) ([lacostej](https://github.com/lacostej))
|
30
76
|
|
31
77
|
## [v1.2.1](https://github.com/DragonBox/u3d/tree/v1.2.1) (2019-11-15)
|
78
|
+
|
32
79
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.2.0...v1.2.1)
|
33
80
|
|
34
81
|
**Implemented enhancements:**
|
@@ -37,6 +84,7 @@
|
|
37
84
|
- Lower dependency on rubyzip to 1.3.0 for fastlane compatibility [\#380](https://github.com/DragonBox/u3d/pull/380) ([niezbop](https://github.com/niezbop))
|
38
85
|
|
39
86
|
## [v1.2.0](https://github.com/DragonBox/u3d/tree/v1.2.0) (2019-11-15)
|
87
|
+
|
40
88
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.1.5...v1.2.0)
|
41
89
|
|
42
90
|
**Implemented enhancements:**
|
@@ -71,6 +119,7 @@
|
|
71
119
|
- u3d/internals: support accentuated characters in Windows Local App Data path. Fixes \#352 [\#353](https://github.com/DragonBox/u3d/pull/353) ([lacostej](https://github.com/lacostej))
|
72
120
|
|
73
121
|
## [v1.1.5](https://github.com/DragonBox/u3d/tree/v1.1.5) (2019-03-06)
|
122
|
+
|
74
123
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.1.4...v1.1.5)
|
75
124
|
|
76
125
|
**Fixed bugs:**
|
@@ -83,6 +132,7 @@
|
|
83
132
|
- build: automatically set reviewer on pre\_release PR [\#348](https://github.com/DragonBox/u3d/pull/348) ([lacostej](https://github.com/lacostej))
|
84
133
|
|
85
134
|
## [v1.1.4](https://github.com/DragonBox/u3d/tree/v1.1.4) (2019-02-28)
|
135
|
+
|
86
136
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.1.3...v1.1.4)
|
87
137
|
|
88
138
|
**Implemented enhancements:**
|
@@ -101,9 +151,10 @@
|
|
101
151
|
- u3d/list: support Magic Leap Versions parsing and sorting \(fixes \#331\) [\#346](https://github.com/DragonBox/u3d/pull/346) ([lacostej](https://github.com/lacostej))
|
102
152
|
- Update to latest hub to label PRs and remove the hardcoding of the user's repo [\#345](https://github.com/DragonBox/u3d/pull/345) ([lacostej](https://github.com/lacostej))
|
103
153
|
- u3d/install exit 1 when version not found. Fixes \#343 [\#344](https://github.com/DragonBox/u3d/pull/344) ([lacostej](https://github.com/lacostej))
|
104
|
-
- Add `-t
|
154
|
+
- Add `-t*` flag for 7z when unpacking packages [\#342](https://github.com/DragonBox/u3d/pull/342) ([tony-rowan](https://github.com/tony-rowan))
|
105
155
|
|
106
156
|
## [v1.1.3](https://github.com/DragonBox/u3d/tree/v1.1.3) (2019-01-08)
|
157
|
+
|
107
158
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.1.2...v1.1.3)
|
108
159
|
|
109
160
|
**Implemented enhancements:**
|
@@ -122,10 +173,11 @@
|
|
122
173
|
|
123
174
|
**Merged pull requests:**
|
124
175
|
|
125
|
-
- u3d/available: Make Linux 2018.3.0f2 available on linux \#337 [\#338](https://github.com/DragonBox/u3d/pull/338) ([
|
176
|
+
- u3d/available: Make Linux 2018.3.0f2 available on linux \#337 [\#338](https://github.com/DragonBox/u3d/pull/338) ([tony-rowan](https://github.com/tony-rowan))
|
126
177
|
- Bump dependencies to remove dependency on rubyzip 1.2.1 [\#328](https://github.com/DragonBox/u3d/pull/328) ([lacostej](https://github.com/lacostej))
|
127
178
|
|
128
179
|
## [v1.1.2](https://github.com/DragonBox/u3d/tree/v1.1.2) (2018-07-12)
|
180
|
+
|
129
181
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.1.1...v1.1.2)
|
130
182
|
|
131
183
|
**Implemented enhancements:**
|
@@ -133,6 +185,7 @@
|
|
133
185
|
- u3d/available: Add option to not use the central cache [\#324](https://github.com/DragonBox/u3d/pull/324) ([niezbop](https://github.com/niezbop))
|
134
186
|
|
135
187
|
## [v1.1.1](https://github.com/DragonBox/u3d/tree/v1.1.1) (2018-07-12)
|
188
|
+
|
136
189
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.1.0...v1.1.1)
|
137
190
|
|
138
191
|
**Fixed bugs:**
|
@@ -147,6 +200,7 @@
|
|
147
200
|
- Betas not fetched anymore [\#314](https://github.com/DragonBox/u3d/issues/314)
|
148
201
|
|
149
202
|
## [v1.1.0](https://github.com/DragonBox/u3d/tree/v1.1.0) (2018-06-27)
|
203
|
+
|
150
204
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.21...v1.1.0)
|
151
205
|
|
152
206
|
**Implemented enhancements:**
|
@@ -163,6 +217,7 @@
|
|
163
217
|
- u3d/available: proper fetching of paginated archives \(fixes \#312\) [\#313](https://github.com/DragonBox/u3d/pull/313) ([lacostej](https://github.com/lacostej))
|
164
218
|
|
165
219
|
## [v1.0.21](https://github.com/DragonBox/u3d/tree/v1.0.21) (2018-04-27)
|
220
|
+
|
166
221
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.20...v1.0.21)
|
167
222
|
|
168
223
|
**Implemented enhancements:**
|
@@ -204,6 +259,7 @@
|
|
204
259
|
- u3d/list: introduce format and make sure the list\_installed return an array of versions [\#284](https://github.com/DragonBox/u3d/pull/284) ([lacostej](https://github.com/lacostej))
|
205
260
|
|
206
261
|
## [v1.0.20](https://github.com/DragonBox/u3d/tree/v1.0.20) (2018-04-19)
|
262
|
+
|
207
263
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.19...v1.0.20)
|
208
264
|
|
209
265
|
**Implemented enhancements:**
|
@@ -233,6 +289,7 @@
|
|
233
289
|
- u3d/prettify: Fix UnityEngine.Debug.LogXXXFormat not being caught [\#270](https://github.com/DragonBox/u3d/pull/270) ([niezbop](https://github.com/niezbop))
|
234
290
|
|
235
291
|
## [v1.0.19](https://github.com/DragonBox/u3d/tree/v1.0.19) (2018-03-09)
|
292
|
+
|
236
293
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.18...v1.0.19)
|
237
294
|
|
238
295
|
**Implemented enhancements:**
|
@@ -244,6 +301,7 @@
|
|
244
301
|
- u3d/licenses: add feature to display licenses [\#262](https://github.com/DragonBox/u3d/pull/262) ([lacostej](https://github.com/lacostej))
|
245
302
|
|
246
303
|
## [v1.0.18](https://github.com/DragonBox/u3d/tree/v1.0.18) (2018-03-08)
|
304
|
+
|
247
305
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.17...v1.0.18)
|
248
306
|
|
249
307
|
**Closed issues:**
|
@@ -255,6 +313,7 @@
|
|
255
313
|
- u3d/\* allow to modify Net::HTTP read timeout \(all rubies\) and max retries \(ruby 2.5+\) default values. Change read time out to 300 sec \(fixes \#258\) [\#260](https://github.com/DragonBox/u3d/pull/260) ([lacostej](https://github.com/lacostej))
|
256
314
|
|
257
315
|
## [v1.0.17](https://github.com/DragonBox/u3d/tree/v1.0.17) (2018-03-05)
|
316
|
+
|
258
317
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.16...v1.0.17)
|
259
318
|
|
260
319
|
**Closed issues:**
|
@@ -267,6 +326,7 @@
|
|
267
326
|
- Detect missing 3 Linux versions \(fixes \#255 and \#256\) [\#257](https://github.com/DragonBox/u3d/pull/257) ([lacostej](https://github.com/lacostej))
|
268
327
|
|
269
328
|
## [v1.0.16](https://github.com/DragonBox/u3d/tree/v1.0.16) (2018-02-04)
|
329
|
+
|
270
330
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.15...v1.0.16)
|
271
331
|
|
272
332
|
**Implemented enhancements:**
|
@@ -293,6 +353,7 @@
|
|
293
353
|
- Support linux forums pagination [\#243](https://github.com/DragonBox/u3d/pull/243) ([lacostej](https://github.com/lacostej))
|
294
354
|
|
295
355
|
## [v1.0.15](https://github.com/DragonBox/u3d/tree/v1.0.15) (2018-01-16)
|
356
|
+
|
296
357
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.14...v1.0.15)
|
297
358
|
|
298
359
|
**Fixed bugs:**
|
@@ -300,6 +361,7 @@
|
|
300
361
|
- u3d/install: download beta for mac also needs to discard checking md5s on Windows packages [\#234](https://github.com/DragonBox/u3d/pull/234) ([lacostej](https://github.com/lacostej))
|
301
362
|
|
302
363
|
## [v1.0.14](https://github.com/DragonBox/u3d/tree/v1.0.14) (2018-01-15)
|
364
|
+
|
303
365
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.13...v1.0.14)
|
304
366
|
|
305
367
|
**Implemented enhancements:**
|
@@ -315,6 +377,7 @@
|
|
315
377
|
- u3d/install: allow to download from one platform while on another one [\#226](https://github.com/DragonBox/u3d/pull/226) ([lacostej](https://github.com/lacostej))
|
316
378
|
|
317
379
|
## [v1.0.13](https://github.com/DragonBox/u3d/tree/v1.0.13) (2018-01-09)
|
380
|
+
|
318
381
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.12...v1.0.13)
|
319
382
|
|
320
383
|
**Implemented enhancements:**
|
@@ -334,6 +397,7 @@
|
|
334
397
|
- Update to latest rubocop [\#212](https://github.com/DragonBox/u3d/pull/212) ([lacostej](https://github.com/lacostej))
|
335
398
|
|
336
399
|
## [v1.0.12](https://github.com/DragonBox/u3d/tree/v1.0.12) (2018-01-03)
|
400
|
+
|
337
401
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.11...v1.0.12)
|
338
402
|
|
339
403
|
**Implemented enhancements:**
|
@@ -353,6 +417,7 @@
|
|
353
417
|
- u3d/install: describe how password can be passed to u3d \(fixes \#200\) [\#201](https://github.com/DragonBox/u3d/pull/201) ([lacostej](https://github.com/lacostej))
|
354
418
|
|
355
419
|
## [v1.0.11](https://github.com/DragonBox/u3d/tree/v1.0.11) (2017-12-07)
|
420
|
+
|
356
421
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.10...v1.0.11)
|
357
422
|
|
358
423
|
**Implemented enhancements:**
|
@@ -365,6 +430,7 @@
|
|
365
430
|
- u3d/run: fail with a proper message when opening a Unity4 project [\#187](https://github.com/DragonBox/u3d/pull/187) ([lacostej](https://github.com/lacostej))
|
366
431
|
|
367
432
|
## [v1.0.10](https://github.com/DragonBox/u3d/tree/v1.0.10) (2017-11-03)
|
433
|
+
|
368
434
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.9...v1.0.10)
|
369
435
|
|
370
436
|
**Fixed bugs:**
|
@@ -385,6 +451,7 @@
|
|
385
451
|
- u3d/downloader: print progress improvements \(fix \#164\) [\#177](https://github.com/DragonBox/u3d/pull/177) ([lacostej](https://github.com/lacostej))
|
386
452
|
|
387
453
|
## [v1.0.9](https://github.com/DragonBox/u3d/tree/v1.0.9) (2017-10-31)
|
454
|
+
|
388
455
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.8...v1.0.9)
|
389
456
|
|
390
457
|
**Implemented enhancements:**
|
@@ -399,6 +466,7 @@
|
|
399
466
|
- u3d/cleanups small refactorings and cleanups [\#170](https://github.com/DragonBox/u3d/pull/170) ([lacostej](https://github.com/lacostej))
|
400
467
|
|
401
468
|
## [v1.0.8](https://github.com/DragonBox/u3d/tree/v1.0.8) (2017-10-18)
|
469
|
+
|
402
470
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.7...v1.0.8)
|
403
471
|
|
404
472
|
**Fixed bugs:**
|
@@ -412,6 +480,7 @@
|
|
412
480
|
- Fix module name issue for Globals call [\#167](https://github.com/DragonBox/u3d/pull/167) ([niezbop](https://github.com/niezbop))
|
413
481
|
|
414
482
|
## [v1.0.7](https://github.com/DragonBox/u3d/tree/v1.0.7) (2017-10-03)
|
483
|
+
|
415
484
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.6...v1.0.7)
|
416
485
|
|
417
486
|
**Closed issues:**
|
@@ -423,6 +492,7 @@
|
|
423
492
|
- u3d/install: properly search for freshly installed versions on Mac \(fixes \#160\) [\#162](https://github.com/DragonBox/u3d/pull/162) ([lacostej](https://github.com/lacostej))
|
424
493
|
|
425
494
|
## [v1.0.6](https://github.com/DragonBox/u3d/tree/v1.0.6) (2017-10-02)
|
495
|
+
|
426
496
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.5...v1.0.6)
|
427
497
|
|
428
498
|
**Implemented enhancements:**
|
@@ -439,6 +509,7 @@
|
|
439
509
|
- u3d/all feature/detect bash on ubuntu on windows \(fixed \#150\) [\#155](https://github.com/DragonBox/u3d/pull/155) ([niezbop](https://github.com/niezbop))
|
440
510
|
|
441
511
|
## [v1.0.5](https://github.com/DragonBox/u3d/tree/v1.0.5) (2017-09-28)
|
512
|
+
|
442
513
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.4...v1.0.5)
|
443
514
|
|
444
515
|
**Merged pull requests:**
|
@@ -448,12 +519,13 @@
|
|
448
519
|
- u3d/credentials fix ArgumentError in commands \(fixes \#148\) [\#149](https://github.com/DragonBox/u3d/pull/149) ([niezbop](https://github.com/niezbop))
|
449
520
|
|
450
521
|
## [v1.0.4](https://github.com/DragonBox/u3d/tree/v1.0.4) (2017-09-16)
|
522
|
+
|
451
523
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.3...v1.0.4)
|
452
524
|
|
453
525
|
**Fixed bugs:**
|
454
526
|
|
455
527
|
- u3d/installer might not see a newly installed version on Mac [\#139](https://github.com/DragonBox/u3d/issues/139)
|
456
|
-
- Issue with using installer
|
528
|
+
- Issue with using installer (error: undefined method `\[\]' for nil:NilClass.\) [\#138](https://github.com/DragonBox/u3d/issues/138)
|
457
529
|
|
458
530
|
**Merged pull requests:**
|
459
531
|
|
@@ -464,6 +536,7 @@
|
|
464
536
|
- u3d/internal: load all internal modules in top 'u3d' file [\#137](https://github.com/DragonBox/u3d/pull/137) ([lacostej](https://github.com/lacostej))
|
465
537
|
|
466
538
|
## [v1.0.3](https://github.com/DragonBox/u3d/tree/v1.0.3) (2017-09-11)
|
539
|
+
|
467
540
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.2...v1.0.3)
|
468
541
|
|
469
542
|
**Implemented enhancements:**
|
@@ -489,6 +562,7 @@
|
|
489
562
|
- Download file now prints progress also in non interactive mode \(only in verbose\) [\#129](https://github.com/DragonBox/u3d/pull/129) ([lacostej](https://github.com/lacostej))
|
490
563
|
|
491
564
|
## [v1.0.2](https://github.com/DragonBox/u3d/tree/v1.0.2) (2017-09-05)
|
565
|
+
|
492
566
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.1...v1.0.2)
|
493
567
|
|
494
568
|
**Implemented enhancements:**
|
@@ -511,6 +585,7 @@
|
|
511
585
|
- u3d/install: do not refresh cache when download disabled \(Fixes \#104\) [\#120](https://github.com/DragonBox/u3d/pull/120) ([lacostej](https://github.com/lacostej))
|
512
586
|
|
513
587
|
## [v1.0.1](https://github.com/DragonBox/u3d/tree/v1.0.1) (2017-08-31)
|
588
|
+
|
514
589
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.0...v1.0.1)
|
515
590
|
|
516
591
|
**Merged pull requests:**
|
@@ -518,9 +593,11 @@
|
|
518
593
|
- u3d/downloader: use\_ssl should be set dynamically to download from https [\#113](https://github.com/DragonBox/u3d/pull/113) ([lacostej](https://github.com/lacostej))
|
519
594
|
|
520
595
|
## [v1.0.0](https://github.com/DragonBox/u3d/tree/v1.0.0) (2017-08-31)
|
596
|
+
|
521
597
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.0.rc1...v1.0.0)
|
522
598
|
|
523
599
|
## [v1.0.0.rc1](https://github.com/DragonBox/u3d/tree/v1.0.0.rc1) (2017-08-30)
|
600
|
+
|
524
601
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v0.9.4...v1.0.0.rc1)
|
525
602
|
|
526
603
|
**Implemented enhancements:**
|
@@ -550,6 +627,7 @@
|
|
550
627
|
- logger: Hide EPIPE errors when stdout already closed [\#97](https://github.com/DragonBox/u3d/pull/97) ([lacostej](https://github.com/lacostej))
|
551
628
|
|
552
629
|
## [v0.9.4](https://github.com/DragonBox/u3d/tree/v0.9.4) (2017-08-28)
|
630
|
+
|
553
631
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v0.9.3...v0.9.4)
|
554
632
|
|
555
633
|
**Implemented enhancements:**
|
@@ -586,14 +664,10 @@
|
|
586
664
|
- Make sure tests pass in full offline mode \(no network at all\) [\#87](https://github.com/DragonBox/u3d/pull/87) ([lacostej](https://github.com/lacostej))
|
587
665
|
- Mac Installer fix [\#85](https://github.com/DragonBox/u3d/pull/85) ([niezbop](https://github.com/niezbop))
|
588
666
|
- u3d/run: add -projectpath also when passing arguments \(fixes \#73\) [\#80](https://github.com/DragonBox/u3d/pull/80) ([lacostej](https://github.com/lacostej))
|
589
|
-
- Refactor/downloader and ini [\#79](https://github.com/DragonBox/u3d/pull/79) ([lacostej](https://github.com/lacostej))
|
590
667
|
- Improve the docs, in particular with run and auto-detection of the current project [\#78](https://github.com/DragonBox/u3d/pull/78) ([lacostej](https://github.com/lacostej))
|
591
|
-
- Improve the docs, in particular with run and auto-detection of the current project \(\#75\) [\#77](https://github.com/DragonBox/u3d/pull/77) ([lacostej](https://github.com/lacostej))
|
592
|
-
- u3d/commands: add unit tests and fix 2 small install command issues [\#76](https://github.com/DragonBox/u3d/pull/76) ([lacostej](https://github.com/lacostej))
|
593
668
|
- Do not crash when no PlaybackEngines are found [\#74](https://github.com/DragonBox/u3d/pull/74) ([lacostej](https://github.com/lacostej))
|
594
669
|
- A missing license header [\#67](https://github.com/DragonBox/u3d/pull/67) ([lacostej](https://github.com/lacostej))
|
595
670
|
- \[tech\] Installer unit tests. Initial commit [\#60](https://github.com/DragonBox/u3d/pull/60) ([lacostej](https://github.com/lacostej))
|
596
|
-
- \[tech\] automate changelog generation through rake [\#59](https://github.com/DragonBox/u3d/pull/59) ([lacostej](https://github.com/lacostej))
|
597
671
|
- u3d/install: do not try to download unknown versions \(i.e. not in cache\) [\#57](https://github.com/DragonBox/u3d/pull/57) ([niezbop](https://github.com/niezbop))
|
598
672
|
- u3d/run: improve run inline help [\#54](https://github.com/DragonBox/u3d/pull/54) ([lacostej](https://github.com/lacostej))
|
599
673
|
- \[tech\] migrate to circle ci 2.0, using Rakefile as basis for complex operations [\#49](https://github.com/DragonBox/u3d/pull/49) ([lacostej](https://github.com/lacostej))
|
@@ -601,6 +675,7 @@
|
|
601
675
|
- u3d/install: allow to recover from incomplete downloads on linux by autodetecting size [\#23](https://github.com/DragonBox/u3d/pull/23) ([niezbop](https://github.com/niezbop))
|
602
676
|
|
603
677
|
## [v0.9.3](https://github.com/DragonBox/u3d/tree/v0.9.3) (2017-08-07)
|
678
|
+
|
604
679
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v0.9.2...v0.9.3)
|
605
680
|
|
606
681
|
**Implemented enhancements:**
|
@@ -623,12 +698,11 @@
|
|
623
698
|
- \[linux\] Adjust to weird editor versions stored under ProjectSettings/ProjectVersion.txt [\#33](https://github.com/DragonBox/u3d/pull/33) ([niezbop](https://github.com/niezbop))
|
624
699
|
- Make Linux runner functional again [\#29](https://github.com/DragonBox/u3d/pull/29) ([lacostej](https://github.com/lacostej))
|
625
700
|
- u3d/run: ensure parent dir to logfile exists before creating the file [\#28](https://github.com/DragonBox/u3d/pull/28) ([lacostej](https://github.com/lacostej))
|
626
|
-
- Rubocop / Improve code style [\#27](https://github.com/DragonBox/u3d/pull/27) ([lacostej](https://github.com/lacostej))
|
627
|
-
- Fix Linux runner and installation [\#26](https://github.com/DragonBox/u3d/pull/26) ([niezbop](https://github.com/niezbop))
|
628
701
|
- Change sanitizer to be platform specific [\#24](https://github.com/DragonBox/u3d/pull/24) ([niezbop](https://github.com/niezbop))
|
629
702
|
- Make Linux installer functional again [\#20](https://github.com/DragonBox/u3d/pull/20) ([lacostej](https://github.com/lacostej))
|
630
703
|
|
631
704
|
## [v0.9.2](https://github.com/DragonBox/u3d/tree/v0.9.2) (2017-08-04)
|
705
|
+
|
632
706
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v0.9.1...v0.9.2)
|
633
707
|
|
634
708
|
**Fixed bugs:**
|
@@ -652,8 +726,9 @@
|
|
652
726
|
- Document further the prettifier [\#1](https://github.com/DragonBox/u3d/pull/1) ([lacostej](https://github.com/lacostej))
|
653
727
|
|
654
728
|
## [v0.9.1](https://github.com/DragonBox/u3d/tree/v0.9.1) (2017-07-24)
|
729
|
+
|
655
730
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v0.9...v0.9.1)
|
656
731
|
|
657
732
|
|
658
733
|
|
659
|
-
\* *This
|
734
|
+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|