Skip to content

Commit

Permalink
Publish app
Browse files Browse the repository at this point in the history
  • Loading branch information
lil5 committed Apr 12, 2024
1 parent 01b10e4 commit c33a322
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 12 deletions.
2 changes: 1 addition & 1 deletion app/.env.production
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VITE_API_BASE_URL = "https://app.clothingloop.org/api"
VITE_ONE_SIGNAL_ID = "f1cdfd23-1133-43dd-9070-c5ad00a436ed"
VITE_APP_VERSION = "v2.1"
VITE_APP_VERSION = "v2.3"
6 changes: 6 additions & 0 deletions app/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,3 +117,9 @@

- Change the bag icon to align with branding
- Add bag shortcut in address item page

# v2.3

- Add sorting, search for Route & Bags
- Button to leave Loop
- Default to automatic sort of address list
4 changes: 2 additions & 2 deletions app/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "org.clothingloop.app"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 23
versionName "2.2"
versionCode 24
versionName "2.3"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
Expand Down
8 changes: 4 additions & 4 deletions app/ios/App/App.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@
CODE_SIGN_ENTITLEMENTS = App/App.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 18;
CURRENT_PROJECT_VERSION = 20;
DEVELOPMENT_TEAM = 75XP25J59A;
ENABLE_USER_SCRIPT_SANDBOXING = NO;
INFOPLIST_FILE = App/Info.plist;
Expand All @@ -388,7 +388,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 2.2;
MARKETING_VERSION = 2.3;
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
PRODUCT_BUNDLE_IDENTIFIER = org.clothingloop.app;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -410,7 +410,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_ENTITLEMENTS = App/App.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 18;
CURRENT_PROJECT_VERSION = 20;
DEVELOPMENT_TEAM = 75XP25J59A;
ENABLE_USER_SCRIPT_SANDBOXING = NO;
INFOPLIST_FILE = App/Info.plist;
Expand All @@ -420,7 +420,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 2.2;
MARKETING_VERSION = 2.3;
PRODUCT_BUNDLE_IDENTIFIER = org.clothingloop.app;
PRODUCT_NAME = "$(TARGET_NAME)";
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
Expand Down
2 changes: 1 addition & 1 deletion app/src/Routes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ function AppRoute() {
<IonLabel>{t("route")}</IonLabel>
</IonTabButton>
<IonTabButton tab="bags" href="/bags" disabled={!chain}>
<div className="tw-w-[30px] tw-h-[30px] tw-mt-1 tw-mb-0">
<div className="tw-w-[30px] tw-h-[30px] tw-mt-1 tw-mb-0.5">
<BagSVG bag={{ number: "", color: "currentColor" }} isList />
</div>
{hasBagTooOldMe ? (
Expand Down
4 changes: 2 additions & 2 deletions app/src/pages/AddressList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {
import { useContext, useMemo, useRef, useState } from "react";
import { useTranslation } from "react-i18next";
import { StoreContext } from "../stores/Store";
import { ellipsisHorizontalCircleOutline, openOutline } from "ionicons/icons";
import { openOutline, searchOutline } from "ionicons/icons";
import IsPrivate from "../utils/is_private";
import OverlayPaused from "../components/OverlayPaused";
import OverlayAppDisabled from "../components/OverlayChainAppDisabled";
Expand Down Expand Up @@ -129,7 +129,7 @@ export default function AddressList() {
<IonToolbar>
<IonButtons>
<IonButton id="sheet-address-options">
<IonIcon icon={ellipsisHorizontalCircleOutline} />
<IonIcon icon={searchOutline} />
{slowSearch ? (
<div className="tw-rounded-full tw-w-2 tw-h-2 tw-absolute tw-bottom-1 tw-right-0 tw-bg-danger"></div>
) : null}
Expand Down
4 changes: 2 additions & 2 deletions app/src/pages/BagsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import {
closeOutline,
construct,
ellipsisHorizontal,
ellipsisHorizontalCircleOutline,
searchOutline,
} from "ionicons/icons";
import type { IonModalCustomEvent } from "@ionic/core/components";
import {
Expand Down Expand Up @@ -274,7 +274,7 @@ export default function BagsList() {
<IonToolbar>
<IonButtons>
<IonButton id="sheet-bags-options">
<IonIcon icon={ellipsisHorizontalCircleOutline} />
<IonIcon icon={searchOutline} />
{slowSearch ? (
<div className="tw-rounded-full tw-w-2 tw-h-2 tw-absolute tw-bottom-1 tw-right-0 tw-bg-danger"></div>
) : null}
Expand Down

0 comments on commit c33a322

Please sign in to comment.