aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormitchell <70453897+orbitalquark@users.noreply.github.com>2020-09-14 19:57:20 -0400
committermitchell <70453897+orbitalquark@users.noreply.github.com>2020-09-14 19:57:20 -0400
commitd2a55825e69e508d5919e30c892c52d48078b93d (patch)
tree9a1f9d793426980e8922095f2b549b09c1322109
parent11bd2d15a880755fa8c58c39cf1de13ae0dd2b2a (diff)
downloadtextadept-d2a55825e69e508d5919e30c892c52d48078b93d.tar.gz
textadept-d2a55825e69e508d5919e30c892c52d48078b93d.zip
More link updates.
-rw-r--r--core/init.lua4
-rw-r--r--docs/changelog.md8
-rw-r--r--docs/manual.md2
-rw-r--r--src/Makefile6
4 files changed, 10 insertions, 10 deletions
diff --git a/core/init.lua b/core/init.lua
index 4876e2cb..f9802842 100644
--- a/core/init.lua
+++ b/core/init.lua
@@ -1,8 +1,8 @@
-- Copyright 2007-2020 Mitchell mitchell.att.foicica.com. See LICENSE.
_RELEASE = 'Textadept 11.0 alpha 3'
-_COPYRIGHT =
- 'Copyright © 2007-2020 Mitchell. See LICENSE.\nhttps://foicica.com/textadept'
+_COPYRIGHT = 'Copyright © 2007-2020 Mitchell. See LICENSE.\n' ..
+ 'https://orbitalquark.github.io/textadept'
package.path = string.format('%s/core/?.lua;%s', _HOME, package.path)
diff --git a/docs/changelog.md b/docs/changelog.md
index 171ab75c..1410b601 100644
--- a/docs/changelog.md
+++ b/docs/changelog.md
@@ -1243,7 +1243,7 @@ Changes:
`buffer.INDIC_TEXTFORE` indicators.
* Updated to [Scintilla][] 3.5.4.
-[new repository]: https://foicica.com/hg/textadept_modules
+[new repository]: https://github.com/orbitalquark/textadept-modules
[`textadept.file_types.patterns`]: api.html#textadept.file_types.patterns
[`events.FILE_AFTER_SAVE`]: api.html#events.FILE_AFTER_SAVE
[`buffer.indic_hover_fore`]: api.html#buffer.indic_hover_fore
@@ -2641,7 +2641,7 @@ Changes:
[events]: api.html#events
[documentation]: manual.html#getting-modules
-[official modules]: https://foicica.com/hg
+[official modules]: https://github.com/orbitalquark/textadept-modules
[`buffer:move_selected_lines_up()`]: api.html#buffer.move_selected_lines_up
[`buffer:move_selected_lines_down()`]: api.html#buffer.move_selected_lines_down
[Scintilla]: https://scintilla.org
@@ -2690,13 +2690,13 @@ Changes:
* Key bindings and menu definition syntax changed.
* Snapopen allows for multiple-selection.
* `gui.print()` handles `nil` and non-string arguments properly.
-* Officially supported modules have their own [repositories][] and are available
+* Officially supported modules have their own [repository][] and are available
as a separate download.
* Added cancel button to standard dialogs.
[Scintilla]: https://scintilla.org
[`_m.textadept.snippets`]: api.html#textadept.snippets
-[repositories]: https://foicica.com/hg
+[repository]: https://github.com/orbitalquark/textadept-modules
### 3.7 beta 2 (01 Mar 2011)
diff --git a/docs/manual.md b/docs/manual.md
index 0000c03a..424e9681 100644
--- a/docs/manual.md
+++ b/docs/manual.md
@@ -92,7 +92,7 @@ programming language that you can understand the simple code samples spread
throughout the manual's contents. If you would like to quickly get up to speed,
or need a refresher, the excerpt from [Lua Quick Reference][] may be of help.
-[Lua Quick Reference]: https://foicica.com/lua
+[Lua Quick Reference]: https://orbitalquark.github.io/lua-quick-reference
#### ~/.textadept
diff --git a/src/Makefile b/src/Makefile
index abd60702..251e33a6 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -436,9 +436,9 @@ termkey: termkey.patch | $(termkey_tgz)
if [ -d $@ ]; then rm -r $@; fi
mkdir $@ && tar xzf $| -C $@ && mv $@/*/* $@ && chmod +w $@/termkey.h
patch -d $@ -N -p1 < $<
-$(win32gtk_zip): ; $(WGET) https://foicica.com/textadept/download/$@
+$(win32gtk_zip): ; $(WGET) $(root_url)/textadept-build/raw/default/$@
win32gtk: | $(win32gtk_zip) ; unzip $|
-$(win32curses_zip): ; $(WGET) https://foicica.com/textadept/download/$@
+$(win32curses_zip): ; $(WGET) $(root_url)/textadept-build/raw/default/$@
$(pdcurses_zip): ; $(WGET) http://prdownloads.sourceforge.net/pdcurses/$@
win32curses: pdcurses.patch | $(win32curses_zip) $(pdcurses_zip)
unzip $(win32curses_zip)
@@ -448,7 +448,7 @@ win32curses: pdcurses.patch | $(win32curses_zip) $(pdcurses_zip)
cd $@/src/wincon && $(MAKE) CC="$(CROSS)$(CC) $(CFLAGS)" LIBEXE=$(CROSS)ar \
LINK="$(CROSS)$(CC) $(CFLAGS)" WIDE=Y UTF8=Y libs
cp $@/src/wincon/pdcurses.a $@/lib/
-$(gtkosx_tgz): ; $(WGET) https://foicica.com/textadept/download/$@
+$(gtkosx_tgz): ; $(WGET) $(root_url)/textadept-build/raw/default/$@
gtkosx: | $(gtkosx_tgz) ; mkdir $@ && tar xzf $| -C $@ && mv $@/*/* $@
$(cloc): ; $(WGET) http://prdownloads.sourceforge.net/cloc/$@