Skip to content

Commit

Permalink
Merge pull request #1 from myunitytools/upgrade/repository
Browse files Browse the repository at this point in the history
[Update] Migrate repository to My Unity Tools
  • Loading branch information
joaoborks authored Sep 14, 2022
2 parents 38c5a05 + bbb6832 commit fb7b45a
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 13 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
Change Log
===

All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/).

## [1.3.0] - 2022-09-13
- Changed: Moved repository to My Unity Tools organization.
- Changed: Updated package name and author.

## [1.2.1] - 2022-09-09
- Added: Support for [hot reloading](https://docs.unity3d.com/2019.3/Documentation/Manual/script-Serialization.html) in the Unity Editor.

## [1.2.0] - 2021-02-22
- Changed: Refactored scripts to the My Unity Tools namespace.

## [1.1.0] - 2021-02-05
- Changed: Improved `FPSDisplay` component flexibility.

## [1.0.0] - 2021-01-31
- Initial release.

[1.3.0]: https://github.com/myunitytools/fps-counter/compare/1.2.1...1.3.0
[1.2.1]: https://github.com/myunitytools/fps-counter/compare/1.2.0...1.2.1
[1.2.0]: https://github.com/myunitytools/fps-counter/compare/1.1.0...1.2.0
[1.1.0]: https://github.com/myunitytools/fps-counter/compare/1.0.0...1.1.0
[1.0.0]: https://github.com/myunitytools/fps-counter/compare/330cde1...1.0.0
7 changes: 7 additions & 0 deletions CHANGELOG.md.meta

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

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021 Joao Borks
Copyright (c) 2022 Joao Borks

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
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
![License](https://img.shields.io/github/license/joaoborks/myunitytools-fps-counter)
![Release](https://img.shields.io/github/v/release/joaoborks/myunitytools-fps-counter?sort=semver)
![Last Commit](https://img.shields.io/github/last-commit/joaoborks/myunitytools-fps-counter)
![License](https://img.shields.io/github/license/myunitytools/fps-counter)
![Release](https://img.shields.io/github/v/release/myunitytools/fps-counter?sort=semver)
![Last Commit](https://img.shields.io/github/last-commit/myunitytools/fps-counter)

My Unity Tools - FPS Counter
FPS Counter
===

_A package to measure the average, highest and lowest frames per second in any Unity Application._
Expand All @@ -12,15 +12,15 @@ Installation

#### - For 2019.1+: [Installing from a git URL](https://docs.unity3d.com/Manual/upm-ui-giturl.html) _(requires [Git](https://git-scm.com/) installed and added to the PATH)_
You can open the Package Manager and then click on the `+` button on the top left corner.
From there select `Add package from git URL...`, type `https://github.com/joaoborks/myunitytools-fps-counter.git` and click `Add`.
From there select `Add package from git URL...`, type `https://github.com/myunitytools/fps-counter.git` and click `Add`.
The package will be imported by the Package Manager.

#### - Other Package Manager supported versions: Add manually to manifest
You should add this to your `manifest.json` under the `Packages` folder on the root of your Unity Project:
```
{
"dependencies": {
"com.joaoborks.fpscounter": "https://github.com/joaoborks/myunitytools-fps-counter.git"
"com.joaoborks.fpscounter": "https://github.com/myunitytools/fps-counter.git"
}
}
```
Expand Down Expand Up @@ -55,4 +55,4 @@ The `FPSDisplay` class was created with an array of strings with numbers up to *

---

Don't hesitate to create [issues](https://github.com/joaoborks/myunitytools-fps-counter/issues) for suggestions and bugs. Have fun!
Don't hesitate to create [issues](https://github.com/myunitytools/fps-counter/issues) for suggestions and bugs. Have fun!
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "com.myunitytools.fpscounter",
"version": "1.2.1",
"displayName": "My Unity Tools - FPS Counter",
"name": "com.myunitytools.fps-counter",
"version": "1.3.0",
"displayName": "FPS Counter",
"description": "A lightweight FPS Counter. Tracks average, minimum and maximum frames per second of the application.",
"unity": "2018.4",
"unityRelease": "0f1",
"keywords": [],
"author": {
"name": "Jo\u00e3o Borks",
"name": "My Unity Tools",
"email": "[email protected]",
"url": "https://github.com/JoaoBorks"
"url": "https://github.com/myunitytools"
},
"hideInEditor": false,
"dependencies": {
Expand Down

0 comments on commit fb7b45a

Please sign in to comment.