From 547a50955c34cef23b768382de37263dcffc6c98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20de=20Souza?= Date: Thu, 18 Apr 2024 13:59:28 +0200 Subject: [PATCH] Update website theme --- CHANGELOG.md | 292 +++++++++++++++++++++++----------------------- PRIVACY_POLICY.md | 2 - _config.yml | 15 +++ 3 files changed, 162 insertions(+), 147 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f347c69..b99277f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,24 +1,26 @@ -## Changelog +## 1.8.2 – Unreleased -### 1.8.2 (Unreleased) - -#### Improvement +### Improvement - Follow REUSE specification, version 3.0 -### [1.8.1](https://github.com/ldeso/blitz/releases/tag/v1.8.1) (2024-04-11) +### Note + +- Update website theme + +## [1.8.1](https://github.com/ldeso/blitz/releases/tag/v1.8.1) – 2024-04-11 This release enables APK Signature Schemes v3 and v4, updates dependencies and adds local tests. -#### Improvements +### Improvements - Enable APK Signature Schemes v3 and v4 - Update dependencies -#### Notes +### Notes - Use Kotlin Duration and TimeSource - Add local tests @@ -32,16 +34,16 @@ This release enables APK Signature Schemes v3 and v4, updates dependencies and a - Add missing `alt` attribute in README.md - Remove trailing newline in all metadata files -### [1.8.0](https://github.com/ldeso/blitz/releases/tag/v1.8.0) (2024-04-02) +## [1.8.0](https://github.com/ldeso/blitz/releases/tag/v1.8.0) – 2024-04-02 This release is a large refactoring that moves the ticking logic from the UI layer to the ViewModel. It also restores the behavior where the app is closed on the first back event if the configuration is set to its default value, and switches back to a round legacy icon. -#### Improvements +### Improvements - Do not reset configuration if it is back to defaults - Use round legacy icon -#### Notes +### Notes - Use more enums to simplify code - Move ticking logic from `ClockScreen` to `ClockViewModel` @@ -56,36 +58,36 @@ This release is a large refactoring that moves the ticking logic from the UI lay - Move source files directly under the source root - Format non-source files -### [1.7.8](https://github.com/ldeso/blitz/releases/tag/v1.7.8) (2024-03-28) +## [1.7.8](https://github.com/ldeso/blitz/releases/tag/v1.7.8) – 2024-03-28 This release fixes two bugs that could be triggered by back gestures when the time was close to zero. -#### Bug Fixes +### Bug Fixes - Fix bug where clock would be stuck if time ended during back gesture - Fix bug where the first time save could be off by one minute/second -### [1.7.7](https://github.com/ldeso/blitz/releases/tag/v1.7.7) (2024-03-28) +## [1.7.7](https://github.com/ldeso/blitz/releases/tag/v1.7.7) – 2024-03-28 This release fixes a bug reintroduced in version [1.7.1](#171-2024-03-26) where the wrong animation was shown if the time ended during a back gesture. -#### Bug Fix +### Bug Fix - Fix bug where wrong animation was shown if time ended during back gesture -#### Note +### Note - Rename `nextTurn` to `play` -### [1.7.6](https://github.com/ldeso/blitz/releases/tag/v1.7.6) (2024-03-28) +## [1.7.6](https://github.com/ldeso/blitz/releases/tag/v1.7.6) – 2024-03-28 This release makes the time of each player independent from the UI state, which results in less frequent recompositions and an increased responsiveness. -#### Improvement +### Improvement - Separate time from UI state to increase responsiveness -#### Notes +### Notes - Rename source directory from java to kotlin - Rename "ChessClock" to "Clock" @@ -94,78 +96,78 @@ This release makes the time of each player independent from the UI state, which - Add favicon.ico - Update "About" section in README.md -### [1.7.5](https://github.com/ldeso/blitz/releases/tag/v1.7.5) (2024-03-27) +## [1.7.5](https://github.com/ldeso/blitz/releases/tag/v1.7.5) – 2024-03-27 This release disables back gesture animations below Android 14. -#### Improvement +### Improvement - Do not animate back gestures below Android 14 -#### Notes +### Notes - Fix typo in names of variables - Remember onOrientationChanged with rememberUpdatedState - Do not use lazy to create orientationEventListener - Move calculation of rotation out of DisposableEffect -### [1.7.4](https://github.com/ldeso/blitz/releases/tag/v1.7.4) (2024-03-26) +## [1.7.4](https://github.com/ldeso/blitz/releases/tag/v1.7.4) – 2024-03-26 This release fixes a bug introduced in version [1.7.3](#173-2024-03-26) where the time was displayed upside down. -#### Bug Fix +### Bug Fix - Fix bug where time was displayed upside down -### [1.7.3](https://github.com/ldeso/blitz/releases/tag/v1.7.3) (2024-03-26) +## [1.7.3](https://github.com/ldeso/blitz/releases/tag/v1.7.3) – 2024-03-26 This release restores a feature that was removed in version [1.7.2](#172-2024-03-26) where the orientation of the device must cross a threshold of 10 degrees to be able to change the display orientation. -#### Bug Fix +### Bug Fix - Restore threshold of 10 degrees before changing display orientation -#### Note +### Note - Add whitespace -### [1.7.2](https://github.com/ldeso/blitz/releases/tag/v1.7.2) (2024-03-26) +## [1.7.2](https://github.com/ldeso/blitz/releases/tag/v1.7.2) – 2024-03-26 This release fixes a long-standing bug where the time could be updated in the wrong direction due to rounding. -#### Bug Fix +### Bug Fix - Fix bug where time could update in the wrong direction due to rounding -#### Notes +### Notes - Simplify dependencies - Create component OrientationHandler - Add missing documentation for `dragAmount` -### [1.7.1](https://github.com/ldeso/blitz/releases/tag/v1.7.1) (2024-03-26) +## [1.7.1](https://github.com/ldeso/blitz/releases/tag/v1.7.1) – 2024-03-26 This release improves the experience for versions of Android below Android 14 by adding a default value for the starting side of back gestures, which depends on whether the layout is set from left to right or from right to left. -#### Improvement +### Improvement - Provide correct default value for swipe side of back gestures for API < 34 -#### Notes +### Notes - Add "About" section to README.md - Simplify chessClockInput - Remove redundant state -### [1.7.0](https://github.com/ldeso/blitz/releases/tag/v1.7.0) (2024-03-25) +## [1.7.0](https://github.com/ldeso/blitz/releases/tag/v1.7.0) – 2024-03-25 This release adds a feature that animates the time of the current player when the clock is paused. -#### New Feature +### New Feature - Add animation to the time of the current player when the clock is paused -#### Notes +### Notes - Add ChessClockInput.kt - Simplify BasicTime @@ -176,77 +178,77 @@ This release adds a feature that animates the time of the current player when th - Rename clock to chessClockViewModel - Improve links in CHANGELOG.md -### [1.6.5](https://github.com/ldeso/blitz/releases/tag/v1.6.5) (2024-03-24) +## [1.6.5](https://github.com/ldeso/blitz/releases/tag/v1.6.5) – 2024-03-24 This release fixes a bug introduced in version [1.6.3](#163-2024-03-24) where the time could change before the end of the predictive back gesture animation. -#### Bug Fix +### Bug Fix - Fix bug where time could change before end of predictive back gesture animation -### [1.6.4](https://github.com/ldeso/blitz/releases/tag/v1.6.4) (2024-03-24) +## [1.6.4](https://github.com/ldeso/blitz/releases/tag/v1.6.4) – 2024-03-24 This release fixes a long-stanging bug where the clock would sometimes display negative time, as well as a bug introduced in version [1.6.0](#160-2024-03-24) where the position of the time would not reset when canceling a predictive back gesture. -#### Bug Fixes +### Bug Fixes - Fix bug where a negative time would be displayed if the clock reached zero in the background - Fix bug where position would not reset when canceling back gestures -### [1.6.3](https://github.com/ldeso/blitz/releases/tag/v1.6.3) (2024-03-24) +## [1.6.3](https://github.com/ldeso/blitz/releases/tag/v1.6.3) – 2024-03-24 This release adds a delay to improve the predictive back gesture animation. -#### Improvement +### Improvement - Add delay to improve predictive back gesture animation -#### Note +### Note - Fix wrong release dates in CHANGELOG.md -### [1.6.2](https://github.com/ldeso/blitz/releases/tag/v1.6.2) (2024-03-24) +## [1.6.2](https://github.com/ldeso/blitz/releases/tag/v1.6.2) – 2024-03-24 This release fixes a bug introduced in version [1.6.0](#160-2024-03-24) where dragging to change the time would give unexpected values. -#### Bug Fix +### Bug Fix - Fix a bug where dragging to change the time would yield incorrect values -### [1.6.1](https://github.com/ldeso/blitz/releases/tag/v1.6.1) (2024-03-24) +## [1.6.1](https://github.com/ldeso/blitz/releases/tag/v1.6.1) – 2024-03-24 This release fixes two bugs introduced in version [1.6.0](#160-2024-03-24) that were triggered by predictive back gestures and the clock reaching zero. -#### Bug Fixes +### Bug Fixes - Fix bug where wrong animation was shown if time ended during back gesture - Fix bug where time would not change color when reaching zero -### [1.6.0](https://github.com/ldeso/blitz/releases/tag/v1.6.0) (2024-03-24) +## [1.6.0](https://github.com/ldeso/blitz/releases/tag/v1.6.0) – 2024-03-24 This release introduces predictive back gestures within the app and drastically reduces the number of recompositions by hoisting state the closest to where it is consumed. -#### New Feature +### New Feature - Enable predictive back gestures -#### Improvement +### Improvement - Drastically reduce recompositions -#### Note +### Note - Add parameter names -### [1.5.8](https://github.com/ldeso/blitz/releases/tag/v1.5.8) (2024-03-22) +## [1.5.8](https://github.com/ldeso/blitz/releases/tag/v1.5.8) – 2024-03-22 This release allows the app to conserve app resources using the collectAsStateWithLifecycle API to collect the uiState in a lifecycle-aware manner. -#### Improvement +### Improvement - Reduce app resources using collectAsStateWithLifecycle -#### Notes +### Notes - Simplify code for adjusting the time and configuration - Do not pass callbacks to ViewModel @@ -254,84 +256,84 @@ This release allows the app to conserve app resources using the collectAsStateWi - Call `super.onCreate` before `enableEdgeToEdge` - Use single .gitignore -### [1.5.7](https://github.com/ldeso/blitz/releases/tag/v1.5.7) (2024-03-22) +## [1.5.7](https://github.com/ldeso/blitz/releases/tag/v1.5.7) – 2024-03-22 This release implements the official recommendation to use a LifecycleObserver in Compose instead of overriding lifecycle methods in the MainActivity. -#### Improvement +### Improvement - Do not override lifecycle methods in MainActivitiy -#### Notes +### Notes - Simplify addMinutes and addSeconds methods - Remove redundant documentation -### [1.5.6](https://github.com/ldeso/blitz/releases/tag/v1.5.6) (2024-03-22) +## [1.5.6](https://github.com/ldeso/blitz/releases/tag/v1.5.6) – 2024-03-22 This release removes the permission net.leodesouza.blitz.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION because it is unnecessary as the only broadcast receiver used in the app is the ProfileInstallReceiver, whose only purpose is to install the baseline profile used to compile some parts of the app ahead of time during installation. -#### Improvements +### Improvements - Remove unnecessary permission - Update dependency -#### Note +### Note - Minor changes to README.md -### [1.5.5](https://github.com/ldeso/blitz/releases/tag/v1.5.5) (2024-03-21) +## [1.5.5](https://github.com/ldeso/blitz/releases/tag/v1.5.5) – 2024-03-21 This release updates dependencies and refactors the code to hold the state and logic in a ViewModel instead of a plain class. -#### Improvement +### Improvement - Update dependencies -#### Notes +### Notes - Hold the state and logic in a ViewModel - Clarify that all sources use the same app signing key - Capitalize title -### [1.5.4](https://github.com/ldeso/blitz/releases/tag/v1.5.4) (2024-03-14) +## [1.5.4](https://github.com/ldeso/blitz/releases/tag/v1.5.4) – 2024-03-14 This release fixes a bug introduced in version [1.5.3](#153-2024-03-14) where per-app languages preferences were not supported anymore. -#### Bug Fix +### Bug Fix - Restore per-app language support -#### Notes +### Notes - Use version catalog for JDK and Compose compiler - Align screenshots vertically - Remove whitespace -### [1.5.3](https://github.com/ldeso/blitz/releases/tag/v1.5.3) (2024-03-14) +## [1.5.3](https://github.com/ldeso/blitz/releases/tag/v1.5.3) – 2024-03-14 This release updates Compose dependencies and introduces the website https://blitz.leodesouza.net built with GitHub Pages. -#### Enhancement +### Enhancement - Update dependencies -#### Notes +### Notes - Set up https://blitz.leodesouza.net with GitHub Pages - Add Apache License 2.0 boilerplate notice - Add "Install" section to README.md - Add `alt` attribute to images in README.md -### [1.5.2](https://github.com/ldeso/blitz/releases/tag/v1.5.2) (2024-03-12) +## [1.5.2](https://github.com/ldeso/blitz/releases/tag/v1.5.2) – 2024-03-12 This release simplifies the codebase and updates metadata. -#### Enhancement +### Enhancement - Store state directly in chess clock model -#### Notes +### Notes - Add links to README.md - Explicitly convert from Long to Float @@ -340,182 +342,182 @@ This release simplifies the codebase and updates metadata. - Simplify saving current time or duration/increment - Do not use an interface with a single concrete class -### [1.5.1](https://github.com/ldeso/blitz/releases/tag/v1.5.1) (2024-03-11) +## [1.5.1](https://github.com/ldeso/blitz/releases/tag/v1.5.1) – 2024-03-11 This release fixes a bug introduced in version [1.5.0](#150-2024-03-11) where changing the language would change the default duration and time increment. -#### Bug Fix +### Bug Fix - Fix bug where changing the language would change the default duration and increment -### [1.5.0](https://github.com/ldeso/blitz/releases/tag/v1.5.0) (2024-03-11) +## [1.5.0](https://github.com/ldeso/blitz/releases/tag/v1.5.0) – 2024-03-11 This release is a big refactor of the code that tries to follow the principle of separation of concerns, and introduces a better support of the orientation on all devices. -#### New Feature +### New Feature - Properly handle orientation on all devices -#### Notes +### Notes - Separate chess clock model, view and controller - Change order of declarations - Use callbacks instead of passing Window to composable -### [1.4.9](https://github.com/ldeso/blitz/releases/tag/v1.4.9) (2024-03-06) +## [1.4.9](https://github.com/ldeso/blitz/releases/tag/v1.4.9) – 2024-03-06 This release reverts the behavior of rounding up to nearest second when above one hour that was introduced in version [1.4.7](#147-2024-03-06). -#### Enhancement +### Enhancement - Revert rounding up to nearest second above one hour -### [1.4.8](https://github.com/ldeso/blitz/releases/tag/v1.4.8) (2024-03-06) +## [1.4.8](https://github.com/ldeso/blitz/releases/tag/v1.4.8) – 2024-03-06 This release fixes a bug introduced in the last release where, above one hour, the displayed time would sometimes be off by up to one second. -#### Bug Fix +### Bug Fix - Fix wrong time displayed above one hour -### [1.4.7](https://github.com/ldeso/blitz/releases/tag/v1.4.7) (2024-03-06) +## [1.4.7](https://github.com/ldeso/blitz/releases/tag/v1.4.7) – 2024-03-06 This release improves the precision of the counter and of the time display. -#### Enhancement +### Enhancement - Round up to show the current (thenth of a) second -#### Bug Fix +### Bug Fix - Update current time on pause -### [1.4.6](https://github.com/ldeso/blitz/releases/tag/v1.4.6) (2024-03-06) +## [1.4.6](https://github.com/ldeso/blitz/releases/tag/v1.4.6) – 2024-03-06 This release is another refactor that makes triggering the next turn more consistent between tapping and dragging actions. -#### Bug Fix +### Bug Fix - Trigger next turn from the end of a drag action instead of its start -#### Notes +### Notes - Refactor chess clock policy into an interface - Pass an immutable orientation state to its consumers -### [1.4.5](https://github.com/ldeso/blitz/releases/tag/v1.4.5) (2024-03-05) +## [1.4.5](https://github.com/ldeso/blitz/releases/tag/v1.4.5) – 2024-03-05 This release vastly increases the sensitivity to touch events when counting down. -#### Enhancement +### Enhancement - Also trigger next turn from drag events -#### Note +### Note - Use application ID in build filename -### [1.4.4](https://github.com/ldeso/blitz/releases/tag/v1.4.4) (2024-03-05) +## [1.4.4](https://github.com/ldeso/blitz/releases/tag/v1.4.4) – 2024-03-05 This release increases the precision and readability of the clock. -#### Enhancement +### Enhancement - Use a bold font to increase readability -#### Bug Fix +### Bug Fix - Fix a bug that skipped the last tenth of a second -### [1.4.3](https://github.com/ldeso/blitz/releases/tag/v1.4.3) (2024-03-04) +## [1.4.3](https://github.com/ldeso/blitz/releases/tag/v1.4.3) – 2024-03-04 This release is a big refactor of the code handling dragging events, fixing two issues and improving the dragging experience. -#### Enhancement +### Enhancement - Improve single player's time settings ([#3](https://github.com/ldeso/blitz/issues/3)) -#### Bug Fixes +### Bug Fixes - Use monospace font to prevent digits from jumping ([#2](https://github.com/ldeso/blitz/issues/2)) - Fix D-Pad events being counted twice -#### Notes +### Notes - Do not repeat short description in full description - Add missing documentation -### [1.4.2](https://github.com/ldeso/blitz/releases/tag/v1.4.2) (2024-02-29) +## [1.4.2](https://github.com/ldeso/blitz/releases/tag/v1.4.2) – 2024-02-29 This release restores the orientation sensor when using reverse portrait mode while avoiding issues when the orientation is locked. -#### Enhancement +### Enhancement - Restore orientation sensor when in reverse portrait -### [1.4.1](https://github.com/ldeso/blitz/releases/tag/v1.4.1) (2024-02-29) +## [1.4.1](https://github.com/ldeso/blitz/releases/tag/v1.4.1) – 2024-02-29 This release fixes possible wrong orientations by disabling the orientation sensor when using reverse portrait mode. -#### Bug Fix +### Bug Fix - Disable orientation sensor when in reverse portrait -#### Note +### Note - Add icon and badges to README.md -### [1.4.0](https://github.com/ldeso/blitz/releases/tag/v1.4.0) (2024-02-29) +## [1.4.0](https://github.com/ldeso/blitz/releases/tag/v1.4.0) – 2024-02-29 This release adds support for landscape mode and for devices without a touchscreen. -#### New Features +### New Features - Add true landscape support - Add support for devices with only a D-pad controller -#### Enhancement +### Enhancement - Enable per-app language support -#### Note +### Note - Add documentation for isBlackRightHanded -### [1.3.2](https://github.com/ldeso/blitz/releases/tag/v1.3.2) (2024-02-29) +## [1.3.2](https://github.com/ldeso/blitz/releases/tag/v1.3.2) – 2024-02-29 This release fixes a bug where, when correcting a player’s time, the drag orientation would not flip based on the orientation of the clock. -#### Bug Fix +### Bug Fix - Fix frozen drag orientation when correcting time -### [1.3.1](https://github.com/ldeso/blitz/releases/tag/v1.3.1) (2024-02-29) +## [1.3.1](https://github.com/ldeso/blitz/releases/tag/v1.3.1) – 2024-02-29 This release fixes a bug where the time could not be restarted after reaching zero. -#### Bug Fix +### Bug Fix - Fix bug where time could not be restarted after ending -### [1.3.0](https://github.com/ldeso/blitz/releases/tag/v1.3.0) (2024-02-28) +## [1.3.0](https://github.com/ldeso/blitz/releases/tag/v1.3.0) – 2024-02-28 This release allows flipping the clock orientation for left-handed players and flips horizontal dragging for a right-to-left layout direction. -#### New Feature +### New Feature - Flip clock based on orientation for left-handed players -#### Enhancements +### Enhancements - Support right-to-left layout direction - Add support for the predictive back gesture -#### Bug Fix +### Bug Fix - Make state survive activity or process recreation -#### Notes +### Notes - Add privacy_policy.txt - Add featureGraphic.png @@ -532,19 +534,19 @@ This release allows flipping the clock orientation for left-handed players and f - Minor code formatting changes - Formatting -### [1.2.0](https://github.com/ldeso/blitz/releases/tag/v1.2.0) (2024-02-25) +## [1.2.0](https://github.com/ldeso/blitz/releases/tag/v1.2.0) – 2024-02-25 This releases keeps the screen turned on and increases time precision by tracking system time instead of recompositions. -#### New Feature +### New Feature - Keep screen on during countdown -#### Enhancement +### Enhancement - Increase precision by updating time independently from refresh rate -#### Notes +### Notes - Update dependencies - Update JVM bytecode target version @@ -557,120 +559,120 @@ This releases keeps the screen turned on and increases time precision by trackin - Make changelogs valid markdown - Fix link to last version -### [1.1.3](https://github.com/ldeso/blitz/releases/tag/v1.1.3) (2024-02-22) +## [1.1.3](https://github.com/ldeso/blitz/releases/tag/v1.1.3) – 2024-02-22 This release adds metadata and slightly simplifies the source code. -#### Enhancements +### Enhancements - Add metadata - Remove an if block to simplify code - Further simplify if block -### [1.1.2](https://github.com/ldeso/blitz/releases/tag/v1.1.2) (2024-02-22) +## [1.1.2](https://github.com/ldeso/blitz/releases/tag/v1.1.2) – 2024-02-22 This release improves compatibility and fixes a bug preventing a reset when both times are equal to their initial values. -#### Bug Fix +### Bug Fix - Allow reset when times are equal to their initial values -#### Enhancements +### Enhancements - Set minimum SDK version to 21 (Android 5.0) - Enable Gradle configuration cache -### [1.1.1](https://github.com/ldeso/blitz/releases/tag/v1.1.1) (2024-02-22) +## [1.1.1](https://github.com/ldeso/blitz/releases/tag/v1.1.1) – 2024-02-22 This release prevents adjusting the time after it reaches zero and reduces horizontal dragging sensitivity. -#### Bug Fixes +### Bug Fixes - Disallow time adjustments when a time is up - Reduce horizontal dragging sensitivity -#### Note +### Note - Slightly change code structure -### [1.1.0](https://github.com/ldeso/blitz/releases/tag/v1.1.0) (2024-02-21) +## [1.1.0](https://github.com/ldeso/blitz/releases/tag/v1.1.0) – 2024-02-21 This release adds the possibility to select the time period using vertical dragging and the time increment using horizontal dragging. -#### New Feature +### New Feature - Implement time input by dragging -### [1.0.7](https://github.com/ldeso/blitz/releases/tag/v1.0.7) (2024-02-21) +## [1.0.7](https://github.com/ldeso/blitz/releases/tag/v1.0.7) – 2024-02-21 This release updates and reduces dependencies, bringing the size of the APK down to 686 KiB. -#### Enhancements +### Enhancements - Use Compose Foundation instead of Material 3 - Update dependencies -### [1.0.6](https://github.com/ldeso/blitz/releases/tag/v1.0.6) (2024-02-21) +## [1.0.6](https://github.com/ldeso/blitz/releases/tag/v1.0.6) – 2024-02-21 This release fixes a bug where it would not be possible to reset if one of the timers did not start. -#### Bug Fix +### Bug Fix - Allow a reset when one of the timers did not start -#### Note +### Note - Use 0L (Long) instead of 0 (Int) -### [1.0.5](https://github.com/ldeso/blitz/releases/tag/v1.0.5) (2024-02-21) +## [1.0.5](https://github.com/ldeso/blitz/releases/tag/v1.0.5) – 2024-02-21 This release fixes some bugs introduced with the reset functionality. -#### Bug Fixes +### Bug Fixes - Make it possible to leave the app - Set first player to white on reset -### [1.0.4](https://github.com/ldeso/blitz/releases/tag/v1.0.4) (2024-02-21) +## [1.0.4](https://github.com/ldeso/blitz/releases/tag/v1.0.4) – 2024-02-21 This release makes it possible to reset the clock with the "back" action when the clock is paused. -#### Enhancement +### Enhancement - Make the "back" action reset a paused clock -#### Notes +### Notes - Force portrait orientation - Move most logic out of LaunchedEffect -### [1.0.3](https://github.com/ldeso/blitz/releases/tag/v1.0.3) (2024-02-20) +## [1.0.3](https://github.com/ldeso/blitz/releases/tag/v1.0.3) – 2024-02-20 This release enables resource shrinking and app optimization to bring the size of the APK below one megabyte. -#### Enhancement +### Enhancement - Enable resource shrinking and app optimization -### [1.0.2](https://github.com/ldeso/blitz/releases/tag/v1.0.2) (2024-02-20) +## [1.0.2](https://github.com/ldeso/blitz/releases/tag/v1.0.2) – 2024-02-20 This release improves the app icon. -#### Enhancements +### Enhancements - Implement adaptive icon - Remove circular icon - Reduce vector path from 1909 to 674 characters -### [1.0.1](https://github.com/ldeso/blitz/releases/tag/v1.0.1) (2024-02-20) +## [1.0.1](https://github.com/ldeso/blitz/releases/tag/v1.0.1) – 2024-02-20 This release fixes a bug where the time could still be incremented after reaching zero. -#### Bug Fixes +### Bug Fixes - Do not increment when time is up - Handle negative -### [1.0.0](https://github.com/ldeso/blitz/releases/tag/v1.0.0) (2024-02-20) +## [1.0.0](https://github.com/ldeso/blitz/releases/tag/v1.0.0) – 2024-02-20 Initial release. diff --git a/PRIVACY_POLICY.md b/PRIVACY_POLICY.md index 9e71c83..221f2de 100644 --- a/PRIVACY_POLICY.md +++ b/PRIVACY_POLICY.md @@ -1,6 +1,4 @@ -## Privacy Policy - This application does not collect or share personal data. diff --git a/_config.yml b/_config.yml index a43afa1..d40e505 100644 --- a/_config.yml +++ b/_config.yml @@ -3,7 +3,22 @@ title: "Blitz: Fischer Chess Clock" +author: Léo de Souza + +theme: minima + +github_username: ldeso + +header_pages: + - LICENSES/Apache-2.0.md + - CHANGELOG.md + - PRIVACY_POLICY.md + defaults: + - scope: + path: README.md + values: + title: "Blitz: Fischer Chess Clock" - scope: path: LICENSES/Apache-2.0.md values: