Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/AChep/2048
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/AChep/2048
- Owner: AChep
- License: apache-2.0
- Created: 2020-12-10T21:06:30.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-12-09T15:15:36.000Z (almost 3 years ago)
- Last Synced: 2024-07-09T08:38:06.710Z (4 months ago)
- Language: Dart
- Size: 3.06 MB
- Stars: 21
- Watchers: 3
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Game of 2048
==========2048 is a single-player sliding block puzzle game designed by Italian web developer Gabriele Cirulli.
The objective of the game is to slide numbered tiles on a grid to combine them to create a tile with the number 2048;
however, one can continue to play the game after reaching the goal, creating tiles with larger numbers.The source code is based on the [Game of Fifteen][5].
Report a bug or request a feature
----------------
Before creating a new issue please make sure that same or similar issue is not already created by checking [open issues][2] and [closed issues][3] *(please note that there might be multiple pages)*. If your issue is already there, don't create a new one, but leave a comment under already existing one.Checklist for creating issues:
- Keep titles short but descriptive.
- For feature requests leave a clear description about the feature with examples where appropriate.
- For bug reports leave as much information as possible about your device, android version, etc.
- For bug reports also write steps to reproduce the issue.[Create new issue][1]
Creating your Game of 2048
----------------
We welcome all developers to use our source code to create applications on our platform.
There are several things we require from **all developers** for the moment:1. Kindly **do not** use our standard logo as your app's logo.
2. Please remember to read and follow the [license][4].Versioning
----------------
For transparency in a release cycle and in striving to maintain backward compatibility, a project should be maintained under the Semantic Versioning guidelines. Sometimes we screw up, but we should adhere to these rules whenever possible.Releases will be numbered with the following format: `..` and constructed with the following guidelines:
- Breaking backward compatibility bumps the major while resetting minor and patch
- New additions without breaking backward compatibility bumps the minor while resetting the patch
- Bug fixes and misc changes bumps only the patchFor more information on SemVer, please visit http://semver.org/.
[1]: https://github.com/AChep/2048/issues/new
[2]: https://github.com/AChep/2048/issues?state=open
[3]: https://github.com/AChep/2048/issues?state=closed
[4]: https://github.com/AChep/2048/blob/master/LICENSE
[5]: https://github.com/AChep/15puzzle