File tree 7 files changed +17
-16
lines changed
7 files changed +17
-16
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 2.3 .0
2
+ current_version = 2.4 .0
3
3
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<release>\w+))?
4
4
tag = False
5
5
commit = True
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ notification:
10
10
language : clojure
11
11
lein : lein
12
12
before_install :
13
- - rvm install 2.3 .0
13
+ - rvm install 2.4 .0
14
14
- gem install travis-custom-deploy
15
15
before_script :
16
16
- sh -e /etc/init.d/xvfb start
@@ -24,7 +24,7 @@ script:
24
24
- lein launch4j
25
25
26
26
after_success :
27
- - travis-custom-deploy sftp target/mincer-2.3 .0-standalone.jar target/mincer-2.3 .0.exe
27
+ - travis-custom-deploy sftp target/mincer-2.4 .0-standalone.jar target/mincer-2.4 .0.exe
28
28
env :
29
29
global :
30
30
- DISPLAY=:99.0
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ Mincer supports two usage modes: batch/CLI and GUI modes.
17
17
To start the graphical user-interface run the provided jar without arguments:
18
18
19
19
```
20
- $ java -jar mincer-2.3 .0-standalone.jar
20
+ $ java -jar mincer-2.4 .0-standalone.jar
21
21
```
22
22
23
23
### CLI
Original file line number Diff line number Diff line change 2
2
<launch4jConfig >
3
3
<dontWrapJar >false</dontWrapJar >
4
4
<headerType >gui</headerType >
5
- <jar >target/mincer-2.3 .0-standalone.jar</jar >
6
- <outfile >target/mincer-2.3 .0.exe</outfile >
5
+ <jar >target/mincer-2.4 .0-standalone.jar</jar >
6
+ <outfile >target/mincer-2.4 .0.exe</outfile >
7
7
<errTitle ></errTitle >
8
8
<priority >normal</priority >
9
9
<downloadUrl >http://java.com/download</downloadUrl >
23
23
</jre >
24
24
<versionInfo >
25
25
<fileVersion >0.0.0.1</fileVersion >
26
- <txtFileVersion >2.3 .0-dev</txtFileVersion >
26
+ <txtFileVersion >2.4 .0-dev</txtFileVersion >
27
27
<fileDescription >mincer</fileDescription >
28
28
<copyright >ISC</copyright >
29
29
<productVersion >0.0.0.1</productVersion >
30
- <txtProductVersion >2.3 .0-dev</txtProductVersion >
30
+ <txtProductVersion >2.4 .0-dev</txtProductVersion >
31
31
<productName >mincer</productName >
32
32
<companyName ></companyName >
33
33
<internalName >mincer</internalName >
34
- <originalFilename >mincer-2.3 .0.exe</originalFilename >
34
+ <originalFilename >mincer-2.4 .0.exe</originalFilename >
35
35
</versionInfo >
36
36
<messages >
37
37
<startupErr >Startup Error</startupErr >
Original file line number Diff line number Diff line change 1
- (defproject mincer " 2.3 .0"
1
+ (defproject mincer " 2.4 .0"
2
2
:description " Tool to create a SQLite database from PlüS module tree and data XML files."
3
3
:url " https://github.com/plues/mincer"
4
4
:license {:name " Eclipse Public License"
17
17
[lein-launch4j " 0.1.2" ]]
18
18
:launch4j-config-file " config.xml"
19
19
:launch4j-install-dir ~(System/getenv " LAUNCH4J_INSTALL_DIR" )
20
- :main mincer.core
21
- :aot [ mincer.core] )
20
+ :profiles { :uberjar { :aot :all }}
21
+ :main mincer.core )
Original file line number Diff line number Diff line change 5
5
[clojure.java.jdbc :refer [with-db-transaction]]
6
6
[clojure.tools.logging :as log]))
7
7
8
- (def mincer-version " 2.3 .0" ) ; updated with bumpversion
8
+ (def mincer-version " 2.4 .0" ) ; updated with bumpversion
9
9
10
10
(defn now [] (new java.util.Date))
11
11
142
142
" CREATE INDEX session_group_id ON sessions(group_id)"
143
143
144
144
(jdbc/create-table-ddl :log
145
- [[:session_id :integer " NOT NULL" " REFERENCES sessions" ]
145
+ [[:id :integer " PRIMARY KEY" " AUTOINCREMENT" ]
146
+ [:session_id :integer " NOT NULL" " REFERENCES sessions" ]
146
147
[:srcDay :string ]
147
148
[:srcTime :integer ]
148
149
[:targetDay :string ]
151
152
" CREATE INDEX log_session_id ON log(session_id)" ])
152
153
153
154
(jdbc/insert! db-con :info {:key " schema_version"
154
- :value (str " v7.0 " )})
155
+ :value (str " v7.1 " )})
155
156
(jdbc/insert! db-con :info {:key " generator"
156
157
:value (str " mincer" " -" mincer-version)})
157
158
(jdbc/insert! db-con :info {:key " generated"
Original file line number Diff line number Diff line change 171
171
[(label ::mincer )
172
172
(label :icon logo)
173
173
(label ::file-select )
174
- (label " 2.3 .0" ) ; managed by bumpversion
174
+ (label " 2.4 .0" ) ; managed by bumpversion
175
175
meta-button
176
176
meta-text
177
177
source-button
You can’t perform that action at this time.
0 commit comments