Skip to content

Commit

Permalink
Merge Release 1.19.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sharunkumar committed Nov 3, 2023
2 parents 97c9461 + 676d408 commit f1c9962
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "app.vger.voyager"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 168
versionName "1.19.2"
versionCode 169
versionName "1.19.3"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
Expand Down
4 changes: 2 additions & 2 deletions ios/App/App/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.19.2</string>
<string>1.19.3</string>
<key>CFBundleVersion</key>
<string>168</string>
<string>169</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UILaunchStoryboardName</key>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "voyager",
"description": "A progressive webapp Lemmy client",
"private": true,
"version": "1.19.2",
"version": "1.19.3",
"type": "module",
"packageManager": "pnpm@8.9.2+sha256.8d62573d93061f2722b7b48c9739e96cd4603c3ab153bc81c619dcb9861a214e",
"scripts": {
Expand Down
8 changes: 7 additions & 1 deletion src/features/shared/AppContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,19 @@ export default function AppContent({
children,
scrollY,
className,
fullscreen = false,
}: {
children: React.ReactNode;
scrollY?: boolean;
className?: string;
fullscreen?: boolean;
}) {
return (
<IonContent style={{ width: "100%" }} scrollY={scrollY ?? false}>
<IonContent
style={{ width: "100%" }}
scrollY={scrollY ?? false}
fullscreen={fullscreen}
>
<MaxWidthContainer className={className}>{children}</MaxWidthContainer>
</IonContent>
);
Expand Down
2 changes: 1 addition & 1 deletion src/pages/inbox/BoxesPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default function BoxesPage() {
<IonTitle>Boxes</IonTitle>
</IonToolbar>
</IonHeader>
<AppContent scrollY>
<AppContent scrollY fullscreen>
<IonHeader collapse="condense">
<IonToolbar>
<IonTitle size="large">Boxes</IonTitle>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/settings/SettingsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export default function SettingsPage() {
<IonTitle>Settings</IonTitle>
</IonToolbar>
</IonHeader>
<AppContent scrollY>
<AppContent scrollY fullscreen>
<IonHeader collapse="condense">
<IonToolbar>
<IonTitle size="large">Settings</IonTitle>
Expand Down

0 comments on commit f1c9962

Please sign in to comment.