Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Contributing to Marc Bernard Tools
# Contributing to apm

Marc Bernard Tools welcomes your suggestions and contributions! Before opening your first issue or pull request, please review our [Code of Conduct](https://github.com/Marc-Bernard-Tools/.github/blob/main/CODE_OF_CONDUCT.md) to understand how our community interacts in an inclusive and respectful manner.
apm welcomes your suggestions and contributions! Before opening your first issue or pull request, please review our [Code of Conduct](CODE_OF_CONDUCT.md) to understand how our community interacts in an inclusive and respectful manner.

## General Advice

Expand All @@ -12,7 +12,7 @@ Marc Bernard Tools welcomes your suggestions and contributions! Before opening y

* Commit often, whenever something is working, and is a step in the right direction do a commit or PR. This way other contributors can see the changes, and it will minimize the risk of merge conflicts.

* If you don't have the time or knowledge to fix the problem yourself, you can still make it move along faster by providing an accurate description or a repo which reproduces the issue.
* If you don't have the time or knowledge to fix the problem yourself, you can still make it move along faster by providing an accurate description or a repo that reproduces the issue.

## Bug Reports

Expand All @@ -32,7 +32,7 @@ A good bug report should not leave others needing to chase you up for more infor

### Compatibility

Marc Bernard Tools are targeted for SAP Basis 7.31 and higher, so the code should only contain expressions and statements that works on 7.31. abaplint will automatically check every pull request for language syntax that is not available on these releases.
apm is targeted for SAP Basis 7.40 and higher, so the code should only contain expressions and statements that work on 7.40. abaplint will automatically check every pull request for language syntax that is not available on these releases.

### Linting

Expand All @@ -48,10 +48,10 @@ Variables are prefixed using the standard setting in [abapOpenChecks](http://doc

### Internationalization (I18N)

Currently, Marc Bernard Tools support only English language. Neither objects nor text literals are translated. Therefore, all objects shall be set to English as the original language. Text literals in the code shall be maintained in English.
Currently, apm supports only the English language. Neither objects nor text literals are translated. Therefore, all objects shall be set to English as the original language. Text literals in the code shall be maintained in English.

## Contribution Licensing

Most of our code is distributed under the terms of the [license](LICENSE), and when you contribute code that you wrote to our repositories, you agree that you are contributing under those same terms. In addition, by submitting your contributions you are indicating that you have the right to submit those contributions under those terms.

If you wish to contribute code or documentation *authored by others*, or using the terms of any other license, please indicate that clearly in your pull request so that the project team can discuss the situation with you.
If you wish to contribute code or documentation *authored by others* or use the terms of any other license, please indicate that clearly in your pull request so that the project team can discuss the situation with you.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright 2022 apm.to Inc. <https://apm.to>
Copyright 2024 apm.to Inc. <https://apm.to>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 0 additions & 2 deletions LICENSES/MIT.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
The MIT License (MIT)

Copyright (c) 2022 Marc Bernard <https://marcbernardtools.com/>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,5 +203,5 @@ Made with ❤ in Canada

Copyright 2025 apm.to Inc. <https://apm.to>

Follow [@marcf.be](https://bsky.app/profile/marcf.be) on Blueksy and [@marcfbe](https://linkedin.com/in/marcfbe) or LinkedIn
Follow [@marcf.be](https://bsky.app/profile/marcf.be) on Bluesky and [@marcfbe](https://linkedin.com/in/marcfbe) or LinkedIn

10 changes: 5 additions & 5 deletions package.abap.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "xxx",
"version": "1.0.0",
"description": "XXX",
"name": "html-diff",
"version": "1.0.1",
"description": "HTML Diff",
"type": "module",
"keywords": [
"abap",
Expand All @@ -10,7 +10,7 @@
],
"homepage": "https://abappm.com",
"bugs": {
"url": "https://github.com/abapPM/ABAP-XXX"
"url": "https://github.com/abapPM/ABAP-HTML-Diff"
},
"license": "MIT",
"author": {
Expand All @@ -26,7 +26,7 @@
}
],
"repository": {
"url": "https://github.com/abapPM/ABAP-XXX"
"url": "https://github.com/abapPM/ABAP-HTML-Diff"
},
"funding": {
"type": "github",
Expand Down
4 changes: 1 addition & 3 deletions src/zcl_htmldiff.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,11 @@ CLASS zcl_htmldiff DEFINITION
************************************************************************
* ABAP HTML Diff
*
* https://github.com/Marc-Bernard-Tools/ABAP-HTML-Diff
*
* This is a port of JavaScript (https://github.com/alaorneto/htmldiffer, no license)
* which is a port of CoffeeScript (https://github.com/tnwinc/htmldiff.js, MIT license)
* which is a port of the original Ruby (https://github.com/myobie/htmldiff, MIT license)
*
* Copyright 2022 Marc Bernard <https://marcbernardtools.com/>
* Copyright 2024 apm.to Inc. <https://apm.to>
* SPDX-License-Identifier: MIT
************************************************************************

Expand Down
4 changes: 1 addition & 3 deletions src/zif_htmldiff.intf.abap
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,11 @@ INTERFACE zif_htmldiff PUBLIC.
************************************************************************
* ABAP HTML Diff Interface
*
* https://github.com/Marc-Bernard-Tools/ABAP-HTML-Diff
*
* This is a port of JavaScript (https://github.com/alaorneto/htmldiffer, no license)
* which is a port of CoffeeScript (https://github.com/tnwinc/htmldiff.js, MIT license)
* which is a port of the original Ruby (https://github.com/myobie/htmldiff, MIT license)
*
* Copyright 2022 Marc Bernard <https://marcbernardtools.com/>
* Copyright 2024 apm.to Inc. <https://apm.to>
* SPDX-License-Identifier: MIT
************************************************************************

Expand Down