Skip to content

Commit

Permalink
Merge branch 'app' into app-publish
Browse files Browse the repository at this point in the history
  • Loading branch information
chriscant committed Oct 18, 2023
2 parents 7384617 + 3232002 commit bfbf2ff
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
5 changes: 4 additions & 1 deletion components/ModMemberSearchbox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,16 @@ export default {
return this.value
},
set(val) {
this.$emit('input', val)
if (val) {
this.$emit('input', val)
}
}
}
},
methods: {
search() {
// Tick to allow value to appear.
console.log('Search', this.term)
this.$nextTick(() => {
const url =
(this.spam
Expand Down
2 changes: 1 addition & 1 deletion mobile/modtools/android/config.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<widget android-versionCode="410" id="org.ilovefreegle.modtools" version="0.3.99" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<widget android-versionCode="411" id="org.ilovefreegle.modtools" version="0.3.100" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>ModTools</name>
<description>Tool to help moderators of Freegle groups</description>
<author email="[email protected]" href="https://ilovefreegle.org">Chris Cant, Freegle Ltd</author>
Expand Down
2 changes: 1 addition & 1 deletion mobile/modtools/android/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"phonegap-plugin-multidex": "^1.0.0"
},
"devDependencies": {
"@havesource/cordova-plugin-push": "git+https://github.com/havesource/cordova-plugin-push.git",
"@havesource/cordova-plugin-push": "git+https://github.com/havesource/cordova-plugin-push.git#c3fb5b894afe17a05e21be135961f5831bafb1e0",
"cordova-android": "^11.0.0",
"cordova-clipboard": "1.3.0",
"cordova-plugin-zoom-control-2": "^0.4.2"
Expand Down
2 changes: 1 addition & 1 deletion mobile/modtools/ios/config.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<widget id="org.ilovefreegle.modtools" ios-CFBundleVersion="404" version="0.3.99" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<widget id="org.ilovefreegle.modtools" ios-CFBundleVersion="405" version="0.3.100" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>ModTools</name>
<description>Tool to help moderators of Freegle and similar groups</description>
<author email="[email protected]" href="https://ilovefreegle.org">
Expand Down
2 changes: 1 addition & 1 deletion nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const SENTRY_DSN = 'https://[email protected]
const YAHOO_CLIENTID =
'dj0yJmk9N245WTRqaDd2dnA4JmQ9WVdrOWIzTlZNMU01TjJjbWNHbzlNQS0tJnM9Y29uc3VtZXJzZWNyZXQmc3Y9MCZ4PWRh'
const MOBILE_VERSION = '2.0.120'
const MODTOOLS_VERSION = '0.3.99'
const MODTOOLS_VERSION = '0.3.100'

require('dotenv').config()

Expand Down
3 changes: 3 additions & 0 deletions pages/modtools/giftaid.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@
</ExternalLink>)
user ID&nbsp;<v-icon name="hashtag" class="text-muted mt-1" />{{ result.userid }}
-&nbsp;
<span v-if="result.period === 'Declined'">
Gift Aid declined
</span>
<span v-if="result.period === 'Since'">
Gift Aid consent for all since {{ dateonly(result.timestamp) }}
</span>
Expand Down

0 comments on commit bfbf2ff

Please sign in to comment.