diff --git a/README.md b/README.md index d69fa87c..ce0ecd51 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Akela-Core +# Kaleidoscope-Ranges -This is the core of all Akela plugins, a set of functions, helpers and ranges -common to all plugins. It should not be used directly. +This plugin contains the ranges used by a number of Kaleidoscope plugins. Mostly +useful for developers, but a dependency of other plugins, too. diff --git a/library.properties b/library.properties index c8e94251..4f7dab77 100644 --- a/library.properties +++ b/library.properties @@ -1,9 +1,9 @@ -name=Akela-Core +name=Kaleidoscope-Ranges version=0.0.0 author=Gergely Nagy -maintainer=Gergely Nagy -sentence=The A.K.E.L.A. core library. -paragraph=Functions, helpers and whatnot common to all Akela plugins. +maintainer=Gergely Nagy +sentence=Common ranges, used by a number of Kaleidoscope plugins. +paragraph=... category=Communication -url=https://github.com/keyboardio/Akela-Core +url=https://github.com/keyboardio/Kaleidoscope-Ranges architectures=avr diff --git a/src/Akela-Core.h b/src/Kaleidoscope-Ranges.h similarity index 87% rename from src/Akela-Core.h rename to src/Kaleidoscope-Ranges.h index 719a687c..9cc9b40d 100644 --- a/src/Akela-Core.h +++ b/src/Kaleidoscope-Ranges.h @@ -1,5 +1,5 @@ /* -*- mode: c++ -*- - * Akela -- Animated Keyboardio Extension Library for Anything + * Kaleidoscope-Ranges -- Common ranges, used by a number of Kaleidoscope plugins. * Copyright (C) 2016, 2017 Gergely Nagy * * This program is free software: you can redistribute it and/or modify @@ -18,12 +18,10 @@ #pragma once -#include - -namespace Akela { +namespace KaleidoscopePlugins { namespace Ranges { enum { - AKELA_FIRST = 0xc000, + KALEIDOSCOPE_FIRST = 0xc000, OS_FIRST, OSM_FIRST = OS_FIRST, OSM_LAST = OSM_FIRST + 7, @@ -43,7 +41,7 @@ namespace Akela { CYCLE, SYSTER, - AKELA_SAFE_START, + KALEIDOSCOPE_SAFE_START, }; }; };