mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-09-19 04:59:01 +00:00
Style changes
Update changelog.
This commit is contained in:
parent
f6d8a8a4d8
commit
413256569d
@ -1,6 +1,12 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## [Unreleased]
|
||||||
|
### Fixed
|
||||||
|
- Added missing shaarli logo.
|
||||||
|
- Overwrite existing doc and static folders when installing.
|
||||||
|
- Added line break to infinoted title, used by front page shortcut.
|
||||||
|
|
||||||
## [0.13.1] - 2017-01-22
|
## [0.13.1] - 2017-01-22
|
||||||
### Added
|
### Added
|
||||||
- Added new locale for Japanese (ja).
|
- Added new locale for Japanese (ja).
|
||||||
@ -192,6 +198,7 @@ All notable changes to this project will be documented in this file.
|
|||||||
- Fixed issue that could allow someone to start a module setup process
|
- Fixed issue that could allow someone to start a module setup process
|
||||||
without being logged in to Plinth.
|
without being logged in to Plinth.
|
||||||
|
|
||||||
|
[Unreleased]: https://github.com/freedombox/Plinth/compare/v0.13.1...HEAD
|
||||||
[0.13.1]: https://github.com/freedombox/Plinth/compare/v0.13.0...v0.13.1
|
[0.13.1]: https://github.com/freedombox/Plinth/compare/v0.13.0...v0.13.1
|
||||||
[0.13.0]: https://github.com/freedombox/Plinth/compare/v0.12.0...v0.13.0
|
[0.13.0]: https://github.com/freedombox/Plinth/compare/v0.12.0...v0.13.0
|
||||||
[0.12.0]: https://github.com/freedombox/Plinth/compare/v0.11.0...v0.12.0
|
[0.12.0]: https://github.com/freedombox/Plinth/compare/v0.11.0...v0.12.0
|
||||||
|
|||||||
2
LICENSES
2
LICENSES
@ -53,7 +53,7 @@ otherwise.
|
|||||||
- static/themes/default/icons/radicale.png :: [[http://radicale.org/][GPL-3.0]]
|
- static/themes/default/icons/radicale.png :: [[http://radicale.org/][GPL-3.0]]
|
||||||
- static/themes/default/icons/repro.png :: [[https://www.resiprocate.org/Main_Page][BSD-3-clause]]
|
- static/themes/default/icons/repro.png :: [[https://www.resiprocate.org/Main_Page][BSD-3-clause]]
|
||||||
- static/themes/default/icons/roundcube.png :: [[https://roundcube.net/][GPL-3+]]
|
- static/themes/default/icons/roundcube.png :: [[https://roundcube.net/][GPL-3+]]
|
||||||
|
- static/themes/default/icons/shaarli.png :: [[https://github.com/shaarli/Shaarli][zlib/libpng]]
|
||||||
- static/themes/default/icons/transmission.png :: [[https://transmissionbt.com/][GPL]]
|
- static/themes/default/icons/transmission.png :: [[https://transmissionbt.com/][GPL]]
|
||||||
- static/themes/default/icons/ttrss.png :: [[https://tt-rss.org/gitlab/fox/tt-rss][GPL]]
|
- static/themes/default/icons/ttrss.png :: [[https://tt-rss.org/gitlab/fox/tt-rss][GPL]]
|
||||||
- static/themes/default/icons/xmpp.png :: [[https://www.ejabberd.im/][GPL3]]
|
- static/themes/default/icons/xmpp.png :: [[https://www.ejabberd.im/][GPL3]]
|
||||||
- static/themes/default/icons/shaarli.png :: [[https://github.com/shaarli/Shaarli][zlib/libpng]]
|
|
||||||
8
setup.py
8
setup.py
@ -113,7 +113,7 @@ class CustomClean(clean):
|
|||||||
"""Execute clean command"""
|
"""Execute clean command"""
|
||||||
subprocess.check_call(['rm', '-rf', 'Plinth.egg-info/'])
|
subprocess.check_call(['rm', '-rf', 'Plinth.egg-info/'])
|
||||||
subprocess.check_call(['make', '-C', 'doc', 'clean'])
|
subprocess.check_call(['make', '-C', 'doc', 'clean'])
|
||||||
|
|
||||||
for dir_path, dir_names, file_names in os.walk('plinth/locale/'):
|
for dir_path, dir_names, file_names in os.walk('plinth/locale/'):
|
||||||
for file_name in file_names:
|
for file_name in file_names:
|
||||||
if file_name.endswith('.mo'):
|
if file_name.endswith('.mo'):
|
||||||
@ -143,16 +143,14 @@ class CustomInstallData(install_data):
|
|||||||
|
|
||||||
# Recursively overwrite directories
|
# Recursively overwrite directories
|
||||||
for target, source in DIRECTORIES_TO_COPY:
|
for target, source in DIRECTORIES_TO_COPY:
|
||||||
|
|
||||||
if self.root:
|
if self.root:
|
||||||
target = change_root(self.root, target)
|
target = change_root(self.root, target)
|
||||||
|
|
||||||
|
|
||||||
if os.path.exists(target):
|
if os.path.exists(target):
|
||||||
remove_tree(target)
|
remove_tree(target)
|
||||||
|
|
||||||
log.info("recursive copy '%s' to '%s'", source, target)
|
log.info("recursive copy '%s' to '%s'", source, target)
|
||||||
shutil.copytree(source, target,symlinks=True)
|
shutil.copytree(source, target, symlinks=True)
|
||||||
|
|
||||||
|
|
||||||
find_packages = setuptools.PEP420PackageFinder.find
|
find_packages = setuptools.PEP420PackageFinder.find
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user