]> git.donarmstrong.com Git - qmk_firmware.git/log
qmk_firmware.git
8 years agoMerge branch 'master' of https://github.com/jackhumbert/qmk_firmware
Christopher Browne [Tue, 24 May 2016 16:34:08 +0000 (12:34 -0400)]
Merge branch 'master' of https://github.com/jackhumbert/qmk_firmware

8 years agoConverted audio play functions to *_user (#349)
Jack Humbert [Tue, 24 May 2016 15:56:53 +0000 (11:56 -0400)]
Converted audio play functions to *_user (#349)

* Updated personal layouts

* tweaked personal

* Nightly - Audio Cleanup

Refactored the LUTs. Abstracted some of the registers out of audio to
use more functional names. Split audio into audio and audio_pwm. WIP

* nightly - collapsed code

* Added check for note playing to LEDs

* Usability tweaks

* TWEAE

* nightly

added extra kcs to keymap common

* turned on Plank audio

* Added backlight breathing to atomic

* reverted accidental merge

* Added music and audio toggles to Quantum.c

* Redid the audio callbacks

* Adjusted default planck layout to use the user tone naming

* tabs to spaces

* Rewrote the ALL recipe to allow for faster parallel make

* tabs to spaces

* Renamed custom event functions to be 'startup_user' and 'shutdown_user'. Also moved the prototypes around.

* Tweaked pvc atomic layout to work with the pvc planck.

* updates midi scale calling

8 years agoClean up #343's code (#348)
Eric Tang [Tue, 24 May 2016 15:44:40 +0000 (08:44 -0700)]
Clean up #343's code (#348)

8 years agoupdates midi in play_note to better octave
Jack Humbert [Tue, 24 May 2016 03:44:36 +0000 (23:44 -0400)]
updates midi in play_note to better octave

8 years agoOptimize matrix scanning (#343)
Eric Tang [Tue, 24 May 2016 03:42:21 +0000 (20:42 -0700)]
Optimize matrix scanning (#343)

8 years agoadds petereichinger's planck keymap (#340)
Peter [Fri, 20 May 2016 15:14:08 +0000 (17:14 +0200)]
adds petereichinger's planck keymap (#340)

* Add custom keymap

* A little readme and remove old layout comments

8 years agoMerge pull request #324 from Bubblepoint/master
Erez Zukerman [Thu, 19 May 2016 19:54:16 +0000 (15:54 -0400)]
Merge pull request #324 from Bubblepoint/master

Add adnw/k_o_y layout

8 years agofixed small bug with AUDIO_ENABLED (#339)
purpleP [Thu, 19 May 2016 12:36:28 +0000 (15:36 +0300)]
fixed small bug with AUDIO_ENABLED (#339)

8 years agoadapts unicode to quantum.c (#333)
Jack Humbert [Thu, 19 May 2016 03:47:16 +0000 (23:47 -0400)]
adapts unicode to quantum.c (#333)

* Unicode

to have unicode input you need to:

- set your OS input method to UNICODE if needed
- enable unicode in your makefile
- copy the action_function from
keyboard/planck/keymaps/unicode/unicode.c to your keymap.c
set the target OS method in your keymap.c: void matrix_init_user() {
set_unicode_mode(UC_OSX); } you can then switch when you want with:
set_unicode_mode(UC_OSX); set_unicode_mode(UC_LNX);
set_unicode_mode(UC_WIN);
put some unicode codes in your keymap like so: UC(0x0061)
I did change the bit mask in quantum/keymap_common.c and .h
I’m afraid we will need uint32 to get a total support for all unicode
tables or relocate the handler as @mbarkhau did.

* rearranges keycode values, hooks-up unicode

* removes extra lalt ref

* adds unicode shortcuts and example

8 years agooutputs size when make dfuing
Jack Humbert [Thu, 19 May 2016 03:16:31 +0000 (23:16 -0400)]
outputs size when make dfuing

8 years agoadds music and audio toggles (#337)
Jack Humbert [Thu, 19 May 2016 03:14:00 +0000 (23:14 -0400)]
adds music and audio toggles (#337)

* Updated personal layouts

* tweaked personal

* Nightly - Audio Cleanup

Refactored the LUTs. Abstracted some of the registers out of audio to
use more functional names. Split audio into audio and audio_pwm. WIP

* nightly - collapsed code

* Added check for note playing to LEDs

* Usability tweaks

* TWEAE

* nightly

added extra kcs to keymap common

* turned on Plank audio

* Added backlight breathing to atomic

* reverted accidental merge

* Added music and audio toggles to Quantum.c

* Redid the audio callbacks

* music/audio_on_user

8 years agoAdded Swiss-German keymap. (#335)
heartsekai [Wed, 18 May 2016 19:22:04 +0000 (21:22 +0200)]
Added Swiss-German keymap. (#335)

8 years agoadds KC_NUBS, KC_NUHS and shifted versions to default keymaps
Jack Humbert [Wed, 18 May 2016 02:17:23 +0000 (22:17 -0400)]
adds KC_NUBS, KC_NUHS and shifted versions to default keymaps

8 years agofixes default planck keymap
Jack Humbert [Tue, 17 May 2016 03:08:16 +0000 (23:08 -0400)]
fixes default planck keymap

8 years agoFolders for each keymap.c file (#332)
Jacob Bilger [Sun, 15 May 2016 05:22:51 +0000 (01:22 -0400)]
Folders for each keymap.c file (#332)

* Add folders to keymaps

* test

* test

8 years agocleans up default keymaps (olkb)
Jack Humbert [Sun, 15 May 2016 05:07:48 +0000 (01:07 -0400)]
cleans up default keymaps (olkb)

8 years agoupdates midi functionality (#331)
Jack Humbert [Sun, 15 May 2016 04:51:06 +0000 (00:51 -0400)]
updates midi functionality (#331)

* implements leader key for planck experimental

* allows override of leader timeout

* adds ability to use the leader key in seq

* fixes leader keycode

* adds chording prototype

* fixes keycode detection

* moves music mode to quantum.c

* disables chording by default

* adds music sequencer functionality

* implements audio/music functions in quantum.c

* splits up process_action to allow independent processing of actions

* moves midi stuff to quantum.c

* adds additional scales for midi

8 years agosplits process_action up to handle records separately (#329)
Jack Humbert [Sun, 15 May 2016 04:47:25 +0000 (00:47 -0400)]
splits process_action up to handle records separately (#329)

* implements leader key for planck experimental

* allows override of leader timeout

* adds ability to use the leader key in seq

* fixes leader keycode

* adds chording prototype

* fixes keycode detection

* moves music mode to quantum.c

* disables chording by default

* adds music sequencer functionality

* implements audio/music functions in quantum.c

* splits up process_action to allow independent processing of actions

* merging?

8 years agoadds a sequencer to the music mode (#330)
Jack Humbert [Sun, 15 May 2016 04:40:59 +0000 (00:40 -0400)]
adds a sequencer to the music mode (#330)

* implements leader key for planck experimental

* allows override of leader timeout

* adds ability to use the leader key in seq

* fixes leader keycode

* adds chording prototype

* fixes keycode detection

* moves music mode to quantum.c

* disables chording by default

* adds music sequencer functionality

* implements audio/music functions in quantum.c

* Merge branch 'master' into process-record

8 years agoLeader key implementation (#326)
Erez Zukerman [Sun, 15 May 2016 04:27:32 +0000 (00:27 -0400)]
Leader key implementation (#326)

* implements leader key for planck experimental

* allows override of leader timeout

* adds ability to use the leader key in seq

* fixes leader keycode

* adds chording prototype

* fixes keycode detection

* moves music mode to quantum.c

* disables chording by default

* updates process_action functions to return bool

8 years agoAdds explanatory note re history of TMK and QMK
Erez Zukerman [Sun, 15 May 2016 02:07:16 +0000 (22:07 -0400)]
Adds explanatory note re history of TMK and QMK

8 years agoadds Bilger321's planck keymap
Jacob Bilger [Sun, 15 May 2016 01:11:33 +0000 (21:11 -0400)]
adds Bilger321's planck keymap

8 years agoreadme added
Tobias Matt [Sat, 14 May 2016 08:04:14 +0000 (10:04 +0200)]
readme added

8 years agoMerge pull request #320 from Townk/townkmap
Erez Zukerman [Sat, 14 May 2016 01:54:23 +0000 (21:54 -0400)]
Merge pull request #320 from Townk/townkmap

Townkmap

8 years agoMerge pull request #317 from Twey/master
Erez Zukerman [Sat, 14 May 2016 01:51:03 +0000 (21:51 -0400)]
Merge pull request #317 from Twey/master

Updates to `keymaps/twey` to the media layer and for Plover 3.0

8 years agoMerge pull request #307 from sboesebeck/master
Erez Zukerman [Sat, 14 May 2016 01:50:28 +0000 (21:50 -0400)]
Merge pull request #307 from sboesebeck/master

minor change to default layouts

8 years agoMerge remote-tracking branch 'upstream/master'
Tobias Matt [Fri, 13 May 2016 08:08:29 +0000 (10:08 +0200)]
Merge remote-tracking branch 'upstream/master'

8 years ago[planck] adds button for toggling output in plover app (#323)
cwhits [Thu, 12 May 2016 19:08:53 +0000 (15:08 -0400)]
[planck] adds button for toggling output in plover app (#323)

* [planck] toggle plover output in app when toggling plover layer on keyboard

* [planck] moved plover toggle to separate key

* [planck] renamed toggle button

8 years agoRemove unused variable on the keymap.
Thiago Alves [Wed, 11 May 2016 21:01:15 +0000 (14:01 -0700)]
Remove unused variable on the keymap.

8 years agoMerge branch 'master' of https://github.com/jackhumbert/qmk_firmware
Stephan Bösebeck [Wed, 11 May 2016 20:05:19 +0000 (22:05 +0200)]
Merge branch 'master' of https://github.com/jackhumbert/qmk_firmware

8 years agoAdd an initial Readme to the keymap.
Thiago Alves [Wed, 11 May 2016 03:58:59 +0000 (20:58 -0700)]
Add an initial Readme to the keymap.

8 years ago[Erez & Jack] Documents audio output
Erez Zukerman [Wed, 11 May 2016 00:48:14 +0000 (20:48 -0400)]
[Erez & Jack] Documents audio output

8 years agoTweak some key positions and changed macro location.
Thiago Alves [Tue, 10 May 2016 23:26:56 +0000 (16:26 -0700)]
Tweak some key positions and changed macro location.

After using the layout a while I learn that the - and = positions should be
swapped since I keep typing = when I intend to type -.

I also, removed the only macro from the top left on the right hand to put the
power button there and since I never use the arrow keys on the separated groups
of keys, I added 4 macros there to get a feel for it.

8 years agoAdd custom config.h and revert the changes on the global one.
Thiago Alves [Tue, 10 May 2016 23:15:32 +0000 (16:15 -0700)]
Add custom config.h and revert the changes on the global one.

Some options I defined on the config.h file don't make much sense to other
keymaps so I revert the global config.h and add those options on the keymap
custom one.

8 years agokeymaps/twey: fix documentation
James ‘Twey’ Kay [Tue, 10 May 2016 21:33:06 +0000 (22:33 +0100)]
keymaps/twey: fix documentation

8 years agokeymaps/twey: Plover 3.0 has a standard TOGGLE keybinding; use that instead
James ‘Twey’ Kay [Tue, 10 May 2016 21:30:17 +0000 (22:30 +0100)]
keymaps/twey: Plover 3.0 has a standard TOGGLE keybinding; use that instead

8 years agokeymaps/twey: Add more history keys to media layer; stop using toggleable media layer
James ‘Twey’ Kay [Tue, 10 May 2016 21:23:36 +0000 (22:23 +0100)]
keymaps/twey: Add more history keys to media layer; stop using toggleable media layer

8 years agoUpdate build guide with instructions to copy the whole keymap folder (#315)
Peter [Mon, 9 May 2016 23:23:51 +0000 (01:23 +0200)]
Update build guide with instructions to copy the whole keymap folder (#315)

8 years agoUpdate the .hex file on the keymap folder.
Thiago Alves [Thu, 5 May 2016 17:19:26 +0000 (10:19 -0700)]
Update the .hex file on the keymap folder.

8 years agoRevert the Makefile to the original one.
Thiago Alves [Thu, 5 May 2016 16:54:43 +0000 (09:54 -0700)]
Revert the Makefile to the original one.

Make sure I customize things as much as possible inside the keymap itself.

8 years agoChange the access to the extra layer to be simetric.
Thiago Alves [Wed, 4 May 2016 21:19:30 +0000 (14:19 -0700)]
Change the access to the extra layer to be simetric.

Instead of having a key on the left side for one layer and a key on the right
side for the other layer, I put two dedicated layers on each side to get to the
proper layers.

8 years agoAdd my personal keymap for OSX use.
Thiago Alves [Tue, 26 Apr 2016 06:46:37 +0000 (23:46 -0700)]
Add my personal keymap for OSX use.

This keymap was created to have a feel keys on a different place and to have as
fewer layers as possible.

Currently I have only 2 extra layers and only one of them is really required to
have all possible keys available.

Check out the README.md file for more information.

8 years agoBacklight Breathing for Planck and Atomic
Jack Humbert [Mon, 9 May 2016 17:17:15 +0000 (13:17 -0400)]
Backlight Breathing for Planck and Atomic

* Updated personal layouts

* tweaked personal

* Nightly - Audio Cleanup

Refactored the LUTs. Abstracted some of the registers out of audio to
use more functional names. Split audio into audio and audio_pwm. WIP

* nightly - collapsed code

* Added check for note playing to LEDs

* Usability tweaks

* TWEAE

* nightly

added extra kcs to keymap common

* turned on Plank audio

* Added backlight breathing to atomic

* reverted accidental merge

* adds backlight pulse to planck

8 years agoquantum accommodates more than 16 columns
Jack Humbert [Mon, 9 May 2016 04:36:23 +0000 (00:36 -0400)]
quantum accommodates more than 16 columns

8 years agoAdds next tab/prev tab back to symb layer and updates legend
Erez Zukerman [Sun, 8 May 2016 17:54:22 +0000 (13:54 -0400)]
Adds next tab/prev tab back to symb layer and updates legend

8 years agoA little more tweaking
Erez Zukerman [Sun, 8 May 2016 17:45:26 +0000 (13:45 -0400)]
A little more tweaking

8 years agoTweaks layers 1 & 2 in my experimental layout
Erez Zukerman [Sun, 8 May 2016 17:39:17 +0000 (13:39 -0400)]
Tweaks layers 1 & 2 in my experimental layout

8 years agoMerge pull request #311 from adiabatic/ergodox-zweihander-osx
Erez Zukerman [Fri, 6 May 2016 22:28:43 +0000 (18:28 -0400)]
Merge pull request #311 from adiabatic/ergodox-zweihander-osx

Add KC_LABK and KC_RABK (< and >)

8 years agoAdd KC_L[LR]ABK to top-level README
Nathan Sharfi [Fri, 6 May 2016 13:22:26 +0000 (06:22 -0700)]
Add KC_L[LR]ABK to top-level README

8 years agoMerge pull request #310 from nrrkeene/master
Erez Zukerman [Fri, 6 May 2016 13:13:30 +0000 (09:13 -0400)]
Merge pull request #310 from nrrkeene/master

Lock layers by pressing both shift keys

8 years agoRearrange code layer on Zweihander
Nathan Sharfi [Fri, 6 May 2016 12:47:55 +0000 (05:47 -0700)]
Rearrange code layer on Zweihander

Makes it more like the iOS keyboard (and therefore easier to remember). Also adds angle brackets for HTML and comparisons.

8 years agoAdd KC_LABK and KC_RABK (< and >)
Nathan Sharfi [Fri, 6 May 2016 12:40:02 +0000 (05:40 -0700)]
Add KC_LABK and KC_RABK (< and >)

8 years agozweihander: add ⌘X, ⌘C, ⌘V to media thumb keys
Nathan Sharfi [Fri, 6 May 2016 12:19:17 +0000 (05:19 -0700)]
zweihander: add ⌘X, ⌘C, ⌘V to media thumb keys

8 years agoThe Ordinary Layout is the layout you are looking for. Come and see.
Nicholas Keene [Fri, 6 May 2016 04:18:48 +0000 (23:18 -0500)]
The Ordinary Layout is the layout you are looking for. Come and see.

8 years agoThe Ordinary Layout is extraordinarily familiar and powerful
Nicholas Keene [Fri, 6 May 2016 03:55:55 +0000 (22:55 -0500)]
The Ordinary Layout is extraordinarily familiar and powerful

8 years agoUses @eltang's famous macro! Still not perfect though :(
Erez Zukerman [Fri, 6 May 2016 03:18:46 +0000 (23:18 -0400)]
Uses @eltang's famous macro! Still not perfect though :(

8 years ago[Erez & Jack] Updates docs with one-shot information and config_user.h
Erez Zukerman [Fri, 6 May 2016 02:58:06 +0000 (22:58 -0400)]
[Erez & Jack] Updates docs with one-shot information and config_user.h

8 years ago[Jack & Erez] Defines MOD_HYPR and MOD_MEH
Erez Zukerman [Fri, 6 May 2016 02:44:24 +0000 (22:44 -0400)]
[Jack & Erez] Defines MOD_HYPR and MOD_MEH

8 years ago[Jack & Erez] Creates a makefile.mk and a config file for the experimental layout
Erez Zukerman [Fri, 6 May 2016 02:24:09 +0000 (22:24 -0400)]
[Jack & Erez] Creates a makefile.mk and a config file for the experimental layout

8 years ago[Jack & Erez] Enables config_user.h per keymap
Erez Zukerman [Fri, 6 May 2016 02:23:32 +0000 (22:23 -0400)]
[Jack & Erez] Enables config_user.h per keymap

8 years ago[Jack & Erez] Adds an option for user-specific config.h files
Erez Zukerman [Fri, 6 May 2016 02:19:59 +0000 (22:19 -0400)]
[Jack & Erez] Adds an option for user-specific config.h files

8 years ago[Jack & Erez] Removes duplicate reference, sorts whitespace
Erez Zukerman [Fri, 6 May 2016 02:19:29 +0000 (22:19 -0400)]
[Jack & Erez] Removes duplicate reference, sorts whitespace

8 years agoadds keycode shortcuts for OSL and OSM
Jack Humbert [Fri, 6 May 2016 01:50:51 +0000 (21:50 -0400)]
adds keycode shortcuts for OSL and OSM

8 years agoAdds oneshot layer and oneshot tap toggling (#308)
Thiago Alves [Fri, 6 May 2016 01:41:37 +0000 (18:41 -0700)]
Adds oneshot layer and oneshot tap toggling (#308)

This commit is mostly a cherry-pick from `ahtn` at
https://github.com/tmk/tmk_keyboard/pull/255.

These are the changes:

* Adds ACTION_LAYER_ONESHOT
* Adds ONESHOT_TAP_TOGGLE
* Mentions sticky keys in the docs on oneshot.

8 years agoReferencing the hex file (#309)
Tom Duckering [Thu, 5 May 2016 22:27:28 +0000 (23:27 +0100)]
Referencing the hex file (#309)

Seems that this is a typo. When I used the hex file it worked so presuming that means it's right ;)

8 years agoupdates atreus's column mapping
Jack Humbert [Thu, 5 May 2016 16:05:09 +0000 (12:05 -0400)]
updates atreus's column mapping

8 years agoremove typo
Stephan Bösebeck [Thu, 5 May 2016 14:52:40 +0000 (16:52 +0200)]
remove typo

8 years agomaking default osx more ELG conform
Stephan Bösebeck [Thu, 5 May 2016 14:48:51 +0000 (16:48 +0200)]
making default osx more ELG conform

8 years agoMerge branch 'master' of https://github.com/jackhumbert/qmk_firmware
Stephan Bösebeck [Thu, 5 May 2016 14:28:47 +0000 (16:28 +0200)]
Merge branch 'master' of https://github.com/jackhumbert/qmk_firmware

8 years agoThe Ordinary Layout is the most natural and powerful layout for the Ergodox EZ. Come...
Nicholas Keene [Thu, 5 May 2016 03:17:47 +0000 (22:17 -0500)]
The Ordinary Layout is the most natural and powerful layout for the Ergodox EZ. Come check it out.

8 years agoMerge pull request #305 from nrrkeene/master
Erez Zukerman [Thu, 5 May 2016 02:31:00 +0000 (22:31 -0400)]
Merge pull request #305 from nrrkeene/master

Custom handling for shift keys, improved media layer

8 years agoMerge branch 'master' of https://github.com/jackhumbert/qmk_firmware
Stephan Bösebeck [Wed, 4 May 2016 06:03:25 +0000 (08:03 +0200)]
Merge branch 'master' of https://github.com/jackhumbert/qmk_firmware

8 years agoMerge pull request #304 from adiabatic/ergodox-zweihander-osx
Erez Zukerman [Wed, 4 May 2016 02:27:39 +0000 (22:27 -0400)]
Merge pull request #304 from adiabatic/ergodox-zweihander-osx

zweihander: comment out action_get_macro()

8 years agozweihander: comment out action_get_macro()
Nathan Sharfi [Wed, 4 May 2016 02:19:47 +0000 (19:19 -0700)]
zweihander: comment out action_get_macro()

8 years agoThe Ordinary Layout is arranged as close as possible to a traditional keyboard, but...
Nicholas Keene [Wed, 4 May 2016 01:58:27 +0000 (20:58 -0500)]
The Ordinary Layout is arranged as close as possible to a traditional keyboard, but with extra special features

8 years agoThe Ordinary Layout works the way you expect it to, with extra powerful features
Nicholas Keene [Wed, 4 May 2016 01:40:15 +0000 (20:40 -0500)]
The Ordinary Layout works the way you expect it to, with extra powerful features

8 years agoClarified audio.c (#302)
IBNobody [Tue, 3 May 2016 17:56:40 +0000 (12:56 -0500)]
Clarified audio.c (#302)

* Updated personal layouts

* tweaked personal

* Nightly - Audio Cleanup

Refactored the LUTs. Abstracted some of the registers out of audio to
use more functional names. Split audio into audio and audio_pwm. WIP

* nightly - collapsed code

* Added check for note playing to LEDs

8 years agoMerge branch 'master' of https://github.com/jackhumbert/qmk_firmware
Stephan Bösebeck [Tue, 3 May 2016 06:29:55 +0000 (08:29 +0200)]
Merge branch 'master' of https://github.com/jackhumbert/qmk_firmware

8 years agoMerge branch 'master' of https://github.com/jackhumbert/qmk_firmware
Nicholas Keene [Tue, 3 May 2016 02:35:58 +0000 (21:35 -0500)]
Merge branch 'master' of https://github.com/jackhumbert/qmk_firmware

8 years agoMerge pull request #300 from Twey/tweymap-momentary
Erez Zukerman [Tue, 3 May 2016 01:04:13 +0000 (21:04 -0400)]
Merge pull request #300 from Twey/tweymap-momentary

Swap steno/media layers to allow using media keys in the Plover layer…

8 years agoSwap steno/media layers to allow using media keys in the Plover layer; display all...
James ‘Twey’ Kay [Mon, 2 May 2016 18:19:17 +0000 (19:19 +0100)]
Swap steno/media layers to allow using media keys in the Plover layer; display all active layers, not just the top; use only momentary modifiers

8 years agoMerge branch 'master' of https://github.com/jackhumbert/qmk_firmware
Stephan Bösebeck [Mon, 2 May 2016 12:38:54 +0000 (14:38 +0200)]
Merge branch 'master' of https://github.com/jackhumbert/qmk_firmware

8 years agoMerge pull request #298 from adiabatic/ergodox-zweihander-osx
Erez Zukerman [Mon, 2 May 2016 12:30:34 +0000 (08:30 -0400)]
Merge pull request #298 from adiabatic/ergodox-zweihander-osx

ergodox-zweihander-osx: initial commit

8 years agoMerge pull request #294 from sneako/master
Erez Zukerman [Mon, 2 May 2016 12:24:26 +0000 (08:24 -0400)]
Merge pull request #294 from sneako/master

Add my Ergodox EZ config

8 years agoMerge pull request #258 from romanzolotarev/master
Erez Zukerman [Mon, 2 May 2016 12:24:11 +0000 (08:24 -0400)]
Merge pull request #258 from romanzolotarev/master

Add Roman's single layer layout based on Norman

8 years agonew version of the experimental layout. changed media keys in MDIA layer
Stephan Bösebeck [Mon, 2 May 2016 11:46:00 +0000 (13:46 +0200)]
new version of the experimental layout. changed media keys in MDIA layer

8 years agoThe Ordinary Layout is the layout you are looking for. Come and see v3.14.
Nicholas Keene [Sat, 23 Apr 2016 03:33:13 +0000 (22:33 -0500)]
The Ordinary Layout is the layout you are looking for. Come and see v3.14.

8 years agozweihander: move dim/brighten to 1/2, add ⌘Q
Nathan Sharfi [Sun, 1 May 2016 22:12:38 +0000 (15:12 -0700)]
zweihander: move dim/brighten to 1/2, add ⌘Q

8 years agozweihander: Add ⌘`, ⌘⇧`, ⌥⇥, ⌥⇧⇥
Nathan Sharfi [Sun, 1 May 2016 20:55:00 +0000 (13:55 -0700)]
zweihander: Add ⌘`, ⌘⇧`, ⌥⇥, ⌥⇧⇥

8 years agoErgodox EZ: add zweihander-osx.hex
Nathan Sharfi [Sun, 1 May 2016 05:36:09 +0000 (22:36 -0700)]
Ergodox EZ:  add zweihander-osx.hex

8 years agoergodox-zweihander: initial commit
Nathan Sharfi [Sun, 1 May 2016 05:12:13 +0000 (22:12 -0700)]
ergodox-zweihander: initial commit

8 years agoMerge pull request #292 from abperiasamy/ergo-ab
Erez Zukerman [Sat, 30 Apr 2016 18:56:58 +0000 (14:56 -0400)]
Merge pull request #292 from abperiasamy/ergo-ab

Beginner's keymap for Ergodox-EZ

8 years agoBeginner's keymap for Ergodox-EZ
Anand Babu (AB) Periasamy [Fri, 15 Apr 2016 22:43:24 +0000 (15:43 -0700)]
Beginner's keymap for Ergodox-EZ

8 years agoMerge pull request #295 from techtomas/techtomas
Erez Zukerman [Sat, 30 Apr 2016 11:42:20 +0000 (07:42 -0400)]
Merge pull request #295 from techtomas/techtomas

Add my layout to the list

8 years agomoves backlight functionality to keyboard files and updates template makefile
Jack Humbert [Sat, 30 Apr 2016 02:19:40 +0000 (22:19 -0400)]
moves backlight functionality to keyboard files and updates template makefile

previously there were two backlight.c files (bad)

8 years agofixes plover start sound
Jack Humbert [Sat, 30 Apr 2016 01:21:08 +0000 (21:21 -0400)]
fixes plover start sound

8 years agoAdded readme
Thomas Anderson [Sat, 30 Apr 2016 00:25:14 +0000 (17:25 -0700)]
Added readme

8 years agoFinalized my personal layout
Thomas Anderson [Fri, 29 Apr 2016 21:42:31 +0000 (14:42 -0700)]
Finalized my personal layout

8 years agoAdds brackets to inner vertical keys in experimental layout
Erez Zukerman [Fri, 29 Apr 2016 19:39:05 +0000 (22:39 +0300)]
Adds brackets to inner vertical keys in experimental layout

8 years agoremoves extra voices, updates .hex files
Jack Humbert [Fri, 29 Apr 2016 16:42:55 +0000 (12:42 -0400)]
removes extra voices, updates .hex files