File tree Expand file tree Collapse file tree 6 files changed +43
-5
lines changed Expand file tree Collapse file tree 6 files changed +43
-5
lines changed Original file line number Diff line number Diff line change 13
13
14
14
bin /query_cache /
15
15
bin /image_cache /
16
- bin /update_cache /
17
- sign.sh
16
+ bin /update_cache /
Original file line number Diff line number Diff line change 1
1
class Config {
2
2
Config ._();
3
3
4
- static const String version = '1.0.9 ' ;
4
+ static const String version = '1.1.0 ' ;
5
5
static final Uri githubRepositoryUrl =
6
6
Uri .https ('github.com' , '/techouse/alfred-gitmoji' );
7
7
static const String algoliaApplicationId = 'WODHKE4WZG' ;
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version =" 1.0" >
4
+ <dict >
5
+ <key >com.apple.security.cs.allow-unsigned-executable-memory </key >
6
+ <true />
7
+ </dict >
8
+ </plist >
Original file line number Diff line number Diff line change 251
251
<key >variablesdontexport </key >
252
252
<array />
253
253
<key >version </key >
254
- <string >1.0.9 </string >
254
+ <string >1.1.0 </string >
255
255
<key >webaddress </key >
256
256
<string >https://github.com/techouse </string >
257
257
</dict >
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ description: Search for gitmojis and copy them to the clipboard easily.
4
4
# Prevent accidental publishing to pub.dev.
5
5
publish_to : ' none'
6
6
7
- version : 1.0.9
7
+ version : 1.1.0
8
8
9
9
environment :
10
10
sdk : ' >=2.17.0 <3.0.0'
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ # sign
4
+ codesign \
5
+ --sign=" D5CABC53AFC47E57F4B688BB3688CF27830BAD36" \
6
+ --identifier=" com.techouse.alfred-gitmoji" \
7
+ --deep \
8
+ --force \
9
+ --options=runtime \
10
+ --entitlement=" ./entitlements.plist" \
11
+ --timestamp \
12
+ --verbose=4 \
13
+ ./build/dist/gm
14
+
15
+ # verify
16
+ codesign -dv --verbose=4 ./build/dist/gm
17
+
18
+ # zip
19
+ zip -j ./build/dist/gm.zip ./build/dist/gm
20
+
21
+ # notarize
22
+ xcrun altool \
23
+ --notarize-app \
24
+ --primary-bundle-id=" com.techouse.alfred-gitmoji" \
25
+ --username=" klemen.tusar@live.com" \
26
+ --password=" @keychain:Developer-altool" \
27
+ --asc-provider=" 6LYC36B94Q" \
28
+ --file=" ./build/dist/gm.zip"
29
+
30
+ # delete zip
31
+ rm ./build/dist/gm.zip
You can’t perform that action at this time.
0 commit comments