Skip to content

Commit

Permalink
Merge pull request #36 from pharo-graphics/dev
Browse files Browse the repository at this point in the history
Update README
  • Loading branch information
tinchodias authored Feb 21, 2024
2 parents 53d1ffa + 8458a10 commit 94de097
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 9 deletions.
22 changes: 15 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![License](https://img.shields.io/github/license/plantec/Album.svg)](./LICENSE)
[![License](https://img.shields.io/github/license/pharo-graphics/Album.svg)](./LICENSE)

[![Tests](https://github.com/plantec/Album/actions/workflows/Tests.yml/badge.svg?branch=master)](https://github.com/plantec/Album/actions/workflows/Tests.yml)
[![Tests](https://github.com/pharo-graphics/Album/actions/workflows/Tests.yml/badge.svg?branch=master)](https://github.com/pharo-graphics/Album/actions/workflows/Tests.yml)
[![Pharo 11](https://img.shields.io/badge/Pharo-11-%23aac9ff.svg)](https://pharo.org/download)
[![Pharo 12](https://img.shields.io/badge/Pharo-12-%23aac9ff.svg)](https://pharo.org/download)

Expand All @@ -11,20 +11,28 @@ Album provide functions to create widgets with advanced text edition features as

Originaly forked from Brick project editor.


## Installation

To install the latest version of Album in Pharo you just need to execute the following script:
Load the stable Album in current stable Pharo with:

```Smalltalk
Metacello new
baseline: 'Album';
repository: 'github://plantec/Album:master/src';
repository: 'github://pharo-graphics/Album:master/src';
onConflictUseIncoming;
load
```

To add in your project BaselineOf:
Add Album to your project Baseline with:

```Smalltalk
spec baseline: 'Album' with: [ spec repository: 'github://plantec/Album:master/src' ].
```
spec baseline: 'Album' with: [ spec repository: 'github://pharo-graphics/Album:master/src' ].
```

For development, replace `master` by `dev` in previous code.


## License

This code is licensed under the [MIT license](./LICENSE).
4 changes: 2 additions & 2 deletions src/BaselineOfAlbum/BaselineOfAlbum.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ BaselineOfAlbum >> baseline: spec [
spec for: #common do: [
spec
baseline: 'Bloc'
with: [spec repository: 'github://pharo-graphics/Bloc:dev-1.0/src' ].
with: [ spec repository: 'github://pharo-graphics/Bloc:dev/src' ].

spec
baseline: 'Alexandrie'
with: [spec repository: 'github://pharo-graphics/Alexandrie:master/src' ].
with: [ spec repository: 'github://pharo-graphics/Alexandrie:dev/src' ].

spec
package: #Album with: [ spec requires: #( #Bloc ) ];
Expand Down

0 comments on commit 94de097

Please sign in to comment.