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 Apr 9, 2023
2 parents c69d441 + 1aab71a commit 2123a54
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
build-and-publish-apple:
macos:
# https://circleci.com/docs/2.0/testing-ios/#supported-xcode-versions
xcode: "13.0.0" # 11.3.1 12.4.0 13.2.1
xcode: "14.3.0" # 11.3.1 12.4.0 13.2.1 13.0.0
#resource_class: large
resource_class: macos.x86.medium.gen2
steps:
Expand Down
4 changes: 2 additions & 2 deletions components/GlobalWarning.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div>
<div v-if="false">
<client-only>
<NoticeMessage v-if="show && false" variant="info">
<NoticeMessage v-if="show" variant="info">
<b-btn variant="link" class="float-right" @click="hideit">
Hide this
</b-btn>
Expand Down
5 changes: 4 additions & 1 deletion components/MainHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
height="58"
width="58"
rounded
:src="require(`@/static/icon.png`)"
:src="logo"
alt="Home"
/>
</b-navbar-brand>
Expand Down Expand Up @@ -312,6 +312,9 @@ export default {
if (ret.ret === 0 && ret.logo) {
this.logo = ret.logo.path.replace(/.*logos/, '/logos')
if (this.isApp) {
this.logo = ret.logo.path.replace('/images', '')
}
}
}
}, 5000)
Expand Down
2 changes: 1 addition & 1 deletion mobile/freegle/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.iphone" ios-CFBundleVersion="335" version="2.0.119" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<widget id="org.ilovefreegle.iphone" ios-CFBundleVersion="336" version="2.0.119" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Freegle</name>
<description>Offer and request free items on your local Freegle reuse group</description>
<author email="[email protected]" href="https://ilovefreegle.org">
Expand Down

0 comments on commit 2123a54

Please sign in to comment.