Skip to content

Commit

Permalink
evernote 10.12.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
search5 committed Apr 23, 2021
1 parent d34f675 commit 3d68a3d
Show file tree
Hide file tree
Showing 1,052 changed files with 11,504 additions and 68,746 deletions.
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -e

ELECTRON_VERSION=11.3.0
EVERNOTE_VERSION=10.11.5-win-ddl-ga-2530
EVERNOTE_VERSION=10.12.4-win-ddl-ga-2560
EVERNOTE_BINARY=evernote.exe
BUILD_ARCH=${1:-x64}
PACKAGE_ARCH=${2:-amd64}
Expand Down
2 changes: 2 additions & 0 deletions build_helper/clean_verdaccio.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/bash
rm -rf /home/jiho/.local/share/verdaccio/storage/*
55 changes: 55 additions & 0 deletions build_pare.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
#!/bin/bash
set -e

ELECTRON_VERSION=11.3.0
EVERNOTE_VERSION=10.12.4-win-ddl-ga-2560
EVERNOTE_BINARY=evernote.exe
BUILD_ARCH=${1:-x64}
PACKAGE_ARCH=${2:-amd64}
BUILD_DIR=build-$BUILD_ARCH
PATH="node_modules/.bin:$PATH"

check-command() {
if ! command -v "$1" >/dev/null 2>&1; then
echo Missing command: "$1"
exit 1
fi
}

commands=(node npm 7z fakeroot dpkg g++ make)

# Check for required commands
for command in "${commands[@]}"; do
check-command "$command"
done

# Install NPM dependencies
if ! [ -d node_modules ]; then
npm install
fi

# Download Evernote executable
if ! [ -f $EVERNOTE_BINARY ]; then
origin=https://cdn1.evernote.com/boron/win/builds
wget "$origin/Evernote-$EVERNOTE_VERSION-setup.exe" -O evernote.exe
fi

# Setup the build directory
mkdir -p "$BUILD_DIR"

# Extract the Evernote executable
if ! [ -f "$BUILD_DIR/evernote-exe/\$PLUGINSDIR/app-64.7z" ]; then
7z x $EVERNOTE_BINARY -o"$BUILD_DIR/evernote-exe"
fi

# Extract the app bundle
if ! [ -f "$BUILD_DIR/app-bundle/resources/app.asar" ]; then
7z x "$BUILD_DIR/evernote-exe/\$PLUGINSDIR/app-64.7z" -o"$BUILD_DIR"/app-bundle
fi

# Extract the app container
if ! [ -d "$BUILD_DIR/app-unpacked" ]; then
asar extract \
"$BUILD_DIR/app-bundle/resources/app.asar" "$BUILD_DIR/app-unpacked"
fi

6 changes: 3 additions & 3 deletions evernote_modules/clucene/binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"dist/cpp/lib/clucene/src/ext",
"dist/cpp/lib/clucene/src/ext/zlib",
"dist/lib/clucene/config/linux",
"/home/jiho/evernote_linux/evernote_modules/node-addon-api",
"/home/jiho/.virtualenvs/evernote/lib/node_modules/node-addon-api",
],
"cflags!": ["-fno-exceptions", "-L/usr/lib/x86_64-linux-gnu/", "-I/usr/include/c++/8"],
"cflags_cc!": ["-fno-exceptions", "-L/usr/lib/x86_64-linux-gnu/", "-I/usr/include/c++/8"],
Expand Down Expand Up @@ -188,8 +188,8 @@
"dist/cpp/lib/clucene/src/ext/zlib/inflate.c",
"dist/cpp/lib/clucene/src/ext/zlib/inftrees.c",
"dist/cpp/lib/clucene/src/ext/zlib/trees.c",
"dist/cpp/lib/clucene/src/ext/zlib/zutil.c"
"../node-gyp/src/win_delay_load_hook.cc"
"dist/cpp/lib/clucene/src/ext/zlib/zutil.c",
"../../../../../.virtualenvs/evernote/lib/node_modules/node-gyp/src/win_delay_load_hook.cc"
],
"link_settings": {
"libraries": [
Expand Down
3 changes: 1 addition & 2 deletions evernote_modules/clucene/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
},
"dependencies": {
"en-search-engine-shared": "^14.0.0",
"node-addon-api": "*",
"node-gyp": "*"
"node-addon-api": "*"
}
}
6 changes: 3 additions & 3 deletions evernote_modules/conduit-auth-shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "conduit-auth-shared",
"version": "1.32.4",
"version": "1.33.4",
"publishConfig": {
"registry": "http://localhost:4873"
},
Expand All @@ -19,8 +19,8 @@
"sinon-chai": "^3.3.0"
},
"dependencies": {
"conduit-utils": "1.32.4",
"conduit-view-types": "1.32.4",
"conduit-utils": "1.33.4",
"conduit-view-types": "1.33.4",
"js-base64": "^3.5.2",
"simply-immutable": "^2.1.1"
}
Expand Down
2 changes: 1 addition & 1 deletion evernote_modules/conduit-core/dist/ConduitCore.d.ts.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion evernote_modules/conduit-core/dist/ConduitCore.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion evernote_modules/conduit-core/dist/ErrorManager.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion evernote_modules/conduit-core/dist/FileUploader.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 19 additions & 4 deletions evernote_modules/conduit-core/dist/FileUploader.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 3d68a3d

Please sign in to comment.