Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pharo-contributions/ColorsExtensions
Extensions to Pharo colors
https://github.com/pharo-contributions/ColorsExtensions
Last synced: 3 months ago
JSON representation
Extensions to Pharo colors
- Host: GitHub
- URL: https://github.com/pharo-contributions/ColorsExtensions
- Owner: pharo-contributions
- License: mit
- Created: 2019-01-10T09:45:36.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-10-19T18:13:54.000Z (about 1 year ago)
- Last Synced: 2024-05-21T03:36:25.548Z (6 months ago)
- Language: Smalltalk
- Size: 38.1 KB
- Stars: 1
- Watchers: 7
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-pharo - Colors Extensions - Extensions to Pharo colors. (Graphics)
README
# ColorsExtensions
Extensions to Pharo colors
## Version management
This project use semantic versionning to define the releases. This mean that each stable release of the project will get associate a version number of the form `vX.Y.Z`.
- **X** define the major version number
- **Y** define the minor version number
- **Z** define the patch version numberWhen a release contains only bug fixes, the patch number increase. When the release contains new features backward compatibles, the minor version increase. When the release contains breaking changes, the major version increase.
Thus, it should be safe to depend on a fixed major version and moving minor version of this project.
## Install ColorsExtensions
To install ColorsExtensions on your Pharo image you can just execute the following script:
```Smalltalk
Metacello new
githubUser: 'pharo-contributions' project: 'ColorsExtensions' commitish: 'master' path: 'src';
baseline: 'ColorsExtensions';
load
```To add ColorsExtensions to your baseline just add this:
```Smalltalk
spec
baseline: 'ColorsExtensions'
with: [ spec repository: 'github://pharo-contributions/ColorsExtensions:master/src' ]
```Note that you can replace the #master by another branch as #development or a tag as #v1.0.0, #v1.? or #v1.2.? .