Skip to content

Commit

Permalink
Preparation for version 1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Mar 31, 2016
1 parent 3ab0769 commit 49d1943
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
@@ -1,3 +1,6 @@
Version 1.2
- ...

Version 1.1.1
- File names comply with flickr guidelines

Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,7 +1,7 @@
# EasyFlickrBackup
Easy to use application to download and backup all your photos in original size from flickr.

* Current version: 1.1.1
* Current version: 1.2
* License: MIT License

![Screenshot](https://farm2.staticflickr.com/1701/25533200184_03355b0172_o_d.png)
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.lutana</groupId>
<artifactId>EasyFlickrBackup</artifactId>
<version>1.1.1</version>
<version>1.2</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/de/lutana/easyflickrbackup/AboutDlg.form
Expand Up @@ -89,7 +89,7 @@
<Font bold="true" component="jLabel1" property="font" relativeSize="true" size="0"/>
</FontInfo>
</Property>
<Property name="text" type="java.lang.String" value="EasyFlickrBackup 1.1.1"/>
<Property name="text" type="java.lang.String" value="EasyFlickrBackup 1.2"/>
</Properties>
</Component>
<Component class="javax.swing.JLabel" name="jLabel2">
Expand Down Expand Up @@ -135,7 +135,7 @@
<Property name="editable" type="boolean" value="false"/>
<Property name="columns" type="int" value="20"/>
<Property name="rows" type="int" value="5"/>
<Property name="text" type="java.lang.String" value="Version 1.1.1&#xa;- File names comply with flickr guidelines&#xa;&#xa;Version 1.1&#xa;- Download process about 10 times faster&#xa;- Pause &amp; Resume the download process at any time&#xa;- Store files in a separate directory per user&#xa;&#xa;Version 1.0&#xa;- Initial release"/>
<Property name="text" type="java.lang.String" value="Version 1.2&#xa;- ...&#xa;&#xa;Version 1.1.1&#xa;- File names comply with flickr guidelines&#xa;&#xa;Version 1.1&#xa;- Download process about 10 times faster&#xa;- Pause &amp; Resume the download process at any time&#xa;- Store files in a separate directory per user&#xa;&#xa;Version 1.0&#xa;- Initial release"/>
</Properties>
</Component>
</SubComponents>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/de/lutana/easyflickrbackup/AboutDlg.java
Expand Up @@ -61,7 +61,7 @@ private void initComponents() {
setResizable(false);

jLabel1.setFont(jLabel1.getFont().deriveFont(jLabel1.getFont().getStyle() | java.awt.Font.BOLD));
jLabel1.setText("EasyFlickrBackup 1.1.1");
jLabel1.setText("EasyFlickrBackup 1.2");

jLabel2.setText("MIT License");

Expand All @@ -82,7 +82,7 @@ public void mouseClicked(java.awt.event.MouseEvent evt) {
jTextArea1.setEditable(false);
jTextArea1.setColumns(20);
jTextArea1.setRows(5);
jTextArea1.setText("Version 1.1.1\n- File names comply with flickr guidelines\n\nVersion 1.1\n- Download process about 10 times faster\n- Pause & Resume the download process at any time\n- Store files in a separate directory per user\n\nVersion 1.0\n- Initial release");
jTextArea1.setText("Version 1.2\n- ...\n\nVersion 1.1.1\n- File names comply with flickr guidelines\n\nVersion 1.1\n- Download process about 10 times faster\n- Pause & Resume the download process at any time\n- Store files in a separate directory per user\n\nVersion 1.0\n- Initial release");
jScrollPane1.setViewportView(jTextArea1);

jLabel7.setText("License:");
Expand Down

0 comments on commit 49d1943

Please sign in to comment.