Stefan Schuermans commited on 2011-09-10 16:17:50
Showing 6 changed files, with 20 additions and 54 deletions.
... | ... |
@@ -1,22 +1,22 @@ |
1 | 1 |
BlinkenLibJava |
2 |
-Copyright (C) 2004-2009: Stefan Schuermans <stefan@schuermans.info> |
|
2 |
+Copyright (C) 2004-2011: Stefan Schuermans <stefan@schuermans.info> |
|
3 | 3 |
Copyleft: GNU public license - http://www.gnu.org/copyleft/gpl.html |
4 | 4 |
a blinkenarea.org project |
5 | 5 |
|
6 |
-version 0.1.4 date 2009-11-21 |
|
7 |
------------------------------ |
|
8 |
- - fixed bug in resizing when increasing number of channels |
|
6 |
+0.1.4 2009-11-21 |
|
7 |
+---------------- |
|
8 |
+fixed bug in resizing when increasing number of channels |
|
9 | 9 |
|
10 |
-version 0.1.3 date 2008-09-29 |
|
11 |
------------------------------ |
|
12 |
- - fixed bug when overwriting bbm files with shorter data |
|
13 |
- - tuncation of file after end of data was not done |
|
10 |
+0.1.3 2008-09-29 |
|
11 |
+---------------- |
|
12 |
+fixed bug when overwriting bbm files with shorter data |
|
13 |
+ tuncation of file after end of data was not done |
|
14 | 14 |
|
15 |
-version 0.1.2 date 2008-08-10 |
|
16 |
------------------------------ |
|
17 |
- - fixed bug in resizing frames if adding channels |
|
15 |
+0.1.2 2008-08-10 |
|
16 |
+---------------- |
|
17 |
+fixed bug in resizing frames if adding channels |
|
18 | 18 |
|
19 |
-version 0.1.1 date 2006-10-17 |
|
20 |
------------------------------ |
|
21 |
- - fixed bug in resizing frames if adding channels |
|
22 |
- - first public version |
|
19 |
+0.1.1 2006-10-17 |
|
20 |
+---------------- |
|
21 |
+fixed bug in resizing frames if adding channels |
|
22 |
+first public version |
... | ... |
@@ -1,6 +1,5 @@ |
1 | 1 |
# BlinkenLib |
2 |
-# version 0.1.4 date 2009-11-21 |
|
3 |
-# Copyright (C) 2004-2009: Stefan Schuermans <stefan@schuermans.info> |
|
2 |
+# Copyright (C) 2004-2011: Stefan Schuermans <stefan@schuermans.info> |
|
4 | 3 |
# Copyleft: GNU public license - http://www.gnu.org/copyleft/gpl.html |
5 | 4 |
# a blinkenarea.org project |
6 | 5 |
|
... | ... |
@@ -27,7 +26,7 @@ jar: BlinkenLib.jar |
27 | 26 |
$(JAVAC) $< |
28 | 27 |
|
29 | 28 |
BlinkenLib.keystore: |
30 |
- $(KEYTOOL) -genkey -alias BlinkenLib -keystore BlinkenLib.keystore -keypass $(KEYPASS) -storepass $(KEYPASS) |
|
29 |
+ $(KEYTOOL) -genkey -alias BlinkenLib -keystore BlinkenLib.keystore -keypass $(KEYPASS) -storepass $(KEYPASS) -dname cn=BlinkenLib -validity 3560 |
|
31 | 30 |
|
32 | 31 |
BlinkenLib.jar: BlinkenLib.keystore $(CLASS_FILES) |
33 | 32 |
$(JAR) cf BlinkenLib.jar $(CLASS_FILES) |
... | ... |
@@ -1,30 +0,0 @@ |
1 |
-#! /bin/sh |
|
2 |
- |
|
3 |
-NAME=BlinkenLibJava |
|
4 |
-VERSION_FILE=Makefile |
|
5 |
- |
|
6 |
-VERSION=$(cat $VERSION_FILE | grep 'version [0-9]\+\.[0-9]\+\(\.[0-9]\+\)\?' | sed 's/^.*version \([0-9]\+\.[0-9]\+\(\.[0-9]\+\)\?\).*$/\1/') |
|
7 |
-DATE=$(cat $VERSION_FILE | grep 'date [0-9]\+-[0-9]\+-[0-9]\+' | sed 's/^.*date \([0-9]\+-[0-9]\+-[0-9]\+\).*$/\1/') |
|
8 |
- |
|
9 |
-PACK="${NAME}-${VERSION}_${DATE}" |
|
10 |
- |
|
11 |
-FILES="ChangeLog Makefile org/blinkenarea/BlinkenLib/*.java mkpack.sh" |
|
12 |
- |
|
13 |
-rm -rf $PACK |
|
14 |
-mkdir $PACK |
|
15 |
- |
|
16 |
-for FILE in $FILES |
|
17 |
-do |
|
18 |
- mkdir -p $(dirname $PACK/$FILE) |
|
19 |
- cp $FILE $PACK/$FILE |
|
20 |
-done |
|
21 |
- |
|
22 |
-ARCH=$PACK.tar.bz2 |
|
23 |
-if [ -f $ARCH ] |
|
24 |
-then |
|
25 |
- ARCH=$ARCH.new |
|
26 |
-fi |
|
27 |
- |
|
28 |
-tar jcf $ARCH $PACK |
|
29 |
-rm -rf $PACK |
|
30 |
- |
... | ... |
@@ -1,6 +1,5 @@ |
1 | 1 |
/* BlinkenLib |
2 |
- * version 0.1.4 date 2009-11-21 |
|
3 |
- * Copyright (C) 2004-2009: Stefan Schuermans <stefan@schuermans.info> |
|
2 |
+ * Copyright (C) 2004-2011: Stefan Schuermans <stefan@schuermans.info> |
|
4 | 3 |
* Copyleft: GNU public license - http://www.gnu.org/copyleft/gpl.html |
5 | 4 |
* a blinkenarea.org project |
6 | 5 |
*/ |
... | ... |
@@ -1,6 +1,5 @@ |
1 | 1 |
/* BlinkenLib |
2 |
- * version 0.1.4 date 2009-11-21 |
|
3 |
- * Copyright (C) 2004-2009: Stefan Schuermans <stefan@schuermans.info> |
|
2 |
+ * Copyright (C) 2004-2011: Stefan Schuermans <stefan@schuermans.info> |
|
4 | 3 |
* Copyleft: GNU public license - http://www.gnu.org/copyleft/gpl.html |
5 | 4 |
* a blinkenarea.org project |
6 | 5 |
*/ |
... | ... |
@@ -1,6 +1,5 @@ |
1 | 1 |
/* BlinkenLib |
2 |
- * version 0.1.4 date 2009-11-21 |
|
3 |
- * Copyright (C) 2004-2009: Stefan Schuermans <stefan@schuermans.info> |
|
2 |
+ * Copyright (C) 2004-2011: Stefan Schuermans <stefan@schuermans.info> |
|
4 | 3 |
* Copyleft: GNU public license - http://www.gnu.org/copyleft/gpl.html |
5 | 4 |
* a blinkenarea.org project |
6 | 5 |
*/ |
7 | 6 |