Skip to content

Commit

Permalink
Merge commit '50b28edc865a506c6cce9bf2055867a0abce242f' into lgpl
Browse files Browse the repository at this point in the history
  • Loading branch information
raboof committed May 4, 2019
2 parents 40b5811 + 50b28ed commit d2ea0a1
Show file tree
Hide file tree
Showing 382 changed files with 41,732 additions and 2,095 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -1,6 +1,7 @@
TAGS
tags
.project
*.d
*.a
*.o
*.so
Expand All @@ -17,3 +18,4 @@ notion/preload.c
utils/ion-completeman
utils/ion-statusd/ion-statusd
utils/ion-completefile/ion-completefile
cscope.*
21 changes: 0 additions & 21 deletions .gitmodules

This file was deleted.

16 changes: 16 additions & 0 deletions CHANGELOG
@@ -0,0 +1,16 @@
Version 20140528:
* Improvement: 'windows' key is now the default META key

* Bugfix: seldomly triggered crash in memory pool
* Bugfix: save the session atomically
* Bugfix: various fixes to contributed scripts, notably more lua5.2 support

* Improvement: various code cleanups (thanks to Campbell Barton)
* Improvement: various build/packaging improvements (thanks to Dima Kogan)

* Feature: Workspace indicator (thanks to Dima Kogan)
* Feature: Delayed population of the focuslist (thanks to Dima Kogan)

* Improvement: improved kludges/focus behavior (IntelliJ IDEA, xeyes)
* Improvement: expose 'warp_pointer' to lua
* Improvement: lock using i3lock when available
1 change: 0 additions & 1 deletion ChangeLog

This file was deleted.

1 change: 0 additions & 1 deletion LICENSE
@@ -1,4 +1,3 @@

GNU LESSER GENERAL PUBLIC LICENSE
Version 2.1, February 1999

Expand Down
14 changes: 7 additions & 7 deletions Makefile
Expand Up @@ -16,7 +16,7 @@ INSTALL_SUBDIRS=\

SUBDIRS = $(LIBS_SUBDIRS) $(INSTALL_SUBDIRS)

DOCS = README LICENSE ChangeLog RELNOTES
DOCS = README LICENSE CHANGELOG

TO_REALCLEAN = build/ac/system-ac.mk

Expand Down Expand Up @@ -50,12 +50,12 @@ dist:
DIR=`basename "$$PWD"` ;\
RELEASE=`./nextversion.sh` ;\
perl -p -i -e "s/^#define NOTION_RELEASE.*/#define NOTION_RELEASE \"$$RELEASE\"/" version.h ;\
git tag $$RELEASE ; git push --tags ;\
cd .. ;\
tar --exclude-vcs -czf notion-$$RELEASE-src.tar.gz $$DIR ;\
tar --exclude-vcs -cjf notion-$$RELEASE-src.tar.bz2 $$DIR ;\
cd $$DIR ;\
git checkout version.h
git add version.h; git commit -m "Releasing version $$RELEASE" ;\
git tag -s -m "Release $$RELEASE" $$RELEASE ; git push --tags ;\
git archive --prefix notion-$$RELEASE/ --format=tar.gz $$RELEASE > ../notion-$$RELEASE-src.tar.gz ;\
git archive --prefix notion-$$RELEASE/ --format=tar $$RELEASE | bzip2 > ../notion-$$RELEASE-src.tar.bz2 ;\
perl -p -i -e "s/^#define NOTION_RELEASE.*/#define NOTION_RELEASE \"snapshot\"/" version.h ;\
git add version.h; git commit -m "Released version $$RELEASE" ; git push

.PHONY: test

Expand Down
10 changes: 2 additions & 8 deletions README
Expand Up @@ -2,7 +2,7 @@
Notion
===

Copyright (c) the Notion team 2010-2011.
Copyright (c) the Notion team 2010-2014.
Copyright (c) Tuomo Valkonen 1999-2009.

http://notion.sf.net
Expand All @@ -15,11 +15,8 @@ See also:

https://sourceforge.net/apps/mediawiki/notion/index.php?title=Development

1. Get the source code. Make sure all submodules are present and up to date.
1. Get the source code.
git clone git://notion.git.sourceforge.net/gitroot/notion/notion
cd notion
git submodule init
git submodule update

2. In addition to the standard C library headers and the GNU toolchain, you
will need the following tools and libraries for building Notion.
Expand Down Expand Up @@ -70,9 +67,6 @@ See also:
a `.xinitrc` should usually do much more setup than simply start a few
programs of your choice.

Please see the file `RELNOTES` for additional release-specific installation
and configuration notes.


Some optional installation steps
--------------------------------
Expand Down
5 changes: 0 additions & 5 deletions TODO.README

This file was deleted.

0 comments on commit d2ea0a1

Please sign in to comment.