-
Notifications
You must be signed in to change notification settings - Fork 20
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 #319 from DuneSt/development
v2.3.2
- Loading branch information
Showing
29 changed files
with
702 additions
and
284 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: CI | ||
|
||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# Controls when the action will run. Triggers the workflow on push or pull request | ||
# events but only for the development branch | ||
on: | ||
push: | ||
branches: | ||
- '**' | ||
pull_request: | ||
types: [assigned, opened, synchronize, reopened] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
smalltalk: [ Pharo64-6.1, Pharo64-7.0, Pharo64-8.0, Pharo64-9.0 ] | ||
name: ${{ matrix.smalltalk }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: hpi-swa/setup-smalltalkCI@v1 | ||
with: | ||
smalltalk-version: ${{ matrix.smalltalk }} | ||
- run: smalltalkci -s ${{ matrix.smalltalk }} | ||
shell: bash | ||
timeout-minutes: 15 | ||
|
This file was deleted.
Oops, something went wrong.
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
10 changes: 10 additions & 0 deletions
10
src/Material-Design-Lite-Components/MDLPasswordFieldInput.class.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,10 @@ | ||
Class { | ||
#name : #MDLPasswordFieldInput, | ||
#superclass : #MDLTextFieldInput, | ||
#category : #'Material-Design-Lite-Components-Forms' | ||
} | ||
|
||
{ #category : #accessing } | ||
MDLPasswordFieldInput >> type [ | ||
^ 'password' | ||
] |
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,15 @@ | ||
Class { | ||
#name : #MDLBridge, | ||
#superclass : #GitBridge, | ||
#category : #'Material-Design-Lite-Dev-Tools' | ||
} | ||
|
||
{ #category : #'class initialization' } | ||
MDLBridge class >> initialize [ | ||
SessionManager default registerSystemClassNamed: self name | ||
] | ||
|
||
{ #category : #accessing } | ||
MDLBridge class >> resources [ | ||
^ self root / 'resources' | ||
] |
24 changes: 24 additions & 0 deletions
24
src/Material-Design-Lite-Dev-Tools/MDLLibrary.extension.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,24 @@ | ||
Extension { #name : #MDLLibrary } | ||
|
||
{ #category : #'*Material-Design-Lite-Dev-Tools' } | ||
MDLLibrary class >> deployFiles [ | ||
<script> | ||
super deployFiles | ||
] | ||
|
||
{ #category : #'*Material-Design-Lite-Dev-Tools' } | ||
MDLLibrary class >> filesDirectory [ | ||
^ MDLBridge resources | ||
] | ||
|
||
{ #category : #'*Material-Design-Lite-Dev-Tools' } | ||
MDLLibrary class >> importFiles [ | ||
<script> | ||
super importFiles | ||
] | ||
|
||
{ #category : #'*Material-Design-Lite-Dev-Tools' } | ||
MDLLibrary class >> openImportButton [ | ||
<script> | ||
super openImportButton | ||
] |
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 @@ | ||
Package { #name : #'Material-Design-Lite-Dev-Tools' } |
Large diffs are not rendered by default.
Oops, something went wrong.
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,10 @@ | ||
Extension { #name : #Collection } | ||
|
||
{ #category : #'*Material-Design-Lite-Widgets' } | ||
Collection >> selectMatchingFromMDLFilter: mdlFilter format: aFormatBlock with: aPattern [ | ||
^ self | ||
select: [ :each | | ||
mdlFilter | ||
formatedElement: (aFormatBlock value: each) | ||
matches: aPattern ] | ||
] |
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
Oops, something went wrong.