u3d 1.0.21 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 10b2431e2eb35059d86094081ce7c219c568f935
4
- data.tar.gz: e826f09214bc27778063015107f8509473c58ee3
3
+ metadata.gz: 4be70d9ffab56f3537c7f5081359d2eaa2a46ad5
4
+ data.tar.gz: cd8c671f66176935802e26be92d219aee76bd761
5
5
  SHA512:
6
- metadata.gz: 193be5dd907f183a023cf64d6e88b0cd483b0bac27e37b0735c0cf560707467d765208a1c9643f2f0c9a80e6745d2232ce83d170a18cb464b791d375d6efcb9d
7
- data.tar.gz: 064ef5072d1bd047109874b91662fc589125892e90e5c4fcb3c9fec759b5f375a28bdbe9b273f110f7ee30fd0179f7a9cb6c0787b1e02e1294f54d850411763c
6
+ metadata.gz: 6dc822de300ad849dfe6a2a2fbb84f16e4180e5bb50b193ba177fb2578cd269192cf4d55ba46d720dffed209235d5ac3c58381f48408d168e62b7836a5e72715
7
+ data.tar.gz: b2c7aa41b6f652047f19b2184ed505c9498f72c2a7d1922a5f24fce7e9b63663c3592c3a64f07b45da7e711b331e215da220d3594a722c3cde30806f82f850d6
@@ -1,4 +1,4 @@
1
- future-release=v1.0.21
1
+ future-release=v1.1.0
2
2
  since-tag=v0.9
3
3
  exclude_tags_regex=v0\.[0-8]\..*
4
4
  exclude-labels=nochangelog,question
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Change Log
2
2
 
3
+ ## [v1.1.0](https://github.com/DragonBox/u3d/tree/v1.1.0) (2018-06-27)
4
+ [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.21...v1.1.0)
5
+
6
+ **Implemented enhancements:**
7
+
8
+ - Document parallel Unity runs [\#317](https://github.com/DragonBox/u3d/pull/317) ([niezbop](https://github.com/niezbop))
9
+
10
+ **Closed issues:**
11
+
12
+ - \[OSX\] \[Request?\] Not possible to run concurrent projects [\#316](https://github.com/DragonBox/u3d/issues/316)
13
+ - u3d available is not exhaustive [\#312](https://github.com/DragonBox/u3d/issues/312)
14
+
15
+ **Merged pull requests:**
16
+
17
+ - u3d/available: proper fetching of paginated archives \(fixes \#312\) [\#313](https://github.com/DragonBox/u3d/pull/313) ([lacostej](https://github.com/lacostej))
18
+
3
19
  ## [v1.0.21](https://github.com/DragonBox/u3d/tree/v1.0.21) (2018-04-27)
4
20
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.20...v1.0.21)
5
21
 
@@ -28,6 +44,7 @@
28
44
 
29
45
  **Merged pull requests:**
30
46
 
47
+ - Preparing release for 1.0.21 [\#308](https://github.com/DragonBox/u3d/pull/308) ([lacostej](https://github.com/lacostej))
31
48
  - u3d/console: remove require on pry [\#307](https://github.com/DragonBox/u3d/pull/307) ([lacostej](https://github.com/lacostej))
32
49
  - Allow spaces in installation paths on Windows \#302 [\#306](https://github.com/DragonBox/u3d/pull/306) ([lacostej](https://github.com/lacostej))
33
50
  - u3d/install: support full pkg for Linux [\#305](https://github.com/DragonBox/u3d/pull/305) ([lacostej](https://github.com/lacostej))
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- u3d (1.0.21)
4
+ u3d (1.1.0)
5
5
  colored (>= 1.2, < 2.0.0)
6
6
  commander (>= 4.4.0, < 5.0.0)
7
7
  file-tail (>= 1.2.0)
data/README.md CHANGED
@@ -13,7 +13,7 @@ U3d is a set of tools to interact with Unity from command line. It is available
13
13
 
14
14
  U3d provides help for running and installing unity from CLI.
15
15
 
16
- U3d knows about your Unity project and behaves differently if invoked from within a Unity project directory. For example, it can run or download the version required by your project without you having to specify it.
16
+ U3d knows about your Unity project and behaves differently if invoked from within a Unity project directory. For example, it can run or download the version required by your project without you having to specify it. It also makes it easy to run several Unity instances in parallel.
17
17
 
18
18
  Available commands are:
19
19
 
@@ -180,6 +180,16 @@ You can get further information on how to use U3d by running `u3d --help` (or `u
180
180
 
181
181
  ## How-tos
182
182
 
183
+ ### Run several Unity instances in parallel
184
+
185
+ The only thing you have to watch for while trying to run multiple instances of Unity in parallel is the fact that they will share the same log file by default (the `Editor.log`). Therefore you will have to specify it using the [command line arguments](https://docs.unity3d.com/Manual/CommandLineArguments.html), you can do so with u3d the following way from each of your project root folder:
186
+
187
+ ```shell
188
+ u3d run -- -logFile /path/to/your/logfile
189
+ ```
190
+
191
+ __NOTE__: You still won't be able to overcome the fact that Unity cannot launch the same project twice. This only applies to running multiple Unity instances for different projects.
192
+
183
193
  ### Reuse u3d install on a CI environment
184
194
 
185
195
  Here you have multiple options
@@ -232,7 +232,8 @@ module U3d
232
232
 
233
233
  def fetch_some(type, url)
234
234
  UI.message "Loading Unity #{type} releases"
235
- current = UnityVersions.fetch_version(url, @pattern)
235
+ current = UnityVersions.fetch_version_paged(url, @pattern)
236
+ current = UnityVersions.fetch_version(url, @pattern) if current.empty?
236
237
  UI.success "Found #{current.count} #{type} releases."
237
238
  @versions.merge!(current)
238
239
  end
data/lib/u3d/version.rb CHANGED
@@ -21,7 +21,7 @@
21
21
  ## --- END LICENSE BLOCK ---
22
22
 
23
23
  module U3d
24
- VERSION = '1.0.21'.freeze
24
+ VERSION = '1.1.0'.freeze
25
25
  DESCRIPTION = 'Provides numerous tools for installing, managing and running the Unity game engine from command line.'.freeze
26
26
  UNITY_VERSIONS_NOTE = "Unity uses the following version formatting: 0.0.0x0. The \'x\' can takes different values:\n"\
27
27
  "\t. 'f' are the main release candidates for Unity\n"\
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: u3d
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.21
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jerome Lacoste
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2018-04-27 00:00:00.000000000 Z
12
+ date: 2018-06-27 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: colored