diff options
Diffstat (limited to 'migration/20170420_00-udp-naming.cpp')
| -rw-r--r-- | migration/20170420_00-udp-naming.cpp | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/migration/20170420_00-udp-naming.cpp b/migration/20170420_00-udp-naming.cpp new file mode 100644 index 00000000..d8117526 --- /dev/null +++ b/migration/20170420_00-udp-naming.cpp @@ -0,0 +1,54 @@ +/* Copyright (c) 2017, Stanislaw Halik <sthalik@misaki.pl> + + * Permission to use, copy, modify, and/or distribute this + * software for any purpose with or without fee is hereby granted, + * provided that the above copyright notice and this permission + * notice appear in all copies. + */ + +#include "migration.hpp" +#include "options/options.hpp" +#include "logic/main-settings.hpp" + +using namespace migrations; +using namespace options; + +static const char* const old_tracker_name = "UDP sender"; +static const char* const old_proto_name = "UDP Tracker"; + +static const char* const new_tracker_name = "UDP over network"; +static const char* const new_proto_name = "UDP over network"; + +struct rename_udp_stuff : migration +{ + bool should_run() const override + { + module_settings s; + return s.protocol_dll == old_proto_name || s.tracker_dll == old_tracker_name; + } + + void run() override + { + module_settings s; + + if (s.protocol_dll == old_proto_name) + s.protocol_dll = new_proto_name; + + if (s.tracker_dll == old_tracker_name) + s.tracker_dll = new_tracker_name; + + s.b->save(); + } + + QString unique_date() const override + { + return "20170420_00"; + } + + QString name() const override + { + return "rename confusing UDP tracker/proto names"; + } +}; + +OPENTRACK_MIGRATION(rename_udp_stuff) |
