u3d 1.2.3 → 1.3.0
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 +62 -11
- data/Gemfile.lock +147 -87
- data/Rakefile +12 -7
- data/appveyor.yml +25 -6
- 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 +82 -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 +7 -8
- data/lib/u3d_core/version.rb +2 -0
- data/lib/u3d_core.rb +2 -0
- data/u3d.gemspec +19 -9
- metadata +101 -30
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 7da585b57cca4cfab15b83a25ab8b2c6982c4c96ad6f8ce872668f75e994972e
|
4
|
+
data.tar.gz: d28f5d885ee5fb6ce0429e024030dac0f471a1a183bd1da5f95bbd6984e4aaaa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bb8134d1d745861cf1847cbb88fc90b96fc00ac9544c9064890bfeda242b40ff8c791e2698078c7ceda3fa97c0de87a9007c9b6806b4d12dff4afe8cd6832242
|
7
|
+
data.tar.gz: 5b4fa13c8904a851c4ecf1d5c7417a02d17756019567228ad0807d9d1b23524e90b4af8c4f8c20607814dcafc7e2baa88de8d5b5521ab918a9d73ccb3196bd94
|
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,27 @@
|
|
1
|
-
#
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
## [v1.3.0](https://github.com/DragonBox/u3d/tree/v1.3.0) (2022-05-16)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.2.3...v1.3.0)
|
6
|
+
|
7
|
+
**Closed issues:**
|
8
|
+
|
9
|
+
- Install without password/sudo [\#418](https://github.com/DragonBox/u3d/issues/418)
|
10
|
+
- u3d install gives error about missing Win32 dependency. [\#415](https://github.com/DragonBox/u3d/issues/415)
|
11
|
+
- Segmentation Fault with Win32API [\#414](https://github.com/DragonBox/u3d/issues/414)
|
12
|
+
- Can't find 2019.4.14f LTS in u3d available. [\#412](https://github.com/DragonBox/u3d/issues/412)
|
13
|
+
- Missing Linux versions in central cache [\#408](https://github.com/DragonBox/u3d/issues/408)
|
14
|
+
- Cannot install 2019.4.4f1 [\#401](https://github.com/DragonBox/u3d/issues/401)
|
15
|
+
|
16
|
+
**Merged pull requests:**
|
17
|
+
|
18
|
+
- Various gem updates to solve security vulnerabilities in development tools [\#419](https://github.com/DragonBox/u3d/pull/419) ([lacostej](https://github.com/lacostej))
|
19
|
+
- Support ruby3 and later on Windows \(fixes \#414\) [\#417](https://github.com/DragonBox/u3d/pull/417) ([lacostej](https://github.com/lacostej))
|
20
|
+
- Fix installation of modules for non latest releases [\#416](https://github.com/DragonBox/u3d/pull/416) ([lacostej](https://github.com/lacostej))
|
21
|
+
- Fixing error when installing Unity 2020 version in Linux [\#410](https://github.com/DragonBox/u3d/pull/410) ([DiegoTorresSED](https://github.com/DiegoTorresSED))
|
2
22
|
|
3
23
|
## [v1.2.3](https://github.com/DragonBox/u3d/tree/v1.2.3) (2020-02-26)
|
24
|
+
|
4
25
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.2.2...v1.2.3)
|
5
26
|
|
6
27
|
**Merged pull requests:**
|
@@ -9,6 +30,7 @@
|
|
9
30
|
- 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
31
|
|
11
32
|
## [v1.2.2](https://github.com/DragonBox/u3d/tree/v1.2.2) (2020-02-21)
|
33
|
+
|
12
34
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.2.1...v1.2.2)
|
13
35
|
|
14
36
|
**Fixed bugs:**
|
@@ -29,6 +51,7 @@
|
|
29
51
|
- 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
52
|
|
31
53
|
## [v1.2.1](https://github.com/DragonBox/u3d/tree/v1.2.1) (2019-11-15)
|
54
|
+
|
32
55
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.2.0...v1.2.1)
|
33
56
|
|
34
57
|
**Implemented enhancements:**
|
@@ -37,6 +60,7 @@
|
|
37
60
|
- 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
61
|
|
39
62
|
## [v1.2.0](https://github.com/DragonBox/u3d/tree/v1.2.0) (2019-11-15)
|
63
|
+
|
40
64
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.1.5...v1.2.0)
|
41
65
|
|
42
66
|
**Implemented enhancements:**
|
@@ -71,6 +95,7 @@
|
|
71
95
|
- 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
96
|
|
73
97
|
## [v1.1.5](https://github.com/DragonBox/u3d/tree/v1.1.5) (2019-03-06)
|
98
|
+
|
74
99
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.1.4...v1.1.5)
|
75
100
|
|
76
101
|
**Fixed bugs:**
|
@@ -83,6 +108,7 @@
|
|
83
108
|
- build: automatically set reviewer on pre\_release PR [\#348](https://github.com/DragonBox/u3d/pull/348) ([lacostej](https://github.com/lacostej))
|
84
109
|
|
85
110
|
## [v1.1.4](https://github.com/DragonBox/u3d/tree/v1.1.4) (2019-02-28)
|
111
|
+
|
86
112
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.1.3...v1.1.4)
|
87
113
|
|
88
114
|
**Implemented enhancements:**
|
@@ -101,9 +127,10 @@
|
|
101
127
|
- 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
128
|
- 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
129
|
- 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
|
130
|
+
- Add `-t*` flag for 7z when unpacking packages [\#342](https://github.com/DragonBox/u3d/pull/342) ([tony-rowan](https://github.com/tony-rowan))
|
105
131
|
|
106
132
|
## [v1.1.3](https://github.com/DragonBox/u3d/tree/v1.1.3) (2019-01-08)
|
133
|
+
|
107
134
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.1.2...v1.1.3)
|
108
135
|
|
109
136
|
**Implemented enhancements:**
|
@@ -122,10 +149,11 @@
|
|
122
149
|
|
123
150
|
**Merged pull requests:**
|
124
151
|
|
125
|
-
- u3d/available: Make Linux 2018.3.0f2 available on linux \#337 [\#338](https://github.com/DragonBox/u3d/pull/338) ([
|
152
|
+
- 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
153
|
- Bump dependencies to remove dependency on rubyzip 1.2.1 [\#328](https://github.com/DragonBox/u3d/pull/328) ([lacostej](https://github.com/lacostej))
|
127
154
|
|
128
155
|
## [v1.1.2](https://github.com/DragonBox/u3d/tree/v1.1.2) (2018-07-12)
|
156
|
+
|
129
157
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.1.1...v1.1.2)
|
130
158
|
|
131
159
|
**Implemented enhancements:**
|
@@ -133,6 +161,7 @@
|
|
133
161
|
- u3d/available: Add option to not use the central cache [\#324](https://github.com/DragonBox/u3d/pull/324) ([niezbop](https://github.com/niezbop))
|
134
162
|
|
135
163
|
## [v1.1.1](https://github.com/DragonBox/u3d/tree/v1.1.1) (2018-07-12)
|
164
|
+
|
136
165
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.1.0...v1.1.1)
|
137
166
|
|
138
167
|
**Fixed bugs:**
|
@@ -147,6 +176,7 @@
|
|
147
176
|
- Betas not fetched anymore [\#314](https://github.com/DragonBox/u3d/issues/314)
|
148
177
|
|
149
178
|
## [v1.1.0](https://github.com/DragonBox/u3d/tree/v1.1.0) (2018-06-27)
|
179
|
+
|
150
180
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.21...v1.1.0)
|
151
181
|
|
152
182
|
**Implemented enhancements:**
|
@@ -163,6 +193,7 @@
|
|
163
193
|
- u3d/available: proper fetching of paginated archives \(fixes \#312\) [\#313](https://github.com/DragonBox/u3d/pull/313) ([lacostej](https://github.com/lacostej))
|
164
194
|
|
165
195
|
## [v1.0.21](https://github.com/DragonBox/u3d/tree/v1.0.21) (2018-04-27)
|
196
|
+
|
166
197
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.20...v1.0.21)
|
167
198
|
|
168
199
|
**Implemented enhancements:**
|
@@ -204,6 +235,7 @@
|
|
204
235
|
- 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
236
|
|
206
237
|
## [v1.0.20](https://github.com/DragonBox/u3d/tree/v1.0.20) (2018-04-19)
|
238
|
+
|
207
239
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.19...v1.0.20)
|
208
240
|
|
209
241
|
**Implemented enhancements:**
|
@@ -233,6 +265,7 @@
|
|
233
265
|
- u3d/prettify: Fix UnityEngine.Debug.LogXXXFormat not being caught [\#270](https://github.com/DragonBox/u3d/pull/270) ([niezbop](https://github.com/niezbop))
|
234
266
|
|
235
267
|
## [v1.0.19](https://github.com/DragonBox/u3d/tree/v1.0.19) (2018-03-09)
|
268
|
+
|
236
269
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.18...v1.0.19)
|
237
270
|
|
238
271
|
**Implemented enhancements:**
|
@@ -244,6 +277,7 @@
|
|
244
277
|
- u3d/licenses: add feature to display licenses [\#262](https://github.com/DragonBox/u3d/pull/262) ([lacostej](https://github.com/lacostej))
|
245
278
|
|
246
279
|
## [v1.0.18](https://github.com/DragonBox/u3d/tree/v1.0.18) (2018-03-08)
|
280
|
+
|
247
281
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.17...v1.0.18)
|
248
282
|
|
249
283
|
**Closed issues:**
|
@@ -255,6 +289,7 @@
|
|
255
289
|
- 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
290
|
|
257
291
|
## [v1.0.17](https://github.com/DragonBox/u3d/tree/v1.0.17) (2018-03-05)
|
292
|
+
|
258
293
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.16...v1.0.17)
|
259
294
|
|
260
295
|
**Closed issues:**
|
@@ -267,6 +302,7 @@
|
|
267
302
|
- Detect missing 3 Linux versions \(fixes \#255 and \#256\) [\#257](https://github.com/DragonBox/u3d/pull/257) ([lacostej](https://github.com/lacostej))
|
268
303
|
|
269
304
|
## [v1.0.16](https://github.com/DragonBox/u3d/tree/v1.0.16) (2018-02-04)
|
305
|
+
|
270
306
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.15...v1.0.16)
|
271
307
|
|
272
308
|
**Implemented enhancements:**
|
@@ -293,6 +329,7 @@
|
|
293
329
|
- Support linux forums pagination [\#243](https://github.com/DragonBox/u3d/pull/243) ([lacostej](https://github.com/lacostej))
|
294
330
|
|
295
331
|
## [v1.0.15](https://github.com/DragonBox/u3d/tree/v1.0.15) (2018-01-16)
|
332
|
+
|
296
333
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.14...v1.0.15)
|
297
334
|
|
298
335
|
**Fixed bugs:**
|
@@ -300,6 +337,7 @@
|
|
300
337
|
- 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
338
|
|
302
339
|
## [v1.0.14](https://github.com/DragonBox/u3d/tree/v1.0.14) (2018-01-15)
|
340
|
+
|
303
341
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.13...v1.0.14)
|
304
342
|
|
305
343
|
**Implemented enhancements:**
|
@@ -315,6 +353,7 @@
|
|
315
353
|
- 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
354
|
|
317
355
|
## [v1.0.13](https://github.com/DragonBox/u3d/tree/v1.0.13) (2018-01-09)
|
356
|
+
|
318
357
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.12...v1.0.13)
|
319
358
|
|
320
359
|
**Implemented enhancements:**
|
@@ -334,6 +373,7 @@
|
|
334
373
|
- Update to latest rubocop [\#212](https://github.com/DragonBox/u3d/pull/212) ([lacostej](https://github.com/lacostej))
|
335
374
|
|
336
375
|
## [v1.0.12](https://github.com/DragonBox/u3d/tree/v1.0.12) (2018-01-03)
|
376
|
+
|
337
377
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.11...v1.0.12)
|
338
378
|
|
339
379
|
**Implemented enhancements:**
|
@@ -353,6 +393,7 @@
|
|
353
393
|
- 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
394
|
|
355
395
|
## [v1.0.11](https://github.com/DragonBox/u3d/tree/v1.0.11) (2017-12-07)
|
396
|
+
|
356
397
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.10...v1.0.11)
|
357
398
|
|
358
399
|
**Implemented enhancements:**
|
@@ -365,6 +406,7 @@
|
|
365
406
|
- 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
407
|
|
367
408
|
## [v1.0.10](https://github.com/DragonBox/u3d/tree/v1.0.10) (2017-11-03)
|
409
|
+
|
368
410
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.9...v1.0.10)
|
369
411
|
|
370
412
|
**Fixed bugs:**
|
@@ -385,6 +427,7 @@
|
|
385
427
|
- u3d/downloader: print progress improvements \(fix \#164\) [\#177](https://github.com/DragonBox/u3d/pull/177) ([lacostej](https://github.com/lacostej))
|
386
428
|
|
387
429
|
## [v1.0.9](https://github.com/DragonBox/u3d/tree/v1.0.9) (2017-10-31)
|
430
|
+
|
388
431
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.8...v1.0.9)
|
389
432
|
|
390
433
|
**Implemented enhancements:**
|
@@ -399,6 +442,7 @@
|
|
399
442
|
- u3d/cleanups small refactorings and cleanups [\#170](https://github.com/DragonBox/u3d/pull/170) ([lacostej](https://github.com/lacostej))
|
400
443
|
|
401
444
|
## [v1.0.8](https://github.com/DragonBox/u3d/tree/v1.0.8) (2017-10-18)
|
445
|
+
|
402
446
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.7...v1.0.8)
|
403
447
|
|
404
448
|
**Fixed bugs:**
|
@@ -412,6 +456,7 @@
|
|
412
456
|
- Fix module name issue for Globals call [\#167](https://github.com/DragonBox/u3d/pull/167) ([niezbop](https://github.com/niezbop))
|
413
457
|
|
414
458
|
## [v1.0.7](https://github.com/DragonBox/u3d/tree/v1.0.7) (2017-10-03)
|
459
|
+
|
415
460
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.6...v1.0.7)
|
416
461
|
|
417
462
|
**Closed issues:**
|
@@ -423,6 +468,7 @@
|
|
423
468
|
- 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
469
|
|
425
470
|
## [v1.0.6](https://github.com/DragonBox/u3d/tree/v1.0.6) (2017-10-02)
|
471
|
+
|
426
472
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.5...v1.0.6)
|
427
473
|
|
428
474
|
**Implemented enhancements:**
|
@@ -439,6 +485,7 @@
|
|
439
485
|
- 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
486
|
|
441
487
|
## [v1.0.5](https://github.com/DragonBox/u3d/tree/v1.0.5) (2017-09-28)
|
488
|
+
|
442
489
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.4...v1.0.5)
|
443
490
|
|
444
491
|
**Merged pull requests:**
|
@@ -448,12 +495,13 @@
|
|
448
495
|
- u3d/credentials fix ArgumentError in commands \(fixes \#148\) [\#149](https://github.com/DragonBox/u3d/pull/149) ([niezbop](https://github.com/niezbop))
|
449
496
|
|
450
497
|
## [v1.0.4](https://github.com/DragonBox/u3d/tree/v1.0.4) (2017-09-16)
|
498
|
+
|
451
499
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.3...v1.0.4)
|
452
500
|
|
453
501
|
**Fixed bugs:**
|
454
502
|
|
455
503
|
- u3d/installer might not see a newly installed version on Mac [\#139](https://github.com/DragonBox/u3d/issues/139)
|
456
|
-
- Issue with using installer
|
504
|
+
- Issue with using installer (error: undefined method `\[\]' for nil:NilClass.\) [\#138](https://github.com/DragonBox/u3d/issues/138)
|
457
505
|
|
458
506
|
**Merged pull requests:**
|
459
507
|
|
@@ -464,6 +512,7 @@
|
|
464
512
|
- u3d/internal: load all internal modules in top 'u3d' file [\#137](https://github.com/DragonBox/u3d/pull/137) ([lacostej](https://github.com/lacostej))
|
465
513
|
|
466
514
|
## [v1.0.3](https://github.com/DragonBox/u3d/tree/v1.0.3) (2017-09-11)
|
515
|
+
|
467
516
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.2...v1.0.3)
|
468
517
|
|
469
518
|
**Implemented enhancements:**
|
@@ -489,6 +538,7 @@
|
|
489
538
|
- 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
539
|
|
491
540
|
## [v1.0.2](https://github.com/DragonBox/u3d/tree/v1.0.2) (2017-09-05)
|
541
|
+
|
492
542
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.1...v1.0.2)
|
493
543
|
|
494
544
|
**Implemented enhancements:**
|
@@ -511,6 +561,7 @@
|
|
511
561
|
- 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
562
|
|
513
563
|
## [v1.0.1](https://github.com/DragonBox/u3d/tree/v1.0.1) (2017-08-31)
|
564
|
+
|
514
565
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.0...v1.0.1)
|
515
566
|
|
516
567
|
**Merged pull requests:**
|
@@ -518,9 +569,11 @@
|
|
518
569
|
- 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
570
|
|
520
571
|
## [v1.0.0](https://github.com/DragonBox/u3d/tree/v1.0.0) (2017-08-31)
|
572
|
+
|
521
573
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.0.rc1...v1.0.0)
|
522
574
|
|
523
575
|
## [v1.0.0.rc1](https://github.com/DragonBox/u3d/tree/v1.0.0.rc1) (2017-08-30)
|
576
|
+
|
524
577
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v0.9.4...v1.0.0.rc1)
|
525
578
|
|
526
579
|
**Implemented enhancements:**
|
@@ -550,6 +603,7 @@
|
|
550
603
|
- logger: Hide EPIPE errors when stdout already closed [\#97](https://github.com/DragonBox/u3d/pull/97) ([lacostej](https://github.com/lacostej))
|
551
604
|
|
552
605
|
## [v0.9.4](https://github.com/DragonBox/u3d/tree/v0.9.4) (2017-08-28)
|
606
|
+
|
553
607
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v0.9.3...v0.9.4)
|
554
608
|
|
555
609
|
**Implemented enhancements:**
|
@@ -586,14 +640,10 @@
|
|
586
640
|
- 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
641
|
- Mac Installer fix [\#85](https://github.com/DragonBox/u3d/pull/85) ([niezbop](https://github.com/niezbop))
|
588
642
|
- 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
643
|
- 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
644
|
- Do not crash when no PlaybackEngines are found [\#74](https://github.com/DragonBox/u3d/pull/74) ([lacostej](https://github.com/lacostej))
|
594
645
|
- A missing license header [\#67](https://github.com/DragonBox/u3d/pull/67) ([lacostej](https://github.com/lacostej))
|
595
646
|
- \[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
647
|
- 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
648
|
- u3d/run: improve run inline help [\#54](https://github.com/DragonBox/u3d/pull/54) ([lacostej](https://github.com/lacostej))
|
599
649
|
- \[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 +651,7 @@
|
|
601
651
|
- 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
652
|
|
603
653
|
## [v0.9.3](https://github.com/DragonBox/u3d/tree/v0.9.3) (2017-08-07)
|
654
|
+
|
604
655
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v0.9.2...v0.9.3)
|
605
656
|
|
606
657
|
**Implemented enhancements:**
|
@@ -623,12 +674,11 @@
|
|
623
674
|
- \[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
675
|
- Make Linux runner functional again [\#29](https://github.com/DragonBox/u3d/pull/29) ([lacostej](https://github.com/lacostej))
|
625
676
|
- 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
677
|
- Change sanitizer to be platform specific [\#24](https://github.com/DragonBox/u3d/pull/24) ([niezbop](https://github.com/niezbop))
|
629
678
|
- Make Linux installer functional again [\#20](https://github.com/DragonBox/u3d/pull/20) ([lacostej](https://github.com/lacostej))
|
630
679
|
|
631
680
|
## [v0.9.2](https://github.com/DragonBox/u3d/tree/v0.9.2) (2017-08-04)
|
681
|
+
|
632
682
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v0.9.1...v0.9.2)
|
633
683
|
|
634
684
|
**Fixed bugs:**
|
@@ -652,8 +702,9 @@
|
|
652
702
|
- Document further the prettifier [\#1](https://github.com/DragonBox/u3d/pull/1) ([lacostej](https://github.com/lacostej))
|
653
703
|
|
654
704
|
## [v0.9.1](https://github.com/DragonBox/u3d/tree/v0.9.1) (2017-07-24)
|
705
|
+
|
655
706
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v0.9...v0.9.1)
|
656
707
|
|
657
708
|
|
658
709
|
|
659
|
-
\* *This
|
710
|
+
\* *This Changelog was automatically generated by [github_changelog_generator] (https://github.com/github-changelog-generator/github-changelog-generator)*
|