Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: brailleapps/dotify-cli
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: mtmse/dotify-cli
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 9 commits
  • 6 files changed
  • 3 contributors

Commits on Oct 21, 2019

  1. Merge pull request #2 from brailleapps/master

    Merge from brailleapps
    kalaspuffar authored Oct 21, 2019
    Copy the full SHA
    676e900 View commit details

Commits on Oct 22, 2019

  1. Copy the full SHA
    d1181eb View commit details
  2. Merge pull request #3 from mtmse/code-of-conduct

    Update CODE_OF_CONDUCT.md
    fredrikschill authored Oct 22, 2019
    Copy the full SHA
    95c3434 View commit details

Commits on Feb 25, 2021

  1. Copy the full SHA
    bc79d62 View commit details
  2. Release 3.2.2

    kalaspuffar committed Feb 25, 2021
    Copy the full SHA
    93c01ce View commit details

Commits on Feb 26, 2021

  1. New snapshot version.

    kalaspuffar committed Feb 26, 2021
    Copy the full SHA
    2a701eb View commit details

Commits on Jan 14, 2022

  1. Release 3.2.3

    kalaspuffar committed Jan 14, 2022
    Copy the full SHA
    121bfa7 View commit details
  2. New snapshot version.

    kalaspuffar committed Jan 14, 2022
    Copy the full SHA
    49a2576 View commit details

Commits on Jun 1, 2022

  1. After release 3.2.4

    kalaspuffar committed Jun 1, 2022
    Copy the full SHA
    7c85914 View commit details
Showing with 521 additions and 34 deletions.
  1. +81 −3 CODE_OF_CONDUCT.md
  2. +13 −23 build.gradle
  3. +419 −0 checkstyle.xml
  4. +2 −2 gradle.properties
  5. +2 −2 integrationtest/base/HyphenatorFactoryMakerTestbase.java
  6. +4 −4 integrationtest/base/TaskGroupFactoryMakerTestbase.java
84 changes: 81 additions & 3 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,81 @@
# Code of Conduct
1. This is the Code of Conduct.
1. Anyone advocating or suggesting modifications to this Code of Conduct shall be removed and banished from this organization.
# Dotify Code of Conduct

In the interest of fostering an open and welcoming environment, we as
contributors and maintainers pledge to making participation in our project and
our community a harassment-free experience for everyone, regardless of age, body
size, disability, ethnicity, sex characteristics, gender identity and expression,
level of experience, education, socio-economic status, nationality, personal
appearance, race, religion, or sexual identity and orientation.

## Our Standards

Examples of behavior that contributes to creating a positive environment
include:

* Using welcoming and inclusive language
* Being respectful of differing viewpoints and experiences
* Gracefully accepting constructive criticism
* Focusing on what is best for the community
* Showing empathy towards other community members

Examples of unacceptable behavior by participants include:

* The use of sexualized language or imagery and unwelcome sexual attention or
advances
* Trolling, insulting/derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or electronic
address, without explicit permission
* Other conduct which could reasonably be considered inappropriate in a
professional setting

All Dotify forums and spaces are meant for professional interactions,
and any behavior which could reasonably be considered inappropriate in
a professional setting is unacceptable.

## Our Responsibilities

Project maintainers are responsible for clarifying the standards of acceptable
behavior and are expected to take appropriate and fair corrective action in
response to any instances of unacceptable behavior.

Project maintainers have the right and responsibility to remove, edit, or
reject comments, commits, code, wiki edits, issues, and other contributions
that are not aligned to this Code of Conduct, or to ban temporarily or
permanently any contributor for other behaviors that they deem inappropriate,
threatening, offensive, or harmful.

## Scope

This Code of Conduct applies both within project spaces and in public spaces
when an individual is representing the project or its community. Examples of
representing a project or community include using an official project e-mail
address, posting via an official social media account, or acting as an appointed
representative at an online or offline event. Representation of a project may be
further defined and clarified by project maintainers.

## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting the project team at Fredrik Schill (fredrik@textalk.se) and
Daniel Persson (daniel.persson@textalk.se). All complaints will be reviewed and
investigated and will result in a response that is deemed necessary and appropriate
to the circumstances. The project team is obligated to maintain confidentiality with
regard to the reporter of an incident.Further details of specific enforcement
policies may be posted separately.

Project maintainers who do not follow or enforce the Code of Conduct in good
faith may face temporary or permanent repercussions as determined by other
members of the project's leadership.

## Attribution

This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html

[homepage]: https://www.contributor-covenant.org

For answers to common questions about this code of conduct, see
https://www.contributor-covenant.org/faq

This Code of Conduct also includes some aspects of the TensorFlow Code of Conduct.
36 changes: 13 additions & 23 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -76,7 +76,7 @@ jar.doFirst {

repositories {
mavenCentral()
//mavenLocal()
mavenLocal()
//maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
maven { url "https://oss.sonatype.org/content/groups/staging" }
}
@@ -85,29 +85,19 @@ dependencies {
compileOnly 'org.osgi:org.osgi.service.component.annotations:1.3.0'

compile 'org.daisy.streamline:streamline-cli:1.0.0'
compile ('org.daisy.braille:braille-utils.pef-tools:6.0.0') {
exclude module: 'Saxon-HE'
}
compile 'org.daisy.dotify:dotify.api:5.0.0'
compile 'org.daisy.dotify:dotify.common:4.4.0'
compile ('org.daisy.streamline:streamline-engine:1.3.0') {
exclude module: 'streamline-api'
}
compile 'org.daisy.streamline:streamline-api:1.3.0'

runtimeOnly 'org.daisy.braille:braille-utils.impl:7.0.0'
runtimeOnly ('org.daisy.dotify:dotify.formatter.impl:5.0.2') {
exclude module: 'Saxon-HE'
}
runtimeOnly 'org.daisy.dotify:dotify.hyphenator.impl:5.0.0'
runtimeOnly 'org.daisy.dotify:dotify.text.impl:5.0.0'
runtimeOnly 'org.daisy.dotify:dotify.translator.impl:5.0.0'
runtimeOnly ('org.daisy.dotify:dotify.task.impl:4.7.0') {
exclude module: 'Saxon-HE'
exclude module: 'streamline-api'
}
compile 'org.daisy.streamline:streamline-api:1.5.0'
compile ('org.daisy.streamline:streamline-engine:1.3.0') {
exclude module: 'streamline-api'
}
compile 'org.daisy.dotify:dotify.library:1.0.5-SNAPSHOT'

runtimeOnly ('org.daisy.dotify:dotify.task.impl:5.0.1') {
exclude module: 'Saxon-HE'
exclude module: 'streamline-api'
exclude module: 'dotify.api'
exclude module: 'dotify.common'
}
runtimeOnly group: "com.googlecode.texhyphj", name: "texhyphj", version: "1.2"
//runtimeOnly 'xerces:xercesImpl:2.11.0'
runtimeOnly 'org.slf4j:slf4j-jdk14:1.7.2'

testImplementation group: 'junit', name: 'junit', version: "$versions.junit"
Loading