Stringscan

Check-in [ef03b64190]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Tweaks for Mac build
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: ef03b6419047c73446007ae6c376c1b4a47f7c1415d611985987547bf383e9b4
User & Date: kevin 2020-05-19 19:31:18
Context
2020-07-23
01:54
Minor tweaks check-in: 8f0d68e715 user: kevin tags: trunk
2020-05-19
19:31
Tweaks for Mac build check-in: ef03b64190 user: kevin tags: trunk
15:27
Significant updates for Windows deployment check-in: 94163cac4b user: kevin tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to buildapp.

145
146
147
148
149
150
151
152
153
154
155
156
157
158


159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177


#create tarball for update from website
echo "Compressing application..."

xattr -cr build/Stringscan.app

codesign  --signature-size 9400 -f -s "Developer ID Application: Kevin Walzer" --verbose=2  build/Stringscan.app

echo "Creating and signing DMG file..."

#hdiutil create  -srcfolder build -fs HFS+ -volname Stringscan Stringscan.dmg

#codesign  --signature-size 9400 -f -s "Developer ID Application: Kevin Walzer" --verbose=2  Stringscan.dmg



echo "Uploading DMG..."

#upload Stringscan.dmg updates

#upload stringscan-changes.tcl

#upload stringscan-version.tcl

cd ../

#create archive of entire source tree
#tar cvfz Stringscan-$1.tgz Stringscan


echo "Done."










|



|

|
>
>



|

|

|




|






145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179


#create tarball for update from website
echo "Compressing application..."

xattr -cr build/Stringscan.app

codesign  --signature-size 9400 -f -s "Developer ID Application: Kevin Walzer" --verbose=2  build/Stringscan.app   --entitlements entitlements.plist --options runtime 

echo "Creating and signing DMG file..."

hdiutil create  -srcfolder build -fs HFS+ -volname Stringscan Stringscan.dmg

codesign  --signature-size 9400 -f -s "Developer ID Application: Kevin Walzer" --verbose=2  Stringscan.dmg

notarize Stringscan.dmg

echo "Uploading DMG..."

upload Stringscan.dmg updates

upload stringscan-changes.tcl

upload stringscan-version.tcl

cd ../

#create archive of entire source tree
tar cvfz Stringscan-$1.tgz Stringscan


echo "Done."



Changes to stringscan.rb.

409
410
411
412
413
414
415

416
417
418

#exit
def shutdown
  Tk.tk_call('regproc::makePitch')
end
#end of app class
end

#run app
app = StringscanApp.new
Tk.mainloop







>



409
410
411
412
413
414
415
416
417
418
419

#exit
def shutdown
  Tk.tk_call('regproc::makePitch')
end
#end of app class
end

#run app
app = StringscanApp.new
Tk.mainloop