Skip to content

Commit

Permalink
java jdk 8 e geçildi
Browse files Browse the repository at this point in the history
  • Loading branch information
mdpinar committed Oct 14, 2018
1 parent fbe1047 commit c944036
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ You may visit the following sites to get more information about the project

| Tools | Versions | Purpose |
|-------------------|:--------:|------------------------------------------------|
| Java | 1.6 | Backend development platform |
| Java | 1.8 | Backend development platform |
| Scala | 2.10 | Template preparing language |
| Play Framework | 2.2.4 | RestFUL WEB framework for Java and Scala |
| Linux | Mint | Open source operating system |
Expand Down
2 changes: 1 addition & 1 deletion app/models/temporal/ProfileData.java
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ public ProfileData() {
this.gnel_excCode = GlobalCons.defaultExcCode;
this.gnel_hasExchangeSupport = Boolean.TRUE;

this.gnel_reportUnit = ReportUnit.Pdf;
this.gnel_reportUnit = ReportUnit.Html;
this.gnel_docNoIncType = DocNoIncType.Manual;
this.gnel_receiptNoRnwType = ReceiptNoRnwType.Free;
this.gnel_pennyDigitNumber = 2;
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import play.Project._

name := "seyhan"

version := "1.0.22"
version := "1.0.23"

libraryDependencies ++= Seq(
jdbc,
Expand Down
2 changes: 1 addition & 1 deletion conf/application.conf
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ db.default.acquireRetryAttempts=5
db.default.acquireRetryDelay=5 seconds
db.default.logStatements=true

java.source=1.6
java.source=1.8

#
# You can expose this datasource via JNDI if needed (Useful for JPA)
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.en
Original file line number Diff line number Diff line change
Expand Up @@ -1128,7 +1128,7 @@ dialogs.workspace.selection.tableList3=If you want to create a new workspace, yo
dialogs.data_transfer.ws2ws.title=Data transfer between two workspaces

dialogs.index.os.title=Operating system independent
dialogs.index.os.desc=Works on all operating systems that Java 1.6+ be able to work; linux, unix, mac, windows...
dialogs.index.os.desc=Works on all operating systems that Java 1.8+ be able to work; linux, unix, mac, windows...
dialogs.index.db.title=Database independent
dialogs.index.db.desc=Works on all popular databases; mysql, postgresql, mssql, h2...
dialogs.index.browser.title=Browser independent
Expand Down
2 changes: 1 addition & 1 deletion conf/messages.tr
Original file line number Diff line number Diff line change
Expand Up @@ -1128,7 +1128,7 @@ dialogs.workspace.selection.tableList3=Yeni bir firma oluşturmak istiyorsanız
dialogs.data_transfer.ws2ws.title=İki Firma arasında veri transferi

dialogs.index.os.title=İşletim sistemi bağımsız
dialogs.index.os.desc=Java 1.6+ platformunun çalışabildiği tüm sistemlerde çalışır; linux, unix, mac, windows...
dialogs.index.os.desc=Java 1.8+ platformunun çalışabildiği tüm sistemlerde çalışır; linux, unix, mac, windows...
dialogs.index.db.title=Veritabanı bağımsız
dialogs.index.db.desc=Popüler ilişkisel veritabanları ile çalışır; mysql, postgresql, mssql, h2...
dialogs.index.browser.title=Tarayıcı bağımsız
Expand Down
2 changes: 1 addition & 1 deletion scripts/seyhandaemon.sh
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ get_mem_opts () {
if [[ "${java_opts}" == *-Xmx* ]] || [[ "${java_opts}" == *-Xms* ]] || [[ "${java_opts}" == *-XX:MaxPermSize* ]] || [[ "${java_opts}" == *-XX:ReservedCodeCacheSize* ]]; then
echo ""
else
echo "-Xms${mem}m -Xmx${mem}m -XX:MaxPermSize=${perm}m -XX:ReservedCodeCacheSize=${codecache}m"
echo "-Xms${mem}m -Xmx${mem}m -XX:ReservedCodeCacheSize=${codecache}m"
fi
}
require_arg () {
Expand Down
2 changes: 1 addition & 1 deletion scripts/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ get_mem_opts () {
if [[ "${java_opts}" == *-Xmx* ]] || [[ "${java_opts}" == *-Xms* ]] || [[ "${java_opts}" == *-XX:MaxPermSize* ]] || [[ "${java_opts}" == *-XX:ReservedCodeCacheSize* ]]; then
echo ""
else
echo "-Xms${mem}m -Xmx${mem}m -XX:MaxPermSize=${perm}m -XX:ReservedCodeCacheSize=${codecache}m"
echo "-Xms${mem}m -Xmx${mem}m -XX:ReservedCodeCacheSize=${codecache}m"
fi
}
require_arg () {
Expand Down
5 changes: 4 additions & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
sürüm 1.0.22 - 09/09/2018
sürüm 1.0.23 - 14/10/2018
- java jdk 8 e geçildi

sürüm 1.0.22 - 09/09/2018
- stok ve fatura formlarında KDV Dahil seçildiğinde KDV değeri doğru hesaplanmıyordu, düzeltildi

sürüm 1.0.21 - 29/07/2018
Expand Down

0 comments on commit c944036

Please sign in to comment.