Skip to content

Commit

Permalink
chore: bump to 0.8.12
Browse files Browse the repository at this point in the history
  • Loading branch information
tiensonqin committed Nov 23, 2022
1 parent 26e5314 commit 3bb17b4
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 8 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ android {
applicationId "com.logseq.app"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 45
versionName "0.8.11"
versionCode 46
versionName "0.8.12"
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 ios/App/App.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@
INFOPLIST_FILE = App/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 0.8.11;
MARKETING_VERSION = 0.8.12;
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
PRODUCT_BUNDLE_IDENTIFIER = com.logseq.logseq;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -542,7 +542,7 @@
INFOPLIST_FILE = App/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 0.8.11;
MARKETING_VERSION = 0.8.12;
PRODUCT_BUNDLE_IDENTIFIER = com.logseq.logseq;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "";
Expand All @@ -567,7 +567,7 @@
INFOPLIST_KEY_NSHumanReadableCopyright = "";
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
MARKETING_VERSION = 0.8.11;
MARKETING_VERSION = 0.8.12;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
PRODUCT_BUNDLE_IDENTIFIER = com.logseq.logseq.ShareViewController;
Expand All @@ -594,7 +594,7 @@
INFOPLIST_KEY_NSHumanReadableCopyright = "";
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
MARKETING_VERSION = 0.8.11;
MARKETING_VERSION = 0.8.12;
MTL_FAST_MATH = YES;
PRODUCT_BUNDLE_IDENTIFIER = com.logseq.logseq.ShareViewController;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
2 changes: 1 addition & 1 deletion resources/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Logseq",
"productName": "Logseq",
"version": "0.8.11",
"version": "0.8.12",
"main": "electron.js",
"author": "Logseq",
"license": "AGPL-3.0",
Expand Down
29 changes: 29 additions & 0 deletions scripts/build-ios.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#!/bin/bash

set -ex

unset LOGSEQ_APP_SERVER_URL
export ENABLE_FILE_SYNC_PRODUCTION=true

# yarn clean
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 yarn install --force

rm -rv public/static || true
rm -rv ios/App/App/public || true

yarn release-app

rsync -avz --exclude node_modules --exclude '*.js.map' --exclude android ./static/ ./public/static/

npx cap sync ios

npx cap open ios

echo "step 1(Xcode). Product > Archive (device should be Any iOS Device)"

echo "step 2(Archive). Distribute App"

echo " - App Store Connect"
echo " - Upload"
echo " - (Default config, all checked)"
echo " - Upload"
2 changes: 1 addition & 1 deletion src/main/frontend/version.cljs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
(ns ^:no-doc frontend.version)

(defonce version "0.8.11")
(defonce version "0.8.12")

0 comments on commit 3bb17b4

Please sign in to comment.