Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor typos fixed in readme. My first contribution and pull request. #4

Open
wants to merge 41 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
6c33880
export deepsee artefacts now supported
gevorg95 Mar 26, 2018
08b466b
Update README.md
gevorg95 Mar 26, 2018
4db3b48
Update README.md
evshvarov Mar 31, 2018
4dbbd12
Update README.md
evshvarov Mar 31, 2018
dc53d39
move sc to dev, add deepsee class for check source data
gevorg95 Apr 2, 2018
a05de72
move sc to dev
gevorg95 Apr 2, 2018
6d77342
bug fixed
gevorg95 Apr 2, 2018
43e0846
Update deepsee.cls
gevorg95 Apr 2, 2018
7abd1b0
set default setting git = 0, move package name sc to dev
gevorg95 Apr 13, 2018
e1a0373
Update gitLocal.cls
gevorg95 Apr 13, 2018
7d1aafb
set setting git=0
gevorg95 Apr 25, 2018
f4eb2c7
patch bug fixed
gevorg95 May 4, 2018
5f4d049
patch bug fixed
gevorg95 May 8, 2018
48de94f
Update README.md
gevorg95 Jun 10, 2018
6bbc7f8
export gbl bug fixed
gevorg95 Jul 11, 2018
09e12c5
Merge branch 'master' of https://github.com/intersystems-community/is…
gevorg95 Jul 11, 2018
9815afa
bug fixed, add version parameter
gevorg95 Jul 11, 2018
bbab3ec
"add version" fix
gevorg95 Jul 11, 2018
a0431d3
bug fixed
gevorg95 Jul 11, 2018
41384bc
The patch export occurs in the default directory
gevorg95 Jul 19, 2018
6d84057
[ADD] automatic configuration with isc.json
gevorg95 Jul 31, 2018
bd70e2f
filename bug fixed
gevorg95 Sep 11, 2018
46d217a
isc.json example was added
gevorg95 Oct 2, 2018
13ca0fb
import bug was fixed
gevorg95 Oct 2, 2018
b6a169c
Update README.md
gevorg95 Dec 13, 2018
9f80ee6
changes for the development with docker container
Feb 9, 2019
c57ea5e
version was updated
gevorg95 Mar 19, 2019
ad0bdd0
docker ignore added
evshvarov Mar 31, 2019
4155ffa
dockerisation with community edition
evshvarov Apr 13, 2019
85d8062
no need in extra docker file
evshvarov Apr 13, 2019
04950b9
zpm support
daimor Apr 24, 2019
cb4699c
export only dfi files was added
gevorg95 Apr 25, 2019
6bf6f5b
bug was fixed
gevorg95 Apr 26, 2019
a92263b
bug was fixed
gevorg95 Apr 29, 2019
0ebe36b
masks bug was fixed
gevorg95 Apr 29, 2019
4c423eb
Merge pull request #12 from daimor/master
gevorg95 May 3, 2019
ce847a9
Update README.md
gevorg95 May 3, 2019
260f20c
Changed the version in a module.xml for ZPM update
May 12, 2019
590cfe5
added zpm support
May 12, 2019
314a8a6
how to update the package
May 12, 2019
682c748
Update README.md
isc-tlouie Sep 17, 2019
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
Prev Previous commit
Next Next commit
bug fixed
gevorg95 committed Jul 11, 2018
commit a0431d3df8749da4375fdaf0e1ae0f998ab96913
2 changes: 1 addition & 1 deletion cls/dev/diff/utils.cls
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@ ClassMethod getExtension(ByRef filename)
}elseif ($L(filename,"cls/") > 1) {
set filename = $extract(filename,1,*-4)_".CLS"
}elseif ($L(filename,"gbl/") > 1) {
set filename = $p($extract(filename,1,*-4)_".GBL","gbl/",2)
set filename = $p($extract(filename,1,*-4),"gbl/",2)
}
}