Skip to content
This repository has been archived by the owner on Jun 10, 2022. It is now read-only.

Commit

Permalink
Setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Vernon committed Sep 30, 2016
1 parent c1b8205 commit 9c392d3
Show file tree
Hide file tree
Showing 17 changed files with 95 additions and 553 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
.DS_Store
npm-debug.log
node_modules
pseudo-code/
lib_old/
spec_old/
keymaps_old/
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.0.0
* Got break up-to-date with the latest version of atom and the atom api.

## 0.3.1
* Fix bug causing micro break count to not reset properly after a macro break.

Expand Down
34 changes: 15 additions & 19 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,20 @@
This is free and unencumbered software released into the public domain.
Copyright (c) 2014 GitHub Inc.

Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to <http://unlicense.org/>
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
11 changes: 0 additions & 11 deletions keymaps/break.cson

This file was deleted.

26 changes: 0 additions & 26 deletions lib/break-helpers.coffee

This file was deleted.

19 changes: 0 additions & 19 deletions lib/break-templates.coffee

This file was deleted.

73 changes: 0 additions & 73 deletions lib/break-trigger.coffee

This file was deleted.

165 changes: 0 additions & 165 deletions lib/break.coffee

This file was deleted.

33 changes: 33 additions & 0 deletions lib/main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
'use babel';

import {default as settings} from './settings.js';

export default {

config: settings.config,

activate(state) {

// some debug stuff
// console.log(state);
// console.log(settings.config);
// console.log('Break has been activated');
// console.log(atom.config.get('break'));

// Settings changed... reset
atom.config.observe('break', this.reset);
},

consumeStatusBar(statusBar) {
console.log(statusBar);
},

deactivate() {},

reset() {
console.log('Break has been reset');
},

serialize() {}

};
Loading

0 comments on commit 9c392d3

Please sign in to comment.