u3d 1.2.2 → 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/.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 +83 -11
- data/Gemfile.lock +147 -87
- data/Rakefile +20 -12
- 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 +15 -11
- 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 -32
- data/lib/u3d/installation.rb +77 -66
- data/lib/u3d/installer.rb +46 -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 +13 -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 -29
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/.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,49 @@
|
|
1
|
-
#
|
1
|
+
# Changelog
|
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
|
+
|
16
|
+
## [v1.3.0](https://github.com/DragonBox/u3d/tree/v1.3.0) (2022-05-16)
|
17
|
+
|
18
|
+
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.2.3...v1.3.0)
|
19
|
+
|
20
|
+
**Closed issues:**
|
21
|
+
|
22
|
+
- Install without password/sudo [\#418](https://github.com/DragonBox/u3d/issues/418)
|
23
|
+
- u3d install gives error about missing Win32 dependency. [\#415](https://github.com/DragonBox/u3d/issues/415)
|
24
|
+
- Segmentation Fault with Win32API [\#414](https://github.com/DragonBox/u3d/issues/414)
|
25
|
+
- Can't find 2019.4.14f LTS in u3d available. [\#412](https://github.com/DragonBox/u3d/issues/412)
|
26
|
+
- Missing Linux versions in central cache [\#408](https://github.com/DragonBox/u3d/issues/408)
|
27
|
+
- Cannot install 2019.4.4f1 [\#401](https://github.com/DragonBox/u3d/issues/401)
|
28
|
+
|
29
|
+
**Merged pull requests:**
|
30
|
+
|
31
|
+
- Various gem updates to solve security vulnerabilities in development tools [\#419](https://github.com/DragonBox/u3d/pull/419) ([lacostej](https://github.com/lacostej))
|
32
|
+
- Support ruby3 and later on Windows \(fixes \#414\) [\#417](https://github.com/DragonBox/u3d/pull/417) ([lacostej](https://github.com/lacostej))
|
33
|
+
- Fix installation of modules for non latest releases [\#416](https://github.com/DragonBox/u3d/pull/416) ([lacostej](https://github.com/lacostej))
|
34
|
+
- Fixing error when installing Unity 2020 version in Linux [\#410](https://github.com/DragonBox/u3d/pull/410) ([DiegoTorresSED](https://github.com/DiegoTorresSED))
|
35
|
+
|
36
|
+
## [v1.2.3](https://github.com/DragonBox/u3d/tree/v1.2.3) (2020-02-26)
|
37
|
+
|
38
|
+
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.2.2...v1.2.3)
|
39
|
+
|
40
|
+
**Merged pull requests:**
|
41
|
+
|
42
|
+
- Allow to refresh the github changelog. Also fix them as we removed empty lines. [\#398](https://github.com/DragonBox/u3d/pull/398) ([lacostej](https://github.com/lacostej))
|
43
|
+
- 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))
|
2
44
|
|
3
45
|
## [v1.2.2](https://github.com/DragonBox/u3d/tree/v1.2.2) (2020-02-21)
|
46
|
+
|
4
47
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.2.1...v1.2.2)
|
5
48
|
|
6
49
|
**Fixed bugs:**
|
@@ -21,6 +64,7 @@
|
|
21
64
|
- 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))
|
22
65
|
|
23
66
|
## [v1.2.1](https://github.com/DragonBox/u3d/tree/v1.2.1) (2019-11-15)
|
67
|
+
|
24
68
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.2.0...v1.2.1)
|
25
69
|
|
26
70
|
**Implemented enhancements:**
|
@@ -29,6 +73,7 @@
|
|
29
73
|
- Lower dependency on rubyzip to 1.3.0 for fastlane compatibility [\#380](https://github.com/DragonBox/u3d/pull/380) ([niezbop](https://github.com/niezbop))
|
30
74
|
|
31
75
|
## [v1.2.0](https://github.com/DragonBox/u3d/tree/v1.2.0) (2019-11-15)
|
76
|
+
|
32
77
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.1.5...v1.2.0)
|
33
78
|
|
34
79
|
**Implemented enhancements:**
|
@@ -63,6 +108,7 @@
|
|
63
108
|
- 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))
|
64
109
|
|
65
110
|
## [v1.1.5](https://github.com/DragonBox/u3d/tree/v1.1.5) (2019-03-06)
|
111
|
+
|
66
112
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.1.4...v1.1.5)
|
67
113
|
|
68
114
|
**Fixed bugs:**
|
@@ -75,6 +121,7 @@
|
|
75
121
|
- build: automatically set reviewer on pre\_release PR [\#348](https://github.com/DragonBox/u3d/pull/348) ([lacostej](https://github.com/lacostej))
|
76
122
|
|
77
123
|
## [v1.1.4](https://github.com/DragonBox/u3d/tree/v1.1.4) (2019-02-28)
|
124
|
+
|
78
125
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.1.3...v1.1.4)
|
79
126
|
|
80
127
|
**Implemented enhancements:**
|
@@ -93,9 +140,10 @@
|
|
93
140
|
- u3d/list: support Magic Leap Versions parsing and sorting \(fixes \#331\) [\#346](https://github.com/DragonBox/u3d/pull/346) ([lacostej](https://github.com/lacostej))
|
94
141
|
- 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))
|
95
142
|
- u3d/install exit 1 when version not found. Fixes \#343 [\#344](https://github.com/DragonBox/u3d/pull/344) ([lacostej](https://github.com/lacostej))
|
96
|
-
- Add `-t
|
143
|
+
- Add `-t*` flag for 7z when unpacking packages [\#342](https://github.com/DragonBox/u3d/pull/342) ([tony-rowan](https://github.com/tony-rowan))
|
97
144
|
|
98
145
|
## [v1.1.3](https://github.com/DragonBox/u3d/tree/v1.1.3) (2019-01-08)
|
146
|
+
|
99
147
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.1.2...v1.1.3)
|
100
148
|
|
101
149
|
**Implemented enhancements:**
|
@@ -114,10 +162,11 @@
|
|
114
162
|
|
115
163
|
**Merged pull requests:**
|
116
164
|
|
117
|
-
- u3d/available: Make Linux 2018.3.0f2 available on linux \#337 [\#338](https://github.com/DragonBox/u3d/pull/338) ([
|
165
|
+
- 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))
|
118
166
|
- Bump dependencies to remove dependency on rubyzip 1.2.1 [\#328](https://github.com/DragonBox/u3d/pull/328) ([lacostej](https://github.com/lacostej))
|
119
167
|
|
120
168
|
## [v1.1.2](https://github.com/DragonBox/u3d/tree/v1.1.2) (2018-07-12)
|
169
|
+
|
121
170
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.1.1...v1.1.2)
|
122
171
|
|
123
172
|
**Implemented enhancements:**
|
@@ -125,6 +174,7 @@
|
|
125
174
|
- u3d/available: Add option to not use the central cache [\#324](https://github.com/DragonBox/u3d/pull/324) ([niezbop](https://github.com/niezbop))
|
126
175
|
|
127
176
|
## [v1.1.1](https://github.com/DragonBox/u3d/tree/v1.1.1) (2018-07-12)
|
177
|
+
|
128
178
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.1.0...v1.1.1)
|
129
179
|
|
130
180
|
**Fixed bugs:**
|
@@ -139,6 +189,7 @@
|
|
139
189
|
- Betas not fetched anymore [\#314](https://github.com/DragonBox/u3d/issues/314)
|
140
190
|
|
141
191
|
## [v1.1.0](https://github.com/DragonBox/u3d/tree/v1.1.0) (2018-06-27)
|
192
|
+
|
142
193
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.21...v1.1.0)
|
143
194
|
|
144
195
|
**Implemented enhancements:**
|
@@ -155,6 +206,7 @@
|
|
155
206
|
- u3d/available: proper fetching of paginated archives \(fixes \#312\) [\#313](https://github.com/DragonBox/u3d/pull/313) ([lacostej](https://github.com/lacostej))
|
156
207
|
|
157
208
|
## [v1.0.21](https://github.com/DragonBox/u3d/tree/v1.0.21) (2018-04-27)
|
209
|
+
|
158
210
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.20...v1.0.21)
|
159
211
|
|
160
212
|
**Implemented enhancements:**
|
@@ -196,6 +248,7 @@
|
|
196
248
|
- 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))
|
197
249
|
|
198
250
|
## [v1.0.20](https://github.com/DragonBox/u3d/tree/v1.0.20) (2018-04-19)
|
251
|
+
|
199
252
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.19...v1.0.20)
|
200
253
|
|
201
254
|
**Implemented enhancements:**
|
@@ -225,6 +278,7 @@
|
|
225
278
|
- u3d/prettify: Fix UnityEngine.Debug.LogXXXFormat not being caught [\#270](https://github.com/DragonBox/u3d/pull/270) ([niezbop](https://github.com/niezbop))
|
226
279
|
|
227
280
|
## [v1.0.19](https://github.com/DragonBox/u3d/tree/v1.0.19) (2018-03-09)
|
281
|
+
|
228
282
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.18...v1.0.19)
|
229
283
|
|
230
284
|
**Implemented enhancements:**
|
@@ -236,6 +290,7 @@
|
|
236
290
|
- u3d/licenses: add feature to display licenses [\#262](https://github.com/DragonBox/u3d/pull/262) ([lacostej](https://github.com/lacostej))
|
237
291
|
|
238
292
|
## [v1.0.18](https://github.com/DragonBox/u3d/tree/v1.0.18) (2018-03-08)
|
293
|
+
|
239
294
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.17...v1.0.18)
|
240
295
|
|
241
296
|
**Closed issues:**
|
@@ -247,6 +302,7 @@
|
|
247
302
|
- 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))
|
248
303
|
|
249
304
|
## [v1.0.17](https://github.com/DragonBox/u3d/tree/v1.0.17) (2018-03-05)
|
305
|
+
|
250
306
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.16...v1.0.17)
|
251
307
|
|
252
308
|
**Closed issues:**
|
@@ -259,6 +315,7 @@
|
|
259
315
|
- Detect missing 3 Linux versions \(fixes \#255 and \#256\) [\#257](https://github.com/DragonBox/u3d/pull/257) ([lacostej](https://github.com/lacostej))
|
260
316
|
|
261
317
|
## [v1.0.16](https://github.com/DragonBox/u3d/tree/v1.0.16) (2018-02-04)
|
318
|
+
|
262
319
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.15...v1.0.16)
|
263
320
|
|
264
321
|
**Implemented enhancements:**
|
@@ -285,6 +342,7 @@
|
|
285
342
|
- Support linux forums pagination [\#243](https://github.com/DragonBox/u3d/pull/243) ([lacostej](https://github.com/lacostej))
|
286
343
|
|
287
344
|
## [v1.0.15](https://github.com/DragonBox/u3d/tree/v1.0.15) (2018-01-16)
|
345
|
+
|
288
346
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.14...v1.0.15)
|
289
347
|
|
290
348
|
**Fixed bugs:**
|
@@ -292,6 +350,7 @@
|
|
292
350
|
- 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))
|
293
351
|
|
294
352
|
## [v1.0.14](https://github.com/DragonBox/u3d/tree/v1.0.14) (2018-01-15)
|
353
|
+
|
295
354
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.13...v1.0.14)
|
296
355
|
|
297
356
|
**Implemented enhancements:**
|
@@ -307,6 +366,7 @@
|
|
307
366
|
- 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))
|
308
367
|
|
309
368
|
## [v1.0.13](https://github.com/DragonBox/u3d/tree/v1.0.13) (2018-01-09)
|
369
|
+
|
310
370
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.12...v1.0.13)
|
311
371
|
|
312
372
|
**Implemented enhancements:**
|
@@ -326,6 +386,7 @@
|
|
326
386
|
- Update to latest rubocop [\#212](https://github.com/DragonBox/u3d/pull/212) ([lacostej](https://github.com/lacostej))
|
327
387
|
|
328
388
|
## [v1.0.12](https://github.com/DragonBox/u3d/tree/v1.0.12) (2018-01-03)
|
389
|
+
|
329
390
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.11...v1.0.12)
|
330
391
|
|
331
392
|
**Implemented enhancements:**
|
@@ -345,6 +406,7 @@
|
|
345
406
|
- 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))
|
346
407
|
|
347
408
|
## [v1.0.11](https://github.com/DragonBox/u3d/tree/v1.0.11) (2017-12-07)
|
409
|
+
|
348
410
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.10...v1.0.11)
|
349
411
|
|
350
412
|
**Implemented enhancements:**
|
@@ -357,6 +419,7 @@
|
|
357
419
|
- 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))
|
358
420
|
|
359
421
|
## [v1.0.10](https://github.com/DragonBox/u3d/tree/v1.0.10) (2017-11-03)
|
422
|
+
|
360
423
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.9...v1.0.10)
|
361
424
|
|
362
425
|
**Fixed bugs:**
|
@@ -377,6 +440,7 @@
|
|
377
440
|
- u3d/downloader: print progress improvements \(fix \#164\) [\#177](https://github.com/DragonBox/u3d/pull/177) ([lacostej](https://github.com/lacostej))
|
378
441
|
|
379
442
|
## [v1.0.9](https://github.com/DragonBox/u3d/tree/v1.0.9) (2017-10-31)
|
443
|
+
|
380
444
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.8...v1.0.9)
|
381
445
|
|
382
446
|
**Implemented enhancements:**
|
@@ -391,6 +455,7 @@
|
|
391
455
|
- u3d/cleanups small refactorings and cleanups [\#170](https://github.com/DragonBox/u3d/pull/170) ([lacostej](https://github.com/lacostej))
|
392
456
|
|
393
457
|
## [v1.0.8](https://github.com/DragonBox/u3d/tree/v1.0.8) (2017-10-18)
|
458
|
+
|
394
459
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.7...v1.0.8)
|
395
460
|
|
396
461
|
**Fixed bugs:**
|
@@ -404,6 +469,7 @@
|
|
404
469
|
- Fix module name issue for Globals call [\#167](https://github.com/DragonBox/u3d/pull/167) ([niezbop](https://github.com/niezbop))
|
405
470
|
|
406
471
|
## [v1.0.7](https://github.com/DragonBox/u3d/tree/v1.0.7) (2017-10-03)
|
472
|
+
|
407
473
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.6...v1.0.7)
|
408
474
|
|
409
475
|
**Closed issues:**
|
@@ -415,6 +481,7 @@
|
|
415
481
|
- 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))
|
416
482
|
|
417
483
|
## [v1.0.6](https://github.com/DragonBox/u3d/tree/v1.0.6) (2017-10-02)
|
484
|
+
|
418
485
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.5...v1.0.6)
|
419
486
|
|
420
487
|
**Implemented enhancements:**
|
@@ -431,6 +498,7 @@
|
|
431
498
|
- u3d/all feature/detect bash on ubuntu on windows \(fixed \#150\) [\#155](https://github.com/DragonBox/u3d/pull/155) ([niezbop](https://github.com/niezbop))
|
432
499
|
|
433
500
|
## [v1.0.5](https://github.com/DragonBox/u3d/tree/v1.0.5) (2017-09-28)
|
501
|
+
|
434
502
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.4...v1.0.5)
|
435
503
|
|
436
504
|
**Merged pull requests:**
|
@@ -440,12 +508,13 @@
|
|
440
508
|
- u3d/credentials fix ArgumentError in commands \(fixes \#148\) [\#149](https://github.com/DragonBox/u3d/pull/149) ([niezbop](https://github.com/niezbop))
|
441
509
|
|
442
510
|
## [v1.0.4](https://github.com/DragonBox/u3d/tree/v1.0.4) (2017-09-16)
|
511
|
+
|
443
512
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.3...v1.0.4)
|
444
513
|
|
445
514
|
**Fixed bugs:**
|
446
515
|
|
447
516
|
- u3d/installer might not see a newly installed version on Mac [\#139](https://github.com/DragonBox/u3d/issues/139)
|
448
|
-
- Issue with using installer
|
517
|
+
- Issue with using installer (error: undefined method `\[\]' for nil:NilClass.\) [\#138](https://github.com/DragonBox/u3d/issues/138)
|
449
518
|
|
450
519
|
**Merged pull requests:**
|
451
520
|
|
@@ -456,6 +525,7 @@
|
|
456
525
|
- u3d/internal: load all internal modules in top 'u3d' file [\#137](https://github.com/DragonBox/u3d/pull/137) ([lacostej](https://github.com/lacostej))
|
457
526
|
|
458
527
|
## [v1.0.3](https://github.com/DragonBox/u3d/tree/v1.0.3) (2017-09-11)
|
528
|
+
|
459
529
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.2...v1.0.3)
|
460
530
|
|
461
531
|
**Implemented enhancements:**
|
@@ -481,6 +551,7 @@
|
|
481
551
|
- 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))
|
482
552
|
|
483
553
|
## [v1.0.2](https://github.com/DragonBox/u3d/tree/v1.0.2) (2017-09-05)
|
554
|
+
|
484
555
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.1...v1.0.2)
|
485
556
|
|
486
557
|
**Implemented enhancements:**
|
@@ -503,6 +574,7 @@
|
|
503
574
|
- u3d/install: do not refresh cache when download disabled \(Fixes \#104\) [\#120](https://github.com/DragonBox/u3d/pull/120) ([lacostej](https://github.com/lacostej))
|
504
575
|
|
505
576
|
## [v1.0.1](https://github.com/DragonBox/u3d/tree/v1.0.1) (2017-08-31)
|
577
|
+
|
506
578
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.0...v1.0.1)
|
507
579
|
|
508
580
|
**Merged pull requests:**
|
@@ -510,9 +582,11 @@
|
|
510
582
|
- 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))
|
511
583
|
|
512
584
|
## [v1.0.0](https://github.com/DragonBox/u3d/tree/v1.0.0) (2017-08-31)
|
585
|
+
|
513
586
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.0.rc1...v1.0.0)
|
514
587
|
|
515
588
|
## [v1.0.0.rc1](https://github.com/DragonBox/u3d/tree/v1.0.0.rc1) (2017-08-30)
|
589
|
+
|
516
590
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v0.9.4...v1.0.0.rc1)
|
517
591
|
|
518
592
|
**Implemented enhancements:**
|
@@ -542,6 +616,7 @@
|
|
542
616
|
- logger: Hide EPIPE errors when stdout already closed [\#97](https://github.com/DragonBox/u3d/pull/97) ([lacostej](https://github.com/lacostej))
|
543
617
|
|
544
618
|
## [v0.9.4](https://github.com/DragonBox/u3d/tree/v0.9.4) (2017-08-28)
|
619
|
+
|
545
620
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v0.9.3...v0.9.4)
|
546
621
|
|
547
622
|
**Implemented enhancements:**
|
@@ -578,14 +653,10 @@
|
|
578
653
|
- 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))
|
579
654
|
- Mac Installer fix [\#85](https://github.com/DragonBox/u3d/pull/85) ([niezbop](https://github.com/niezbop))
|
580
655
|
- u3d/run: add -projectpath also when passing arguments \(fixes \#73\) [\#80](https://github.com/DragonBox/u3d/pull/80) ([lacostej](https://github.com/lacostej))
|
581
|
-
- Refactor/downloader and ini [\#79](https://github.com/DragonBox/u3d/pull/79) ([lacostej](https://github.com/lacostej))
|
582
656
|
- 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))
|
583
|
-
- 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))
|
584
|
-
- 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))
|
585
657
|
- Do not crash when no PlaybackEngines are found [\#74](https://github.com/DragonBox/u3d/pull/74) ([lacostej](https://github.com/lacostej))
|
586
658
|
- A missing license header [\#67](https://github.com/DragonBox/u3d/pull/67) ([lacostej](https://github.com/lacostej))
|
587
659
|
- \[tech\] Installer unit tests. Initial commit [\#60](https://github.com/DragonBox/u3d/pull/60) ([lacostej](https://github.com/lacostej))
|
588
|
-
- \[tech\] automate changelog generation through rake [\#59](https://github.com/DragonBox/u3d/pull/59) ([lacostej](https://github.com/lacostej))
|
589
660
|
- 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))
|
590
661
|
- u3d/run: improve run inline help [\#54](https://github.com/DragonBox/u3d/pull/54) ([lacostej](https://github.com/lacostej))
|
591
662
|
- \[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))
|
@@ -593,6 +664,7 @@
|
|
593
664
|
- 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))
|
594
665
|
|
595
666
|
## [v0.9.3](https://github.com/DragonBox/u3d/tree/v0.9.3) (2017-08-07)
|
667
|
+
|
596
668
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v0.9.2...v0.9.3)
|
597
669
|
|
598
670
|
**Implemented enhancements:**
|
@@ -615,12 +687,11 @@
|
|
615
687
|
- \[linux\] Adjust to weird editor versions stored under ProjectSettings/ProjectVersion.txt [\#33](https://github.com/DragonBox/u3d/pull/33) ([niezbop](https://github.com/niezbop))
|
616
688
|
- Make Linux runner functional again [\#29](https://github.com/DragonBox/u3d/pull/29) ([lacostej](https://github.com/lacostej))
|
617
689
|
- 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))
|
618
|
-
- Rubocop / Improve code style [\#27](https://github.com/DragonBox/u3d/pull/27) ([lacostej](https://github.com/lacostej))
|
619
|
-
- Fix Linux runner and installation [\#26](https://github.com/DragonBox/u3d/pull/26) ([niezbop](https://github.com/niezbop))
|
620
690
|
- Change sanitizer to be platform specific [\#24](https://github.com/DragonBox/u3d/pull/24) ([niezbop](https://github.com/niezbop))
|
621
691
|
- Make Linux installer functional again [\#20](https://github.com/DragonBox/u3d/pull/20) ([lacostej](https://github.com/lacostej))
|
622
692
|
|
623
693
|
## [v0.9.2](https://github.com/DragonBox/u3d/tree/v0.9.2) (2017-08-04)
|
694
|
+
|
624
695
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v0.9.1...v0.9.2)
|
625
696
|
|
626
697
|
**Fixed bugs:**
|
@@ -644,8 +715,9 @@
|
|
644
715
|
- Document further the prettifier [\#1](https://github.com/DragonBox/u3d/pull/1) ([lacostej](https://github.com/lacostej))
|
645
716
|
|
646
717
|
## [v0.9.1](https://github.com/DragonBox/u3d/tree/v0.9.1) (2017-07-24)
|
718
|
+
|
647
719
|
[Full Changelog](https://github.com/DragonBox/u3d/compare/v0.9...v0.9.1)
|
648
720
|
|
649
721
|
|
650
722
|
|
651
|
-
\* *This
|
723
|
+
\* *This Changelog was automatically generated by [github_changelog_generator] (https://github.com/github-changelog-generator/github-changelog-generator)*
|