Skip to content

Commit 257cec6

Browse files
committed
Bugfix: Use non-versioned URLs for bundled ext home pages
1 parent cf7bd0e commit 257cec6

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

libraries.conf

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ extensions: [
55
shortDescription: "Communicate with an Arduino device"
66
longDescription: """This extension provides 'no-frills' communication between NetLogo and a connected Arduino."""
77
version: "3.1.0"
8-
homepage: "https://docs.netlogo.org/7.0.0-beta2/arduino.html"
8+
homepage: "https://docs.netlogo.org/arduino.html"
99
}
1010
{
1111
name: "Array"
@@ -17,15 +17,15 @@ Arrays are useful when you need a collection of values whose size is fixed. You
1717

1818
Unlike NetLogo’s lists and strings, arrays are “mutable”. That means that you can actually modify them directly, rather than constructing an altered copy as with lists. If the array is used in more than one place in your code, any changes you make will show up everywhere. It’s tricky to write code involving mutable structures and it’s easy to make subtle errors or get surprising results, so we suggest sticking with lists and strings unless you’re certain you want and need mutability."""
1919
version: "1.2.0"
20-
homepage: "https://docs.netlogo.org/7.0.0-beta2/array.html"
20+
homepage: "https://docs.netlogo.org/array.html"
2121
}
2222
{
2323
name: "Bitmap"
2424
codeName: "bitmap"
2525
shortDescription: "Image manipulation and drawing"
2626
longDescription: """The Bitmap Extension allows you to manipulate and import images into the drawing and patches. It offers features not provided by the NetLogo core primitives, such as: scaling, manipulation of different color channels, and width and height reporters."""
2727
version: "1.3.0"
28-
homepage: "https://docs.netlogo.org/7.0.0-beta2/bitmap.html"
28+
homepage: "https://docs.netlogo.org/bitmap.html"
2929
}
3030
{
3131
name: "bspace"
@@ -43,7 +43,7 @@ NOTE: This extension is a work in progress. Please visit the extension's homepa
4343
shortDescription: "Read and write csv files"
4444
longDescription: """"""
4545
version: "1.2.0"
46-
homepage: "https://docs.netlogo.org/7.0.0-beta2/csv.html"
46+
homepage: "https://docs.netlogo.org/csv.html"
4747
}
4848
{
4949
name: "DBSCAN"
@@ -103,15 +103,15 @@ It allows you to perform unsupervised density-based clustering of turtles and pa
103103

104104
The extension supports vector data in the form of ESRI shapefiles. The shapefile (.shp) format is the most common format for storing and exchanging vector GIS data. The extension supports raster data in the form of ESRI ASCII Grid files. The ASCII grid file (.asc or .grd) is not as common as the shapefile, but is supported as an interchange format by most GIS platforms."""
105105
version: "1.4.0"
106-
homepage: "https://docs.netlogo.org/7.0.0-beta2/gis.html"
106+
homepage: "https://docs.netlogo.org/gis.html"
107107
}
108108
{
109109
name: "GoGo"
110110
codeName: "gogo"
111111
shortDescription: "Interact with HID-based GoGo boards"
112112
longDescription: """This is the new extension for physical computing, using sensors, motors, etc in NetLogo. It interfaces with GoGo boards running Human Interface Driver (HID) firmware, and it replaces the old GoGo Extension, which used USB-serial communications."""
113113
version: "2.1.0"
114-
homepage: "https://docs.netlogo.org/7.0.0-beta2/gogo.html"
114+
homepage: "https://docs.netlogo.org/gogo.html"
115115
}
116116
{
117117
name: "Import-A"
@@ -141,7 +141,7 @@ Asking and reporting in LevelSpace is conceptually pretty straight forward: You
141141

142142
In general, the LevelSpace syntax has been designed to align with existing NetLogo primitives whenever possible."""
143143
version: "2.4.1"
144-
homepage: "https://docs.netlogo.org/7.0.0-beta2/ls.html"
144+
homepage: "https://docs.netlogo.org/ls.html"
145145
}
146146
{
147147
name: "LinProg"
@@ -167,15 +167,15 @@ In general, the LevelSpace syntax has been designed to align with existing NetLo
167167

168168
If you’d like to know more about matrices and how they can be used, you might consider a course on linear algebra, or search the web for tutorials. The matrix extension also allows you to solve linear algebraic equations (specified in a matrix format), and even to identify trends in your data and perform linear (ordinary least squares) regressions on data sets with multiple explanatory variables."""
169169
version: "1.2.0"
170-
homepage: "https://docs.netlogo.org/7.0.0-beta2/matrix.html"
170+
homepage: "https://docs.netlogo.org/matrix.html"
171171
}
172172
{
173173
name: "Network"
174174
codeName: "nw"
175175
shortDescription: "NetWork analysis tools"
176176
longDescription: """"""
177177
version: "4.1.0"
178-
homepage: "https://docs.netlogo.org/7.0.0-beta2/nw.html"
178+
homepage: "https://docs.netlogo.org/nw.html"
179179
}
180180
{
181181
name: "NodeJS"
@@ -200,7 +200,7 @@ If you’d like to know more about matrices and how they can be used, you might
200200
shortDescription: "Visualize values in the model as colors"
201201
longDescription: """The NetLogo palette extension allows to map values to colors. The colors go beyond NetLogo colors, including ColorBrewer color schemes or arbitrary RGB colors. Additionally, it provides a primitive to map to color gradients and a primitive to launch a ColorBrewer dialog for easy scheme selection."""
202202
version: "2.1.0"
203-
homepage: "https://docs.netlogo.org/7.0.0-beta2/palette.html"
203+
homepage: "https://docs.netlogo.org/palette.html"
204204
}
205205
{
206206
name: "Pathdir"
@@ -228,15 +228,15 @@ Caution:
228228

229229
The profiler extension is experimental. It is not yet well tested or user friendly. Nonetheless, we think some users will find it useful."""
230230
version: "1.3.0"
231-
homepage: "https://docs.netlogo.org/7.0.0-beta2/profiler.html"
231+
homepage: "https://docs.netlogo.org/profiler.html"
232232
}
233233
{
234234
name: "Python"
235235
codeName: "py"
236236
shortDescription: "Run Python code from NetLogo"
237237
longDescription: """This NetLogo extension allows you to run Python code from NetLogo. It works with both Python 2 and 3, and should work with almost all Python libraries."""
238238
version: "1.0.0"
239-
homepage: "https://docs.netlogo.org/7.0.0-beta2/py.html"
239+
homepage: "https://docs.netlogo.org/py.html"
240240
}
241241
{
242242
name: "R"
@@ -256,15 +256,15 @@ This helps with two problems. First, it makes it a lot easier to load data file
256256

257257
Secondly, it means not having to carry around external files (like CSV or GIS data, or images) when moving your model from one location to another. Instead, you just bundle content of the file into the '.nlogox' file, and then read it out with this extension."""
258258
version: "1.1.0"
259-
homepage: "https://docs.netlogo.org/7.0.0-beta2/resource.html"
259+
homepage: "https://docs.netlogo.org/resource.html"
260260
}
261261
{
262262
name: "Rnd"
263263
codeName: "rnd"
264264
shortDescription: "Use random with a non-uniform distribution"
265265
longDescription: """This extension adds the ability to do roulette wheel selection in NetLogo. It provides a simpler way to accomplish the same thing as the Lottery Example from the NetLogo Models Library."""
266266
version: "3.1.0"
267-
homepage: "https://docs.netlogo.org/7.0.0-beta2/rnd.html"
267+
homepage: "https://docs.netlogo.org/rnd.html"
268268
}
269269
{
270270
name: "Sample"
@@ -296,15 +296,15 @@ Secondly, it means not having to carry around external files (like CSV or GIS da
296296
shortDescription: "This NetLogo extension allows you to run R code from within NetLogo. It was built to address technical difficulties that users commonly had with the original R extension."
297297
longDescription: ""
298298
version: "3.1.2"
299-
homepage: "https://docs.netlogo.org/7.0.0-beta2/sr.html"
299+
homepage: "https://docs.netlogo.org/sr.html"
300300
}
301301
{
302302
name: "Sound"
303303
codeName: "sound"
304304
shortDescription: "Play notes and sound files"
305305
longDescription: """"""
306306
version: "1.2.0"
307-
homepage: "https://docs.netlogo.org/7.0.0-beta2/sound.html"
307+
homepage: "https://docs.netlogo.org/sound.html"
308308
}
309309
{
310310
name: "Stats"
@@ -338,7 +338,7 @@ Although stats can be used to analyze the overall results of a run of a model, i
338338
shortDescription: "Store pairs of values, so you can retrieve the second value by knowing the first one"
339339
longDescription: """Tables are useful when you need to do associate values with other values. For example, you might make a table of words and their definitions. Then you can look up the definition of any word. Here, the words are the "keys". You can easily retrieve the value for any key in the table, but not vice versa."""
340340
version: "2.1.0"
341-
homepage: "https://docs.netlogo.org/7.0.0-beta2/table.html"
341+
homepage: "https://docs.netlogo.org/table.html"
342342
}
343343
{
344344
name: "Time"
@@ -350,23 +350,23 @@ Modelers commonly need to use time series data in NetLogo. The time extension pr
350350

351351
The time extension enables a different approach to scheduling actions in NetLogo. Traditionally, a NetLogo modeler puts a series of actions or procedure calls into the "go" procedure, which is executed once each tick. Sometimes it is more natural or more efficient to instead say "have agent X execute procedure Y at time Z". This is what discrete event scheduling (also know as "dynamic scheduling") enables. Discrete event simulation has a long history and extensive literature, and this extension makes it much easier to use in NetLogo."""
352352
version: "3.1.0"
353-
homepage: "https://docs.netlogo.org/7.0.0-beta2/time.html"
353+
homepage: "https://docs.netlogo.org/time.html"
354354
}
355355
{
356356
name: "Vid"
357357
codeName: "vid"
358358
shortDescription: "Capture videos of the model or from a webcam"
359359
longDescription: """"""
360360
version: "1.3.2"
361-
homepage: "https://docs.netlogo.org/7.0.0-beta2/vid.html"
361+
homepage: "https://docs.netlogo.org/vid.html"
362362
}
363363
{
364364
name: "View2.5d"
365365
codeName: "view2.5d"
366366
shortDescription: "Visualize agent properties as height on a 3d surface"
367367
longDescription: """"""
368368
version: "1.2.1"
369-
homepage: "https://docs.netlogo.org/7.0.0-beta2/view2.5d.html"
369+
homepage: "https://docs.netlogo.org/view2.5d.html"
370370
}
371371
{
372372
name: "Web"

0 commit comments

Comments
 (0)