Skip to content

Commit

Permalink
Finish v1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
pinhead84 committed Dec 9, 2018
2 parents 4e02116 + 1619494 commit c1abbf8
Show file tree
Hide file tree
Showing 1,128 changed files with 81,412 additions and 75,629 deletions.
84 changes: 82 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,82 @@
/release/
/target/
target/


#
# Default entries for IntelliJ IDEA
# based on https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore
#

# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839

# User-specific stuff
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/dictionaries/*
.idea/**/shelf

# Generated files
.idea/**/contentModel.xml

# Sensitive or high-churn files
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml

# Gradle
.idea/**/gradle.xml
.idea/**/libraries

# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn. Uncomment if using
# auto-import.
.idea/modules.xml
.idea/*.iml
.idea/modules

# CMake
cmake-build-*/

# Mongo Explorer plugin
.idea/**/mongoSettings.xml

# File-based project format
*.iws

# IntelliJ
out/

# mpeltonen/sbt-idea plugin
.idea_modules/

# JIRA plugin
atlassian-ide-plugin.xml

# Cursive Clojure plugin
.idea/replstate.xml

# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties

# Editor-based Rest Client
.idea/httpRequests

# Android studio 3.1+ serialized cache file
.idea/caches/build_file_checksums.ser


#
# Modifications to the default entries.
#

# Keep a global dictionary in repository.
!.idea/**/dictionaries/global.xml
47 changes: 47 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

35 changes: 35 additions & 0 deletions .idea/dictionaries/global.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 28 additions & 0 deletions .idea/runConfigurations/Build.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 27 additions & 0 deletions .idea/runConfigurations/Clean.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 30 additions & 0 deletions .idea/runConfigurations/Release.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 30 additions & 0 deletions .idea/runConfigurations/Release___Deploy.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 32 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,37 @@
Changelog for OpenEstate-IO
===========================

1.4 (not released yet)
----------------------

- Added [automatic module names](http://branchandbound.net/blog/java/2017/12/automatic-module-name/)
into JAR manifests.
- Updated `commons-codec` library to version 1.11.
- Updated `commons-csv` library to version 1.6.
- Updated `commons-io` library to version 2.6.
- Updated `commons-lang` library to version 3.8.1.
- Updated `commons-text` library to version 1.3.
- **API change:** The XML format of *trovit.com* was rewritten from scratch.
Because *trovit.com* does not provide a XML schema anymore we've created
our own unofficial XML schema, that is used for generation of Java classes
via JAXB. The new implementation contains some additions (e.g. new XML
elements, new property types). Due to the new schema some of the generated
JAXB classes were renamed, improved and simplified.
- **API change:** The XML format of *kyero.com* has been updated to the latest
version 3.4 (11th August 2017). This update adds some XML elements and
removes some languages. Take a look at
[their specification](http://help.kyero.com/article/354-xml-import-specification)
for more information.
- **API change:** We're using `java.net.URI` instead of `java.net.URL`
in the XML formats of *daft.ie*, *kyero.com* and *IS24* whenever possible.
See [Always read the documentation/code – a.k.a. java.net.URL is evil](https://sworddance.com/blog/2007/09/09/code-review-4-always-read-the-documentationcode-aka-javaneturl-is-evil/)
for more information.
- **API change:** JAXB classes were regenerated with compatibility for Bean
Introspection API's. Getter methods for `Boolean` values were renamed from
`getValue()` to `isValue()`.
- Migrated project to IntelliJ IDEA.


1.3 (29 Jul 2017)
-----------------

Expand Down Expand Up @@ -55,7 +86,7 @@ Changelog for OpenEstate-IO

- The library is available through [Maven Central Repository](http://search.maven.org/#search|ga|1|org.openestate.io)
from this release on. See [documentation page about Maven](https://github.com/OpenEstate/OpenEstate-IO/wiki/Integration-with-Maven)
for more informations.
for more information.
- implemented *FMPXMLLAYOUT* & *FMPXMLRESULT* format of *Filemaker* databases

### updates
Expand Down
4 changes: 2 additions & 2 deletions CasaIT/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/release/
/target/
release/
target/
Loading

0 comments on commit c1abbf8

Please sign in to comment.