diff --git a/CHANGELOG.md b/CHANGELOG.md index 64713e8..b158d0f 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,17 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p - Refactor application. +## [0.7.0] - 2021-08-22 + +### Added + +- Added new classes `Path` for working with path's and creating relative path from specified directory. +- Add unit-tests cases for the `Path` class. + +### Changed + +- Change soft link creation using relative instead absolute path. + ## [0.6.0] - 2021-08-02 ### Changed diff --git a/README.md b/README.md index a224cac..e09474a 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ The Quick Symlink is a `Finder extension` which provides a `contextual menu item` for the symbolic links creation on macOS. -[![status](https://img.shields.io/badge/status-active-active?style=flat-square)](BADGES_GUIDE.md#status) [![version](https://img.shields.io/badge/version-0.6.0-informational?style=flat-square)](BADGES_GUIDE.md#version) [![oss lifecycle](https://img.shields.io/badge/oss_lifecycle-active-important?style=flat-square)](BADGES_GUIDE.md#oss-lifecycle) [![maintenance](https://img.shields.io/badge/maintenance-yes-informational?style=flat-square)](BADGES_GUIDE.md#maintenance) [![last release](https://img.shields.io/badge/last_release-August_07,_2021-informational?style=flat-square)](BADGES_GUIDE.md#release-date) [![last commit](https://img.shields.io/badge/last_commit-August_20,_2021-informational?style=flat-square)](BADGES_GUIDE.md#commit-date) +[![status](https://img.shields.io/badge/status-active-active?style=flat-square)](BADGES_GUIDE.md#status) [![version](https://img.shields.io/badge/version-0.6.0-informational?style=flat-square)](BADGES_GUIDE.md#version) [![oss lifecycle](https://img.shields.io/badge/oss_lifecycle-active-important?style=flat-square)](BADGES_GUIDE.md#oss-lifecycle) [![maintenance](https://img.shields.io/badge/maintenance-yes-informational?style=flat-square)](BADGES_GUIDE.md#maintenance) [![last release](https://img.shields.io/badge/last_release-August_22,_2021-informational?style=flat-square)](BADGES_GUIDE.md#release-date) [![last commit](https://img.shields.io/badge/last_commit-August_22,_2021-informational?style=flat-square)](BADGES_GUIDE.md#commit-date) [![license](https://img.shields.io/badge/license-MIT-informational?style=flat-square)](LICENSE) [![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-v2.0%20adopted-ff69b4.svg?style=flat-square)](CODE_OF_CONDUCT.md) diff --git a/TODO.md b/TODO.md index 3aee519..a3ffbc5 100755 --- a/TODO.md +++ b/TODO.md @@ -5,8 +5,9 @@ - [x] Develop the `Finder extension` which allows to create a symlinks for selected folders and files via contextual menu. - [x] Add the new menu item for replacing selected folders and files with symlinks. - [x] Add the new menu item for creating symlink in a parent directory (parent for target objects). -- [ ] Optional feature - use relative path instead absolute path in symlink target URL (if target and link located in one volume) -- [ ] Develop additional `Finder extension` which allows to create a `hard links` for selected folders and files via contextual menu. +- [x] Optional feature - use relative path instead absolute path in symlink target URL (if target and link located in one volume) +- [ ] Refactor code in `commons/*` part and add unit-tests +- [ ] Develop additional `Finder extension` which allows to create a `hard links` for selected folders and files via contextual menu - [ ] Develop the action panel for created symbolic links and hard lonks (in the app window): - [ ] a) (if broken) process to browse finder for 'Find/fix missing target' - [ ] b) Modify existing paths and symbolic link features diff --git a/quick-symlink-extension/ru.lproj/Localizable.strings b/quick-symlink-extension/ru.lproj/Localizable.strings index 99d36ab..361f830 100644 --- a/quick-symlink-extension/ru.lproj/Localizable.strings +++ b/quick-symlink-extension/ru.lproj/Localizable.strings @@ -7,7 +7,7 @@ */ /* Class = "NSMenuItem"; */ -"EXTENTION_NAME" = "Быстрый симлинк2"; +"EXTENTION_NAME" = "Быстрый симлинк"; /* Class = "NSMenuItem"; */ "EXTENTION_TOOL_TIP" = "Создать символьные ссылки для выбранных файлов и папок";