Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit e25eaae

Browse files
committed
Fix listing of orgs broken on Unity 5.6
1 parent bc152a0 commit e25eaae

File tree

6 files changed

+26
-31
lines changed

6 files changed

+26
-31
lines changed

octorun/src/bin/app-organizations.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ try {
1717
process.exit();
1818
}
1919
else {
20-
let results = [];
20+
results = [];
2121
for (var i = 0; i < result.length; i++) {
2222
results.push(result[i].name);
2323
results.push(result[i].login);

octorun/version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8008bf3da68428f50368cf2fe3fe290df4acad54
1+
b91b7b60

src/GitHub.Api/GitHub.Api.csproj

Lines changed: 20 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -276,31 +276,14 @@
276276
<Content Include="PlatformResources\windows\git.zip">
277277
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
278278
</Content>
279-
<EmbeddedResource Include="PlatformResources\mac\gitconfig">
280-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
281-
</EmbeddedResource>
282-
<EmbeddedResource Include="PlatformResources\windows\gitconfig">
283-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
284-
</EmbeddedResource>
285-
</ItemGroup>
286-
<ItemGroup>
287-
<EmbeddedResource Include="Resources\.gitattributes" />
288-
<EmbeddedResource Include="Resources\.gitignore" />
289-
<EmbeddedResource Include="Resources\octorun.zip" />
290-
</ItemGroup>
291-
<ItemGroup>
292-
<EmbeddedResource Include="Localization.resx">
293-
<Generator>PublicResXFileCodeGenerator</Generator>
294-
<LastGenOutput>Localization.Designer.cs</LastGenOutput>
295-
<SubType>Designer</SubType>
296-
</EmbeddedResource>
297-
</ItemGroup>
298-
<ItemGroup>
299-
<None Include="packages.config" />
279+
<EmbeddedResource Include="PlatformResources\mac\gitconfig" />
280+
<EmbeddedResource Include="PlatformResources\windows\gitconfig" />
300281
<Content Include="PlatformResources\linux\git-lfs.zip">
301282
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
302283
</Content>
303-
<Content Include="PlatformResources\linux\git-lfs.zip.md5" />
284+
<Content Include="PlatformResources\linux\git-lfs.zip.md5">
285+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
286+
</Content>
304287
<Content Include="PlatformResources\mac\git-lfs.zip.md5">
305288
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
306289
</Content>
@@ -310,11 +293,24 @@
310293
<Content Include="PlatformResources\windows\git.zip.md5">
311294
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
312295
</Content>
313-
<EmbeddedResource Include="PlatformResources\linux\gitconfig">
296+
<EmbeddedResource Include="PlatformResources\linux\gitconfig" />
297+
<EmbeddedResource Include="Resources\.gitattributes" />
298+
<EmbeddedResource Include="Resources\.gitignore" />
299+
<Content Include="Resources\octorun.zip">
300+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
301+
</Content>
302+
<Content Include="Resources\octorun.zip.md5">
314303
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
304+
</Content>
305+
</ItemGroup>
306+
<ItemGroup>
307+
<None Include="packages.config" />
308+
<EmbeddedResource Include="Localization.resx">
309+
<Generator>PublicResXFileCodeGenerator</Generator>
310+
<LastGenOutput>Localization.Designer.cs</LastGenOutput>
311+
<SubType>Designer</SubType>
315312
</EmbeddedResource>
316313
</ItemGroup>
317-
<ItemGroup />
318314
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
319315
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
320316
Other similar extension points exist, see Microsoft.Common.targets.

src/GitHub.Api/Installer/OctorunInstaller.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,8 @@ public class OctorunInstallDetails
101101
{
102102
public const string DefaultZipMd5Url = "https://ghfvs-installer.github.com/unity/octorun/octorun.zip.md5";
103103
public const string DefaultZipUrl = "https://ghfvs-installer.github.com/unity/octorun/octorun.zip";
104-
public const string ExtractedMD5 = "b7341015bc701a9f5bf83f51b1b596b7";
105-
public const string ExecutableMD5 = "50570ed932559f294d1a1361801740b9";
106104

107-
public const string PackageVersion = "8008bf3da68428f50368cf2fe3fe290df4acad54";
105+
public const string PackageVersion = "b91b7b60";
108106
private const string PackageName = "octorun";
109107
private const string zipFile = "octorun.zip";
110108

src/GitHub.Api/Resources/octorun.zip

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:0c48d9a98049a3fafcebc107ab2bd2a6c79825ce00131c75fa3d8fd22fabddce
3-
size 217909
2+
oid sha256:dcdf06517450ccbad14e1bea863387bef84b24d3709eec50c371f918839606e6
3+
size 212554
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
7cdaa49008b8c996343e07670100bce2

0 commit comments

Comments
 (0)