Skip to content

Commit

Permalink
Merge branch 'develop' of gitlab.com:minds/mobile-native into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
msantang78 committed Oct 19, 2022
2 parents 2f92de8 + aaa50fb commit 526ae2c
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,39 @@

Minds Mobile

## 4.29.1 - 2022-10-19

### Changed

- Fix keyboard handling on supermind onboarding
- Add view reply to supermind
- Hide supermind buttons if expired
- Fix supermind deeplinks
- Fix disabled comment action
- Fix images download
- Fix In-composer camera issue with multi-image iOS
- Add notice to supermind composer
- Supermind reply confirmation modal
- Fix attach videos to posts
- Refactor: Harmonizing list views
- Dismissible top highlights
- Fix does not load more than 15 notifications
- Fix Offset list rendering
- Improve Login/register with Keyboard handling
- Add Reactrotron debug support
- Fix blank screen when tapping on the quoted post of a supermind
- Increase Tabs hitSlop + tab stripe indicator does not align on iPad
- Add terms and agreement links to bank info screen minds
- Fix embed link and media attachment on comments
- Update bottom sheet package
- Fix app crash on supermind console
- Fix able to monetize quote posts
- Clearly communicate refund policy on payment screens
- Fix fetch hook and list component issues (pagination & repeated items)
- Fix supermind onboarding scroll
- Fix media preview single image style
- Fix spinner always on on user membership tab

## 4.29.0 - 2022-09-30

### Changed
Expand Down
3 changes: 2 additions & 1 deletion src/supermind/SupermindConsoleScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import TopbarTabbar, {
} from '~/common/components/topbar-tabbar/TopbarTabbar';
import i18n from '~/common/services/i18n.service';
import { IconButton, Screen, ScreenHeader } from '~/common/ui';
import { IS_IOS } from '~/config/Config';
import ThemedStyles from '~/styles/ThemedStyles';
import {
SupermindOnboardingOverlay,
Expand Down Expand Up @@ -127,6 +128,6 @@ const mapRequests = items => SupermindRequestModel.createMany(items);

const styles = ThemedStyles.create({
onboardingOverlay: {
marginTop: 125,
marginTop: IS_IOS ? 125 : 70,
},
});

0 comments on commit 526ae2c

Please sign in to comment.