Permalink
Browse files

Add license

  • Loading branch information...
1 parent d673ded commit 9d5610444c777e83bf72155f022792d91952135d @anishathalye committed Jul 31, 2016
Showing with 705 additions and 80 deletions.
  1. +674 −0 LICENSE.txt
  2. +2 −7 Lumen/AppDelegate.h
  3. +2 −7 Lumen/AppDelegate.m
  4. +2 −7 Lumen/BrightnessController.h
  5. +2 −7 Lumen/BrightnessController.m
  6. +2 −7 Lumen/Constants.h
  7. +1 −1 Lumen/Info.plist
  8. +2 −7 Lumen/Model.h
  9. +2 −7 Lumen/Model.m
  10. +2 −7 Lumen/main.m
  11. +2 −7 Lumen/util.c
  12. +2 −7 Lumen/util.h
  13. +2 −7 LumenTests/LumenTests.m
  14. +8 −2 README.md
View

Large diffs are not rendered by default.

Oops, something went wrong.
View
@@ -1,10 +1,5 @@
-//
-// AppDelegate.h
-// Lumen
-//
-// Created by Anish Athalye on 4/10/15.
-// Copyright (c) 2015 Anish Athalye. All rights reserved.
-//
+// Copyright (c) 2015-2016 Anish Athalye (me@anishathalye.com)
+// Released under GPLv3. See the included LICENSE.txt for details
#import <Cocoa/Cocoa.h>
View
@@ -1,10 +1,5 @@
-//
-// AppDelegate.m
-// Lumen
-//
-// Created by Anish Athalye on 4/10/15.
-// Copyright (c) 2015 Anish Athalye. All rights reserved.
-//
+// Copyright (c) 2015-2016 Anish Athalye (me@anishathalye.com)
+// Released under GPLv3. See the included LICENSE.txt for details
#import "AppDelegate.h"
#import "Constants.h"
@@ -1,10 +1,5 @@
-//
-// BrightnessController.h
-// Lumen
-//
-// Created by Anish Athalye on 4/10/15.
-// Copyright (c) 2015 Anish Athalye. All rights reserved.
-//
+// Copyright (c) 2015-2016 Anish Athalye (me@anishathalye.com)
+// Released under GPLv3. See the included LICENSE.txt for details
#import <Foundation/Foundation.h>
@@ -1,10 +1,5 @@
-//
-// BrightnessController.m
-// Lumen
-//
-// Created by Anish Athalye on 4/10/15.
-// Copyright (c) 2015 Anish Athalye. All rights reserved.
-//
+// Copyright (c) 2015-2016 Anish Athalye (me@anishathalye.com)
+// Released under GPLv3. See the included LICENSE.txt for details
#import "BrightnessController.h"
#import "Model.h"
View
@@ -1,10 +1,5 @@
-//
-// Constants.h
-// Lumen
-//
-// Created by Anish Athalye on 4/10/15.
-// Copyright (c) 2015 Anish Athalye. All rights reserved.
-//
+// Copyright (c) 2015-2016 Anish Athalye (me@anishathalye.com)
+// Released under GPLv3. See the included LICENSE.txt for details
#ifndef Lumen_Constants_h
#define Lumen_Constants_h
View
@@ -27,7 +27,7 @@
<key>LSUIElement</key>
<true/>
<key>NSHumanReadableCopyright</key>
- <string>Copyright © 2015 Anish Athalye. All rights reserved.</string>
+ <string>Copyright © 2015-2016 Anish Athalye. Released under GPLv3.</string>
<key>NSMainNibFile</key>
<string>MainMenu</string>
<key>NSPrincipalClass</key>
View
@@ -1,10 +1,5 @@
-//
-// Model.h
-// Lumen
-//
-// Created by Anish Athalye on 7/21/16.
-// Copyright © 2016 Anish Athalye. All rights reserved.
-//
+// Copyright (c) 2015-2016 Anish Athalye (me@anishathalye.com)
+// Released under GPLv3. See the included LICENSE.txt for details
#import <Foundation/Foundation.h>
View
@@ -1,10 +1,5 @@
-//
-// Model.m
-// Lumen
-//
-// Created by Anish Athalye on 7/21/16.
-// Copyright © 2016 Anish Athalye. All rights reserved.
-//
+// Copyright (c) 2015-2016 Anish Athalye (me@anishathalye.com)
+// Released under GPLv3. See the included LICENSE.txt for details
#import "Model.h"
#import "Constants.h"
View
@@ -1,10 +1,5 @@
-//
-// main.m
-// Lumen
-//
-// Created by Anish Athalye on 4/10/15.
-// Copyright (c) 2015 Anish Athalye. All rights reserved.
-//
+// Copyright (c) 2015-2016 Anish Athalye (me@anishathalye.com)
+// Released under GPLv3. See the included LICENSE.txt for details
#import <Cocoa/Cocoa.h>
View
@@ -1,10 +1,5 @@
-//
-// util.c
-// Lumen
-//
-// Created by Anish Athalye on 4/10/15.
-// Copyright (c) 2015 Anish Athalye. All rights reserved.
-//
+// Copyright (c) 2015-2016 Anish Athalye (me@anishathalye.com)
+// Released under GPLv3. See the included LICENSE.txt for details
#include "util.h"
#include <math.h>
View
@@ -1,10 +1,5 @@
-//
-// util.h
-// Lumen
-//
-// Created by Anish Athalye on 4/10/15.
-// Copyright (c) 2015 Anish Athalye. All rights reserved.
-//
+// Copyright (c) 2015-2016 Anish Athalye (me@anishathalye.com)
+// Released under GPLv3. See the included LICENSE.txt for details
#ifndef __Lumen__util__
#define __Lumen__util__
View
@@ -1,10 +1,5 @@
-//
-// LumenTests.m
-// LumenTests
-//
-// Created by Anish Athalye on 4/10/15.
-// Copyright (c) 2015 Anish Athalye. All rights reserved.
-//
+// Copyright (c) 2015-2016 Anish Athalye (me@anishathalye.com)
+// Released under GPLv3. See the included LICENSE.txt for details
#import <Cocoa/Cocoa.h>
#import <XCTest/XCTest.h>
View
@@ -1,6 +1,12 @@
-Lumen
-=====
+# Lumen
Set screen brightness based on contents.
Control it by just using your brightness keys!
+
+## License
+
+Copyright (c) 2015-2016 Anish Athalye. Released under GPLv3. See
+[LICENSE.txt][license] for details.
+
+[license]: LICENSE.txt

0 comments on commit 9d56104

Please sign in to comment.