Skip to content

Commit

Permalink
Merge pull request #185 from IraSoro/pre-release-2.3.5
Browse files Browse the repository at this point in the history
Pre-release v2.3.5
  • Loading branch information
IraSoro authored Nov 20, 2023
2 parents 0a7c082 + 42a0780 commit c95f51a
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 8 deletions.
4 changes: 2 additions & 2 deletions capacitor.config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"appId": "period.tracker.test",
"appName": "Test peri",
"appId": "peri.test",
"appName": "Test Peri",
"webDir": "build",
"bundledWebRuntime": false
}
Binary file modified demonstration/details.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified demonstration/home.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified demonstration/info.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified demonstration/menu.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified demonstration/welcome.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "peri",
"version": "2.3.4",
"version": "2.3.5",
"author": {
"name": "Irina Sorokina",
"url": "https://github.com/IraSoro"
Expand Down
8 changes: 8 additions & 0 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,17 @@ ion-datetime.view-calendar-today-ovulation::part(calendar-day active),
ion-datetime.view-calendar-today-ovulation::part(calendar-day active):focus {
background-color: var(--ion-color-light);
color: var(--ion-color-dark);
border-color: var(--ion-color-light);
}

ion-datetime.view-calendar-today-ovulation::part(calendar-day today) {
color: var(--ion-color-ovulation);
border-color: var(--ion-color-ovulation);
}

ion-datetime.view-calendar::part(calendar-day):focus,
ion-datetime.edit-calendar::part(calendar-day):focus,
ion-datetime.view-calendar-today-ovulation::part(calendar-day):focus {
background-color: #fff;
box-shadow: 0px 0px 0px 0px #fff;
}
2 changes: 1 addition & 1 deletion src/data/AppVersion.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { isPlatform } from "@ionic/core";

export const appVersion = "v2.3.4";
export const appVersion = "v2.3.5";

export interface GithubReleaseAsset {
content_type: string;
Expand Down
2 changes: 0 additions & 2 deletions src/pages/TabHome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ const ViewCalendar = (props: SelectCalendarProps) => {
? "view-calendar-today-ovulation"
: "view-calendar"
}
color="light"
presentation="date"
locale={getCurrentTranslation()}
size="cover"
Expand Down Expand Up @@ -157,7 +156,6 @@ const EditCalendar = (props: SelectCalendarProps) => {
return (
<IonDatetime
className="edit-calendar"
color="light"
ref={datetimeRef}
presentation="date"
locale={getCurrentTranslation()}
Expand Down

0 comments on commit c95f51a

Please sign in to comment.