Skip to content

Commit

Permalink
release builds again
Browse files Browse the repository at this point in the history
  • Loading branch information
Release-Candidate committed Apr 13, 2021
1 parent f7bf967 commit f0673ce
Show file tree
Hide file tree
Showing 24 changed files with 40 additions and 29 deletions.
5 changes: 5 additions & 0 deletions src/Tzolkin.Android/Tzolkin.Android.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,11 @@
<AndroidSigningStorePass>SUEVVWi2lDz0QvS4WVRI</AndroidSigningStorePass>
<AndroidSigningKeyPass>U4HmqYD77xW3MWweVOea</AndroidSigningKeyPass>
<AndroidLinkTool>r8</AndroidLinkTool>
<JavaMaximumHeapSize>
</JavaMaximumHeapSize>
<AndroidEnableMultiDex>false</AndroidEnableMultiDex>
<AndroidDexTool>d8</AndroidDexTool>
<AndroidEnableSGenConcurrent>true</AndroidEnableSGenConcurrent>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release APK|AnyCPU' ">
<DebugSymbols>false</DebugSymbols>
Expand Down
4 changes: 2 additions & 2 deletions src/Tzolkin/Definitions.fs
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,9 @@ module Definitions =
|> sprintf "glyph_%02d"
|> getPNGFromSVG

let cacheGlyphs = [| for i in [1 .. 20] do getPNGStreamGlyph <| TzolkinGlyph.T.TzolkinGlyph i |]
let cacheGlyphs = [ for i in [1 .. 20] do getPNGStreamGlyph <| TzolkinGlyph.T.TzolkinGlyph i ]

let cacheNumbers = [| for i in [1 .. 13] do getPNGStreamNumber <| TzolkinNumber.T.TzolkinNumber i |]
let cacheNumbers = [ for i in [1 .. 13] do getPNGStreamNumber <| TzolkinNumber.T.TzolkinNumber i ]

// Init ========================================================================================

Expand Down
6 changes: 4 additions & 2 deletions src/Tzolkin/Style.fs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ module Style =

let backgroundBrown = Color.FromHex "#F2D8B8"

let backgroundBrownLight = Color.FromHex "#F6DCBC"

let backgroundNone = Color.Default

let backgroundLight = Color.Default
Expand Down Expand Up @@ -61,9 +63,9 @@ module Style =

// Pages ===================================================================

let tabBackgroundColor = backgroundBrownDark //Color.CadetBlue
let tabBackgroundColor = backgroundBrownDark

let tabForegroundColor = Color.Blue
let tabForegroundColor = Color.Black //Color.FromHex "#8B2A02"

// Glyph Descriptions ======================================================

Expand Down
14 changes: 9 additions & 5 deletions src/Tzolkin/TzolkinView.fs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ module TzolkinView =
[ Dimension.Absolute tzolkinImageHeight
Dimension.Absolute 25. ],
coldefs =
[ Dimension.Absolute 55.
[ Dimension.Absolute 51.
Dimension.Absolute 95. ],
children =
[ View
Expand Down Expand Up @@ -136,13 +136,17 @@ module TzolkinView =
/// Select the Gregorian date and display the Tzolk’in date.
let dateSelector model dispatch date =
[ View.Frame (
backgroundColor = backgroundBrown,
padding = Thickness 0.,
backgroundColor = backgroundBrownLight,
borderColor = backgroundBrownDark,
hasShadow = true,
padding = Thickness (0., 5.),
content = tzolkinDateView dispatch (TzolkinDate.fromDate date) model.IsDarkMode
)

View.Frame (
backgroundColor = backgroundBrown,
backgroundColor = backgroundBrownLight,
borderColor = backgroundBrownDark,
hasShadow = true,
content =
View.DatePicker (
minimumDate = DateTime.MinValue,
Expand All @@ -155,7 +159,7 @@ module TzolkinView =
textColor = Style.foregroundLight,
backgroundColor = Style.backgroundNone,
fontSize = Style.normalFontSize,
horizontalOptions = LayoutOptions.CenterAndExpand
horizontalOptions = LayoutOptions.EndAndExpand
)
) ]

Expand Down
2 changes: 1 addition & 1 deletion src/Tzolkin/images/number_01.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/Tzolkin/images/number_02.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/Tzolkin/images/number_03.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/Tzolkin/images/number_04.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/Tzolkin/images/number_05.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/Tzolkin/images/number_06.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/Tzolkin/images/number_07.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/Tzolkin/images/number_08.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f0673ce

Please sign in to comment.