Skip to content

Commit

Permalink
release work
Browse files Browse the repository at this point in the history
  • Loading branch information
razzed committed Dec 26, 2019
1 parent ef8ad17 commit 3ed857c
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 44 deletions.
8 changes: 4 additions & 4 deletions bin/release-zesk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export ZESK_ROOT="$(cd $(dirname "$BASH_SOURCE")/..; pwd)"
ERR_ENV=1
ERR_ARG=2

GIT=`which git`
GIT=$(which git)
ZESK=$ZESK_ROOT/bin/zesk.sh

#
Expand Down Expand Up @@ -67,11 +67,11 @@ echo "Synchronizing with remote ..."
$GIT pull --tags > /dev/null 2>&1
$GIT push --tags > /dev/null 2>&1

if ! bin/build.sh > /dev/null; then
if ! bin/build.sh > /dev/null < /dev/null; then
echo "Build failed" 1>& 2
exit $ERR_ENV
fi
if ! bin/cs-zesk.sh > /dev/null; then
if ! bin/cs-zesk.sh > /dev/null < /dev/null; then
echo "Clean failed" 1>& 2
exit $ERR_ENV
fi
Expand Down Expand Up @@ -143,7 +143,7 @@ mv $temp $permanent_log
while true; do
if [ ! -z "$EDITOR" ]; then
echo "Opening editor for $permanent_log"
$EDITOR $permanent_log
$EDITOR $permanent_log < /dev/null
fi
if yes_continue "Commit $permanent_log?"; then
break
Expand Down
59 changes: 19 additions & 40 deletions docs/current.md
Original file line number Diff line number Diff line change
@@ -1,44 +1,23 @@
## Release {version}

- **Contact Module**: Fixing call to `Mail` class
- **Image Picker Module**: Added `zesk\Image_Picker_Module::image_selector_before` and `_after` hooks
- **Net Module**: Adding comments to POP iterator
- **ORM Module**: Added `zesk\Server->alive_ips()` to fetch known valid IPs of alive servers
- **ORM Module**: Adding better handling of ORM Not found exceptions
- **ORM Module**: Refactored `zesk\Exception_ORM_NotFound` handling to support common mechanism for interception.
- **ORM Module**: Reset global settings upon reset hook
- **ORM Module**: `zesk\Class_Foo::name` now works to set the name in an ORM `Class_ORM` object - ONLY when not explicitly set by the code in `$this->name`
- **ORM Module**: `zesk\Controller_ORM->widget_control_classes()` properly generates class names using the correct parsing of namespace/class
- **PolyGlot Module**: Typo bug in `locale_query` call
- **ReactJS Module**: fixing asset manifest locating in ReactJS
- **Selection Module**: Updated strings to `::class` constants
- **Tag Module**: Removing references to `zesk\Tag_Label` -> `zesk\Tag\Label`
- **Tag Module**: Updated version
- **Widget Module**: Deprecating `zesk\Widget->orm_class` for `zesk\Widget->orm_class_name` as it's a string. **Widget Module**: Added `zesk\Widget->find_parent_class_orm` to find any valid parent class which contains an `orm_class_name()` which is non-empty and returns the `->class_orm()` of type `zesk\Class_ORM` **Widget Module**: `zesk\Control_Filter` will not override user-set names in `->initialize()` **Widget Module**: `zesk\Control_Order` uses `zesk\Exception_RedirectTemporary` now **Widget Module**: `nav/tabs` theme now adds an `id` to the `li` used in the main tabs to allow tooltips. **World Module**: Updated country info, download URL
- **World Module**: Logging missing currency codes as `debug` not `error`
- **Zesk Kernel**: Added a new redirect called `zesk\Exception_RedirectTemporary`
- **Zesk Kernel**: Adding `zesk\ArrayTools::extract` as a better name than `zesk\ArrayTools::key_value` for extracting key values from an array. Deprecating `zesk\ArrayTools::key_value`.
- **Zesk Kernel**: Adding more stack frames to output exceptions
- **Zesk Kernel**: Better support for `reset` hooks to clear out global data based on configuration context.
- **Zesk Kernel**: Capturing image exceptions
- **Zesk Kernel**: Directory::size does not throw zesk\Exception_Directory_Not_Found
- **Zesk Kernel**: Fixing `Mail` call to self
- **Zesk Kernel**: Fixing issue with image data missing
- **Zesk Kernel**: Fixing issue with input not being returned by upload file
- **Zesk Kernel**: Hook constants are now CAPITALIZED
- **Zesk Kernel**: Hook constants are now by default capitalized
- **Zesk Kernel**: JSON handles stdClass better
- **Zesk Kernel**: Locale removing unused hook
- **Zesk Kernel**: More details on empty theme rendering.
- **Zesk Kernel**: Reconfigure improvements
- **Zesk Kernel**: `php-find.sh` adding yml files
- **Zesk Kernel**: `zesk configure` now supports `rm` for files.
- **Zesk Kernel**: `zesk\Application->reconfigure()` now calls `zesk\Objects->reset()` explicitly
- **Zesk Kernel**: `zesk\Application->theme_find` now returns a array of the found themes and the paths attempted to find them. **Zesk Kernel**: `zesk\Application->request_factory()` is now a public function
- **Zesk Kernel**: `zesk\Locale` updates from deprecated usage, whitespace updates
- **Zesk Kernel**: `zesk\URL::parse` now always sets the `url` key upon return
- **Zesk Kernel**: adding optional append_error setting
- **Zesk Kernel**: fixing merge array func for hook default behavior
- **Zesk ORM**: Improved exception handling for missing or unlinked objects.
- **Bootstrap DateTimePicker**: Adding support for range selection
- **ORM Module**: Deprecated call removal, support for primary keys in default output
- **Tag Module**: Added `zesk\Tag\Control_Tags` debugging, an label `name_column` set in `zesk\Tag\Class_Label`
- **Tag Module**: Improvements
- **Zesk Kernel**: Fixed issue with `zesk\Command` where defaults set up in `initialize` were not honored.
- **Zesk Kernel**: Supporting compiling of `.less` to `.css` as part of Zesk build.
- **Zesk Kernel**: `zesk\Command_File_Convert` now supports `target-prefix` and `mkdir-target` to support mapping files from `foo.less` to `../css/foo.css` if you want.
- **Zesk Kernel**: `zesk\HTML` no longer adds `id` attribute to inputs
- **Zesk Kernel**: `zesk\PHP::log` added as interface to PHP system logger
- **iLess Module**: Adding `lessc` command-line option, use `zesk lessc` to compile `.less` files to `../css/foo.css` automatically.
- Release v0.27.0
- build
- build clean
- build updates
- build work
- fixing label last used
- new version
- release work


<!-- Generated automatically by release-zesk.sh, beware editing! -->

0 comments on commit 3ed857c

Please sign in to comment.