Skip to content

Commit

Permalink
fix(app): roll back changes from last update
Browse files Browse the repository at this point in the history
  • Loading branch information
micahlt committed Jul 14, 2024
1 parent b721ffc commit b2f3520
Show file tree
Hide file tree
Showing 7 changed files with 165 additions and 175 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ android {
applicationId "com.micahlindley.wasteofmobile"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 35
versionName "2.6.7"
versionCode 37
versionName "2.6.8"
}

signingConfigs {
Expand Down
Binary file modified android/app/release/app-release.aab
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class MainApplication : Application(), ReactApplication {
SoLoader.init(this, false)
if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) {
// If you opted-in for the New Architecture, we load the native entry point for this app.
load()
load(bridgelessEnabled=false)
}
}
}
2 changes: 1 addition & 1 deletion android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64
# your application. You should enable this flag either if you want
# to write custom TurboModules/Fabric components OR use libraries that
# are providing them.
newArchEnabled=true
newArchEnabled=false

# Use this property to enable or disable the Hermes JS engine.
# If set to false, you will be using JSC instead.
Expand Down
311 changes: 152 additions & 159 deletions package-lock.json

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wasteofmobile",
"version": "2.6.7",
"version": "2.6.8",
"private": true,
"scripts": {
"android": "react-native run-android --active-arch-only",
Expand All @@ -13,15 +13,15 @@
"@accordproject/markdown-it-underline": "^0.14.2-20211025125152",
"@notifee/react-native": "^7.8.2",
"@pchmn/expo-material3-theme": "^1.3.2",
"@react-native-async-storage/async-storage": "^1.23.1",
"@react-native-async-storage/async-storage": "^1.24.0",
"@react-native/codegen": "^0.74.85",
"@react-navigation/core": "^6.4.16",
"@react-navigation/material-bottom-tabs": "^6.2.28",
"@react-navigation/native": "^6.1.17",
"@react-navigation/native-stack": "^6.10.0",
"@yz1311/react-native-intent-launcher": "^0.3.5",
"bad-words": "^3.0.4",
"expo": "^51.0.18",
"expo": "^51.0.20",
"linkify-html": "^4.1.3",
"linkify-plugin-mention": "^4.1.3",
"linkifyjs": "^4.1.3",
Expand All @@ -40,17 +40,17 @@
"react-native-safe-area-context": "4.10.8",
"react-native-screens": "^3.32.0",
"react-native-share": "^10.2.1",
"react-native-svg": "^15.3.0",
"react-native-svg": "^15.4.0",
"react-native-vector-icons": "^10.1.0",
"react-native-view-shot": "^3.8.0",
"rgb-hex": "^4.1.0",
"s-ago": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/core": "^7.24.8",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/preset-env": "^7.24.7",
"@babel/runtime": "^7.24.7",
"@babel/preset-env": "^7.24.8",
"@babel/runtime": "^7.24.8",
"@react-native/babel-preset": "0.74.85",
"@react-native/eslint-config": "0.74.85",
"@react-native/metro-config": "^0.74.85",
Expand Down
7 changes: 2 additions & 5 deletions src/components/Changelog.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,10 @@ const Changelog = ({ closeExternal, dismissable }) => {
</Dialog.Title>
<Dialog.ScrollArea style={{ padding: 10 }}>
<Paragraph style={{ marginBottom: 5 }}>
This release includes features and bug fixes. Here's what's new:
This release includes bug fixes. Here's what's new:
</Paragraph>
<Paragraph style={{ marginLeft: 10 }}>
&bull; Hide big repost chains for performance reasons
</Paragraph>
<Paragraph style={{ marginLeft: 10 }}>
&bull; Bring search UI in line with Material 3 guidelines
&bull; Roll back issues caused by the previous update
</Paragraph>
</Dialog.ScrollArea>
<Dialog.Actions>
Expand Down

0 comments on commit b2f3520

Please sign in to comment.