Skip to content

Commit

Permalink
1.4 RELEASE
Browse files Browse the repository at this point in the history
Added Compare Frame
Changed Delete Icon
Fixed Language Problems in Filenameparser
Updated .gitignore to include libraries
  • Loading branch information
Mikescher committed Apr 2, 2013
1 parent 08ffb9e commit 3fa3624
Show file tree
Hide file tree
Showing 31 changed files with 363 additions and 219 deletions.
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,14 @@ ClipCornDB/
ClipCornDB*/
data/
jClipCorn_backup/
build/
javadoc/
jClipCorn_backup/

DerbManager*.jar

*.bat
*.jar

*.log
*jClipCorn.properties
*.lnk
Expand Down
Binary file added lib/DdlUtils-1.0.jar
Binary file not shown.
Binary file added lib/Fast-MD5.jar
Binary file not shown.
Binary file added lib/commons-beanutils-1.8.3.jar
Binary file not shown.
Binary file added lib/commons-betwixt-0.8.jar
Binary file not shown.
Binary file added lib/commons-collections-3.2.1.jar
Binary file not shown.
Binary file added lib/commons-digester-2.1.jar
Binary file not shown.
Binary file added lib/commons-lang-2.6.jar
Binary file not shown.
Binary file added lib/commons-logging-1.1.1.jar
Binary file not shown.
Binary file added lib/derby-10.9.1.0.jar
Binary file not shown.
Binary file added lib/forms-1.3.jar
Binary file not shown.
Binary file added lib/jdom-2.0.4.jar
Binary file not shown.
Binary file added lib/json.jar
Binary file not shown.
Binary file added lib/laf-plugin-7.2.1.jar
Binary file not shown.
Binary file added lib/laf-widget-7.2.1.jar
Binary file not shown.
Binary file added lib/substance-7.2.1.jar
Binary file not shown.
Binary file added lib/trident-7.2.1.jar
Binary file not shown.
Binary file added res/icons/toolbar/balance_unbalance.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified res/icons/toolbar/recycle.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 4 additions & 2 deletions src/de/jClipCorn/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

public class Main {
public final static String TITLE = "jClipCorn"; //$NON-NLS-1$
public final static String VERSION = "1.3"; //$NON-NLS-1$
public final static String VERSION = "1.4"; //$NON-NLS-1$
public final static String DBVERSION = "1.5"; //$NON-NLS-1$

private final static String PROPERTIES_PATH = "jClipcorn.properties"; //$NON-NLS-1$
Expand Down Expand Up @@ -75,4 +75,6 @@ private static void init() {

//TODO Parsd die Lang hieraus net: "Last Samurai [Eng] (Part 1).avi"

//TODO Title von Fenster mit Grossbuchstaben anfangen (addMov, getCover)
//TODO Title von Fenster mit Grossbuchstaben anfangen (addMov, getCover)

//TODO Apache Commons hacken und duplicate entry removen
2 changes: 1 addition & 1 deletion src/de/jClipCorn/gui/Resources.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class Resources {
public final static String ICN_MENUBAR_MOVESERIES = registerICN("/icons/toolbar/move_to_folder.png");
public final static String ICN_MENUBAR_FILENAMERULES = registerICN("/icons/toolbar/books.png");
public final static String ICN_MENUBAR_CREATE_JXMLBKP = registerICN("/icons/toolbar/source_code.png");

public final static String ICN_MENUBAR_COMPARE = registerICN("/icons/toolbar/balance_unbalance.png");
// ############################################# </MENUBAR> ############################################


Expand Down
2 changes: 1 addition & 1 deletion src/de/jClipCorn/gui/actionTree/CCActionTree.java
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ public void actionPerformed(ActionEvent e) {
}
});

temp = extras.addChild(new CCActionElement("CompareDBs", "", null));
temp = extras.addChild(new CCActionElement("CompareDBs", "ClipMenuBar.Extras.CompareDBs", Resources.ICN_MENUBAR_COMPARE));
temp.addListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
Expand Down
Loading

0 comments on commit 3fa3624

Please sign in to comment.