Search found 32 matches: plist

Return to advanced search

Re: display of fonts used in browses

Hello group, Thanks to a lot of great work from Manuel we now can also create the Info.plist with a makefile. And it looks that there are much more options that we can set in the Info.plist. Here is a copy of my makefile that is made by Manuel: # makefile for Plantenkennis, ...
by plantenkennis
Fri Nov 06, 2020 2:52 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: display of fonts used in browses
Replies: 6
Views: 1401

Re: display of fonts used in browses

Thanks to the work of Manuel we have the solution for the blurry fonts. In the app-folder there should be a file named Info.plist. When building an app with the build.sh command this file is added automatically. But this file needs the next lines: echo '   <key>NSHighResolutionCapable</key>' ...
by plantenkennis
Sun Nov 01, 2020 9:15 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: display of fonts used in browses
Replies: 6
Views: 1401

defining columns in browse

... )oBrwMain:SetFont( cWindowFontName, nWindowFontSize )  I want to define the FIELDS and HEADERS from variables stored in a plist file. PUBLIC cFields := {"", "", "", "", "", "", "", ""}PUBLIC ...
by plantenkennis
Fri Dec 28, 2018 5:13 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: defining columns in browse
Replies: 0
Views: 1135

Re: Create bootable OSX usb from OSX app store

... install disk" option is hidden because your system's capabilities are limited: copy bootcamp utility to the desktop edit bootcamp "Info.plist" file: edit section's title: PreUSBBootSupportedModels to USBSupportedModels (if it's already USBBootSupportedModels -> skip this step) ...
by Antonio Linares
Tue Jan 30, 2018 11:08 am
 
Forum: Utilities / Utilidades
Topic: Create bootable OSX usb from OSX app store
Replies: 5
Views: 1488

Making a installer package for distribution

... next folders in the app: Contents folder: MacOs (the actual app) folder: Resources (here you can put all files you need with your app) File: info.plist You need to follow these steps make a copy.ch file where you can make your databases folders in the $USER folder and move the databases from Users/shared ...
by plantenkennis
Tue Jun 27, 2017 9:09 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: Making a installer package for distribution
Replies: 1
Views: 1556

saving logical variable in plist

Hello, I am able to save strings and array;s in a plist, but is it possible to save a logical value? When I edit the plist I can select boolean, but when I save my variable to this, the type is set to string.     oPList:SetItemByName( ...
by plantenkennis
Tue Nov 29, 2016 10:13 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: saving logical variable in plist
Replies: 0
Views: 625

protecting an app for illigal copying

... adres of a computer? Someting like 'cMacAdres:= GetMacAdres()'. With this string I can protect my app with a registration key that I store in a .plist On the next page is a sample code, hope this can be build in. https://developer.apple.com/library/content/samplecode/GetPrimaryMACAddress/Introduction/Intro.html ...
by plantenkennis
Sun Nov 13, 2016 2:32 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: protecting an app for illigal copying
Replies: 16
Views: 6098

Re: Visual Studio Community 2015 PRGs/CHs syntax coloring

... for TextMate language and it is the same format that SublimeText editor uses. I guess that this started in Apple and still they use an Apple plist file format (it is a renamed XML file. You can use Visual Studio to edit it). Mine looks like this. Yours will have a different "random" ...
by Antonio Linares
Tue May 17, 2016 8:34 am
 
Forum: Utilities / Utilidades
Topic: Visual Studio Community 2015 PRGs/CHs syntax coloring
Replies: 22
Views: 6921

Re: some questions about browse

... inside the app is where you have to use a folder named Resources and there you have to store your icns and other resources. Also there is a Info.plist that you can edit using TextEdit and set the right values for your app.
by Antonio Linares
Thu Jan 14, 2016 6:52 am
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: some questions about browse
Replies: 7
Views: 2570

Re: some questions bout browse

... fine for you ? 3. In samples/build.sh we set here the icon to use: echo ' <key>CFBundleIconFile</key>' >> $1.app/Contents/Info.plist echo ' <string>fivetech.icns</string>' >> $1.app/Contents/Info.plist You can specify there a different icns file for your app
by Antonio Linares
Wed Dec 09, 2015 8:07 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: some questions about browse
Replies: 7
Views: 2570

Re: Apple anuncia el nuevo lenguaje Swift

... ejecutable . en Macosx realmente son una carpeta con extension .app que contiene dentro los distintos elementos del programa : binarios ,archivos plist ( equivalentes a ini ) , los recursos nib ( equivalentes a los res ) , los iconos , etc . Si quieres verlo es tan simple como colocarte encima ...
by mastintin
Sat Jun 21, 2014 5:45 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: Apple anuncia el nuevo lenguaje Swift
Replies: 38
Views: 9599

Re: Problem FiveMac and Maverick OSX 10.9

... -d $1.app/Contents ]; then mkdir $1.app/Contents echo '<?xml version="1.0" encoding="UTF-8"?>' > $1.app/Contents/Info.plist echo '<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">' >> ...
by vensanto
Thu Dec 12, 2013 3:40 am
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: Problem FiveMac and Maverick OSX 10.9
Replies: 4
Views: 1356

Re: cambios importantes en xcode 4.3

... . De momento el tema de templates y sintaxis sigue igual que en la versión anterior asi que poco que hacer salvo "trasteos" en los plist del codigo de xcode para "engañar" al editor.
by mastintin
Sat Feb 18, 2012 3:03 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: cambios importantes en xcode 4.3
Replies: 2
Views: 1361

El Sandboxing en Lion

... de Lion . si la queremos implementar en los programas de Fivemac tenemos que realizar dos cosas la primera crear un fichero Entitlements.plist con estas lineas por ejemplo : <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST ...
by mastintin
Sun Oct 16, 2011 8:36 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: El Sandboxing en Lion
Replies: 0
Views: 843

Re: he conseguido un iphone

... /Developer/fivephone/harbour/include" setenv ICONV /usr/bin/iconv setenv INFOPLIST_EXPAND_BUILD_SETTINGS YES setenv INFOPLIST_FILE test4-Info.plist setenv INFOPLIST_OUTPUT_FORMAT binary setenv INFOPLIST_PATH test4.app/Info.plist setenv INFOPLIST_PREPROCESS NO setenv INFOSTRINGS_PATH test4.app/English.lproj/InfoPlist.strings ...
by softruz
Wed Dec 15, 2010 2:42 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: he conseguido un iphone
Replies: 644
Views: 129788
Next

Return to advanced search

cron