Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

com.rest.blockadelabs 1.0.0-preview.1 #1

Merged
merged 18 commits into from
Jun 10, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Initial Project setup
  • Loading branch information
StephenHodgson committed May 22, 2023
commit 48f48c05da19947ae72e173e127bd40e5c7745e1
File renamed without changes.
File renamed without changes.
7 changes: 7 additions & 0 deletions BlockadeLabs/Assets/csc.rsp.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# com.rest.blockadelabs

[![openupm](https://img.shields.io/npm/v/com.rest.blockadelabs?label=openupm&registry_uri=https://package.openupm.com)](https://openupm.com/packages/com.rest.blockadelabs/)

A Rest.BlockadeLabs package for the [Unity](https://unity.com/) Game Engine.

## Installing

### Via Unity Package Manager and OpenUPM

- Open your Unity project settings
- Select the `Package Manager`
![scoped-registries](https://github.com/RageAgainstThePixel/com.rest.blockadelabs/raw/main/Rest.BlockadeLabs/Packages/com.rest.blockadelabs/Documentation~/images/package-manager-scopes.png)
- Add the OpenUPM package registry:
- `Name: OpenUPM`
- `URL: https://package.openupm.com`
- `Scope(s):`
- `com.rest.blockadelabs`
- Open the Unity Package Manager window
- Change the Registry from Unity to `My Registries`
- Add the `Rest.BlockadeLabs` package

### Via Unity Package Manager and Git url

- Open your Unity Package Manager
- Add package from git url: `https://github.com/RageAgainstThePixel/com.rest.blockadelabs.git#upm`

## Documentation

### Project Setup

```csharp
// TODO
```
8 changes: 8 additions & 0 deletions BlockadeLabs/Packages/com.rest.blockadelabs/Editor.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "ProjectScope.ProjectName.Editor",
"rootNamespace": "ProjectScope.ProjectName.Editor",
"name": "Rest.BlockadeLabs.Editor",
"rootNamespace": "Rest.BlockadeLabs.Editor",
"references": [
"ProjectScope.ProjectName"
"Rest.BlockadeLabs"
],
"includePlatforms": [
"Editor"
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) #CURRENT_YEAR# ProjectAuthor
Copyright (c) 2023 StephenHodgson

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
7 changes: 7 additions & 0 deletions BlockadeLabs/Packages/com.rest.blockadelabs/LICENSE.md.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions BlockadeLabs/Packages/com.rest.blockadelabs/Runtime.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ProjectScope.ProjectName",
"rootNamespace": "ProjectScope.ProjectName",
"name": "Rest.BlockadeLabs",
"rootNamespace": "Rest.BlockadeLabs",
"references": [],
"includePlatforms": [],
"excludePlatforms": [],
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions BlockadeLabs/Packages/com.rest.blockadelabs/Tests.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Licensed under the MIT License. See LICENSE in the project root for license information.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using NUnit.Framework;

namespace ProjectScope.ProjectName.Tests
namespace Rest.BlockadeLabs.Tests
{
internal class ExampleTestScript
{
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "ProjectScope.ProjectName.Tests",
"rootNamespace": "ProjectScope.ProjectName.Tests",
"name": "Rest.BlockadeLabs.Tests",
"rootNamespace": "Rest.BlockadeLabs.Tests",
"references": [
"UnityEngine.TestRunner",
"UnityEditor.TestRunner",
"ProjectScope.ProjectName"
"Rest.BlockadeLabs"
],
"includePlatforms": [
"Editor"
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 25 additions & 0 deletions BlockadeLabs/Packages/com.rest.blockadelabs/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "com.rest.blockadelabs",
"displayName": "BlockadeLabs",
"description": "A Non-Official Blockade Labs Rest Client for Unity (UPM)",
"keywords": [],
"version": "1.0.0-preview.1",
"unity": "2021.3",
"documentationUrl": "https://github.com/RageAgainstThePixel/com.rest.blockadelabs#documentation",
"changelogUrl": "https://github.com/RageAgainstThePixel/com.rest.blockadelabs/releases",
"license": "MIT",
"repository": {
"type": "git",
"repository": "https://github.com/RageAgainstThePixel/com.rest.blockadelabs.git"
},
"author": {
"name": "Stephen Hodgson",
"url": "https://github.com/StephenHodgson"
},
"dependencies": {
"com.utilities.rest": "1.4.4"
},
"publishConfig": {
"registry": "https://package.openupm.com"
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions BlockadeLabs/Packages/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"dependencies": {
"com.unity.ide.rider": "3.0.20",
"com.unity.ide.visualstudio": "2.0.18",
"com.unity.test-framework": "1.1.33",
"com.utilities.rest": "file:E:/Dev/Rage/com.utilities.rest/Utilities.Rest/Packages/com.utilities.rest"
},
"scopedRegistries": [
{
"name": "OpenUPM",
"url": "https://package.openupm.com",
"scopes": [
"com.utilities"
]
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,27 +12,33 @@ MonoBehaviour:
m_Script: {fileID: 13964, guid: 0000000000000000e000000000000000, type: 0}
m_Name:
m_EditorClassIdentifier:
m_EnablePreReleasePackages: 1
m_EnablePackageDependencies: 1
m_AdvancedSettingsExpanded: 1
m_ScopedRegistriesSettingsExpanded: 1
oneTimeWarningShown: 0
m_SeeAllPackageVersions: 0
oneTimeWarningShown: 1
m_Registries:
- m_Id: main
m_Name:
m_Url: https://packages.unity.com
m_Scopes: []
m_IsDefault: 1
m_UserSelectedRegistryName:
m_Capabilities: 0
m_ConfigSource: 0
- m_Id: scoped:project:OpenUPM
m_Name: OpenUPM
m_Url: https://package.openupm.com
m_Scopes:
- com.utilities
m_IsDefault: 0
m_Capabilities: 0
m_ConfigSource: 4
m_UserSelectedRegistryName: OpenUPM
m_UserAddingNewScopedRegistry: 0
m_RegistryInfoDraft:
m_ErrorMessage:
m_Original:
m_Id:
m_Name:
m_Url:
m_Scopes: []
m_IsDefault: 0
m_Modified: 0
m_Name:
m_Url:
m_Scopes:
-
m_SelectedScopeIndex: 0
m_ErrorMessage:
m_UserModificationsInstanceId: -850
m_OriginalInstanceId: -852
m_LoadAssets: 0
Loading