u3d 1.2.1 → 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.
Files changed (62) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +43 -10
  3. data/.github/workflows/ci.yml +35 -0
  4. data/.github_changelog_generator +3 -1
  5. data/.gitignore +1 -0
  6. data/.rubocop.yml +15 -3
  7. data/CHANGELOG.md +90 -11
  8. data/DEVELOPMENT_PROCESS.md +1 -0
  9. data/Gemfile.lock +148 -88
  10. data/Rakefile +55 -6
  11. data/appveyor.yml +25 -6
  12. data/examples/Example1/Gemfile +4 -2
  13. data/examples/Example1/Gemfile.lock +12 -7
  14. data/examples/Example1/Rakefile +2 -0
  15. data/examples/Example1/fastlane/Fastfile +2 -0
  16. data/examples/Example2/Gemfile +4 -2
  17. data/examples/Example2/Gemfile.lock +12 -7
  18. data/examples/Example2/fastlane/Fastfile +2 -0
  19. data/exe/u3d +3 -1
  20. data/lib/u3d/asset.rb +6 -2
  21. data/lib/u3d/cache.rb +14 -10
  22. data/lib/u3d/commands.rb +22 -17
  23. data/lib/u3d/commands_generator.rb +9 -4
  24. data/lib/u3d/compatibility.rb +2 -0
  25. data/lib/u3d/download_validator.rb +6 -3
  26. data/lib/u3d/downloader.rb +12 -8
  27. data/lib/u3d/failure_reporter.rb +4 -3
  28. data/lib/u3d/hub_modules_parser.rb +24 -7
  29. data/lib/u3d/ini_modules_parser.rb +10 -32
  30. data/lib/u3d/installation.rb +77 -66
  31. data/lib/u3d/installer.rb +50 -34
  32. data/lib/u3d/log_analyzer.rb +31 -27
  33. data/lib/u3d/unity_license.rb +2 -0
  34. data/lib/u3d/unity_module.rb +2 -0
  35. data/lib/u3d/unity_project.rb +4 -1
  36. data/lib/u3d/unity_runner.rb +12 -10
  37. data/lib/u3d/unity_version_definition.rb +3 -0
  38. data/lib/u3d/unity_version_number.rb +8 -2
  39. data/lib/u3d/unity_versions.rb +28 -23
  40. data/lib/u3d/utils.rb +82 -15
  41. data/lib/u3d/version.rb +8 -6
  42. data/lib/u3d.rb +13 -0
  43. data/lib/u3d_core/admin_tools.rb +2 -0
  44. data/lib/u3d_core/command_executor.rb +11 -7
  45. data/lib/u3d_core/command_runner.rb +17 -19
  46. data/lib/u3d_core/core_ext/hash.rb +2 -0
  47. data/lib/u3d_core/core_ext/operating_system_symbol.rb +3 -0
  48. data/lib/u3d_core/core_ext/string.rb +2 -0
  49. data/lib/u3d_core/credentials.rb +9 -7
  50. data/lib/u3d_core/env.rb +35 -0
  51. data/lib/u3d_core/globals.rb +7 -7
  52. data/lib/u3d_core/helper.rb +6 -4
  53. data/lib/u3d_core/ui/disable_colors.rb +2 -0
  54. data/lib/u3d_core/ui/implementations/shell.rb +8 -5
  55. data/lib/u3d_core/ui/interface.rb +3 -0
  56. data/lib/u3d_core/ui/ui.rb +5 -4
  57. data/lib/u3d_core/update_checker/changelog.rb +67 -0
  58. data/lib/u3d_core/update_checker/update_checker.rb +129 -0
  59. data/lib/u3d_core/version.rb +2 -0
  60. data/lib/u3d_core.rb +5 -0
  61. data/u3d.gemspec +20 -10
  62. metadata +106 -31
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6aa51fd11881ddc77a6977eab436cfb987bf8f39a07ff9fe71f39e4e7e62a4d5
4
- data.tar.gz: 560619a4d9c2897806775be6e9c447575d84641c4554fa011a1d7abede2c5a7b
3
+ metadata.gz: 7da585b57cca4cfab15b83a25ab8b2c6982c4c96ad6f8ce872668f75e994972e
4
+ data.tar.gz: d28f5d885ee5fb6ce0429e024030dac0f471a1a183bd1da5f95bbd6984e4aaaa
5
5
  SHA512:
6
- metadata.gz: '0287cdd2e6640c60f3378a81e10ea7f89704443b0e7e4b7d3a2fc16b6f84c8ff65a61b30537787dea73a73311175389aee102e0f00678b44e0d4f94fb5f4c4e5'
7
- data.tar.gz: 2c6d67883b71ab8503d4b4abfbe834b8dbe43106eeac50ea1ad44370fedfff4d01364bf6297082740c994b0d2ef033e8f9a22fed8ebb8d91b54443d71def8413
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
- # specify the version you desire here
10
- - image: circleci/ruby:2.4.1-node-browsers
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
 
@@ -26,10 +49,18 @@ jobs:
26
49
  # fallback to using the latest cache if no exact match is found
27
50
  - v1-dependencies-
28
51
 
52
+ - run:
53
+ name: Configure Bundler
54
+ command: |
55
+ echo 'export BUNDLER_VERSION=$(cat Gemfile.lock | tail -1 | tr -d " ")' >> $BASH_ENV
56
+ source $BASH_ENV
57
+ gem install bundler -v "$BUNDLER_VERSION"
58
+ bundle config set path '.bundle'
59
+
29
60
  - run:
30
61
  name: install dependencies
31
62
  command: |
32
- bundle install --jobs=4 --retry=3 --path .bundle
63
+ bundle install --jobs=4 --retry=3
33
64
 
34
65
  - save_cache:
35
66
  paths:
@@ -44,6 +75,8 @@ jobs:
44
75
  - run:
45
76
  name: run tests
46
77
  command: |
78
+ echo $BUNDLER_VERSION
79
+ bundle --version
47
80
  bundle exec rake
48
81
 
49
82
  # collect reports
@@ -51,4 +84,4 @@ jobs:
51
84
  path: /tmp/rspec/
52
85
  - store_artifacts:
53
86
  path: /tmp/rspec/
54
- 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")
@@ -1,4 +1,6 @@
1
- future-release=v1.2.1
1
+ future-release=v1.3.0
2
2
  since-tag=v0.9
3
3
  exclude_tags_regex=v0\.[0-8]\..*
4
4
  exclude-labels=nochangelog,question
5
+ user=DragonBox
6
+ project=u3d
data/.gitignore CHANGED
@@ -4,3 +4,4 @@ gems/
4
4
  doc/
5
5
  LOCAL/
6
6
  .DS_Store
7
+ .bundle/
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: 10
46
+ Max: 12
38
47
 
39
48
  Metrics/MethodLength:
40
49
  Enabled: false
41
50
 
42
51
  # Configuration parameters: AllowURI, URISchemes.
43
- Metrics/LineLength:
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,57 @@
1
- # Change Log
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))
22
+
23
+ ## [v1.2.3](https://github.com/DragonBox/u3d/tree/v1.2.3) (2020-02-26)
24
+
25
+ [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.2.2...v1.2.3)
26
+
27
+ **Merged pull requests:**
28
+
29
+ - 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))
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))
31
+
32
+ ## [v1.2.2](https://github.com/DragonBox/u3d/tree/v1.2.2) (2020-02-21)
33
+
34
+ [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.2.1...v1.2.2)
35
+
36
+ **Fixed bugs:**
37
+
38
+ - Error management in invalid modules at least on macOS [\#385](https://github.com/DragonBox/u3d/issues/385)
39
+ - U3D\_EXTRA\_PATHS is improperly interpreted on Windows [\#383](https://github.com/DragonBox/u3d/issues/383)
40
+
41
+ **Closed issues:**
42
+
43
+ - github releases are not marked as latest nor contain changelogs [\#389](https://github.com/DragonBox/u3d/issues/389)
44
+
45
+ **Merged pull requests:**
46
+
47
+ - Bump Example1 dependencies that trigger security warning on github [\#396](https://github.com/DragonBox/u3d/pull/396) ([lacostej](https://github.com/lacostej))
48
+ - Create Github releases. Required for \#390. \[Fixes \#389\] [\#395](https://github.com/DragonBox/u3d/pull/395) ([lacostej](https://github.com/lacostej))
49
+ - Support displaying u3d updates [\#390](https://github.com/DragonBox/u3d/pull/390) ([lacostej](https://github.com/lacostej))
50
+ - u3d/install: convert Windows paths to ruby paths when treating U3D\_EXTRA\_PATHS [\#388](https://github.com/DragonBox/u3d/pull/388) ([lacostej](https://github.com/lacostej))
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))
2
52
 
3
53
  ## [v1.2.1](https://github.com/DragonBox/u3d/tree/v1.2.1) (2019-11-15)
54
+
4
55
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.2.0...v1.2.1)
5
56
 
6
57
  **Implemented enhancements:**
@@ -9,6 +60,7 @@
9
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))
10
61
 
11
62
  ## [v1.2.0](https://github.com/DragonBox/u3d/tree/v1.2.0) (2019-11-15)
63
+
12
64
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.1.5...v1.2.0)
13
65
 
14
66
  **Implemented enhancements:**
@@ -43,6 +95,7 @@
43
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))
44
96
 
45
97
  ## [v1.1.5](https://github.com/DragonBox/u3d/tree/v1.1.5) (2019-03-06)
98
+
46
99
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.1.4...v1.1.5)
47
100
 
48
101
  **Fixed bugs:**
@@ -55,6 +108,7 @@
55
108
  - build: automatically set reviewer on pre\_release PR [\#348](https://github.com/DragonBox/u3d/pull/348) ([lacostej](https://github.com/lacostej))
56
109
 
57
110
  ## [v1.1.4](https://github.com/DragonBox/u3d/tree/v1.1.4) (2019-02-28)
111
+
58
112
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.1.3...v1.1.4)
59
113
 
60
114
  **Implemented enhancements:**
@@ -73,9 +127,10 @@
73
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))
74
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))
75
129
  - u3d/install exit 1 when version not found. Fixes \#343 [\#344](https://github.com/DragonBox/u3d/pull/344) ([lacostej](https://github.com/lacostej))
76
- - Add `-t\*` flag for 7z when unpacking packages [\#342](https://github.com/DragonBox/u3d/pull/342) ([rawstacktech](https://github.com/rawstacktech))
130
+ - Add `-t*` flag for 7z when unpacking packages [\#342](https://github.com/DragonBox/u3d/pull/342) ([tony-rowan](https://github.com/tony-rowan))
77
131
 
78
132
  ## [v1.1.3](https://github.com/DragonBox/u3d/tree/v1.1.3) (2019-01-08)
133
+
79
134
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.1.2...v1.1.3)
80
135
 
81
136
  **Implemented enhancements:**
@@ -94,10 +149,11 @@
94
149
 
95
150
  **Merged pull requests:**
96
151
 
97
- - u3d/available: Make Linux 2018.3.0f2 available on linux \#337 [\#338](https://github.com/DragonBox/u3d/pull/338) ([rawstacktech](https://github.com/rawstacktech))
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))
98
153
  - Bump dependencies to remove dependency on rubyzip 1.2.1 [\#328](https://github.com/DragonBox/u3d/pull/328) ([lacostej](https://github.com/lacostej))
99
154
 
100
155
  ## [v1.1.2](https://github.com/DragonBox/u3d/tree/v1.1.2) (2018-07-12)
156
+
101
157
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.1.1...v1.1.2)
102
158
 
103
159
  **Implemented enhancements:**
@@ -105,6 +161,7 @@
105
161
  - u3d/available: Add option to not use the central cache [\#324](https://github.com/DragonBox/u3d/pull/324) ([niezbop](https://github.com/niezbop))
106
162
 
107
163
  ## [v1.1.1](https://github.com/DragonBox/u3d/tree/v1.1.1) (2018-07-12)
164
+
108
165
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.1.0...v1.1.1)
109
166
 
110
167
  **Fixed bugs:**
@@ -119,6 +176,7 @@
119
176
  - Betas not fetched anymore [\#314](https://github.com/DragonBox/u3d/issues/314)
120
177
 
121
178
  ## [v1.1.0](https://github.com/DragonBox/u3d/tree/v1.1.0) (2018-06-27)
179
+
122
180
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.21...v1.1.0)
123
181
 
124
182
  **Implemented enhancements:**
@@ -135,6 +193,7 @@
135
193
  - u3d/available: proper fetching of paginated archives \(fixes \#312\) [\#313](https://github.com/DragonBox/u3d/pull/313) ([lacostej](https://github.com/lacostej))
136
194
 
137
195
  ## [v1.0.21](https://github.com/DragonBox/u3d/tree/v1.0.21) (2018-04-27)
196
+
138
197
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.20...v1.0.21)
139
198
 
140
199
  **Implemented enhancements:**
@@ -176,6 +235,7 @@
176
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))
177
236
 
178
237
  ## [v1.0.20](https://github.com/DragonBox/u3d/tree/v1.0.20) (2018-04-19)
238
+
179
239
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.19...v1.0.20)
180
240
 
181
241
  **Implemented enhancements:**
@@ -205,6 +265,7 @@
205
265
  - u3d/prettify: Fix UnityEngine.Debug.LogXXXFormat not being caught [\#270](https://github.com/DragonBox/u3d/pull/270) ([niezbop](https://github.com/niezbop))
206
266
 
207
267
  ## [v1.0.19](https://github.com/DragonBox/u3d/tree/v1.0.19) (2018-03-09)
268
+
208
269
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.18...v1.0.19)
209
270
 
210
271
  **Implemented enhancements:**
@@ -216,6 +277,7 @@
216
277
  - u3d/licenses: add feature to display licenses [\#262](https://github.com/DragonBox/u3d/pull/262) ([lacostej](https://github.com/lacostej))
217
278
 
218
279
  ## [v1.0.18](https://github.com/DragonBox/u3d/tree/v1.0.18) (2018-03-08)
280
+
219
281
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.17...v1.0.18)
220
282
 
221
283
  **Closed issues:**
@@ -227,6 +289,7 @@
227
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))
228
290
 
229
291
  ## [v1.0.17](https://github.com/DragonBox/u3d/tree/v1.0.17) (2018-03-05)
292
+
230
293
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.16...v1.0.17)
231
294
 
232
295
  **Closed issues:**
@@ -239,6 +302,7 @@
239
302
  - Detect missing 3 Linux versions \(fixes \#255 and \#256\) [\#257](https://github.com/DragonBox/u3d/pull/257) ([lacostej](https://github.com/lacostej))
240
303
 
241
304
  ## [v1.0.16](https://github.com/DragonBox/u3d/tree/v1.0.16) (2018-02-04)
305
+
242
306
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.15...v1.0.16)
243
307
 
244
308
  **Implemented enhancements:**
@@ -265,6 +329,7 @@
265
329
  - Support linux forums pagination [\#243](https://github.com/DragonBox/u3d/pull/243) ([lacostej](https://github.com/lacostej))
266
330
 
267
331
  ## [v1.0.15](https://github.com/DragonBox/u3d/tree/v1.0.15) (2018-01-16)
332
+
268
333
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.14...v1.0.15)
269
334
 
270
335
  **Fixed bugs:**
@@ -272,6 +337,7 @@
272
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))
273
338
 
274
339
  ## [v1.0.14](https://github.com/DragonBox/u3d/tree/v1.0.14) (2018-01-15)
340
+
275
341
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.13...v1.0.14)
276
342
 
277
343
  **Implemented enhancements:**
@@ -287,6 +353,7 @@
287
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))
288
354
 
289
355
  ## [v1.0.13](https://github.com/DragonBox/u3d/tree/v1.0.13) (2018-01-09)
356
+
290
357
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.12...v1.0.13)
291
358
 
292
359
  **Implemented enhancements:**
@@ -306,6 +373,7 @@
306
373
  - Update to latest rubocop [\#212](https://github.com/DragonBox/u3d/pull/212) ([lacostej](https://github.com/lacostej))
307
374
 
308
375
  ## [v1.0.12](https://github.com/DragonBox/u3d/tree/v1.0.12) (2018-01-03)
376
+
309
377
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.11...v1.0.12)
310
378
 
311
379
  **Implemented enhancements:**
@@ -325,6 +393,7 @@
325
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))
326
394
 
327
395
  ## [v1.0.11](https://github.com/DragonBox/u3d/tree/v1.0.11) (2017-12-07)
396
+
328
397
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.10...v1.0.11)
329
398
 
330
399
  **Implemented enhancements:**
@@ -337,6 +406,7 @@
337
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))
338
407
 
339
408
  ## [v1.0.10](https://github.com/DragonBox/u3d/tree/v1.0.10) (2017-11-03)
409
+
340
410
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.9...v1.0.10)
341
411
 
342
412
  **Fixed bugs:**
@@ -357,6 +427,7 @@
357
427
  - u3d/downloader: print progress improvements \(fix \#164\) [\#177](https://github.com/DragonBox/u3d/pull/177) ([lacostej](https://github.com/lacostej))
358
428
 
359
429
  ## [v1.0.9](https://github.com/DragonBox/u3d/tree/v1.0.9) (2017-10-31)
430
+
360
431
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.8...v1.0.9)
361
432
 
362
433
  **Implemented enhancements:**
@@ -371,6 +442,7 @@
371
442
  - u3d/cleanups small refactorings and cleanups [\#170](https://github.com/DragonBox/u3d/pull/170) ([lacostej](https://github.com/lacostej))
372
443
 
373
444
  ## [v1.0.8](https://github.com/DragonBox/u3d/tree/v1.0.8) (2017-10-18)
445
+
374
446
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.7...v1.0.8)
375
447
 
376
448
  **Fixed bugs:**
@@ -384,6 +456,7 @@
384
456
  - Fix module name issue for Globals call [\#167](https://github.com/DragonBox/u3d/pull/167) ([niezbop](https://github.com/niezbop))
385
457
 
386
458
  ## [v1.0.7](https://github.com/DragonBox/u3d/tree/v1.0.7) (2017-10-03)
459
+
387
460
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.6...v1.0.7)
388
461
 
389
462
  **Closed issues:**
@@ -395,6 +468,7 @@
395
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))
396
469
 
397
470
  ## [v1.0.6](https://github.com/DragonBox/u3d/tree/v1.0.6) (2017-10-02)
471
+
398
472
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.5...v1.0.6)
399
473
 
400
474
  **Implemented enhancements:**
@@ -411,6 +485,7 @@
411
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))
412
486
 
413
487
  ## [v1.0.5](https://github.com/DragonBox/u3d/tree/v1.0.5) (2017-09-28)
488
+
414
489
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.4...v1.0.5)
415
490
 
416
491
  **Merged pull requests:**
@@ -420,12 +495,13 @@
420
495
  - u3d/credentials fix ArgumentError in commands \(fixes \#148\) [\#149](https://github.com/DragonBox/u3d/pull/149) ([niezbop](https://github.com/niezbop))
421
496
 
422
497
  ## [v1.0.4](https://github.com/DragonBox/u3d/tree/v1.0.4) (2017-09-16)
498
+
423
499
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.3...v1.0.4)
424
500
 
425
501
  **Fixed bugs:**
426
502
 
427
503
  - u3d/installer might not see a newly installed version on Mac [\#139](https://github.com/DragonBox/u3d/issues/139)
428
- - Issue with using installer \(error: undefined method `\[\]' for nil:NilClass.\) [\#138](https://github.com/DragonBox/u3d/issues/138)
504
+ - Issue with using installer (error: undefined method `\[\]' for nil:NilClass.\) [\#138](https://github.com/DragonBox/u3d/issues/138)
429
505
 
430
506
  **Merged pull requests:**
431
507
 
@@ -436,6 +512,7 @@
436
512
  - u3d/internal: load all internal modules in top 'u3d' file [\#137](https://github.com/DragonBox/u3d/pull/137) ([lacostej](https://github.com/lacostej))
437
513
 
438
514
  ## [v1.0.3](https://github.com/DragonBox/u3d/tree/v1.0.3) (2017-09-11)
515
+
439
516
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.2...v1.0.3)
440
517
 
441
518
  **Implemented enhancements:**
@@ -461,6 +538,7 @@
461
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))
462
539
 
463
540
  ## [v1.0.2](https://github.com/DragonBox/u3d/tree/v1.0.2) (2017-09-05)
541
+
464
542
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.1...v1.0.2)
465
543
 
466
544
  **Implemented enhancements:**
@@ -483,6 +561,7 @@
483
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))
484
562
 
485
563
  ## [v1.0.1](https://github.com/DragonBox/u3d/tree/v1.0.1) (2017-08-31)
564
+
486
565
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.0...v1.0.1)
487
566
 
488
567
  **Merged pull requests:**
@@ -490,9 +569,11 @@
490
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))
491
570
 
492
571
  ## [v1.0.0](https://github.com/DragonBox/u3d/tree/v1.0.0) (2017-08-31)
572
+
493
573
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.0.rc1...v1.0.0)
494
574
 
495
575
  ## [v1.0.0.rc1](https://github.com/DragonBox/u3d/tree/v1.0.0.rc1) (2017-08-30)
576
+
496
577
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v0.9.4...v1.0.0.rc1)
497
578
 
498
579
  **Implemented enhancements:**
@@ -522,6 +603,7 @@
522
603
  - logger: Hide EPIPE errors when stdout already closed [\#97](https://github.com/DragonBox/u3d/pull/97) ([lacostej](https://github.com/lacostej))
523
604
 
524
605
  ## [v0.9.4](https://github.com/DragonBox/u3d/tree/v0.9.4) (2017-08-28)
606
+
525
607
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v0.9.3...v0.9.4)
526
608
 
527
609
  **Implemented enhancements:**
@@ -558,14 +640,10 @@
558
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))
559
641
  - Mac Installer fix [\#85](https://github.com/DragonBox/u3d/pull/85) ([niezbop](https://github.com/niezbop))
560
642
  - u3d/run: add -projectpath also when passing arguments \(fixes \#73\) [\#80](https://github.com/DragonBox/u3d/pull/80) ([lacostej](https://github.com/lacostej))
561
- - Refactor/downloader and ini [\#79](https://github.com/DragonBox/u3d/pull/79) ([lacostej](https://github.com/lacostej))
562
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))
563
- - 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))
564
- - 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))
565
644
  - Do not crash when no PlaybackEngines are found [\#74](https://github.com/DragonBox/u3d/pull/74) ([lacostej](https://github.com/lacostej))
566
645
  - A missing license header [\#67](https://github.com/DragonBox/u3d/pull/67) ([lacostej](https://github.com/lacostej))
567
646
  - \[tech\] Installer unit tests. Initial commit [\#60](https://github.com/DragonBox/u3d/pull/60) ([lacostej](https://github.com/lacostej))
568
- - \[tech\] automate changelog generation through rake [\#59](https://github.com/DragonBox/u3d/pull/59) ([lacostej](https://github.com/lacostej))
569
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))
570
648
  - u3d/run: improve run inline help [\#54](https://github.com/DragonBox/u3d/pull/54) ([lacostej](https://github.com/lacostej))
571
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))
@@ -573,6 +651,7 @@
573
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))
574
652
 
575
653
  ## [v0.9.3](https://github.com/DragonBox/u3d/tree/v0.9.3) (2017-08-07)
654
+
576
655
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v0.9.2...v0.9.3)
577
656
 
578
657
  **Implemented enhancements:**
@@ -595,12 +674,11 @@
595
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))
596
675
  - Make Linux runner functional again [\#29](https://github.com/DragonBox/u3d/pull/29) ([lacostej](https://github.com/lacostej))
597
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))
598
- - Rubocop / Improve code style [\#27](https://github.com/DragonBox/u3d/pull/27) ([lacostej](https://github.com/lacostej))
599
- - Fix Linux runner and installation [\#26](https://github.com/DragonBox/u3d/pull/26) ([niezbop](https://github.com/niezbop))
600
677
  - Change sanitizer to be platform specific [\#24](https://github.com/DragonBox/u3d/pull/24) ([niezbop](https://github.com/niezbop))
601
678
  - Make Linux installer functional again [\#20](https://github.com/DragonBox/u3d/pull/20) ([lacostej](https://github.com/lacostej))
602
679
 
603
680
  ## [v0.9.2](https://github.com/DragonBox/u3d/tree/v0.9.2) (2017-08-04)
681
+
604
682
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v0.9.1...v0.9.2)
605
683
 
606
684
  **Fixed bugs:**
@@ -624,8 +702,9 @@
624
702
  - Document further the prettifier [\#1](https://github.com/DragonBox/u3d/pull/1) ([lacostej](https://github.com/lacostej))
625
703
 
626
704
  ## [v0.9.1](https://github.com/DragonBox/u3d/tree/v0.9.1) (2017-07-24)
705
+
627
706
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v0.9...v0.9.1)
628
707
 
629
708
 
630
709
 
631
- \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
710
+ \* *This Changelog was automatically generated by [github_changelog_generator] (https://github.com/github-changelog-generator/github-changelog-generator)*
@@ -9,6 +9,7 @@
9
9
  * make a release
10
10
 
11
11
  `rake release`
12
+ `rake create_missing_github_releases`
12
13
 
13
14
  = release of the fastlane plugin
14
15