Overview
Comment:Don't show up alpha/beta/rc version on homepage
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 4b468187a406006f3af802750f91971c975423aff013545a7901f4df32621b8a
User & Date: bohwaz on 2021-02-05 02:50:37
Other Links: manifest | tags
Context
2021-02-05
02:51
Not a string but an array check-in: 5b96f7ea62 user: bohwaz tags: trunk
02:50
Don't show up alpha/beta/rc version on homepage check-in: 4b468187a4 user: bohwaz tags: trunk
2021-02-04
15:46
Services and fees should be available to users with read-only access check-in: 186eb2d12c user: bohwaz tags: trunk, stable
Changes

Modified doc/index.md from [af8aa07b41] to [6defbebeec].

103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
	r.json().then((list) => {
		let last;
		let selected;

		list.forEach((file) => {
			var v = file.name.match(/^garradin-(.*)\.tar\.bz2/);

			if (!v) {
				return;
			}

			if (!last || isNewerVersion(last, v[1])) {
				last = v[1];
				selected = file;
			}







|







103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
	r.json().then((list) => {
		let last;
		let selected;

		list.forEach((file) => {
			var v = file.name.match(/^garradin-(.*)\.tar\.bz2/);

			if (!v || v.match(/-(alpha|rc|beta)/)) {
				return;
			}

			if (!last || isNewerVersion(last, v[1])) {
				last = v[1];
				selected = file;
			}