-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from DuneSt/development
Release v1.2.0
- Loading branch information
Showing
66 changed files
with
273 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Contribution | ||
|
||
This file is currently not complete but will be improve step by step. | ||
|
||
# Release 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 number | ||
|
||
When 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. | ||
|
||
# Branch management | ||
|
||
This project use gitflow management. | ||
|
||
This project contains two main branches: | ||
- **master** : This branch is a stable branch. Each version on this branch should be a stable release of Material Design Lite for Seaside, and idealy each commit modifying the source code of the project should be tagged with a version number. | ||
- **development** : This branch contains the current development of this project. | ||
|
||
## New feature | ||
|
||
When a new feature will take some time to implement, this feature should be developed in a specific branch. Once done, it will be merged in development before the next release of Material Design Lite for Seaside. | ||
|
||
## Hot fix | ||
|
||
If a bug is found in a stable version and the correction is backward compatible, it should be corrected in an hotfix branch. Once the correction is finished the hotfix branch should be merged into master and development and a new bugfix release should be done. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
src/BaselineOfMaterialColors.package/BaselineOfMaterialColors.class/instance/pharo..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
baseline | ||
pharo: spec | ||
spec | ||
for: #pharo | ||
do: [ spec | ||
package: 'Material-Design-Colors-Platform-Pharo' with: [ spec requires: 'Material-Design-Colors' ]; | ||
package: 'Material-Design-Colors' with: [ spec includes: 'Material-Design-Colors-Platform-Pharo' ] ] |
5 changes: 5 additions & 0 deletions
5
src/Material-Design-Colors-Platform-Gemstone.package/.filetree
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"separateMethodMetaAndSource" : false, | ||
"noMethodMetaData" : true, | ||
"useCypressPropertiesFile" : true | ||
} |
4 changes: 4 additions & 0 deletions
4
...-Colors-Platform-Gemstone.package/MaterialColorGemstonePlatform.class/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Description | ||
-------------------- | ||
|
||
I contain the Gemstone specific code of MaterialDesignColors |
3 changes: 3 additions & 0 deletions
3
...-Colors-Platform-Gemstone.package/MaterialColorGemstonePlatform.class/class/initialize.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
initialize-release | ||
initialize | ||
self register |
5 changes: 5 additions & 0 deletions
5
...orm-Gemstone.package/MaterialColorGemstonePlatform.class/instance/allSelectorsOf.from..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
accessing | ||
allSelectorsOf: aClass from: aSymbol | ||
"Return the lists of selectors understood by <aClass> and categorized in a protocol named <aSymbol>" | ||
|
||
^ aClass allSelectors select: [ :selector | (aClass categoryOfSelector: selector) = aSymbol ] |
3 changes: 3 additions & 0 deletions
3
...lors-Platform-Gemstone.package/MaterialColorGemstonePlatform.class/instance/isGemstone.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
testing | ||
isGemstone | ||
^ true |
11 changes: 11 additions & 0 deletions
11
...sign-Colors-Platform-Gemstone.package/MaterialColorGemstonePlatform.class/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"commentStamp" : "CyrilFerlicot 7/4/2018 18:07", | ||
"super" : "MaterialColorPlatform", | ||
"category" : "Material-Design-Colors-Platform-Gemstone", | ||
"classinstvars" : [ ], | ||
"pools" : [ ], | ||
"classvars" : [ ], | ||
"instvars" : [ ], | ||
"name" : "MaterialColorGemstonePlatform", | ||
"type" : "normal" | ||
} |
1 change: 1 addition & 0 deletions
1
src/Material-Design-Colors-Platform-Gemstone.package/monticello.meta/categories.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
SystemOrganization addCategory: #'Material-Design-Colors-Platform-Gemstone'! |
Empty file.
1 change: 1 addition & 0 deletions
1
src/Material-Design-Colors-Platform-Gemstone.package/monticello.meta/package
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
(name 'Material-Design-Colors-Platform-Gemstone') |
1 change: 1 addition & 0 deletions
1
src/Material-Design-Colors-Platform-Gemstone.package/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{ } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"separateMethodMetaAndSource" : false, | ||
"noMethodMetaData" : true, | ||
"useCypressPropertiesFile" : true | ||
} |
4 changes: 4 additions & 0 deletions
4
...Design-Colors-Platform-Pharo.package/MaterialColorPharoPlatform.class/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Description | ||
-------------------- | ||
|
||
Platform managing the Pharo specific code of MaterialDesignColors. |
3 changes: 3 additions & 0 deletions
3
...Design-Colors-Platform-Pharo.package/MaterialColorPharoPlatform.class/class/initialize.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
initialize-release | ||
initialize | ||
self register |
5 changes: 5 additions & 0 deletions
5
...-Platform-Pharo.package/MaterialColorPharoPlatform.class/instance/allSelectorsOf.from..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
accessing | ||
allSelectorsOf: aClass from: aSymbol | ||
"Return the lists of selectors understood by <aClass> and categorized in a protocol named <aSymbol>" | ||
|
||
^ aClass allMethods select: [ :each | each protocol = aSymbol ] thenCollect: #selector |
3 changes: 3 additions & 0 deletions
3
...Design-Colors-Platform-Pharo.package/MaterialColorPharoPlatform.class/instance/isPharo.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
testing | ||
isPharo | ||
^ true |
11 changes: 11 additions & 0 deletions
11
...ial-Design-Colors-Platform-Pharo.package/MaterialColorPharoPlatform.class/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"commentStamp" : "CyrilFerlicot 7/4/2018 18:05", | ||
"super" : "MaterialColorPlatform", | ||
"category" : "Material-Design-Colors-Platform-Pharo", | ||
"classinstvars" : [ ], | ||
"pools" : [ ], | ||
"classvars" : [ ], | ||
"instvars" : [ ], | ||
"name" : "MaterialColorPharoPlatform", | ||
"type" : "normal" | ||
} |
1 change: 1 addition & 0 deletions
1
src/Material-Design-Colors-Platform-Pharo.package/monticello.meta/categories.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
SystemOrganization addCategory: #'Material-Design-Colors-Platform-Pharo'! |
Empty file.
1 change: 1 addition & 0 deletions
1
src/Material-Design-Colors-Platform-Pharo.package/monticello.meta/package
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
(name 'Material-Design-Colors-Platform-Pharo') |
1 change: 1 addition & 0 deletions
1
src/Material-Design-Colors-Platform-Pharo.package/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{ } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/Material-Design-Colors.package/MDLColor.class/class/allDefaultsColors.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
accessing | ||
allDefaultsColors | ||
^ (self class methodsInProtocol: #defaults) collect: [ :m | MDLColor perform: m selector ] | ||
^ (MaterialColorPlatform current allSelectorsOf: self class from: #'defaults - colors') collect: [ :selector | MDLColor perform: selector ] |
2 changes: 1 addition & 1 deletion
2
src/Material-Design-Colors.package/MDLColor.class/class/amber.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
defaults | ||
defaults - colors | ||
amber | ||
^ self tint: #amber |
2 changes: 1 addition & 1 deletion
2
src/Material-Design-Colors.package/MDLColor.class/class/blue.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
defaults | ||
defaults - colors | ||
blue | ||
^ self tint: #blue |
2 changes: 1 addition & 1 deletion
2
src/Material-Design-Colors.package/MDLColor.class/class/blueGrey.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
defaults | ||
defaults - colors | ||
blueGrey | ||
^ self tint: #blue_grey |
2 changes: 1 addition & 1 deletion
2
src/Material-Design-Colors.package/MDLColor.class/class/brown.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
defaults | ||
defaults - colors | ||
brown | ||
^ self tint: #brown |
2 changes: 1 addition & 1 deletion
2
src/Material-Design-Colors.package/MDLColor.class/class/cyan.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
defaults | ||
defaults - colors | ||
cyan | ||
^ self tint: #cyan |
2 changes: 1 addition & 1 deletion
2
src/Material-Design-Colors.package/MDLColor.class/class/deepOrange.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
defaults | ||
defaults - colors | ||
deepOrange | ||
^ self tint: #deep_orange |
2 changes: 1 addition & 1 deletion
2
src/Material-Design-Colors.package/MDLColor.class/class/deepPurple.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
defaults | ||
defaults - colors | ||
deepPurple | ||
^ self tint: #deep_purple |
2 changes: 1 addition & 1 deletion
2
src/Material-Design-Colors.package/MDLColor.class/class/green.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
defaults | ||
defaults - colors | ||
green | ||
^ self tint: #green |
2 changes: 1 addition & 1 deletion
2
src/Material-Design-Colors.package/MDLColor.class/class/grey.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
defaults | ||
defaults - colors | ||
grey | ||
^ self tint: #grey |
2 changes: 1 addition & 1 deletion
2
src/Material-Design-Colors.package/MDLColor.class/class/indigo.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
defaults | ||
defaults - colors | ||
indigo | ||
^ self tint: #indigo |
2 changes: 1 addition & 1 deletion
2
src/Material-Design-Colors.package/MDLColor.class/class/lightBlue.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
defaults | ||
defaults - colors | ||
lightBlue | ||
^ self tint: #light_blue |
2 changes: 1 addition & 1 deletion
2
src/Material-Design-Colors.package/MDLColor.class/class/lightGreen.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
defaults | ||
defaults - colors | ||
lightGreen | ||
^ self tint: #light_green |
2 changes: 1 addition & 1 deletion
2
src/Material-Design-Colors.package/MDLColor.class/class/lime.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
defaults | ||
defaults - colors | ||
lime | ||
^ self tint: #lime |
2 changes: 1 addition & 1 deletion
2
src/Material-Design-Colors.package/MDLColor.class/class/orange.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
defaults | ||
defaults - colors | ||
orange | ||
^ self tint: #orange |
2 changes: 1 addition & 1 deletion
2
src/Material-Design-Colors.package/MDLColor.class/class/pink.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
defaults | ||
defaults - colors | ||
pink | ||
^ self tint: #pink |
2 changes: 1 addition & 1 deletion
2
src/Material-Design-Colors.package/MDLColor.class/class/purple.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
defaults | ||
defaults - colors | ||
purple | ||
^ self tint: #purple |
Oops, something went wrong.