Skip to content

Commit

Permalink
Release 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
return42 committed Mar 4, 2018
1 parent 4db73af commit 048a98e
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 2 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
2018-11-27 Release 1.1 <[email protected]>

* slides: cdbpkg & SCM / big picture als SVG erstellt
* doc: Artikel 'Releasemanagement und CONTACT Elements'
* SVG: die SVG Dateien etwas aufgeräumt und begradigt
* sphinx-autobuild: Autobuild HTML documentation while editing.
* shortcuts: BugFix - tools-localhost-START
* kleinere Korrekturen Foliensammlung CDB-Komponentenarchitektur
* ConEmu: Alpha Transparenz auf RDPs sehr langsamm.
* CDB15: CADDOK_INSTALLDIR ist in CDB-15 erforderlich
* init_cdb_mirror: Prüfung des vault_path Arguments (BLOB-Storage)

2018-11-27 Release 1.0.1 <[email protected]>

* build: dist (ZIP) unter Einbeziehung des ./templates Ordners
* build: bugfix der download URL
* docs: Intsalaltionsprozess etwas vereinfacht beschrieben

2018-11-27 Release 1.0 <[email protected]>

* inital
2 changes: 1 addition & 1 deletion lib/dm/__pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"""

package = 'dm'
version = '1.0.1'
version = '1.1'
authors = ['Markus Heiser', ]
emails = ['[email protected]', ]
copyright = '2017 Markus Heiser'
Expand Down
23 changes: 22 additions & 1 deletion winShortcuts/cdbEnv.bat
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ REM ----------------------------------------------------------------------------
REM Purpose: general CDB setup
REM ----------------------------------------------------------------------------

color 0E
REM color 0E

REM CDB setup
REM ---------------
Expand All @@ -35,3 +35,24 @@ REM SET "CDBTOOLS_HOME=C:\share\cdb-tools"

SET "CDBTOOLS_DEBUG_ADDR=127.0.0.1"
SET "CDBTOOLS_DEBUG_PORT=4444"


goto checkEnv

:errorEnv
echo.
echo CADDOK_RUNTIME: %CADDOK_RUNTIME%
echo CADDOK_BASE: %CADDOK_BASE%
echo CADDOK_DEFAULT: %CADDOK_DEFAULT%
echo.
ECHO ERROR: Die Umgebungsvariablen in der Datei::
ECHO ERROR: %~d0%~p0cdbEnv.bat
ECHO ERROR: Sind (noch) nicht richtig konfiguriert!
pause
START notepad %~d0%~p0cdbEnv.bat
exit

:checkEnv

IF NOT EXIST %CADDOK_RUNTIME% goto errorEnv
IF NOT EXIST %CADDOK_BASE% goto errorEnv

0 comments on commit 048a98e

Please sign in to comment.