Browse Source

Rename AcediaAdmin into Futility

feature_improvement
Anton Tarasenko 3 years ago
parent
commit
76bad56059
  1. 16
      sources/Futility.uc
  2. 16
      sources/Futility_Feature.uc
  3. 2
      sources/Manifest.uc

16
sources/AcediaAdmin.uc → sources/Futility.uc

@ -1,25 +1,25 @@
/** /**
* Config object for `AcediaAdmin_Feature`. * Config object for `Futility_Feature`.
* Copyright 2021 Anton Tarasenko * Copyright 2021 Anton Tarasenko
*------------------------------------------------------------------------------ *------------------------------------------------------------------------------
* This file is part of Acedia. * This file is part of Futility.
* *
* Acedia is free software: you can redistribute it and/or modify * Futility is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 3 of the License, or * the Free Software Foundation, version 3 of the License, or
* (at your option) any later version. * (at your option) any later version.
* *
* Acedia is distributed in the hope that it will be useful, * Futility is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with Acedia. If not, see <https://www.gnu.org/licenses/>. * along with Futility. If not, see <https://www.gnu.org/licenses/>.
*/ */
class AcediaAdmin extends FeatureConfig class Futility extends FeatureConfig
perobjectconfig perobjectconfig
config(AcediaAdmin); config(Futility);
protected function AssociativeArray ToData() protected function AssociativeArray ToData()
{ {
@ -36,5 +36,5 @@ protected function DefaultIt()
defaultproperties defaultproperties
{ {
configName = "AcediaAdmin" configName = "Futility"
} }

16
sources/AcediaAdmin_Feature.uc → sources/Futility_Feature.uc

@ -1,24 +1,24 @@
/** /**
* This is the AcediaAdmin feature, whose main purpose is to register commands * This is the Futility feature, whose main purpose is to register commands
* from its package. * from its package.
* Copyright 2021 Anton Tarasenko * Copyright 2021 Anton Tarasenko
*------------------------------------------------------------------------------ *------------------------------------------------------------------------------
* This file is part of Acedia. * This file is part of Futility.
* *
* Acedia is free software: you can redistribute it and/or modify * Futility is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 3 of the License, or * the Free Software Foundation, version 3 of the License, or
* (at your option) any later version. * (at your option) any later version.
* *
* Acedia is distributed in the hope that it will be useful, * Futility is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with Acedia. If not, see <https://www.gnu.org/licenses/>. * along with Futility. If not, see <https://www.gnu.org/licenses/>.
*/ */
class AcediaAdmin_Feature extends Feature; class Futility_Feature extends Feature;
var LoggerAPI.Definition errNoCommandsFeature; var LoggerAPI.Definition errNoCommandsFeature;
@ -56,6 +56,6 @@ protected function OnDisabled()
defaultproperties defaultproperties
{ {
configClass = class'AcediaAdmin' configClass = class'Futility'
errNoCommandsFeature = (l=LOG_Error,m="`Commands_Feature` is not detected, \"AcediaAdmin\" will not be able to provide its functionality.") errNoCommandsFeature = (l=LOG_Error,m="`Commands_Feature` is not detected, \"Futility\" will not be able to provide its functionality.")
} }

2
sources/Manifest.uc

@ -22,5 +22,5 @@
defaultproperties defaultproperties
{ {
features(0) = class'AcediaAdmin_Feature' features(0) = class'Futility_Feature'
} }
Loading…
Cancel
Save