Skip to content
View in the app

A better way to browse. Learn more.

WRobot

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Relogger Working Schedule Randomizer fields

  • Product: Relogger
  • Type: Suggestion
  • Status: Unconfirmed

Hello, could you add a similar function to the relogger to randomize the profile launch schedule, just if you do it through the plugin, the launch setting changes forever, but I would like the default values to be saved.
 

for (int i = 0; i < Relogger.Classes.ReloggerGeneralSettings.CurrentSetting.Profiles.Count; i++)
            {
                
                var p = Relogger.Classes.ReloggerGeneralSettings.CurrentSetting.Profiles[i];
                if (p.Settings.ScheduleFrom.TimeOfDay != new TimeSpan(0, 0, 0))
                {
                  var rndseconds = Others.Random(30, 120);
                    var rnd = Others.Random(1, 2);
                    if (rnd == 1)
                    {
                        p.Settings.ScheduleFrom.AddSeconds(rndseconds);
                        Logging.Write(rndseconds + " was added to " + p.Name + " shedulefrom");
                    }
                    else
                    {
                        p.Settings.ScheduleFrom.AddSeconds(-rndseconds);
                        Logging.Write(rndseconds + " was taken away from " + p.Name + " shedulefrom");
                    }

                }

                if (p.Settings.ScheduleTo.TimeOfDay != new TimeSpan(23, 59, 59))
                {
                  var rndseconds = Others.Random(30, 120);
                    var rnd = Others.Random(1, 2);
                    if (rnd == 1)
                    {
                        p.Settings.ScheduleTo.AddSeconds(rndseconds);
                        Logging.Write(rndseconds + " was added to " + p.Name + " ScheduleTo");
                    }
                    else
                    {
                        p.Settings.ScheduleTo.AddSeconds(-rndseconds);
                        Logging.Write(rndseconds + " was taken away from " + p.Name + " ScheduleTo");
                    }
                }
            }

Or maybe you know how you can change these parameters without saving in the interface?

User Feedback

Recommended Comments

There are no comments to display.

Create an account or sign in to comment

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.