-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Use cv model 2.13, requires newer plugin * Bump version and build * Use cv model 2.13, requires newer plugin * Bump version and build * Use vision-plugin with speedup by taxonomy cutoff * Bump build * Bundle update * Redo bundle with deleted Gemfile.lock * Update plugin. Add option to set cutoff from JS * Cycle through different taxonomy cutoffs * Bump build * Update vision plugin * Change cycle back to one cutoff value only * Bump build * Show correct about text, and not missing translation Closes #713 * Use history for going back in navigation Closes #715 Closes #675 * Bump build * Update vision-plugin * Add a bit of padding to bottom of challenges screen * Bump build * Update with stable cv plugin * Log timeElapsed for cv on native side * Bump build * Comment * Update README.md * Use stable vc plugin main Technically this means we now support geomodel on iOS. We would need to add it to the app an connect to the frame processor though. * Bump build * Update vision-plugin * Bump build * Remove taxonomy cutoff override Now it uses the plugin's inbuilt taxonomy cutoff of 0.001 the top cv score. * Remove timesRun state * Bump build * Card that announces the new cv model on the home screen (#717) * Fix vision plugin to version commit on main there * Update Podfile.lock * Basic version of the updates card * Count how many species are in cv 2.13 * Looks nicer * Bump build * Revert back to storing only five results at a time * Bump build * Update vision-plugin to use new names for options No change in Seek required * Hardcode to never show a specific taxon * Bump build * Update package.json * Remove deprecated model files; Use model on iOS directly from bundle * Bump build * Update fastlane
- Loading branch information
Showing
18 changed files
with
159 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import React from "react"; | ||
import { View, Image } from "react-native"; | ||
|
||
import i18n from "../../../i18n"; | ||
import icons from "../../../assets/icons"; | ||
import { baseTextStyles } from "../../../styles/textStyles"; | ||
import { viewStyles, imageStyles, textStyles } from "../../../styles/home/updates"; | ||
import GreenText from "../../UIComponents/GreenText"; | ||
import StyledText from "../../UIComponents/StyledText"; | ||
|
||
const Updates = ( ) => ( | ||
<View style={viewStyles.container}> | ||
<View style={viewStyles.header}> | ||
<GreenText text="updates_card.header" /> | ||
</View> | ||
<View style={[viewStyles.row, viewStyles.center]}> | ||
<Image source={icons.cameraGreen} style={imageStyles.image} /> | ||
<View> | ||
<StyledText style={[baseTextStyles.emptyState, textStyles.textWidth]}> | ||
{i18n.t( "updates_card.updated_id_model" )} | ||
</StyledText> | ||
<StyledText style={[baseTextStyles.body, textStyles.text, textStyles.textWidth]}> | ||
{i18n.t( "updates_card.over_x_species" )} | ||
</StyledText> | ||
</View> | ||
</View> | ||
</View> | ||
); | ||
|
||
export default Updates; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import { StyleSheet } from "react-native"; | ||
import { center, colors, row } from "../global"; | ||
|
||
const viewStyles = StyleSheet.create( { | ||
center, | ||
container: { | ||
backgroundColor: colors.white | ||
}, | ||
header: { | ||
paddingBottom: 21, | ||
paddingHorizontal: 22, | ||
paddingTop: 25 | ||
}, | ||
row | ||
} ); | ||
|
||
const imageStyles = StyleSheet.create( { | ||
image: { | ||
height: 68, | ||
marginRight: 28, | ||
resizeMode: "contain", | ||
width: 68 | ||
} | ||
} ); | ||
|
||
const textStyles = StyleSheet.create( { | ||
text: { | ||
marginTop: 11 | ||
}, | ||
textWidth: { | ||
width: 215 | ||
} | ||
} ); | ||
|
||
export { | ||
viewStyles, | ||
imageStyles, | ||
textStyles | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.