Skip to content

Commit d9244ea

Browse files
authored
Merge pull request #1180 from mikepenz/feature/combined_sample_app
Restructure Sample app
2 parents c1d5f80 + 7a0e351 commit d9244ea

File tree

89 files changed

+3580
-696
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+3580
-696
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -135,10 +135,6 @@ jobs:
135135
if: github.event_name == 'pull_request'
136136
run: ./gradlew lintDebug
137137

138-
- name: Verify Screenshot Tests
139-
if: false && github.event_name == 'pull_request'
140-
run: ./gradlew validateScreenshotTest
141-
142138
- name: Setup Ruby
143139
if: github.event_name == 'pull_request'
144140
uses: ruby/setup-ruby@v1

.github/workflows/static.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ jobs:
4545
uses: gradle/actions/setup-gradle@v4
4646
- name: Build Page
4747
run: |
48-
./gradlew :app-wasm:exportLibraryDefinitions -PaboutLibraries.exportPath=src/commonMain/composeResources/files/
49-
./gradlew :app-wasm:wasmJsBrowserDistribution --no-configuration-cache
48+
./gradlew :app:exportLibraryDefinitionsWasmJs
49+
./gradlew :app:wasmJsBrowserDistribution --no-configuration-cache
5050
5151
- name: Upload artifact
5252
uses: actions/upload-pages-artifact@v3
5353
with:
54-
path: 'app-wasm/build/dist/wasmJs/productionExecutable'
54+
path: 'app/build/dist/wasmJs/productionExecutable'
5555

5656
- name: Deploy to GitHub Pages
5757
id: deployment

aboutlibraries-compose-m2/src/commonMain/kotlin/com/mikepenz/aboutlibraries/ui/compose/component/LibraryDefaultComponents.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ internal val DefaultLibraryLicense: @Composable FlowRowScope.(license: License,
8787
style = textStyles.licensesTextStyle ?: LocalTextStyle.current,
8888
textAlign = TextAlign.Center,
8989
overflow = textStyles.defaultOverflow,
90+
maxLines = 1,
9091
)
9192
}
9293
}
@@ -118,6 +119,7 @@ internal val DefaultLibraryFunding: @Composable FlowRowScope.(funding: Funding,
118119
style = textStyles.fundingTextStyle ?: LocalTextStyle.current,
119120
textAlign = TextAlign.Center,
120121
overflow = textStyles.defaultOverflow,
122+
maxLines = 1,
121123
)
122124
}
123125
}

app-desktop/README.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

app-desktop/build.gradle.kts

Lines changed: 0 additions & 46 deletions
This file was deleted.

app-desktop/gradle.properties

Lines changed: 0 additions & 3 deletions
This file was deleted.

app-wasm/README.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

app-wasm/build.gradle.kts

Lines changed: 0 additions & 49 deletions
This file was deleted.

app-wasm/gradle.properties

Lines changed: 0 additions & 1 deletion
This file was deleted.

app/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)