-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* workflow - dev| bump version * fix: Article page HTML rendering (#184) * Article detail - UI | Introduce a CSS file to set up the layout * Article page | disable webview for content as it's way too buggy * cleaup - article view | remove redandent stuff * Style - article | add brighter colours for links * Workflow - android dev | unset change review * Correct README.md * Fix: Text-to-speech not working (#186) * Android - TTS | manage permissions * Article - TTS | mentioning Binding context to the TTS button
- Loading branch information
1 parent
44494ac
commit 37d1d63
Showing
7 changed files
with
75 additions
and
15 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 |
---|---|---|
|
@@ -110,7 +110,6 @@ jobs: | |
packageName: ${{ inputs.package-name }} | ||
releaseFiles: ${{ github.workspace }}/${{ inputs.project-folder }}/bin/${{ inputs.build-config }}/${{ inputs.dotnet-version-target }}-android/${{ inputs.package-name }}-Signed.aab | ||
track: internal | ||
changesNotSentForReview: true | ||
- uses: r0adkll/[email protected] | ||
name: Upload Android Artifact to Play Console production | ||
if: ${{contains(inputs.deploy-type, 'prod')}} | ||
|
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,21 @@ | ||
@font-face { | ||
font-family: TextFont; | ||
src: url("file:///android_asset/Ubuntu-Medium.ttf") | ||
} | ||
img, [class^="image-"] { | ||
width: 250px; | ||
height: auto; | ||
} | ||
|
||
label { | ||
font-family: TextFont; | ||
font-size: medium; | ||
text-align: justify; | ||
} | ||
|
||
a { | ||
color: #4AC776; | ||
} | ||
* { | ||
color: #ecebeb; | ||
} |
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