Codebase list libflexdock-java / 99d867f
Import Debian changes 1.2.1-1~exp1 libflexdock-java (1.2.1-1~exp1) experimental; urgency=low . * New upstream release * Update of the watch file Sylvestre Ledru authored 11 years ago tony mancill committed 2 years ago
8 changed file(s) with 28 addition(s) and 6 deletion(s). Raw diff Collapse all Expand all
0 build
00 <?xml version="1.0"?>
11 <project name="flexdock" basedir="." default="build.default">
22
3 <property name="version" value="1.2.0" />
3 <property name="version" value="1.2.1" />
44
55 <property file="workingcopy.properties" />
66
0 libflexdock-java (1.2.1-1~exp1) experimental; urgency=low
1
2 * New upstream release
3 * Update of the watch file
4
5 -- Sylvestre Ledru <sylvestre@debian.org> Mon, 24 Dec 2012 08:57:36 +0100
6
07 libflexdock-java (1.2.0-1~exp1) experimental; urgency=low
18
29 * New upstream release
1010 # clean up the upstream tarball
1111 # Export to the $DIR directory since there is no directory in
1212 # the archive
13 unzip $3 -d $DIR
13 tar zxvf $3
1414 tar -c -z -f $TAR -X debian/orig-tar.exclude $DIR
15 rm -rf $DIR $3
15 rm -rf $DIR
1616
1717 # move to directory 'tarballs'
1818 if [ -r .svn/deb-layout ]; then
00 version=3
11 http://forge.scilab.org/index.php/p/flexdock/downloads/direct/ \
2 .*/flexdock-([\d\.]*)-src.zip debian debian/orig-tar.sh
3
2 .*/flexdock-([\d\.]*).tar.gz debian debian/orig-tar.sh
0 == flexdock 1.2.1 RELEASE NOTES ==
1
2 Updates:
3 * Add method org.flexdock.docking.event.hierarchy.DockingPortTracker.remove()
4 to remove objects.
5
06 == flexdock 1.2.0 RELEASE NOTES ==
17
28 Updates:
3131
3232 public static HierarchyListener getInstance() {
3333 return SINGLETON;
34 }
35
36 public static void remove(Component c) {
37 RootWindow window = RootWindow.getRootContainer(c);
38 if (window != null) {
39 synchronized(TRACKERS_BY_WINDOW) {
40 TRACKERS_BY_WINDOW.remove(window);
41 }
42 }
3443 }
3544
3645 public static RootDockingPortInfo getRootDockingPortInfo(Component c) {
2929 /**
3030 * A String representing the flexdock version. This constant is a string.
3131 */
32 public static final String VERSION = "1.2.0";
32 public static final String VERSION = "1.2.1";
3333
3434 private Utilities() {
3535 // does nothing