Skip to content

Commit df38ab9

Browse files
committed
Don't open terminal on mac when app starts
1 parent 13286e9 commit df38ab9

File tree

5 files changed

+5
-12
lines changed

5 files changed

+5
-12
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: CD
22

33
env:
4-
CELLS_VERSION: 1.0.0-beta1
4+
CELLS_VERSION: 1.0.0-beta2
55
CELLS_REVISION_NUMBER: 1
66

77
on:

cells/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
class ApplicationInfo:
2626
name = "Cells"
2727
author = "Ales Tsurko"
28-
version = "1.0.0-beta1"
28+
version = "1.0.0-beta2"
2929

3030

3131
class Settings(Observation, dict):

packaging/macos/package.sh

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ echo "Making app structure"
1919
mkdir -p $APPDIR
2020
mkdir -p $APPRESOURCES
2121

22-
# pyinstaller packaging/Cells.spec -y
23-
2422
echo "Copying sources"
2523
cp -R cells $APPDIR
2624

@@ -37,15 +35,14 @@ echo "Copying icons"
3735
cp packaging/macos/*.icns $APPRESOURCES/
3836

3937
echo "Copying executable scripts"
40-
cp packaging/macos/runner $APPDIR
4138
cp packaging/macos/run $APPDIR
4239

4340
echo "Writing defaults"
4441
defaults write $PWD/$APP/Contents/Info.plist CFBundleName -string Cells
4542
defaults write $PWD/$APP/Contents/Info.plist CFBundleDisplayName -string Cells
4643
defaults write $PWD/$APP/Contents/Info.plist CFBundleIdentifier -string by.alestsurko.cells
4744
defaults write $PWD/$APP/Contents/Info.plist CFBundleVersion -string "1.0.0"
48-
defaults write $PWD/$APP/Contents/Info.plist CFBundleExecutable -string runner
45+
defaults write $PWD/$APP/Contents/Info.plist CFBundleExecutable -string run
4946
defaults write $PWD/$APP/Contents/Info.plist NSPrincipalClass -string NSApplication
5047
defaults write $PWD/$APP/Contents/Info.plist CFBundleIconFile -string "AppIcon"
5148
plutil -insert CFBundleDocumentTypes -json '[{

packaging/macos/run

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
set -e
44

5+
. ~/.bash_profile
6+
57
cd $(dirname "$0")
68

79
export PYTHONPATH="$(pwd)/python/lib/python3.7/site-packages"

packaging/macos/runner

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)