The Big Rename

Renamed the library to Kaleidoscope-Ranges, and followed up with other renames.

Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
pull/389/head
Gergely Nagy 8 years ago
parent a0a8025b52
commit 856968815a

@ -1,4 +1,4 @@
# Akela-Core # Kaleidoscope-Ranges
This is the core of all Akela plugins, a set of functions, helpers and ranges This plugin contains the ranges used by a number of Kaleidoscope plugins. Mostly
common to all plugins. It should not be used directly. useful for developers, but a dependency of other plugins, too.

@ -1,9 +1,9 @@
name=Akela-Core name=Kaleidoscope-Ranges
version=0.0.0 version=0.0.0
author=Gergely Nagy author=Gergely Nagy
maintainer=Gergely Nagy <akela@gergo.csillger.hu> maintainer=Gergely Nagy <kaleidoscope@gergo.csillger.hu>
sentence=The A.K.E.L.A. core library. sentence=Common ranges, used by a number of Kaleidoscope plugins.
paragraph=Functions, helpers and whatnot common to all Akela plugins. paragraph=...
category=Communication category=Communication
url=https://github.com/keyboardio/Akela-Core url=https://github.com/keyboardio/Kaleidoscope-Ranges
architectures=avr architectures=avr

@ -1,5 +1,5 @@
/* -*- mode: c++ -*- /* -*- 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 * Copyright (C) 2016, 2017 Gergely Nagy
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
@ -18,12 +18,10 @@
#pragma once #pragma once
#include <KeyboardioFirmware.h> namespace KaleidoscopePlugins {
namespace Akela {
namespace Ranges { namespace Ranges {
enum { enum {
AKELA_FIRST = 0xc000, KALEIDOSCOPE_FIRST = 0xc000,
OS_FIRST, OS_FIRST,
OSM_FIRST = OS_FIRST, OSM_FIRST = OS_FIRST,
OSM_LAST = OSM_FIRST + 7, OSM_LAST = OSM_FIRST + 7,
@ -43,7 +41,7 @@ namespace Akela {
CYCLE, CYCLE,
SYSTER, SYSTER,
AKELA_SAFE_START, KALEIDOSCOPE_SAFE_START,
}; };
}; };
}; };
Loading…
Cancel
Save