That intergers column is used to catch the response of the user selection. So, if you are going to add the option back, just use an interger (number) anything you want except 0 or 1.
Since the option you want to add is just for testing, I recommend for you not to add it to the GUI and simply edit the cron which is rather quicker and allows you to test the current code without additional options. For example:
Install the app, execute it and select to notify you every one hour. After that, just edit your user cron in Terminal
Quote:0 * * * * ionice -c2 -p$$ -n 7;nice -n 19 /usr/local/sbin/updatesnotify-launcher >/dev/null 2>&1
## Lite Updates Notify - DO NOT MANUALLY DELETE OR EDIT THE ABOVE LINE ######
You will see that the cronjob was scheduled for every hour... Just modify to your needs, e.g 2 minutes:
Quote:*/2 * * * * ionice -c2 -p$$ -n 7;nice -n 19 /usr/local/sbin/updatesnotify-launcher >/dev/null 2>&1
## Lite Updates Notify - DO NOT MANUALLY DELETE OR EDIT THE ABOVE LINE ######
https://unlockforus.com
Sorry for seeming stupid and preferring Linux - I just don't know any better.