diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2558c91..7479bc7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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 @@ -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 @@ -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 @@ -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. diff --git a/LICENSE b/LICENSE index 81ce7b2..c2356b9 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright 2022 apm.to Inc. +Copyright 2024 apm.to Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/LICENSES/MIT.txt b/LICENSES/MIT.txt index 5a28351..d13cc4b 100644 --- a/LICENSES/MIT.txt +++ b/LICENSES/MIT.txt @@ -1,7 +1,5 @@ The MIT License (MIT) -Copyright (c) 2022 Marc Bernard - 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 diff --git a/README.md b/README.md index 8b545e8..e219c65 100644 --- a/README.md +++ b/README.md @@ -203,5 +203,5 @@ Made with ❤ in Canada Copyright 2025 apm.to Inc. -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 diff --git a/package.abap.json b/package.abap.json index c792774..ec2eec1 100644 --- a/package.abap.json +++ b/package.abap.json @@ -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", @@ -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": { @@ -26,7 +26,7 @@ } ], "repository": { - "url": "https://github.com/abapPM/ABAP-XXX" + "url": "https://github.com/abapPM/ABAP-HTML-Diff" }, "funding": { "type": "github", diff --git a/src/zcl_htmldiff.clas.abap b/src/zcl_htmldiff.clas.abap index a76f10b..cddc98f 100644 --- a/src/zcl_htmldiff.clas.abap +++ b/src/zcl_htmldiff.clas.abap @@ -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 +* Copyright 2024 apm.to Inc. * SPDX-License-Identifier: MIT ************************************************************************ diff --git a/src/zif_htmldiff.intf.abap b/src/zif_htmldiff.intf.abap index f28a302..cd479f9 100644 --- a/src/zif_htmldiff.intf.abap +++ b/src/zif_htmldiff.intf.abap @@ -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 +* Copyright 2024 apm.to Inc. * SPDX-License-Identifier: MIT ************************************************************************