From a53e5ec03309b83e32d7f6a27a13aaa1188070b2 Mon Sep 17 00:00:00 2001 From: Omar Ibrahim Date: Fri, 17 Oct 2025 15:11:47 -0500 Subject: [PATCH 01/16] Major: Add Archives download page --- .../download/archive/archive-page.tsx | 15 + .../download/archive/version-entry.tsx | 55 ++++ .../download/archive/version-list.tsx | 19 ++ src/pages/downloads/archive.astro | 25 ++ src/pages/downloads/versions.json | 306 ++++++++++++++++++ 5 files changed, 420 insertions(+) create mode 100644 src/components/download/archive/archive-page.tsx create mode 100644 src/components/download/archive/version-entry.tsx create mode 100644 src/components/download/archive/version-list.tsx create mode 100644 src/pages/downloads/archive.astro create mode 100644 src/pages/downloads/versions.json diff --git a/src/components/download/archive/archive-page.tsx b/src/components/download/archive/archive-page.tsx new file mode 100644 index 0000000..38e816a --- /dev/null +++ b/src/components/download/archive/archive-page.tsx @@ -0,0 +1,15 @@ +function ArchivePage({ title, children }: ArchivePageProps) { + return ( +
+

{title}

+ {children} +
+ ) +} + +interface ArchivePageProps { + title: string; + children?: React.ReactNode; +} + +export default ArchivePage; \ No newline at end of file diff --git a/src/components/download/archive/version-entry.tsx b/src/components/download/archive/version-entry.tsx new file mode 100644 index 0000000..0e67eab --- /dev/null +++ b/src/components/download/archive/version-entry.tsx @@ -0,0 +1,55 @@ +// VersionEntry Component +interface VersionEntryProps { + // The version string, e.g., "6.2.0" + version: string; + // The release date string in a standard format, e.g., "2020-05-15" + releaseDate?: string; + // Optional URL to the version's download page + href?: string; + // Optional flags indicating special version types + flags?: VersionFlag[]; +} + +const VersionEntry = ({ version, releaseDate, flags = [], href }: VersionEntryProps) => { + const formattedDate = releaseDate ? formatReleaseDate(releaseDate) : undefined; + return ( +

+ NetLogo {version} {formattedDate && `(Released ${formattedDate})`} + {flags.map((flag) => ( + + ))} +

+ ) +} + +// VersionFlagBadge Subcomponent +type VersionFlag = 'BETA' | 'RC' | 'REVISION'; + +const versionFlagStyles: { [key in VersionFlag]: string } = { + BETA: "badge bg-warning text-dark me-1 ms-2", + RC: "badge bg-info text-dark me-1 ms-2", + REVISION: "badge bg-secondary me-1 ms-2", +}; + +const versionFlagTexts: { [key in VersionFlag]: string } = { + BETA: "Beta", + RC: "Release Candidate", + REVISION: "Revision", +}; + + +const VersionFlagBadge = ({ flag }: { flag: VersionFlag }) => { + let badgeText = versionFlagTexts[flag]; + let badgeClass = versionFlagStyles[flag]; + + return {badgeText}; +}; + +// Utilities +const formatReleaseDate = (dateString: string) => { + const options: Intl.DateTimeFormatOptions = { year: 'numeric', month: 'long' }; + return new Date(dateString).toLocaleDateString(undefined, options); +}; + +export type { VersionEntryProps }; +export default VersionEntry; \ No newline at end of file diff --git a/src/components/download/archive/version-list.tsx b/src/components/download/archive/version-list.tsx new file mode 100644 index 0000000..eea7396 --- /dev/null +++ b/src/components/download/archive/version-list.tsx @@ -0,0 +1,19 @@ +import VersionEntry, { type VersionEntryProps } from './version-entry'; + +export interface VersionListProps { + versions: VersionEntryProps[]; +} + +const VersionList = ({ versions }: VersionListProps) => { + return ( +
    + {versions.map((versionInfo) => ( +
  1. + +
  2. + ))} +
+ ); +}; + +export default VersionList; \ No newline at end of file diff --git a/src/pages/downloads/archive.astro b/src/pages/downloads/archive.astro new file mode 100644 index 0000000..5caa4f1 --- /dev/null +++ b/src/pages/downloads/archive.astro @@ -0,0 +1,25 @@ +--- +import Layout from '../../layouts/Layout.astro'; +import NetLogoApi from '../../utils/api.js'; + +import versions from './versions.json'; + +import VersionList from '../../components/download/archive/version-list'; +import ArchivePage from '../../components/download/archive/archive-page'; +import type { VersionEntryProps } from '../../components/download/archive/version-entry'; + +const api = new NetLogoApi(); +const pageData = await api.getResourcesData(); + +const title = 'NetLogo Download Archive'; +const description = 'Archive of previous NetLogo versions'; +--- + + + +

+ {description}. See release notes for details on version differences +

+ +
+
diff --git a/src/pages/downloads/versions.json b/src/pages/downloads/versions.json new file mode 100644 index 0000000..a21810e --- /dev/null +++ b/src/pages/downloads/versions.json @@ -0,0 +1,306 @@ +[ + { + "version": "7.0.0", + "releaseDate": "September 2025", + "href": "/downloads/archive/7.0.0/" + }, + { + "version": "7.0.0-beta2", + "releaseDate": "June 2025", + "href": "/downloads/archive/7.0.0-beta2/", + "flags": [ + "BETA" + ] + }, + { + "version": "7.0.0-beta1", + "href": "/downloads/archive/7.0.0-beta1/", + "flags": [ + "BETA" + ] + }, + { + "version": "7.0.0-beta0", + "href": "/downloads/archive/7.0.0-beta0/", + "flags": [ + "BETA" + ] + }, + { + "version": "6.4.0", + "releaseDate": "November 2023", + "href": "/downloads/archive/6.4.0/" + }, + { + "version": "6.4.0-beta1", + "releaseDate": "October 2023", + "href": "/downloads/archive/6.4.0-beta1/", + "flags": [ + "BETA" + ] + }, + { + "version": "6.3.0", + "releaseDate": "September 2022", + "href": "/downloads/archive/6.3.0/" + }, + { + "version": "6.2.2", + "releaseDate": "December 2021", + "href": "/downloads/archive/6.2.2/" + }, + { + "version": "6.2.1", + "releaseDate": "October 2021", + "href": "/downloads/archive/6.2.1/" + }, + { + "version": "6.2.0", + "releaseDate": "December 2020", + "href": "/downloads/archive/6.2.0/" + }, + { + "version": "6.1.1", + "releaseDate": "September 2019", + "href": "/downloads/archive/6.1.1/" + }, + { + "version": "6.1.0", + "releaseDate": "May 2019", + "href": "/downloads/archive/6.1.0/" + }, + { + "version": "6.0.4", + "releaseDate": "June 2018", + "href": "/downloads/archive/6.0.4/" + }, + { + "version": "6.0.3", + "releaseDate": "March 2018", + "href": "/downloads/archive/6.0.3/" + }, + { + "version": "6.0.2", + "releaseDate": "August 2017", + "href": "/downloads/archive/6.0.2/" + }, + { + "version": "6.0.1", + "releaseDate": "March 2017", + "href": "/downloads/archive/6.0.1/" + }, + { + "version": "6.0", + "releaseDate": "December 2016", + "href": "/downloads/archive/6.0.0/" + }, + { + "version": "5.3.1", + "releaseDate": "February 2016", + "href": "/downloads/archive/5.3.1/" + }, + { + "version": "5.3", + "releaseDate": "December 2015", + "href": "/downloads/archive/5.3.0/" + }, + { + "version": "5.2.1", + "releaseDate": "October 2015", + "href": "/downloads/archive/5.2.1/" + }, + { + "version": "5.2", + "releaseDate": "April 2015", + "href": "/downloads/archive/5.2.0/" + }, + { + "version": "5.1.0", + "releaseDate": "July 2014", + "href": "/downloads/archive/5.1.0/" + }, + { + "version": "5.0.5", + "releaseDate": "December 2013", + "href": "/downloads/archive/5.0.5/" + }, + { + "version": "5.0.4", + "releaseDate": "March 2013", + "href": "/downloads/archive/5.0.4/" + }, + { + "version": "5.0.3", + "releaseDate": "October 2012", + "href": "/downloads/archive/5.0.3/" + }, + { + "version": "5.0.2", + "releaseDate": "July 2012", + "href": "/downloads/archive/5.0.2/" + }, + { + "version": "5.0.1", + "releaseDate": "April 2012", + "href": "/downloads/archive/5.0.1/" + }, + { + "version": "5.0", + "releaseDate": "February 2012", + "href": "/downloads/archive/5.0.0/" + }, + { + "version": "4.1.3", + "releaseDate": "April 2011", + "href": "/downloads/archive/4.1.3/" + }, + { + "version": "4.1.2", + "releaseDate": "December 2010", + "href": "/downloads/archive/4.1.2/" + }, + { + "version": "4.1.1", + "releaseDate": "August 2010", + "href": "/downloads/archive/4.1.1/" + }, + { + "version": "4.1", + "releaseDate": "December 2009", + "href": "/downloads/archive/4.1.0/" + }, + { + "version": "4.0.5", + "releaseDate": "December 2009", + "href": "/downloads/archive/4.0.5/" + }, + { + "version": "4.0.4", + "releaseDate": "November 2008", + "href": "/downloads/archive/4.0.4/" + }, + { + "version": "4.0.3", + "releaseDate": "August 2008", + "href": "/downloads/archive/4.0.3/" + }, + { + "version": "4.0.2", + "releaseDate": "December 2007", + "href": "/downloads/archive/4.0.2/" + }, + { + "version": "4.0.1", + "releaseDate": "October 2007", + "href": "/downloads/archive/4.0.1/" + }, + { + "version": "4.0", + "releaseDate": "September 2007", + "href": "/downloads/archive/4.0.0/" + }, + { + "version": "3.1.5", + "releaseDate": "December 2007", + "href": "/downloads/archive/3.1.5/" + }, + { + "version": "3.1.4", + "releaseDate": "February 2007", + "href": "/downloads/archive/3.1.4/" + }, + { + "version": "3.1.3", + "releaseDate": "September 2006", + "href": "/downloads/archive/3.1.3/" + }, + { + "version": "3.1.2", + "releaseDate": "August 2006", + "href": "/downloads/archive/3.1.2/" + }, + { + "version": "3.1.1", + "releaseDate": "June 2006", + "href": "/downloads/archive/3.1.1/" + }, + { + "version": "3.1", + "releaseDate": "April 2006", + "href": "/downloads/archive/3.1.0/" + }, + { + "version": "3.0.2", + "releaseDate": "November 2005", + "href": "/downloads/archive/3.0.2/" + }, + { + "version": "3.0.1", + "releaseDate": "November 2005", + "href": "/downloads/archive/3.0.1/" + }, + { + "version": "3.0", + "releaseDate": "September 2005", + "href": "/downloads/archive/3.0.0/" + }, + { + "version": "2.1", + "releaseDate": "December 2004", + "href": "/downloads/archive/2.1.0/" + }, + { + "version": "2.0.2", + "releaseDate": "August 2004", + "href": "/downloads/archive/2.0.2/" + }, + { + "version": "2.0.1", + "releaseDate": "May 2004", + "href": "/downloads/archive/2.0.1/" + }, + { + "version": "2.0", + "releaseDate": "December 2003", + "href": "/downloads/archive/2.0.0/" + }, + { + "version": "1.3.1", + "releaseDate": "September 2003", + "href": "/downloads/archive/1.3.1/" + }, + { + "version": "1.3", + "releaseDate": "June 2003", + "href": "/downloads/archive/1.3/" + }, + { + "version": "1.2.1", + "releaseDate": "May 2003", + "href": "/downloads/archive/1.2.1/" + }, + { + "version": "1.2", + "href": "/downloads/archive/1.2/" + }, + { + "version": "1.1 Revision F", + "releaseDate": "November 2002", + "flags": [ + "REVISION" + ], + "href": "/downloads/archive/1.1f/" + }, + { + "version": "1.1", + "href": "/downloads/archive/1.1f/" + }, + { + "version": "1.0 Revision D", + "releaseDate": "April 2002", + "flags": [ + "REVISION" + ], + "href": "/downloads/archive/1.0d/" + } +] \ No newline at end of file From dc26022f6888449ea999a8c1a1b5724a7c996544 Mon Sep 17 00:00:00 2001 From: Omar Ibrahim Date: Fri, 17 Oct 2025 15:40:01 -0500 Subject: [PATCH 02/16] Major: Add blurb to version archive --- src/pages/downloads/versions.json | 90 +++++++++++++++++++++++++------ 1 file changed, 74 insertions(+), 16 deletions(-) diff --git a/src/pages/downloads/versions.json b/src/pages/downloads/versions.json index a21810e..71b6dba 100644 --- a/src/pages/downloads/versions.json +++ b/src/pages/downloads/versions.json @@ -2,7 +2,16 @@ { "version": "7.0.0", "releaseDate": "September 2025", - "href": "/downloads/archive/7.0.0/" + "href": "/downloads/archive/7.0.0/", + "blurb": [ + "New modernized GUI with light, dark, and classic modes", + "New .nlogox XML file format for better extensibility", + "Enhanced widget tools for easier model authoring", + "Improved customization with more preferences and settings" + ], + "flags": [ + "LATEST" + ] }, { "version": "7.0.0-beta2", @@ -29,7 +38,8 @@ { "version": "6.4.0", "releaseDate": "November 2023", - "href": "/downloads/archive/6.4.0/" + "href": "/downloads/archive/6.4.0/", + "blurb": "Major BehaviorSpace upgrade with sub-experiments, conditional measurements, and pause/resume capabilities." }, { "version": "6.4.0-beta1", @@ -42,7 +52,8 @@ { "version": "6.3.0", "releaseDate": "September 2022", - "href": "/downloads/archive/6.3.0/" + "href": "/downloads/archive/6.3.0/", + "blurb": "Upgraded from Java 8 to Java 17 for improved performance and security." }, { "version": "6.2.2", @@ -57,7 +68,12 @@ { "version": "6.2.0", "releaseDate": "December 2020", - "href": "/downloads/archive/6.2.0/" + "href": "/downloads/archive/6.2.0/", + "blurb": [ + "Pop-out code tab for side-by-side view", + "Time extension now bundled", + "View2.5D extension significantly upgraded" + ] }, { "version": "6.1.1", @@ -67,7 +83,12 @@ { "version": "6.1.0", "releaseDate": "May 2019", - "href": "/downloads/archive/6.1.0/" + "href": "/downloads/archive/6.1.0/", + "blurb": [ + "Extension Manager for easy installation and updates", + "Python extension now bundled", + "Variadic ifelse and ifelse-value primitives" + ] }, { "version": "6.0.4", @@ -92,7 +113,13 @@ { "version": "6.0", "releaseDate": "December 2016", - "href": "/downloads/archive/6.0.0/" + "href": "/downloads/archive/6.0.0/", + "blurb": [ + "Anonymous procedures replace tasks", + "LevelSpace extension for multi-level modeling", + "Code autocompletion and folding", + "Enhanced link reporters" + ] }, { "version": "5.3.1", @@ -102,7 +129,8 @@ { "version": "5.3", "releaseDate": "December 2015", - "href": "/downloads/archive/5.3.0/" + "href": "/downloads/archive/5.3.0/", + "blurb": "Mathematica Link included and tested with Mathematica 10." }, { "version": "5.2.1", @@ -112,12 +140,18 @@ { "version": "5.2", "releaseDate": "April 2015", - "href": "/downloads/archive/5.2.0/" + "href": "/downloads/archive/5.2.0/", + "blurb": [ + "CSV and Palette extensions included", + "Network extension with support for many file types", + "HSB color primitives updated" + ] }, { "version": "5.1.0", "releaseDate": "July 2014", - "href": "/downloads/archive/5.1.0/" + "href": "/downloads/archive/5.1.0/", + "blurb": "New network extension bundled with NetLogo." }, { "version": "5.0.5", @@ -147,7 +181,13 @@ { "version": "5.0", "releaseDate": "February 2012", - "href": "/downloads/archive/5.0.0/" + "href": "/downloads/archive/5.0.0/", + "blurb": [ + "Open source with GPL license", + "Tasks for first-class functions and closures", + "Rich formatting in Info tabs using Markdown", + "GUI localized in Spanish, Russian, and Chinese" + ] }, { "version": "4.1.3", @@ -167,7 +207,12 @@ { "version": "4.1", "releaseDate": "December 2009", - "href": "/downloads/archive/4.1.0/" + "href": "/downloads/archive/4.1.0/", + "blurb": [ + "Parallel BehaviorSpace", + "Controlling API for embedding NetLogo", + "Automatic code indenter" + ] }, { "version": "4.0.5", @@ -197,7 +242,12 @@ { "version": "4.0", "releaseDate": "September 2007", - "href": "/downloads/archive/4.0.0/" + "href": "/downloads/archive/4.0.0/", + "blurb": [ + "Link agents introduced", + "Tick counter and view update modes", + "Models run faster with JVM byte code compilation" + ] }, { "version": "3.1.5", @@ -227,7 +277,8 @@ { "version": "3.1", "releaseDate": "April 2006", - "href": "/downloads/archive/3.1.0/" + "href": "/downloads/archive/3.1.0/", + "blurb": "Topologies with optional wrapping at world edges." }, { "version": "3.0.2", @@ -242,12 +293,18 @@ { "version": "3.0", "releaseDate": "September 2005", - "href": "/downloads/archive/3.0.0/" + "href": "/downloads/archive/3.0.0/", + "blurb": [ + "3D view for 2D models", + "System Dynamics Modeler", + "Drawing layer and GoGo extension" + ] }, { "version": "2.1", "releaseDate": "December 2004", - "href": "/downloads/archive/2.1.0/" + "href": "/downloads/archive/2.1.0/", + "blurb": "Action keys to trigger buttons by keypresses and QuickTime movie export." }, { "version": "2.0.2", @@ -262,7 +319,8 @@ { "version": "2.0", "releaseDate": "December 2003", - "href": "/downloads/archive/2.0.0/" + "href": "/downloads/archive/2.0.0/", + "blurb": "Fast, flicker-free, non-grid-based graphics system." }, { "version": "1.3.1", From 1d42ef3ee6fabd150f3fa4d49f131e40f859ac36 Mon Sep 17 00:00:00 2001 From: Omar Ibrahim Date: Fri, 17 Oct 2025 15:40:17 -0500 Subject: [PATCH 03/16] Major: Add timeline styling to downloads archive - Added timeline CSS and component for visual enhancement - Updated version list and entry components to utilize timeline styles - Implemented hooks for filtering versions based on new criteria --- src/components/download/archive/hooks.tsx | 38 ++++++++++ .../download/archive/version-entry.tsx | 50 +++++++++--- .../download/archive/version-list.tsx | 72 +++++++++++++++--- src/components/shared/styles/timeline.css | 76 +++++++++++++++++++ src/components/shared/timeline.tsx | 72 ++++++++++++++++++ src/pages/downloads/archive.astro | 11 ++- 6 files changed, 299 insertions(+), 20 deletions(-) create mode 100644 src/components/download/archive/hooks.tsx create mode 100644 src/components/shared/styles/timeline.css create mode 100644 src/components/shared/timeline.tsx diff --git a/src/components/download/archive/hooks.tsx b/src/components/download/archive/hooks.tsx new file mode 100644 index 0000000..c1a889e --- /dev/null +++ b/src/components/download/archive/hooks.tsx @@ -0,0 +1,38 @@ +import { useState } from 'react'; +import type { VersionEntryProps, VersionFlag } from './version-entry'; + +export function useVersionFilter( + versions: VersionEntryProps[], +) { + // flagsFilter contains flags to HIDE (not show) + const [flagsFilter, setFlagsFilter] = useState>(new Set(['BETA'])); + + const toggleFlagFilter = (flag: VersionFlag) => { + console.log('Toggling flag filter for:', flag); + setFlagsFilter((prev) => { + const newSet = new Set(prev); + if (newSet.has(flag)) { + newSet.delete(flag); + } else { + newSet.add(flag); + } + return newSet; + }); + }; + + const filteredVersions = versions.filter((version) => { + if (flagsFilter.size === 0) { + return true; + } + if (!version.flags || version.flags.length === 0) { + return true; + } + return !version.flags.some((flag) => flagsFilter.has(flag)); + }); + + return { + flagsFilter, + toggleFlagFilter, + filteredVersions, + }; +} \ No newline at end of file diff --git a/src/components/download/archive/version-entry.tsx b/src/components/download/archive/version-entry.tsx index 0e67eab..6c6037b 100644 --- a/src/components/download/archive/version-entry.tsx +++ b/src/components/download/archive/version-entry.tsx @@ -8,33 +8,63 @@ interface VersionEntryProps { href?: string; // Optional flags indicating special version types flags?: VersionFlag[]; + // Optional short description (0-2 sentences) or list of key features + blurb?: string | string[]; } -const VersionEntry = ({ version, releaseDate, flags = [], href }: VersionEntryProps) => { +const VersionEntry = ({ version, releaseDate, flags = [], href, blurb }: VersionEntryProps) => { const formattedDate = releaseDate ? formatReleaseDate(releaseDate) : undefined; + return ( -

- NetLogo {version} {formattedDate && `(Released ${formattedDate})`} - {flags.map((flag) => ( - - ))} -

+ <> + NetLogo {version} + {formattedDate && ( + {formattedDate} + )} + {flags.length > 0 && ( + + {flags.map((flag) => ( + + ))} + + )} + + ) } +// Blurb Component +const Blurb = ({ text }: { text: string | string[] | undefined }) => { + if (!text) return null; + + if (Array.isArray(text) && text.length > 0) { + return ( +
    + {text.map((item, index) => ( +
  • {item}
  • + ))} +
+ ); + } + + return

{text}

; +}; + // VersionFlagBadge Subcomponent -type VersionFlag = 'BETA' | 'RC' | 'REVISION'; +type VersionFlag = 'BETA' | 'RC' | 'REVISION' | 'LATEST'; const versionFlagStyles: { [key in VersionFlag]: string } = { BETA: "badge bg-warning text-dark me-1 ms-2", - RC: "badge bg-info text-dark me-1 ms-2", + RC: "badge bg-info me-1 ms-2", REVISION: "badge bg-secondary me-1 ms-2", + LATEST: "badge bg-success me-1 ms-2", }; const versionFlagTexts: { [key in VersionFlag]: string } = { BETA: "Beta", RC: "Release Candidate", REVISION: "Revision", + LATEST: "Latest", }; @@ -51,5 +81,5 @@ const formatReleaseDate = (dateString: string) => { return new Date(dateString).toLocaleDateString(undefined, options); }; -export type { VersionEntryProps }; +export type { VersionEntryProps, VersionFlag }; export default VersionEntry; \ No newline at end of file diff --git a/src/components/download/archive/version-list.tsx b/src/components/download/archive/version-list.tsx index eea7396..4cc5d32 100644 --- a/src/components/download/archive/version-list.tsx +++ b/src/components/download/archive/version-list.tsx @@ -1,19 +1,73 @@ -import VersionEntry, { type VersionEntryProps } from './version-entry'; +import VersionEntry, { type VersionEntryProps, type VersionFlag } from './version-entry'; +import { Timeline, TimelineItem } from '../../shared/timeline'; +import { useVersionFilter } from './hooks'; +// VersionList Component export interface VersionListProps { versions: VersionEntryProps[]; + accentColor?: string; + lineColor?: string; } -const VersionList = ({ versions }: VersionListProps) => { +const VersionList = ({ versions, accentColor, lineColor }: VersionListProps) => { + const { filteredVersions, toggleFlagFilter, flagsFilter } = useVersionFilter(versions); + + return ( + <> +
+ + +
+ + + {filteredVersions.map((versionInfo) => ( + + + + ))} + + + ); +}; + +// FilterCheckbox Subcomponent +interface FilterCheckboxProps { + flag: VersionFlag; + label: string; + isHidden: boolean; + onToggle: (flag: VersionFlag) => void; +} + +const FilterCheckbox = ({ flag, label, isHidden, onToggle }: FilterCheckboxProps) => { + const id = `${flag.toLowerCase()}-filter`; + return ( -
    - {versions.map((versionInfo) => ( -
  1. - -
  2. - ))} -
+
+ onToggle(flag)} + /> + +
); }; + export default VersionList; \ No newline at end of file diff --git a/src/components/shared/styles/timeline.css b/src/components/shared/styles/timeline.css new file mode 100644 index 0000000..40f4965 --- /dev/null +++ b/src/components/shared/styles/timeline.css @@ -0,0 +1,76 @@ +/* Timeline component styles */ +ul.timeline { + list-style-type: none; + position: relative; + padding-left: 0; + margin: 0; + max-width: 1024px; +} + +ul.timeline:before { + content: ' '; + background: var(--timeline-line-color, #d4d9df); + display: inline-block; + position: absolute; + left: var(--timeline-line-left, 29px); + width: 2px; + height: 100%; + z-index: 400; +} + +ul.timeline > li { + margin: 20px 0; + padding-left: 40px; + position: relative; +} + +ul.timeline > li:before { + content: ' '; + background: white; + display: inline-block; + position: absolute; + border-radius: 50%; + border: var(--timeline-dot-border-width, 3px) solid var(--timeline-accent-color, #22c0e8); + left: var(--timeline-dot-left, 20px); + width: var(--timeline-dot-size, 20px); + height: var(--timeline-dot-size, 20px); + z-index: 400; +} + +ul.timeline > li a { + font-weight: 600; + text-decoration: none; +} + +ul.timeline > li a:hover { + text-decoration: underline; +} + +ul.timeline > li .timeline-title { + font-weight: 600; +} + +ul.timeline > li .timeline-date { + float: right; + color: #666; + font-size: 0.9em; +} + +ul.timeline > li .timeline-description { + margin-top: 8px; + margin-bottom: 0; + color: #555; + line-height: 1.6; +} + +ul.timeline > li .timeline-blurb-list { + margin-top: 8px; + margin-bottom: 0; + padding-left: 20px; + color: #555; + line-height: 1.6; +} + +ul.timeline > li .timeline-blurb-list li { + margin-bottom: 4px; +} diff --git a/src/components/shared/timeline.tsx b/src/components/shared/timeline.tsx new file mode 100644 index 0000000..6629307 --- /dev/null +++ b/src/components/shared/timeline.tsx @@ -0,0 +1,72 @@ +import React from 'react'; +import './styles/timeline.css'; + +export interface TimelineItemData { + title: string; + date?: string; + description?: string; + href?: string; +} + +interface TimelineItemProps { + item?: TimelineItemData; + children?: React.ReactNode; +} + +export const TimelineItem: React.FC = ({ item, children }) => { + if (!item && !children) { + return null; + } + if (!item) return
  • {children}
  • ; + + return ( +
  • + <> + {item.href ? ( + + {item.title} + + ) : ( + {item.title} + )} + {item.date && ( + {item.date} + )} + {item.description && ( +

    {item.description}

    + )} + +
  • + ); +}; + +export interface TimelineProps { + accentColor?: string; + lineColor?: string; + dotSize?: number; + dotBorderWidth?: number; + children?: React.ReactNode; +} + +export const Timeline: React.FC = ({ + accentColor = '#22c0e8', + lineColor = '#d4d9df', + dotSize = 20, + dotBorderWidth = 3, + children, +}) => { + const timelineStyle = { + '--timeline-accent-color': accentColor, + '--timeline-line-color': lineColor, + '--timeline-dot-size': `${dotSize}px`, + '--timeline-dot-border-width': `${dotBorderWidth}px`, + '--timeline-line-left': `${(dotSize / 2) + 9}px`, + '--timeline-dot-left': `${(dotSize / 2)}px`, + } as React.CSSProperties; + + return ( +
      + {children} +
    + ); +}; diff --git a/src/pages/downloads/archive.astro b/src/pages/downloads/archive.astro index 5caa4f1..5ee1f39 100644 --- a/src/pages/downloads/archive.astro +++ b/src/pages/downloads/archive.astro @@ -19,7 +19,16 @@ const description = 'Archive of previous NetLogo versions';

    {description}. See release notes for details on version differences +
    + (Mac OS X users wanting to use NetLogo versions prior to 5.0.4, please read this)

    - +
    From 36e44c32bff5db7cfa535bdec43ca71a422764e0 Mon Sep 17 00:00:00 2001 From: Omar Ibrahim Date: Fri, 17 Oct 2025 15:51:27 -0500 Subject: [PATCH 04/16] Minor: Add timeline animations --- package.json | 2 ++ src/components/shared/styles/timeline.css | 4 ++-- src/components/shared/timeline.tsx | 17 ++++++++++------- 3 files changed, 14 insertions(+), 9 deletions(-) diff --git a/package.json b/package.json index 598ee34..5ee592f 100644 --- a/package.json +++ b/package.json @@ -15,6 +15,8 @@ "@astrojs/partytown": "^2.1.4", "@astrojs/react": "^3.4.0", "@directus/sdk": "^19.0.1", + "@formkit/auto-animate": "^0.9.0", + "@tanstack/react-form": "^1.23.7", "@types/react": "^18.3.3", "@types/react-dom": "^18.3.0", "astro": "^4.9.3", diff --git a/src/components/shared/styles/timeline.css b/src/components/shared/styles/timeline.css index 40f4965..d77c352 100644 --- a/src/components/shared/styles/timeline.css +++ b/src/components/shared/styles/timeline.css @@ -15,7 +15,7 @@ ul.timeline:before { left: var(--timeline-line-left, 29px); width: 2px; height: 100%; - z-index: 400; + z-index: -1; } ul.timeline > li { @@ -34,7 +34,7 @@ ul.timeline > li:before { left: var(--timeline-dot-left, 20px); width: var(--timeline-dot-size, 20px); height: var(--timeline-dot-size, 20px); - z-index: 400; + z-index: 400 !important; } ul.timeline > li a { diff --git a/src/components/shared/timeline.tsx b/src/components/shared/timeline.tsx index 6629307..1594335 100644 --- a/src/components/shared/timeline.tsx +++ b/src/components/shared/timeline.tsx @@ -1,5 +1,6 @@ -import React from 'react'; +import type { FC, ReactNode, CSSProperties } from 'react'; import './styles/timeline.css'; +import { useAutoAnimate } from '@formkit/auto-animate/react' export interface TimelineItemData { title: string; @@ -10,10 +11,10 @@ export interface TimelineItemData { interface TimelineItemProps { item?: TimelineItemData; - children?: React.ReactNode; + children?: ReactNode; } -export const TimelineItem: React.FC = ({ item, children }) => { +export const TimelineItem: FC = ({ item, children }) => { if (!item && !children) { return null; } @@ -45,16 +46,18 @@ export interface TimelineProps { lineColor?: string; dotSize?: number; dotBorderWidth?: number; - children?: React.ReactNode; + children?: ReactNode; } -export const Timeline: React.FC = ({ +export const Timeline: FC = ({ accentColor = '#22c0e8', lineColor = '#d4d9df', dotSize = 20, dotBorderWidth = 3, children, }) => { + const [animationParent] = useAutoAnimate(); + const timelineStyle = { '--timeline-accent-color': accentColor, '--timeline-line-color': lineColor, @@ -62,10 +65,10 @@ export const Timeline: React.FC = ({ '--timeline-dot-border-width': `${dotBorderWidth}px`, '--timeline-line-left': `${(dotSize / 2) + 9}px`, '--timeline-dot-left': `${(dotSize / 2)}px`, - } as React.CSSProperties; + } as CSSProperties; return ( -
      +
        {children}
      ); From 37565eafd8119d8649996d01bc081f442d61a9e8 Mon Sep 17 00:00:00 2001 From: Omar Ibrahim Date: Fri, 17 Oct 2025 15:52:05 -0500 Subject: [PATCH 05/16] Minor: update archive page leading paragraph --- src/pages/downloads/archive.astro | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pages/downloads/archive.astro b/src/pages/downloads/archive.astro index 5ee1f39..ddc9215 100644 --- a/src/pages/downloads/archive.astro +++ b/src/pages/downloads/archive.astro @@ -18,7 +18,8 @@ const description = 'Archive of previous NetLogo versions';

      - {description}. See release notes for details on version differences + {description}. See release notes for details on version differences. + Click on any version to go to its download page.
      (Mac OS X users wanting to use NetLogo versions prior to 5.0.4, please read this Date: Fri, 17 Oct 2025 16:20:41 -0500 Subject: [PATCH 06/16] Minor: Add sample page to archive --- public/downloads/archive/assets/donate.png | Bin 0 -> 2841 bytes public/downloads/archive/assets/os-mac.gif | Bin 0 -> 1386 bytes public/downloads/archive/assets/os-other.gif | Bin 0 -> 1508 bytes public/downloads/archive/assets/os-win.gif | Bin 0 -> 1495 bytes public/downloads/archive/assets/title.jpg | Bin 0 -> 40668 bytes .../download/archive/analytics/common.ts | 11 + .../download/archive/analytics/download.ts | 72 ++++++ src/pages/downloads/archive.astro | 5 +- src/pages/downloads/archive/[version].astro | 34 +++ .../downloads/archive/html/6.4.0/index.html | 234 ++++++++++++++++++ .../downloads/{ => archive}/versions.json | 2 +- 11 files changed, 353 insertions(+), 5 deletions(-) create mode 100644 public/downloads/archive/assets/donate.png create mode 100644 public/downloads/archive/assets/os-mac.gif create mode 100644 public/downloads/archive/assets/os-other.gif create mode 100644 public/downloads/archive/assets/os-win.gif create mode 100644 public/downloads/archive/assets/title.jpg create mode 100644 src/components/download/archive/analytics/common.ts create mode 100644 src/components/download/archive/analytics/download.ts create mode 100644 src/pages/downloads/archive/[version].astro create mode 100644 src/pages/downloads/archive/html/6.4.0/index.html rename src/pages/downloads/{ => archive}/versions.json (99%) diff --git a/public/downloads/archive/assets/donate.png b/public/downloads/archive/assets/donate.png new file mode 100644 index 0000000000000000000000000000000000000000..e211c49d631347228376e233da9c71033eab29e4 GIT binary patch literal 2841 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 literal 0 HcmV?d00001 diff --git a/public/downloads/archive/assets/os-mac.gif b/public/downloads/archive/assets/os-mac.gif new file mode 100644 index 0000000000000000000000000000000000000000..fd3693a7f658064813ef9d8a68f5056f708dfac2 GIT binary patch literal 1386 zcmV-w1(o_oNk%w1VI}|`0QUd@00030|Nr~?`_j?U)YI0Yp{L*9eklRgoc!nlA5}^!n?lBxVy@;w#28Xt$gHx$+Tr!DwZ*8cx5moVij9?GZi`o7c7BGNbb5)Jp|ZBV z(Y3wMxWLo5ztXL=#;UQy!^_^n%H6@q+_JgLuC>Okw8h5G;l#|}w7bmV>Hgc}_t4nu z&erM7)aT>t|KaKV+T!)u;q=(x^WW$C$j{)lyUMh=#5Nfs3K0 zuf(ab!=Ir$gsD^ueQdkvcamcz|z|6+~oGu-0ir( z&Zexoi@yY-M7HfrmnuEth~q2kCU3%+~Z(zj-9T_kDRiYro64X(3z#Uo2R;{w8zBJ=Z=@Ao29j= zvB2Q!`>wXby~WbM#?rgO&AGtK!pYQwlBtlMvznx{rLVrz-tX!1|HsbQ#?9Bi#?ZF9 zz}em7)!E>Ft4#qub^2o`&e7D<)z{nH-SPSV zsjRN1sHyMz|ML9*>+c0QFA&DFn%1fRiOTW-B$0!iShR&yB#e4`)Mun=Wu* z&;UVz0h`eAVX%S20-pmH@CZR+OPw7ccvJv4t;ZNvUr=a+N&rPJPhGshlh=(xonGNi z?826*SPla?@qwr_uiH6I+qh{8*Ui!m6SnsFNEO3q%sv^)b?e0~Qzj3UZdfoOCySO6 zg=V$8hckm9Z`>?l#s-ZUt_KkA;tw6)aU`UX98H^;4)uw~{d; zL#B~`G_oWkh8W2Rf(%SC-SfpL#H>O_7(=v?Mj8^%kc1F0pdwB>P#NOOFk&FVf*K^Q z!3G;L9Ki$=hnR9qKR!+31tBbmum})9EaJltJ^Y(z#3N8d5d{=ayz#~pWyDd+AP90a0U*LS@`e>u zI6;FIR#ZX7pDo;}f(<_LW5X}T#BxO>wa_6&6HQDp#T9VSVvGh)`Q(ovq$Fa_JMp+< zO)a%pW6nD3w9o@PPzmG!7=gq`q6|5dII|2ck5q$58IUxfK&t|A!h<0;aKQi$yl}t) s7ZqG^fjYnrlmG^ONYIHl{3wtBI|WE^K(qu25FSDK2mtQ61qB2EJ5PQ(Hvj+t literal 0 HcmV?d00001 diff --git a/public/downloads/archive/assets/os-other.gif b/public/downloads/archive/assets/os-other.gif new file mode 100644 index 0000000000000000000000000000000000000000..dc87ee2cc13bba8d2ca17d3dc5711ee6512510e8 GIT binary patch literal 1508 zcmVh$>V_xkPh_u=vP?fU=d_4@Mq z{qFYp-uC|5@b~KT_WJ$);`8|H`Tgqj_ucXK-0$?>@%G^H_2={U>GAX4@%85T{OI@k z<@EPrZgAG_^4jtBS_x}In>+FY^nwze$dx-{JD}LEhI8IFaibutg@*G3J}FxSzYDZeCmaelDiz9m{_sv2Gu(ZXdI7A-Z)V#(pNWawD~LB*T3ty?7?Hb0o8JB*uU# z#(pWgc_+$(E5?8-#egc$hb_&8Ez5;1x_K$ihcCf@Ey#;N(6^VOVHL7%9kOpCVm%YW zdMCDXCIA2bA^8LW00930EC2ui044w)000R800Rgd7(jqPg9Q;vsguP|q=E?z3YbW+ zqQ!|A4Pueg2+txrVPQV3;mQs@Oo1#891x5J?ifNf3;gPpv?aSs}~1;!bJ-ae4ciG zP4mqiMJXt7f_E8AP+xsPZ~?#|Y5X-7LX60<2L=mVFvAE3x_}`FIdtO47gar0-5hja zV896`WC&gcG5j!zAz*|!l~G@`F^Ccy%#a}oI~1`42q7F22NhdDBw_$gu#rd;LS*QI z3>Qei!2nPka)=g27&+rWppl)!SH0GVVm%sS9`@<<{f zfB?e_E@W^)1VrHS4L_vJ;!G^T$uiA7?SRA1FO_Igi4QG|Nx}&cFwzV;?a&hsF}VZ> z%QpJ#qfR;X_<{!jZq(31eVCfT63#jB%p*@c(&+M zik5J_0*f%wbfe8U$UFhS%9vmR04@1s15GLiI9QWZk)(3XDPlOG!VNc2%!D7;;DZVZ K4@gB&Kma=(TjCP{ literal 0 HcmV?d00001 diff --git a/public/downloads/archive/assets/os-win.gif b/public/downloads/archive/assets/os-win.gif new file mode 100644 index 0000000000000000000000000000000000000000..79443d0dee4566f11687053891f0fee8c0a2e611 GIT binary patch literal 1495 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 z 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 literal 0 HcmV?d00001 diff --git a/src/components/download/archive/analytics/common.ts b/src/components/download/archive/analytics/common.ts new file mode 100644 index 0000000..f7f2332 --- /dev/null +++ b/src/components/download/archive/analytics/common.ts @@ -0,0 +1,11 @@ +const errorString = 'Undetermined'; +export const maybe = (x: T | null | undefined | ''): T | string => { + switch (x) { + case null: + case undefined: + case '': + return errorString; + default: + return x; + } +}; diff --git a/src/components/download/archive/analytics/download.ts b/src/components/download/archive/analytics/download.ts new file mode 100644 index 0000000..7d2e3f9 --- /dev/null +++ b/src/components/download/archive/analytics/download.ts @@ -0,0 +1,72 @@ +import { maybe } from './common'; + +declare const gtag: Function | undefined; + +const formats = ['exe', 'msi', 'dmg', 'zip', 'tar.gz', 'tgz', 'jar']; +const formatsPattern = new RegExp(`\\.(${formats.join('|')})$`, 'i'); + +const eventName = 'download_netlogo'; +const paramGetters: Record string> = { + href: (_, href) => href, + format: (_, href) => { + const match = href.match(formatsPattern); + return maybe(match ? match[1].toLowerCase() : null); + }, + version: () => { + const segments = window.location.pathname.split('/'); + return maybe(segments.length > 2 ? segments[2] : null); + }, + download_platform: (anchor) => { + let platform = anchor.getAttribute('data-platform'); + if (!platform) { + const row = anchor.closest('tr'); + if (row) { + const cells = row.querySelectorAll('td'); + for (const cell of cells) { + if (cell.querySelector('script') && !cell.querySelector('font')) { + continue; + } else if (cell.querySelector('font')) { + platform = maybe(cell.querySelector('font')?.textContent.trim().split('\n')[0]); + break; + } + const text = cell.textContent.trim(); + if (text) { + platform = text; + break; + } + } + } + } + return maybe(platform); + }, + timestamp: () => maybe(new Date().toISOString()), + document_title: () => maybe(document.title), + document_referrer: () => maybe(document.referrer), + navigator_user_agent: () => maybe(navigator.userAgent), + navigator_platform: () => maybe(navigator.platform), + navigator_language: () => maybe(navigator.language), + navigator_cookies_enabled: () => maybe(navigator.cookieEnabled ? 'true' : 'false'), +}; + +function handleDownloadLink(anchor: HTMLAnchorElement, href: string) { + anchor.addEventListener('click', function () { + const params: Record = {}; + for (const [key, getter] of Object.entries(paramGetters)) { + params[key] = getter(anchor, href); + } + if (typeof gtag === 'function') { + gtag('event', eventName, params); + } + }); +} + +document.addEventListener('DOMContentLoaded', function () { + const anchors = document.querySelectorAll('a'); + anchors.forEach((anchor) => { + const href = anchor.getAttribute('href'); + const isDownloadLink = href && formatsPattern.test(href); + if (isDownloadLink) { + handleDownloadLink(anchor, href); + } + }); +}); diff --git a/src/pages/downloads/archive.astro b/src/pages/downloads/archive.astro index ddc9215..d892f49 100644 --- a/src/pages/downloads/archive.astro +++ b/src/pages/downloads/archive.astro @@ -2,15 +2,12 @@ import Layout from '../../layouts/Layout.astro'; import NetLogoApi from '../../utils/api.js'; -import versions from './versions.json'; +import versions from './archive/versions.json'; import VersionList from '../../components/download/archive/version-list'; import ArchivePage from '../../components/download/archive/archive-page'; import type { VersionEntryProps } from '../../components/download/archive/version-entry'; -const api = new NetLogoApi(); -const pageData = await api.getResourcesData(); - const title = 'NetLogo Download Archive'; const description = 'Archive of previous NetLogo versions'; --- diff --git a/src/pages/downloads/archive/[version].astro b/src/pages/downloads/archive/[version].astro new file mode 100644 index 0000000..1b998d4 --- /dev/null +++ b/src/pages/downloads/archive/[version].astro @@ -0,0 +1,34 @@ +--- +import versions from './versions.json'; + +declare global { + interface Window { + dataLayer: any[]; + } +} + +const { version } = Astro.params; + +export function getStaticPaths() { + return versions.map((versionData) => ({ + params: { version: versionData.version }, + })); +} + +const allHtmlFiles = await import.meta.glob('./html/*/index.html', { eager: true, as: 'raw' }); +const legacyHTML = allHtmlFiles[`./html/${version}/index.html`]; +--- + + + + + + + diff --git a/src/pages/downloads/archive/html/6.4.0/index.html b/src/pages/downloads/archive/html/6.4.0/index.html new file mode 100644 index 0000000..bf4a167 --- /dev/null +++ b/src/pages/downloads/archive/html/6.4.0/index.html @@ -0,0 +1,234 @@ + + + + + + NetLogo 6.4.0 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.4.0 Downloads

      +

      November 16, 2023

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (346 MB) +
      +
      + + Windows (32-bit) +
      + Download + (298 MB) +
      +
      + + Windows (64-bit) +
      + Download + (311 MB) +
      +
      Linux (32-bit) +
      + Download + (332 MB) +
      +
      Linux (64-bit) +
      + Download + (353 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
      • +
      • + NetLogo 6.4.0 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
      • +
      • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + If you are not sure about which version to download and your computer was made after 2005, choose 64-bit. + More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write + bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/versions.json b/src/pages/downloads/archive/versions.json similarity index 99% rename from src/pages/downloads/versions.json rename to src/pages/downloads/archive/versions.json index 71b6dba..01bbf85 100644 --- a/src/pages/downloads/versions.json +++ b/src/pages/downloads/archive/versions.json @@ -38,7 +38,7 @@ { "version": "6.4.0", "releaseDate": "November 2023", - "href": "/downloads/archive/6.4.0/", + "href": "/downloads/archive/6.4/", "blurb": "Major BehaviorSpace upgrade with sub-experiments, conditional measurements, and pause/resume capabilities." }, { From 9ba472feb469ecda49f14b3364185a45798cc2ec Mon Sep 17 00:00:00 2001 From: Omar Ibrahim Date: Mon, 20 Oct 2025 14:01:26 -0500 Subject: [PATCH 07/16] Major: Add old download pages, assets, analytics. Amend IP collection to events. --- package.json | 1 - .../downloads/archive/7.0.0/banner-dark.png | Bin 0 -> 35796 bytes .../downloads/archive/7.0.0/banner.png | Bin 0 -> 34133 bytes .../downloads/archive/analytics/common.js | 43 + .../analytics/download-latest-banner.js | 30 + .../downloads/archive/analytics/download.js | 18 +- .../downloads/archive/analytics/gtag.js | 6 + .../downloads/archive}/donate.png | Bin .../downloads/archive/os-aix.gif | Bin 0 -> 572 bytes .../static_assets/downloads/archive/os-hp.gif | Bin 0 -> 1259 bytes .../downloads/archive/os-mac-legacy.gif | Bin 0 -> 167 bytes .../downloads/archive}/os-mac.gif | Bin .../downloads/archive/os-os2.gif | Bin 0 -> 1119 bytes .../downloads/archive}/os-other.gif | Bin .../downloads/archive/os-solaris.gif | Bin 0 -> 510 bytes .../downloads/archive/os-unix.gif | Bin 0 -> 645 bytes .../downloads/archive}/os-win.gif | Bin .../downloads/archive/title-legacy.gif | Bin 0 -> 12086 bytes .../downloads/archive}/title.jpg | Bin .../download/archive/analytics/common.ts | 11 - .../archive/download-latest-banner.module.css | 65 + .../archive/download-latest-banner.tsx | 19 + src/components/download/archive/hooks.tsx | 2 +- .../download/archive/version-entry.tsx | 6 +- .../download/archive/version-list.tsx | 14 +- src/pages/downloads/archive.astro | 4 +- src/pages/downloads/archive/[version].astro | 34 +- .../downloads/archive/[version]/windows.astro | 31 + .../archive/{versions.json => _versions.json} | 221 ++- .../downloads/archive/html/1.0/index.html | 1307 +++++++++++++++++ .../downloads/archive/html/1.0d/index.html | 1307 +++++++++++++++++ .../downloads/archive/html/1.1/index.html | 1300 ++++++++++++++++ .../downloads/archive/html/1.1f/index.html | 1300 ++++++++++++++++ .../downloads/archive/html/1.2.1/index.html | 830 +++++++++++ .../downloads/archive/html/1.2/index.html | 830 +++++++++++ .../downloads/archive/html/1.3.1/index.html | 831 +++++++++++ .../downloads/archive/html/1.3/index.html | 831 +++++++++++ .../downloads/archive/html/2.0.1/index.html | 787 ++++++++++ .../downloads/archive/html/2.0.2/index.html | 787 ++++++++++ .../downloads/archive/html/2.0/index.html | 787 ++++++++++ .../downloads/archive/html/2.1.0/index.html | 795 ++++++++++ .../downloads/archive/html/2.1/index.html | 795 ++++++++++ .../downloads/archive/html/3.0.0/index.html | 142 ++ .../downloads/archive/html/3.0.1/index.html | 142 ++ .../downloads/archive/html/3.0.2/index.html | 142 ++ .../downloads/archive/html/3.0/index.html | 142 ++ .../downloads/archive/html/3.1.0/index.html | 143 ++ .../downloads/archive/html/3.1.1/index.html | 143 ++ .../downloads/archive/html/3.1.2/index.html | 143 ++ .../downloads/archive/html/3.1.3/index.html | 143 ++ .../downloads/archive/html/3.1.4/index.html | 143 ++ .../downloads/archive/html/3.1.5/index.html | 143 ++ .../downloads/archive/html/3.1/index.html | 143 ++ .../downloads/archive/html/4.0.0/index.html | 117 ++ .../downloads/archive/html/4.0.0/windows.html | 161 ++ .../downloads/archive/html/4.0.1/index.html | 117 ++ .../downloads/archive/html/4.0.1/windows.html | 161 ++ .../downloads/archive/html/4.0.2/index.html | 117 ++ .../downloads/archive/html/4.0.2/windows.html | 161 ++ .../downloads/archive/html/4.0.3/index.html | 117 ++ .../downloads/archive/html/4.0.3/windows.html | 161 ++ .../downloads/archive/html/4.0.4/index.html | 117 ++ .../downloads/archive/html/4.0.4/windows.html | 161 ++ .../downloads/archive/html/4.0.5/index.html | 117 ++ .../downloads/archive/html/4.0.5/windows.html | 161 ++ .../downloads/archive/html/4.0/index.html | 117 ++ .../downloads/archive/html/4.0/windows.html | 161 ++ .../downloads/archive/html/4.1.0/index.html | 132 ++ .../downloads/archive/html/4.1.0/windows.html | 122 ++ .../downloads/archive/html/4.1.1/index.html | 120 ++ .../downloads/archive/html/4.1.1/windows.html | 122 ++ .../downloads/archive/html/4.1.2/index.html | 120 ++ .../downloads/archive/html/4.1.2/windows.html | 122 ++ .../downloads/archive/html/4.1.3/index.html | 127 ++ .../downloads/archive/html/4.1.3/windows.html | 122 ++ .../downloads/archive/html/4.1/index.html | 127 ++ .../downloads/archive/html/4.1/windows.html | 122 ++ .../downloads/archive/html/5.0.0/index.html | 160 ++ .../downloads/archive/html/5.0.0/windows.html | 122 ++ .../downloads/archive/html/5.0.1/index.html | 160 ++ .../downloads/archive/html/5.0.1/windows.html | 120 ++ .../downloads/archive/html/5.0.2/index.html | 160 ++ .../downloads/archive/html/5.0.2/windows.html | 120 ++ .../downloads/archive/html/5.0.3/index.html | 168 +++ .../downloads/archive/html/5.0.3/windows.html | 120 ++ .../downloads/archive/html/5.0.4/index.html | 168 +++ .../downloads/archive/html/5.0.4/windows.html | 120 ++ .../downloads/archive/html/5.0.5/index.html | 168 +++ .../downloads/archive/html/5.0.5/windows.html | 120 ++ .../downloads/archive/html/5.0/index.html | 168 +++ .../downloads/archive/html/5.0/windows.html | 120 ++ .../archive/html/5.1.0-M1/index.html | 160 ++ .../archive/html/5.1.0-M1/windows.html | 122 ++ .../archive/html/5.1.0-M2/index.html | 168 +++ .../archive/html/5.1.0-M2/windows.html | 122 ++ .../downloads/archive/html/5.1.0/index.html | 168 +++ .../downloads/archive/html/5.1.0/windows.html | 120 ++ .../downloads/archive/html/5.1/index.html | 168 +++ .../downloads/archive/html/5.1/windows.html | 120 ++ .../downloads/archive/html/5.2-RC2/index.html | 168 +++ .../archive/html/5.2-RC2/windows.html | 120 ++ .../downloads/archive/html/5.2-RC3/index.html | 168 +++ .../archive/html/5.2-RC3/windows.html | 120 ++ .../archive/html/5.2.0-RC4/index.html | 168 +++ .../archive/html/5.2.0-RC4/windows.html | 122 ++ .../archive/html/5.2.0-RC5/index.html | 199 +++ .../archive/html/5.2.0-RC5/windows.html | 122 ++ .../downloads/archive/html/5.2.0/index.html | 199 +++ .../downloads/archive/html/5.2.0/windows.html | 120 ++ .../downloads/archive/html/5.2.1/index.html | 199 +++ .../downloads/archive/html/5.2.1/windows.html | 120 ++ .../downloads/archive/html/5.2/index.html | 199 +++ .../downloads/archive/html/5.2/windows.html | 120 ++ .../downloads/archive/html/5.3-RC1/index.html | 220 +++ .../downloads/archive/html/5.3.0/index.html | 220 +++ .../archive/html/5.3.1-RC1/index.html | 220 +++ .../archive/html/5.3.1-RC2/index.html | 220 +++ .../archive/html/5.3.1-RC3/index.html | 220 +++ .../downloads/archive/html/5.3.1/index.html | 220 +++ .../downloads/archive/html/5.3/index.html | 220 +++ .../archive/html/6.0-BETA1/index.html | 223 +++ .../archive/html/6.0-BETA2/index.html | 223 +++ .../index.html | 235 +++ .../downloads/archive/html/6.0-M1/index.html | 220 +++ .../downloads/archive/html/6.0-M2/index.html | 220 +++ .../downloads/archive/html/6.0-M3/index.html | 220 +++ .../downloads/archive/html/6.0-M4/index.html | 220 +++ .../downloads/archive/html/6.0-M5/index.html | 220 +++ .../downloads/archive/html/6.0-M6/index.html | 220 +++ .../downloads/archive/html/6.0-M7/index.html | 220 +++ .../downloads/archive/html/6.0-M8/index.html | 220 +++ .../downloads/archive/html/6.0-M9/index.html | 220 +++ .../downloads/archive/html/6.0.0/index.html | 225 +++ .../archive/html/6.0.1-M1/index.html | 225 +++ .../archive/html/6.0.1-RC1/index.html | 225 +++ .../downloads/archive/html/6.0.1/index.html | 230 +++ .../archive/html/6.0.2-RC1/index.html | 213 +++ .../downloads/archive/html/6.0.2/index.html | 230 +++ .../downloads/archive/html/6.0.3/index.html | 230 +++ .../downloads/archive/html/6.0.4/index.html | 230 +++ .../downloads/archive/html/6.0/index.html | 230 +++ .../downloads/archive/html/6.0beta/index.html | 220 +++ .../downloads/archive/html/6.1.0/index.html | 200 +++ .../downloads/archive/html/6.1.1/index.html | 232 +++ .../downloads/archive/html/6.1/index.html | 232 +++ .../downloads/archive/html/6.2.0/index.html | 202 +++ .../downloads/archive/html/6.2.1/index.html | 232 +++ .../downloads/archive/html/6.2.2/index.html | 232 +++ .../downloads/archive/html/6.2/index.html | 232 +++ .../downloads/archive/html/6.3.0/index.html | 202 +++ .../downloads/archive/html/6.3/index.html | 232 +++ .../archive/html/6.4.0-beta1/index.html | 202 +++ .../downloads/archive/html/6.4.0/index.html | 72 +- .../downloads/archive/html/6.4/index.html | 235 +++ .../archive/html/7.0.0-beta1/index.html | 251 ++++ .../archive/html/7.0.0-beta2/index.html | 251 ++++ .../downloads/archive/html/7.0.0/index.html | 249 ++++ 157 files changed, 32636 insertions(+), 108 deletions(-) create mode 100644 public/static_assets/downloads/archive/7.0.0/banner-dark.png create mode 100644 public/static_assets/downloads/archive/7.0.0/banner.png create mode 100644 public/static_assets/downloads/archive/analytics/common.js create mode 100644 public/static_assets/downloads/archive/analytics/download-latest-banner.js rename src/components/download/archive/analytics/download.ts => public/static_assets/downloads/archive/analytics/download.js (79%) create mode 100644 public/static_assets/downloads/archive/analytics/gtag.js rename public/{downloads/archive/assets => static_assets/downloads/archive}/donate.png (100%) create mode 100644 public/static_assets/downloads/archive/os-aix.gif create mode 100644 public/static_assets/downloads/archive/os-hp.gif create mode 100644 public/static_assets/downloads/archive/os-mac-legacy.gif rename public/{downloads/archive/assets => static_assets/downloads/archive}/os-mac.gif (100%) create mode 100644 public/static_assets/downloads/archive/os-os2.gif rename public/{downloads/archive/assets => static_assets/downloads/archive}/os-other.gif (100%) create mode 100644 public/static_assets/downloads/archive/os-solaris.gif create mode 100644 public/static_assets/downloads/archive/os-unix.gif rename public/{downloads/archive/assets => static_assets/downloads/archive}/os-win.gif (100%) create mode 100644 public/static_assets/downloads/archive/title-legacy.gif rename public/{downloads/archive/assets => static_assets/downloads/archive}/title.jpg (100%) delete mode 100644 src/components/download/archive/analytics/common.ts create mode 100644 src/components/download/archive/download-latest-banner.module.css create mode 100644 src/components/download/archive/download-latest-banner.tsx create mode 100644 src/pages/downloads/archive/[version]/windows.astro rename src/pages/downloads/archive/{versions.json => _versions.json} (67%) create mode 100644 src/pages/downloads/archive/html/1.0/index.html create mode 100644 src/pages/downloads/archive/html/1.0d/index.html create mode 100644 src/pages/downloads/archive/html/1.1/index.html create mode 100644 src/pages/downloads/archive/html/1.1f/index.html create mode 100644 src/pages/downloads/archive/html/1.2.1/index.html create mode 100644 src/pages/downloads/archive/html/1.2/index.html create mode 100644 src/pages/downloads/archive/html/1.3.1/index.html create mode 100644 src/pages/downloads/archive/html/1.3/index.html create mode 100644 src/pages/downloads/archive/html/2.0.1/index.html create mode 100644 src/pages/downloads/archive/html/2.0.2/index.html create mode 100644 src/pages/downloads/archive/html/2.0/index.html create mode 100644 src/pages/downloads/archive/html/2.1.0/index.html create mode 100644 src/pages/downloads/archive/html/2.1/index.html create mode 100644 src/pages/downloads/archive/html/3.0.0/index.html create mode 100644 src/pages/downloads/archive/html/3.0.1/index.html create mode 100644 src/pages/downloads/archive/html/3.0.2/index.html create mode 100644 src/pages/downloads/archive/html/3.0/index.html create mode 100644 src/pages/downloads/archive/html/3.1.0/index.html create mode 100644 src/pages/downloads/archive/html/3.1.1/index.html create mode 100644 src/pages/downloads/archive/html/3.1.2/index.html create mode 100644 src/pages/downloads/archive/html/3.1.3/index.html create mode 100644 src/pages/downloads/archive/html/3.1.4/index.html create mode 100644 src/pages/downloads/archive/html/3.1.5/index.html create mode 100644 src/pages/downloads/archive/html/3.1/index.html create mode 100644 src/pages/downloads/archive/html/4.0.0/index.html create mode 100644 src/pages/downloads/archive/html/4.0.0/windows.html create mode 100644 src/pages/downloads/archive/html/4.0.1/index.html create mode 100644 src/pages/downloads/archive/html/4.0.1/windows.html create mode 100644 src/pages/downloads/archive/html/4.0.2/index.html create mode 100644 src/pages/downloads/archive/html/4.0.2/windows.html create mode 100644 src/pages/downloads/archive/html/4.0.3/index.html create mode 100644 src/pages/downloads/archive/html/4.0.3/windows.html create mode 100644 src/pages/downloads/archive/html/4.0.4/index.html create mode 100644 src/pages/downloads/archive/html/4.0.4/windows.html create mode 100644 src/pages/downloads/archive/html/4.0.5/index.html create mode 100644 src/pages/downloads/archive/html/4.0.5/windows.html create mode 100644 src/pages/downloads/archive/html/4.0/index.html create mode 100644 src/pages/downloads/archive/html/4.0/windows.html create mode 100644 src/pages/downloads/archive/html/4.1.0/index.html create mode 100644 src/pages/downloads/archive/html/4.1.0/windows.html create mode 100644 src/pages/downloads/archive/html/4.1.1/index.html create mode 100644 src/pages/downloads/archive/html/4.1.1/windows.html create mode 100644 src/pages/downloads/archive/html/4.1.2/index.html create mode 100644 src/pages/downloads/archive/html/4.1.2/windows.html create mode 100644 src/pages/downloads/archive/html/4.1.3/index.html create mode 100644 src/pages/downloads/archive/html/4.1.3/windows.html create mode 100644 src/pages/downloads/archive/html/4.1/index.html create mode 100644 src/pages/downloads/archive/html/4.1/windows.html create mode 100644 src/pages/downloads/archive/html/5.0.0/index.html create mode 100644 src/pages/downloads/archive/html/5.0.0/windows.html create mode 100644 src/pages/downloads/archive/html/5.0.1/index.html create mode 100644 src/pages/downloads/archive/html/5.0.1/windows.html create mode 100644 src/pages/downloads/archive/html/5.0.2/index.html create mode 100644 src/pages/downloads/archive/html/5.0.2/windows.html create mode 100644 src/pages/downloads/archive/html/5.0.3/index.html create mode 100644 src/pages/downloads/archive/html/5.0.3/windows.html create mode 100644 src/pages/downloads/archive/html/5.0.4/index.html create mode 100644 src/pages/downloads/archive/html/5.0.4/windows.html create mode 100644 src/pages/downloads/archive/html/5.0.5/index.html create mode 100644 src/pages/downloads/archive/html/5.0.5/windows.html create mode 100644 src/pages/downloads/archive/html/5.0/index.html create mode 100644 src/pages/downloads/archive/html/5.0/windows.html create mode 100644 src/pages/downloads/archive/html/5.1.0-M1/index.html create mode 100644 src/pages/downloads/archive/html/5.1.0-M1/windows.html create mode 100644 src/pages/downloads/archive/html/5.1.0-M2/index.html create mode 100644 src/pages/downloads/archive/html/5.1.0-M2/windows.html create mode 100644 src/pages/downloads/archive/html/5.1.0/index.html create mode 100644 src/pages/downloads/archive/html/5.1.0/windows.html create mode 100644 src/pages/downloads/archive/html/5.1/index.html create mode 100644 src/pages/downloads/archive/html/5.1/windows.html create mode 100644 src/pages/downloads/archive/html/5.2-RC2/index.html create mode 100644 src/pages/downloads/archive/html/5.2-RC2/windows.html create mode 100644 src/pages/downloads/archive/html/5.2-RC3/index.html create mode 100644 src/pages/downloads/archive/html/5.2-RC3/windows.html create mode 100644 src/pages/downloads/archive/html/5.2.0-RC4/index.html create mode 100644 src/pages/downloads/archive/html/5.2.0-RC4/windows.html create mode 100644 src/pages/downloads/archive/html/5.2.0-RC5/index.html create mode 100644 src/pages/downloads/archive/html/5.2.0-RC5/windows.html create mode 100644 src/pages/downloads/archive/html/5.2.0/index.html create mode 100644 src/pages/downloads/archive/html/5.2.0/windows.html create mode 100644 src/pages/downloads/archive/html/5.2.1/index.html create mode 100644 src/pages/downloads/archive/html/5.2.1/windows.html create mode 100644 src/pages/downloads/archive/html/5.2/index.html create mode 100644 src/pages/downloads/archive/html/5.2/windows.html create mode 100644 src/pages/downloads/archive/html/5.3-RC1/index.html create mode 100644 src/pages/downloads/archive/html/5.3.0/index.html create mode 100644 src/pages/downloads/archive/html/5.3.1-RC1/index.html create mode 100644 src/pages/downloads/archive/html/5.3.1-RC2/index.html create mode 100644 src/pages/downloads/archive/html/5.3.1-RC3/index.html create mode 100644 src/pages/downloads/archive/html/5.3.1/index.html create mode 100644 src/pages/downloads/archive/html/5.3/index.html create mode 100644 src/pages/downloads/archive/html/6.0-BETA1/index.html create mode 100644 src/pages/downloads/archive/html/6.0-BETA2/index.html create mode 100644 src/pages/downloads/archive/html/6.0-CONSTRUCTIONISM-2016-PREVIEW/index.html create mode 100644 src/pages/downloads/archive/html/6.0-M1/index.html create mode 100644 src/pages/downloads/archive/html/6.0-M2/index.html create mode 100644 src/pages/downloads/archive/html/6.0-M3/index.html create mode 100644 src/pages/downloads/archive/html/6.0-M4/index.html create mode 100644 src/pages/downloads/archive/html/6.0-M5/index.html create mode 100644 src/pages/downloads/archive/html/6.0-M6/index.html create mode 100644 src/pages/downloads/archive/html/6.0-M7/index.html create mode 100644 src/pages/downloads/archive/html/6.0-M8/index.html create mode 100644 src/pages/downloads/archive/html/6.0-M9/index.html create mode 100644 src/pages/downloads/archive/html/6.0.0/index.html create mode 100644 src/pages/downloads/archive/html/6.0.1-M1/index.html create mode 100644 src/pages/downloads/archive/html/6.0.1-RC1/index.html create mode 100644 src/pages/downloads/archive/html/6.0.1/index.html create mode 100644 src/pages/downloads/archive/html/6.0.2-RC1/index.html create mode 100644 src/pages/downloads/archive/html/6.0.2/index.html create mode 100644 src/pages/downloads/archive/html/6.0.3/index.html create mode 100644 src/pages/downloads/archive/html/6.0.4/index.html create mode 100644 src/pages/downloads/archive/html/6.0/index.html create mode 100644 src/pages/downloads/archive/html/6.0beta/index.html create mode 100644 src/pages/downloads/archive/html/6.1.0/index.html create mode 100644 src/pages/downloads/archive/html/6.1.1/index.html create mode 100644 src/pages/downloads/archive/html/6.1/index.html create mode 100644 src/pages/downloads/archive/html/6.2.0/index.html create mode 100644 src/pages/downloads/archive/html/6.2.1/index.html create mode 100644 src/pages/downloads/archive/html/6.2.2/index.html create mode 100644 src/pages/downloads/archive/html/6.2/index.html create mode 100644 src/pages/downloads/archive/html/6.3.0/index.html create mode 100644 src/pages/downloads/archive/html/6.3/index.html create mode 100644 src/pages/downloads/archive/html/6.4.0-beta1/index.html create mode 100644 src/pages/downloads/archive/html/6.4/index.html create mode 100644 src/pages/downloads/archive/html/7.0.0-beta1/index.html create mode 100644 src/pages/downloads/archive/html/7.0.0-beta2/index.html create mode 100644 src/pages/downloads/archive/html/7.0.0/index.html diff --git a/package.json b/package.json index 5ee592f..d899c00 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,6 @@ "@astrojs/react": "^3.4.0", "@directus/sdk": "^19.0.1", "@formkit/auto-animate": "^0.9.0", - "@tanstack/react-form": "^1.23.7", "@types/react": "^18.3.3", "@types/react-dom": "^18.3.0", "astro": "^4.9.3", diff --git a/public/static_assets/downloads/archive/7.0.0/banner-dark.png b/public/static_assets/downloads/archive/7.0.0/banner-dark.png new file mode 100644 index 0000000000000000000000000000000000000000..d3ea0e009700e9031aec5a806a22d185cb5df16e GIT binary patch literal 35796 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

      #Yc9 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

      P5Ju_zk~y6mC@Ai?VsFM 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 literal 0 HcmV?d00001 diff --git a/public/static_assets/downloads/archive/7.0.0/banner.png b/public/static_assets/downloads/archive/7.0.0/banner.png new file mode 100644 index 0000000000000000000000000000000000000000..f171228d85a69f7868c549ef25a20eded2a2e153 GIT binary patch literal 34133 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 { + switch (x) { + case null: + case undefined: + case '': + return errorString; + default: + return x; + } +}; + +export const text = async (url) => fetch(url).then((res) => res.text()); + +export const getIPFromCloudFlare = async () => { + const data = await text('https://www.cloudflare.com/cdn-cgi/trace'); + let ipRegex = /ip=.+/; + let ip = data.match(ipRegex)[0].split('=')[1]; + return ip; +}; + +export const getIPFromAmazon = async () => { + const data = await text('https://checkip.amazonaws.com/'); + return data; +}; + +export const getIPFromIPify = async () => { + const data = await text('https://api.ipify.org/'); + return data; +}; + +export const getIPAddress = async () => { + for (const func of [getIPFromAmazon, getIPFromIPify, getIPFromCloudFlare]) { + try { + const response = await func(); + if (response) { + return response.trim(); + } + } catch (error) { + return errorString; + } + } +}; diff --git a/public/static_assets/downloads/archive/analytics/download-latest-banner.js b/public/static_assets/downloads/archive/analytics/download-latest-banner.js new file mode 100644 index 0000000..b4e6381 --- /dev/null +++ b/public/static_assets/downloads/archive/analytics/download-latest-banner.js @@ -0,0 +1,30 @@ +import { maybe, getIPAddress } from './common.js'; + +const eventName = 'download_latest_banner_click'; +const paramGetters = { + clicks: () => maybe(1), + value: () => maybe(1), + netlogo_version: () => { + return maybe(document.querySelector('meta[name="netlogo:version"]')?.getAttribute('content')); + }, + timestamp: () => maybe(new Date().toISOString()), + document_title: () => maybe(document.title), + document_referrer: () => maybe(document.referrer), + navigator_user_agent: () => maybe(navigator.userAgent), + navigator_platform: () => maybe(navigator.platform), + navigator_language: () => maybe(navigator.language), + navigator_cookies_enabled: () => maybe(navigator.cookieEnabled ? 'true' : 'false'), + ip: () => getIPAddress(), +}; + +window.onDownloadLatestBannerClick = function () { + const params = {}; + for (const [key, getter] of Object.entries(paramGetters)) { + params[key] = getter(); + } + if (typeof gtag === 'function') { + gtag('event', eventName, params); + } +}; + +document.querySelector('#download-latest-banner')?.addEventListener('click', window.onDownloadLatestBannerClick); diff --git a/src/components/download/archive/analytics/download.ts b/public/static_assets/downloads/archive/analytics/download.js similarity index 79% rename from src/components/download/archive/analytics/download.ts rename to public/static_assets/downloads/archive/analytics/download.js index 7d2e3f9..f6f70d4 100644 --- a/src/components/download/archive/analytics/download.ts +++ b/public/static_assets/downloads/archive/analytics/download.js @@ -1,20 +1,17 @@ -import { maybe } from './common'; - -declare const gtag: Function | undefined; +import { maybe, getIPAddress } from './common.js'; const formats = ['exe', 'msi', 'dmg', 'zip', 'tar.gz', 'tgz', 'jar']; const formatsPattern = new RegExp(`\\.(${formats.join('|')})$`, 'i'); const eventName = 'download_netlogo'; -const paramGetters: Record string> = { +const paramGetters = { href: (_, href) => href, format: (_, href) => { const match = href.match(formatsPattern); return maybe(match ? match[1].toLowerCase() : null); }, version: () => { - const segments = window.location.pathname.split('/'); - return maybe(segments.length > 2 ? segments[2] : null); + return maybe(document.querySelector('meta[name="netlogo:version"]')?.getAttribute('content')); }, download_platform: (anchor) => { let platform = anchor.getAttribute('data-platform'); @@ -46,13 +43,14 @@ const paramGetters: Record navigator_platform: () => maybe(navigator.platform), navigator_language: () => maybe(navigator.language), navigator_cookies_enabled: () => maybe(navigator.cookieEnabled ? 'true' : 'false'), + ip: () => getIPAddress(), }; -function handleDownloadLink(anchor: HTMLAnchorElement, href: string) { - anchor.addEventListener('click', function () { - const params: Record = {}; +function handleDownloadLink(anchor, href) { + anchor.addEventListener('click', async function () { + const params = {}; for (const [key, getter] of Object.entries(paramGetters)) { - params[key] = getter(anchor, href); + params[key] = await getter(anchor, href); } if (typeof gtag === 'function') { gtag('event', eventName, params); diff --git a/public/static_assets/downloads/archive/analytics/gtag.js b/public/static_assets/downloads/archive/analytics/gtag.js new file mode 100644 index 0000000..69fa8b8 --- /dev/null +++ b/public/static_assets/downloads/archive/analytics/gtag.js @@ -0,0 +1,6 @@ +window.dataLayer = window.dataLayer || []; +function gtag(...args) { + dataLayer.push(args); +} +gtag('js', new Date()); +gtag('config', 'G-5L2W88N305'); diff --git a/public/downloads/archive/assets/donate.png b/public/static_assets/downloads/archive/donate.png similarity index 100% rename from public/downloads/archive/assets/donate.png rename to public/static_assets/downloads/archive/donate.png diff --git a/public/static_assets/downloads/archive/os-aix.gif b/public/static_assets/downloads/archive/os-aix.gif new file mode 100644 index 0000000000000000000000000000000000000000..f6186437ce2f9d299f94979d8e3be00c1f201ff6 GIT binary patch literal 572 zcmd7PUrSSQ0LJlOB&@t}7A{bmkeX{t?bspcSTZ=;ayQXMQYdA*EJOs8j4ryE=WHvd zY)e<@z-T50Wq2`(l0YxKQ3)};P}0aC(^;Ab5&io%-$f6f7x2LMw9|21smTzjVi^Ja z`OB~0eE-457GE}reN+dyEPv(G8cVAzt?=P9^B@uvP}1YE;AUWcUyECEW$f7Nv~~X+H-<+Y(wS3{bM+Bz NcUM-KXU{Hi;vY4A+nxXb literal 0 HcmV?d00001 diff --git a/public/static_assets/downloads/archive/os-hp.gif b/public/static_assets/downloads/archive/os-hp.gif new file mode 100644 index 0000000000000000000000000000000000000000..55534108cd8138706009292901c7a426bfe73232 GIT binary patch literal 1259 zcmb`G|8EvG9LH}k#$X$sC{PfP3M?Ebv4g-(WLzEo*!SNs&xlLgwiR1}n zgNHfT2{KM&$YDS^0|`watUw}{K$K<%JrLy)G+t0NN6_SqKX}A%wc~HFX__XV_xsh) zyJ?p)WpoDkVWI@IPWr+h{xf0*Y+*0D$VbO_7#n`chV@H-5 z6fABRgh_qNWF`$L@hJ%~axwCdQ9_2Rf_iS*Ek#9#mx{tJC<`mvscmH@DN`&cE)x`D zgJUB^FhGzY$PEw}fI*!_LUNV_eq1mkiW$Y6;*g+#sJ0CstG1zsppT(2fLB)cz!T<6 zx0pBu;S?g<3T;c6Bru8c2DX_Jq+A|Ff})6`GBHA82n-p99K#R+h5$z(H1xpGSzMMO zlfIi2?a(Q3r=V!Oppp{LR7tVoaEcT`c>@9?1bhO^2m}}iL-!2bN4h9E>a2hmN)Qq# zFyI)3NM}gru(~9;WS*qBWa7ZW5mo&_Mj)p!!b2QJfFK}3L#QAUDqZZmkz<7vd8Q#K z3@KCs1@y4au+EcMx=ut@9N?KSB0~gDfxvn|^bl41f=Lq!3&sQl6ogp!(?s2yQu-7y z6GTL3R1YaodY|gS(7Q}B?f)2$4?%|hf>tfHoprx7&beOSXuV%?v6U>>7qpx^vGS{) zRgYNPfA>!v?R)1`$02Jg>AyYr(3nSi+BXjL9ys#SiAAt~)$x4|?U($SJ67$wIU=_L zR36U5@=UXD@$t?LH7o0_k6+wB{cPJ6tUWV$@8y&Ed_~2?W8Ua-Z+$nn<=~$)%yD)8 zN29CiXKnoCxyFiN6NYJ8&nORdTx=n1A1FU_a`(IQ0zG@L!bK}n8(#jLL?US^tcfLOVN5|@)Ufp&vU(q*V%DVNh zS68lhcbZWPuC^_n`{mY-TQk;G4L@|OyK3UIUALMh*_GFp414g`?2Fu)rOU_U_V}Gk z9+;Xt**J3g)y=!c!FvmKgP<PR*VBbaT}RZQ6wkRm~@V(_HPwk!5oR-!8bblWoKI z&UZjVe*4IQO~XgkPS&~>p8mVPuVDb6?y2AX-nwe=!5cq}nz}{1Rhm%KqBYI?tZirA y{G0jHwX>R_xP ze#+^i6|TO*o>h9;?#qp$emu%!%YbAlu49nRnzkCXWwi~Uu&E9orZ{MSeXTpLE F)&Tf#K=A+o literal 0 HcmV?d00001 diff --git a/public/downloads/archive/assets/os-mac.gif b/public/static_assets/downloads/archive/os-mac.gif similarity index 100% rename from public/downloads/archive/assets/os-mac.gif rename to public/static_assets/downloads/archive/os-mac.gif diff --git a/public/static_assets/downloads/archive/os-os2.gif b/public/static_assets/downloads/archive/os-os2.gif new file mode 100644 index 0000000000000000000000000000000000000000..caa15338f6864af17c595b0a28a0d66f9ad5064a GIT binary patch literal 1119 zcmeH`?~4^x7{{mU&Am%uH{Gp^7Tnnu)}a-45aAB_qGtE%y;H6__3A(`+$jPFWobmz zBXrr0o10U%I^cbAj8z-xMJMXTz`pRn>ef+-j=IQsB?tF~90h3>B_^aC$Nqu-fu48I zPdXFnG}LEnq_I8XN1H>spu7JD$UX?=Rzh-a+xuaQjsH)N|iw@ zyeM^`u>9hpq&!WS!h{o+#WclppP5dq z+lg+|iVODUkVIA8+i5$S|!(h?<{L`bC*7^ ztSc?txzIi~Rql7n)v29l2M#rM-0seNskb-E7Z2|)FK$BZ6UGcWUPCB==vM&7y3S( zUs)Lcwt3>{4r5TB73Jy+1k^ywx?%nOUv5o>ZLtBdy9+bWM@yQu3lSQyfiy|PIB^;?ChmcQ9a4Y zbE2ZA1O@d31x;Zf8t8yjg8ah3_TORpgr!WnV&YQ^PUcwYGhbvf$XYk&TzJ-picYqb zS4F++DjB9vPb#7i3`8>d|CpR?*fMV$xD! zcHv@R^NwR+kT2w7ouIG9#;3>0s=_J3#o?o^#>Ai^uaTjzEzGK>tjQo}pv1uCt1ro* zU?9e!QpL)rZJ@xer7OfB;iOilr^PO&&B(1~Aj`n1uP-K2%NF7!FS}chS5SpP%pm%= zw3bYb0^0#bE=8eTM=}{6F>6Thn^Zm!U~=Gc$Z#2pC_8JW4|9T;wG zWnkpsbmGye5OhAuAi>S%Q?X!CDwDEkNmP!dfWzW$E;hLsj{rwkresY&&fhl%9Mk_8UU!!xLp7M literal 0 HcmV?d00001 diff --git a/public/static_assets/downloads/archive/os-unix.gif b/public/static_assets/downloads/archive/os-unix.gif new file mode 100644 index 0000000000000000000000000000000000000000..9ed99e10112415df50b2db1d8c95897215c148f0 GIT binary patch literal 645 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 literal 0 HcmV?d00001 diff --git a/public/downloads/archive/assets/title.jpg b/public/static_assets/downloads/archive/title.jpg similarity index 100% rename from public/downloads/archive/assets/title.jpg rename to public/static_assets/downloads/archive/title.jpg diff --git a/src/components/download/archive/analytics/common.ts b/src/components/download/archive/analytics/common.ts deleted file mode 100644 index f7f2332..0000000 --- a/src/components/download/archive/analytics/common.ts +++ /dev/null @@ -1,11 +0,0 @@ -const errorString = 'Undetermined'; -export const maybe = (x: T | null | undefined | ''): T | string => { - switch (x) { - case null: - case undefined: - case '': - return errorString; - default: - return x; - } -}; diff --git a/src/components/download/archive/download-latest-banner.module.css b/src/components/download/archive/download-latest-banner.module.css new file mode 100644 index 0000000..fa8b38d --- /dev/null +++ b/src/components/download/archive/download-latest-banner.module.css @@ -0,0 +1,65 @@ +.banner { + display: flex; + align-items: center; + justify-content: space-around; + gap: 1rem; + + position: relative; + + padding: 1rem; + margin: 1rem auto 2.5rem auto; + + color: inherit; + background-color: #ffed29; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); + border-radius: 8px; + + text-decoration: none; + + height: auto; + max-width: min(90%, 600px); + + user-select: none; + transition: transform 0.2s; +} +.banner::before { + content: ''; + position: absolute; + top: 0; + left: 0; + width: 10px; + height: 100%; + background-color: #e11818; + border-top-left-radius: 8px; + border-bottom-left-radius: 8px; + transition: border-color 0.2s; +} +.banner:hover, +.banner:focus { + transform: translateY(-2px); + outline: none; +} +.logo { + height: 100%; + max-height: 70px; + max-width: 50%; +} +.decorate-as-link { + text-decoration: underline; + color: blue; +} +.text { + line-height: 1.5; +} + +@media (max-width: 600px) { + .banner { + flex-direction: column; + text-align: center; + gap: 0.5rem; + } + .logo { + max-width: 80%; + height: auto; + } +} diff --git a/src/components/download/archive/download-latest-banner.tsx b/src/components/download/archive/download-latest-banner.tsx new file mode 100644 index 0000000..b8936dd --- /dev/null +++ b/src/components/download/archive/download-latest-banner.tsx @@ -0,0 +1,19 @@ +import styles from './download-latest-banner.module.css'; +import NetLogoOrgLogo from "../../../assets/NetLogoOrgLogo.svg"; + +export default function DownloadLatestBanner({ isLatest }: { isLatest: boolean }) { + if (isLatest) return null; + return ( + <> + + NetLogo Logo +

      + This is an older version of NetLogo +
      + Download the latest version here. +

      + + + + ) +} \ No newline at end of file diff --git a/src/components/download/archive/hooks.tsx b/src/components/download/archive/hooks.tsx index c1a889e..acfd146 100644 --- a/src/components/download/archive/hooks.tsx +++ b/src/components/download/archive/hooks.tsx @@ -5,7 +5,7 @@ export function useVersionFilter( versions: VersionEntryProps[], ) { // flagsFilter contains flags to HIDE (not show) - const [flagsFilter, setFlagsFilter] = useState>(new Set(['BETA'])); + const [flagsFilter, setFlagsFilter] = useState>(new Set(['BETA', "MILESTONE", "RC"])); const toggleFlagFilter = (flag: VersionFlag) => { console.log('Toggling flag filter for:', flag); diff --git a/src/components/download/archive/version-entry.tsx b/src/components/download/archive/version-entry.tsx index 6c6037b..ee6cdd1 100644 --- a/src/components/download/archive/version-entry.tsx +++ b/src/components/download/archive/version-entry.tsx @@ -51,13 +51,15 @@ const Blurb = ({ text }: { text: string | string[] | undefined }) => { }; // VersionFlagBadge Subcomponent -type VersionFlag = 'BETA' | 'RC' | 'REVISION' | 'LATEST'; +type VersionFlag = 'BETA' | 'RC' | 'REVISION' | 'LATEST' | "MILESTONE" | "PREVIEW"; const versionFlagStyles: { [key in VersionFlag]: string } = { BETA: "badge bg-warning text-dark me-1 ms-2", RC: "badge bg-info me-1 ms-2", REVISION: "badge bg-secondary me-1 ms-2", LATEST: "badge bg-success me-1 ms-2", + MILESTONE: "badge bg-primary me-1 ms-2", + PREVIEW: "badge bg-dark me-1 ms-2", }; const versionFlagTexts: { [key in VersionFlag]: string } = { @@ -65,6 +67,8 @@ const versionFlagTexts: { [key in VersionFlag]: string } = { RC: "Release Candidate", REVISION: "Revision", LATEST: "Latest", + MILESTONE: "Milestone", + PREVIEW: "Preview", }; diff --git a/src/components/download/archive/version-list.tsx b/src/components/download/archive/version-list.tsx index 4cc5d32..542b05e 100644 --- a/src/components/download/archive/version-list.tsx +++ b/src/components/download/archive/version-list.tsx @@ -14,13 +14,25 @@ const VersionList = ({ versions, accentColor, lineColor }: VersionListProps) => return ( <> -
      +
      + + v.version === version); +const isLatest = versionData?.flags?.includes('LATEST') ?? false; export function getStaticPaths() { return versions.map((versionData) => ({ - params: { version: versionData.version }, + params: { version: versionData.href.split('/').filter(Boolean).pop() }, })); } @@ -20,15 +17,18 @@ const legacyHTML = allHtmlFiles[`./html/${version}/index.html`]; --- - - + + + + + + + + + + + + diff --git a/src/pages/downloads/archive/[version]/windows.astro b/src/pages/downloads/archive/[version]/windows.astro new file mode 100644 index 0000000..276b620 --- /dev/null +++ b/src/pages/downloads/archive/[version]/windows.astro @@ -0,0 +1,31 @@ +--- +const { version } = Astro.params; + +export async function getStaticPaths() { + const files = await import.meta.glob('../html/*/windows.html'); + const versions = Object.keys(files).map((filePath) => { + const parts = filePath.split('/'); + return parts[parts.length - 2]; // Get the version directory name + }); + return versions.map((version) => ({ + params: { version }, + })); +} + +const allHtmlFiles = await import.meta.glob('../html/*/windows.html', { eager: true, as: 'raw' }); +const legacyHTML = allHtmlFiles[`../html/${version}/windows.html`]; +--- + + + + + + + + + + + + + + diff --git a/src/pages/downloads/archive/versions.json b/src/pages/downloads/archive/_versions.json similarity index 67% rename from src/pages/downloads/archive/versions.json rename to src/pages/downloads/archive/_versions.json index 01bbf85..dd885d3 100644 --- a/src/pages/downloads/archive/versions.json +++ b/src/pages/downloads/archive/_versions.json @@ -15,7 +15,7 @@ }, { "version": "7.0.0-beta2", - "releaseDate": "June 2025", + "releaseDate": "July 2025", "href": "/downloads/archive/7.0.0-beta2/", "flags": [ "BETA" @@ -23,22 +23,16 @@ }, { "version": "7.0.0-beta1", + "releaseDate": "May 2025", "href": "/downloads/archive/7.0.0-beta1/", "flags": [ "BETA" ] }, - { - "version": "7.0.0-beta0", - "href": "/downloads/archive/7.0.0-beta0/", - "flags": [ - "BETA" - ] - }, { "version": "6.4.0", "releaseDate": "November 2023", - "href": "/downloads/archive/6.4/", + "href": "/downloads/archive/6.4.0/", "blurb": "Major BehaviorSpace upgrade with sub-experiments, conditional measurements, and pause/resume capabilities." }, { @@ -105,11 +99,34 @@ "releaseDate": "August 2017", "href": "/downloads/archive/6.0.2/" }, + { + "version": "6.0.2-RC1", + "releaseDate": "March 2017", + "href": "/downloads/archive/6.0.2-RC1/", + "flags": [ + "RC" + ] + }, { "version": "6.0.1", "releaseDate": "March 2017", "href": "/downloads/archive/6.0.1/" }, + { + "version": "6.0.1-M1", + "href": "/downloads/archive/6.0.1-M1/", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "6.0.1-RC1", + "releaseDate": "March 2017", + "href": "/downloads/archive/6.0.1-RC1/", + "flags": [ + "RC" + ] + }, { "version": "6.0", "releaseDate": "December 2016", @@ -121,10 +138,138 @@ "Enhanced link reporters" ] }, + { + "version": "6.0-BETA2", + "href": "/downloads/archive/6.0-BETA2/", + "releaseDate": "November 2016", + "flags": [ + "BETA" + ] + }, + { + "version": "6.0-BETA1", + "href": "/downloads/archive/6.0-BETA1/", + "releaseDate": "October 2016", + "flags": [ + "BETA" + ] + }, + { + "version": "6.0beta", + "href": "/downloads/archive/6.0beta/", + "releaseDate": "May 2016", + "flags": [ + "BETA" + ] + }, + { + "version": "6.0-M9", + "href": "/downloads/archive/6.0-M9/", + "releaseDate": "July 2016", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "6.0-M8", + "href": "/downloads/archive/6.0-M8/", + "releaseDate": "June 2016", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "6.0-M7", + "href": "/downloads/archive/6.0-M7/", + "releaseDate": "May 2016", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "6.0-M6", + "href": "/downloads/archive/6.0-M6/", + "releaseDate": "May 2016", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "6.0-M5", + "href": "/downloads/archive/6.0-M5/", + "releaseDate": "April 2016", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "6.0-M4", + "href": "/downloads/archive/6.0-M4/", + "releaseDate": "April 2016", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "6.0-M3", + "href": "/downloads/archive/6.0-M3/", + "releaseDate": "March 2016", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "6.0-M2", + "href": "/downloads/archive/6.0-M2/", + "releaseDate": "March 2016", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "6.0-M1", + "href": "/downloads/archive/6.0-M1/", + "releaseDate": "December 2015", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "6.0-CONSTRUCTIONISM-2016-PREVIEW", + "href": "/downloads/archive/6.0-CONSTRUCTIONISM-2016-PREVIEW/", + "releaseDate": "December 2015", + "flags": [ + "PREVIEW" + ] + }, { "version": "5.3.1", + "href": "/downloads/archive/5.3.1/", + "releaseDate": "February 2016" + }, + { + "version": "5.3.1-RC3", + "href": "/downloads/archive/5.3.1-RC3/", "releaseDate": "February 2016", - "href": "/downloads/archive/5.3.1/" + "flags": [ + "RC" + ] + }, + { + "version": "5.3.1-RC2", + "href": "/downloads/archive/5.3.1-RC2/", + "releaseDate": "February 2016", + "flags": [ + "RC" + ] + }, + { + "version": "5.3.1-RC1", + "href": "/downloads/archive/5.3.1-RC1/", + "releaseDate": "January 2016", + "flags": [ + "RC" + ] }, { "version": "5.3", @@ -132,6 +277,14 @@ "href": "/downloads/archive/5.3.0/", "blurb": "Mathematica Link included and tested with Mathematica 10." }, + { + "version": "5.3-RC1", + "href": "/downloads/archive/5.3-RC1/", + "releaseDate": "December 2015", + "flags": [ + "RC" + ] + }, { "version": "5.2.1", "releaseDate": "October 2015", @@ -147,12 +300,54 @@ "HSB color primitives updated" ] }, + { + "version": "5.2.0-RC5", + "href": "/downloads/archive/5.2.0-RC5/", + "flags": [ + "RC" + ] + }, + { + "version": "5.2.0-RC4", + "href": "/downloads/archive/5.2.0-RC4/", + "flags": [ + "RC" + ] + }, + { + "version": "5.2-RC3", + "href": "/downloads/archive/5.2-RC3/", + "flags": [ + "RC" + ] + }, + { + "version": "5.2-RC2", + "href": "/downloads/archive/5.2-RC2/", + "flags": [ + "RC" + ] + }, { "version": "5.1.0", "releaseDate": "July 2014", "href": "/downloads/archive/5.1.0/", "blurb": "New network extension bundled with NetLogo." }, + { + "version": "5.1.0-M2", + "href": "/downloads/archive/5.1.0-M2/", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "5.1.0-M1", + "href": "/downloads/archive/5.1.0-M1/", + "flags": [ + "MILESTONE" + ] + }, { "version": "5.0.5", "releaseDate": "December 2013", @@ -351,7 +546,7 @@ }, { "version": "1.1", - "href": "/downloads/archive/1.1f/" + "href": "/downloads/archive/1.1/" }, { "version": "1.0 Revision D", @@ -360,5 +555,9 @@ "REVISION" ], "href": "/downloads/archive/1.0d/" + }, + { + "version": "1.0", + "href": "/downloads/archive/1.0/" } ] \ No newline at end of file diff --git a/src/pages/downloads/archive/html/1.0/index.html b/src/pages/downloads/archive/html/1.0/index.html new file mode 100644 index 0000000..63ac621 --- /dev/null +++ b/src/pages/downloads/archive/html/1.0/index.html @@ -0,0 +1,1307 @@ + + + +NetLogo 1.0 Downloads + + + + + + + + + +

      NetLogo banner +

      + +

      NetLogo 1.0 Downloads

      + +

      + + + +

      Windows notes: +

        +
      • NetLogo runs fastest with the IBM 1.1 VM. Therefore we strongly +recommend the "Includes Java VM" option. (Questions? See below.) +
      • If you are running anti-virus software there may be a long pause +(as much as two minutes) near the end of the download process. +
      + +

      Mac notes: +

        +
      • Once it is installed, NetLogo will run on either Mac OS 8/9 or Mac +OS X (under Classic). Here, choose the download for OS you are +running at the moment. +
      + +
      + +


      + +
      + + + + + + + + + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Platform +
      + + includes Java VM
      (recommended) +
      +
      +
      + + without Java VM +
      +
      +
      + Instructions
      +
      +
      + +
      +
      +
      + + + Windows + +
      +
      + +
      + + Download + (14.5M) +
      + +
      + +
      + + Download + (9.1M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Mac OS + +
      +
      + +
      + + Download + (13.5M) +
      + +
      + +
      + Download + (9.2M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Mac OS X + +
      +
      + + +
      + Download + (8.8M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Linux + +
      +
      + +
      + Download + (41.7M) +
      + +
      + +
      + Download + (9.3M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + AIX + +
      +
      + + + +
      + Download + (9.3M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Solaris + +
      +
      + + + +
      + Download + (9.3M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + HP-UX + +
      +
      + + + +
      + Download + (9.3M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Unix + +
      +
      + + +
      + Download + (9.3M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Other Java-enabled Platforms + +
      +
      + + +
      + Download + (8.1M) +
      + +
      +
      + View
      +
      + +

      + + + +

      +


      + +
      +

      Windows Instructions:
      + +

        +

        Instructions +

          +
        • After downloading, double-click NetLogo1.0Installer.exe +
        +


        + Notes
        +

          +
        • We strongly recommend the "includes Java VM" download option. +
        • Choosing this download option installs IBM's 1.1.8 VM for NetLogo's private use only. Other programs on your system are not affected. +
        • NetLogo runs much faster on this VM than any other VM. +
        • Even if you have downloaded NetLogo before, you should still choose "Includes Java VM". The bundled VM is not shared between different versions of NetLogo. +
        • You should only choose the "without Java VM" download if either: +
            + +
          • You have already, separately and independently from any NetLogo + download, installed the IBM 1.1 VM on your system yourself. + +
          • You are certain you wish to try using a VM other than our + recommended VM. + +
          + + +
        +


        + (Go To Top)
        +

      +
      + + + + +
      +

      +


      + +
      +
      +

      Mac OS Classic (8.1 or greater) Instructions:
      + +

        +

        Instructions +

          +
        • After downloading, double-click NetLogo1.0Installer +
        +


        + Notes
        +

          +
        • Requires PowerPC and Mac OS 8.1 or later + + +
        • If you do not already have Macintosh Runtime for Java version 2.2.5 on your system, or if you are not sure, be sure to download the package above which includes it. +
        • The installer is MacBinary encoded and will be automatically decoded after downloading.
          + If it does not, you can decode it using StuffIt Expander 4.5 or later +
        +


        + (Go To Top)
        +

      +
      + + + + +
      +

      +


      + +
      +
      +

      Mac OS X Instructions:
      + +

        +

        Instructions +

          +
        • After downloading, double-click NetLogo1.0Installer +
        +


        + Notes
        +

          +
        • NetLogo will run as a Classic application under the Classic environment. (We plan to support OS X natively in a future version.) +
        • Requires PowerPC and Mac OS X 10.0 or later +
        • The installer will be recognized by Stuffit Expander and will be automatically decoded after downloading.
          + If it does not, you can decode it using StuffIt Expander 6.0 or later +
        +


        + (Go To Top)
        +

      +
      + + + + +
      +

      +


      + +
      +
      +

      Linux Instructions:
      + +

        +

        Instructions +

          +
        • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
        • At the prompt type:  sh ./NetLogo1_0Installer.bin +
        +


        + Notes
        +

          + + + +
        • If you do not have a Java virtual machine installed, be sure to download the package above which includes one. Otherwise you may need to download one from Sun's Java web site or contact your OS manufacturer. +
        +


        + (Go To Top)
        +

      +
      + + + + + + + +
      +

      +


      + +
      +
      +

      AIX Instructions:
      + +

        +

        Instructions +

          +
        • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
        • At the prompt type:  sh ./NetLogo1_0Installer.bin +
        +


        + Notes
        +

          + +
        • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site. + + +
        +


        + (Go To Top)
        +

      +
      + + + + + + + +
      +

      +


      + +
      +
      +

      Solaris Instructions:
      + +

        +

        Instructions +

          +
        • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
        • At the prompt type:  sh ./NetLogo1_0Installer.bin +
        +


        + Notes
        +

          + +
        • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site. + + +
        +


        + (Go To Top)
        +

      +
      + + + + + + + +
      +

      +


      + +
      +
      +

      HP-UX Instructions:
      + +

        +

        Instructions +

          +
        • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
        • At the prompt type:  sh ./NetLogo1_0Installer.bin +
        +


        + Notes
        +

          + +
        • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site or contact your OS manufacturer. + + +
        +


        + (Go To Top)
        +

      +
      + + + + + + + +
      +

      +


      + +
      +
      +

      Unix Instructions:
      + +

        +

        Instructions +

          +
        • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
        • At the prompt type:  sh ./NetLogo1_0Installer.bin +
        +


        + Notes
        +

          + +
        • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site or contact your OS manufacturer. +
        • If you do not have a Java virtual machine installed, be sure to download the package above which includes one. Otherwise you may need to download one from Sun's Java web site or contact your OS manufacturer. +
        +


        + (Go To Top)
        +

      +
      + + + + + + + + +
      +

      +


      + +
      +
      +

      All Other Platforms Instructions:
      + +

      +
      +
        +

        Instructions (Unix or Unix-like operating systems) +

          +
        • For Java 2, after downloading, type
          +   java -jar NetLogo1_0Installer.jar +
        • For Java 1.1, after downloading, type
          +   jre -cp NetLogo1_0Installer.jar install +
        • If that does not work, try
          +   java -classpath [path to]classes.zip:NetLogo1_0Installer.jar install +
        • If that does not work either, on sh-like shells, try
          +   cd [to directory where NetLogo1_0Installer.jar is located]
          +   CLASSPATH=NetLogo1_0Installer.jar
          +   export CLASSPATH
          +   java install +
        • Or for csh-like shells, try
          +   cd [to directory where NetLogo1_0Installer.jar is located]
          +   setenv CLASSPATH NetLogo1_0Installer.jar
          +   java install +
        +


        + Instructions (for other platforms)
        +

          +
        • Be sure you have Java 1.1.6 or later installed. You can download Java from Sun's site +
        • In a console window, change to the directory where you downloaded NetLogo1_0Installer.jar to before running the installer +
        • Your operating system may invoke Java in a different way. To start the installer, add NetLogo1_0Installer.jar to your CLASSPATH, then start the main class of the installer named install +
        +


        + (Go To Top)
        +

      +
      + + + +
      + +Installers created with InstallAnywhere.
      +InstallAnywhere is a registered trademark of Zero G Software, Inc.
      +Mac OS is a registered trademark of Apple Computer, Inc.
      +Solaris and Java are trademarks of Sun Microsystems, Inc.
      +Windows is a registered trademark of Microsoft Corporation.
      +All other marks are properties of their respective owners.
      +
      + +
      + + + + diff --git a/src/pages/downloads/archive/html/1.0d/index.html b/src/pages/downloads/archive/html/1.0d/index.html new file mode 100644 index 0000000..a8a0e0d --- /dev/null +++ b/src/pages/downloads/archive/html/1.0d/index.html @@ -0,0 +1,1307 @@ + + + +NetLogo 1.0 Revision D Downloads + + + + + + + + + +

      NetLogo banner +

      + +

      NetLogo 1.0 Revision D Downloads

      + +

      + + + +

      Windows notes: +

        +
      • NetLogo runs fastest with the IBM 1.1 VM. Therefore we strongly +recommend the "Includes Java VM" option. (Questions? See below.) +
      • If you are running anti-virus software there may be a long pause +(as much as two minutes) near the end of the download process. +
      + +

      Mac notes: +

        +
      • Once it is installed, NetLogo will run on either Mac OS 8/9 or Mac +OS X (under Classic). Here, choose the download for OS you are +running at the moment. +
      + +
      + +


      + +
      + + + + + + + + + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Platform +
      + + includes Java VM
      (recommended) +
      +
      +
      + + without Java VM +
      +
      +
      + Instructions
      +
      +
      + +
      +
      +
      + + + Windows + +
      +
      + +
      + + Download + (14.5M) +
      + +
      + +
      + + Download + (9.1M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Mac OS + +
      +
      + +
      + + Download + (13.5M) +
      + +
      + +
      + Download + (9.2M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Mac OS X + +
      +
      + + +
      + Download + (8.8M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Linux + +
      +
      + +
      + Download + (41.7M) +
      + +
      + +
      + Download + (9.3M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + AIX + +
      +
      + + + +
      + Download + (9.3M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Solaris + +
      +
      + + + +
      + Download + (9.3M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + HP-UX + +
      +
      + + + +
      + Download + (9.3M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Unix + +
      +
      + + +
      + Download + (9.3M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Other Java-enabled Platforms + +
      +
      + + +
      + Download + (8.1M) +
      + +
      +
      + View
      +
      + +

      + + + +

      +


      + +
      +

      Windows Instructions:
      + +

        +

        Instructions +

          +
        • After downloading, double-click NetLogo1.0Installer.exe +
        +


        + Notes
        +

          +
        • We strongly recommend the "includes Java VM" download option. +
        • Choosing this download option installs IBM's 1.1.8 VM for NetLogo's private use only. Other programs on your system are not affected. +
        • NetLogo runs much faster on this VM than any other VM. +
        • Even if you have downloaded NetLogo before, you should still choose "Includes Java VM". The bundled VM is not shared between different versions of NetLogo. +
        • You should only choose the "without Java VM" download if either: +
            + +
          • You have already, separately and independently from any NetLogo + download, installed the IBM 1.1 VM on your system yourself. + +
          • You are certain you wish to try using a VM other than our + recommended VM. + +
          + + +
        +


        + (Go To Top)
        +

      +
      + + + + +
      +

      +


      + +
      +
      +

      Mac OS Classic (8.1 or greater) Instructions:
      + +

        +

        Instructions +

          +
        • After downloading, double-click NetLogo1.0Installer +
        +


        + Notes
        +

          +
        • Requires PowerPC and Mac OS 8.1 or later + + +
        • If you do not already have Macintosh Runtime for Java version 2.2.5 on your system, or if you are not sure, be sure to download the package above which includes it. +
        • The installer is MacBinary encoded and will be automatically decoded after downloading.
          + If it does not, you can decode it using StuffIt Expander 4.5 or later +
        +


        + (Go To Top)
        +

      +
      + + + + +
      +

      +


      + +
      +
      +

      Mac OS X Instructions:
      + +

        +

        Instructions +

          +
        • After downloading, double-click NetLogo1.0Installer +
        +


        + Notes
        +

          +
        • NetLogo will run as a Classic application under the Classic environment. (We plan to support OS X natively in a future version.) +
        • Requires PowerPC and Mac OS X 10.0 or later +
        • The installer will be recognized by Stuffit Expander and will be automatically decoded after downloading.
          + If it does not, you can decode it using StuffIt Expander 6.0 or later +
        +


        + (Go To Top)
        +

      +
      + + + + +
      +

      +


      + +
      +
      +

      Linux Instructions:
      + +

        +

        Instructions +

          +
        • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
        • At the prompt type:  sh ./NetLogo1_0Installer.bin +
        +


        + Notes
        +

          + + + +
        • If you do not have a Java virtual machine installed, be sure to download the package above which includes one. Otherwise you may need to download one from Sun's Java web site or contact your OS manufacturer. +
        +


        + (Go To Top)
        +

      +
      + + + + + + + +
      +

      +


      + +
      +
      +

      AIX Instructions:
      + +

        +

        Instructions +

          +
        • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
        • At the prompt type:  sh ./NetLogo1_0Installer.bin +
        +


        + Notes
        +

          + +
        • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site. + + +
        +


        + (Go To Top)
        +

      +
      + + + + + + + +
      +

      +


      + +
      +
      +

      Solaris Instructions:
      + +

        +

        Instructions +

          +
        • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
        • At the prompt type:  sh ./NetLogo1_0Installer.bin +
        +


        + Notes
        +

          + +
        • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site. + + +
        +


        + (Go To Top)
        +

      +
      + + + + + + + +
      +

      +


      + +
      +
      +

      HP-UX Instructions:
      + +

        +

        Instructions +

          +
        • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
        • At the prompt type:  sh ./NetLogo1_0Installer.bin +
        +


        + Notes
        +

          + +
        • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site or contact your OS manufacturer. + + +
        +


        + (Go To Top)
        +

      +
      + + + + + + + +
      +

      +


      + +
      +
      +

      Unix Instructions:
      + +

        +

        Instructions +

          +
        • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
        • At the prompt type:  sh ./NetLogo1_0Installer.bin +
        +


        + Notes
        +

          + +
        • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site or contact your OS manufacturer. +
        • If you do not have a Java virtual machine installed, be sure to download the package above which includes one. Otherwise you may need to download one from Sun's Java web site or contact your OS manufacturer. +
        +


        + (Go To Top)
        +

      +
      + + + + + + + + +
      +

      +


      + +
      +
      +

      All Other Platforms Instructions:
      + +

      +
      +
        +

        Instructions (Unix or Unix-like operating systems) +

          +
        • For Java 2, after downloading, type
          +   java -jar NetLogo1_0Installer.jar +
        • For Java 1.1, after downloading, type
          +   jre -cp NetLogo1_0Installer.jar install +
        • If that does not work, try
          +   java -classpath [path to]classes.zip:NetLogo1_0Installer.jar install +
        • If that does not work either, on sh-like shells, try
          +   cd [to directory where NetLogo1_0Installer.jar is located]
          +   CLASSPATH=NetLogo1_0Installer.jar
          +   export CLASSPATH
          +   java install +
        • Or for csh-like shells, try
          +   cd [to directory where NetLogo1_0Installer.jar is located]
          +   setenv CLASSPATH NetLogo1_0Installer.jar
          +   java install +
        +


        + Instructions (for other platforms)
        +

          +
        • Be sure you have Java 1.1.6 or later installed. You can download Java from Sun's site +
        • In a console window, change to the directory where you downloaded NetLogo1_0Installer.jar to before running the installer +
        • Your operating system may invoke Java in a different way. To start the installer, add NetLogo1_0Installer.jar to your CLASSPATH, then start the main class of the installer named install +
        +


        + (Go To Top)
        +

      +
      + + + +
      + +Installers created with InstallAnywhere.
      +InstallAnywhere is a registered trademark of Zero G Software, Inc.
      +Mac OS is a registered trademark of Apple Computer, Inc.
      +Solaris and Java are trademarks of Sun Microsystems, Inc.
      +Windows is a registered trademark of Microsoft Corporation.
      +All other marks are properties of their respective owners.
      +
      + +
      + + + + diff --git a/src/pages/downloads/archive/html/1.1/index.html b/src/pages/downloads/archive/html/1.1/index.html new file mode 100644 index 0000000..97549c1 --- /dev/null +++ b/src/pages/downloads/archive/html/1.1/index.html @@ -0,0 +1,1300 @@ + + + +NetLogo 1.1 Rev F Downloads + + + + + + + + + +

      NetLogo banner +

      + +

      NetLogo 1.1 Rev F Downloads

      + +

      + + + +

      Attention Windows users: +

        +
      • NetLogo runs fastest with the IBM 1.1 VM. Therefore we strongly +recommend the "Includes Java VM" option. (Questions? See below.) +
      • If you are running anti-virus software there may be a long pause +(as much as two minutes) near the end of the download process. +
      + + + +


      + +
      + + + + + + + + + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Platform +
      + + includes Java VM
      (recommended) +
      +
      +
      + + without Java VM +
      +
      +
      + Instructions
      +
      +
      + +
      +
      +
      + + + Windows + +
      +
      + +
      + + Download + (13.2M) +
      + +
      + +
      + + Download + (8.4M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Mac OS 8 or 9 + +
      +
      + +
      + + Download + (12.2M) +
      + +
      + +
      + Download + (8.4M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Mac OS X + +
      +
      + + +
      + Download + (8.3M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Linux + +
      +
      + +
      + Download + (40.9M) +
      + +
      + +
      + Download + (8.2M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + AIX + +
      +
      + + + +
      + Download + (8.2M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Solaris + +
      +
      + + + +
      + Download + (8.2M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + HP-UX + +
      +
      + + + +
      + Download + (8.2M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Unix + +
      +
      + + +
      + Download + (8.2M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Other Java-enabled Platforms + +
      +
      + + +
      + Download + (8.1M) +
      + +
      +
      + View
      +
      + +

      + + + +

      +


      + +
      +

      Windows Instructions:
      + +

        +

        Instructions +

          +
        • After downloading, double-click NetLogo1.1Installer.exe +
        +


        + Notes
        +

          +
        • We strongly recommend the "includes Java VM" download option. +
        • Choosing this download option installs IBM's 1.1.8 VM for NetLogo's private use only. Other programs on your system are not affected. +
        • NetLogo runs much faster on this VM than any other VM. +
        • Even if you have downloaded NetLogo before, you should still choose "Includes Java VM". The bundled VM is not shared between different versions of NetLogo. +
        • You should only choose the "without Java VM" download if either: +
            + +
          • You have already, separately and independently from any NetLogo + download, installed the IBM 1.1 VM on your system yourself. + +
          • You are certain you wish to try using a VM other than our + recommended VM. + +
          + + +
        +


        + (Go To Top)
        +

      +
      + + + + +
      +

      +


      + +
      +
      +

      Mac OS Classic (8.6 or greater) Instructions:
      + +

        +

        Instructions +

          +
        • After downloading, double-click NetLogo1.1Installer +
        +


        + Notes
        +

          +
        • Requires PowerPC and Mac OS 8.6 or later + + +
        • If you do not already have Macintosh Runtime for Java version 2.2.5 on your system, or if you are not sure, be sure to download the package above which includes it. +
        • The installer is MacBinary encoded and will be automatically decoded after downloading.
          + If it does not, you can decode it using StuffIt Expander 4.5 or later +
        +


        + (Go To Top)
        +

      +
      + + + + +
      +

      +


      + +
      +
      +

      Mac OS X Instructions:
      + +

        +

        Instructions +

          +
        • After downloading, double-click NetLogo1.1Installer +
        +


        + Notes
        +

          +
        • NetLogo will run as a Classic application under the Classic environment. (We plan to support OS X natively in a future version.) +
        • Requires PowerPC and Mac OS X 10.0 or later +
        • The installer will be recognized by Stuffit Expander and will be automatically decoded after downloading.
          + If it does not, you can decode it using StuffIt Expander 6.0 or later +
        +


        + (Go To Top)
        +

      +
      + + + + +
      +

      +


      + +
      +
      +

      Linux Instructions:
      + +

        +

        Instructions +

          +
        • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
        • At the prompt type:  sh ./NetLogo1_1Installer.bin +
        +


        + Notes
        +

          + + + +
        • If you do not have a Java virtual machine installed, be sure to download the package above which includes one. Otherwise you may need to download one from Sun's Java web site or contact your OS manufacturer. +
        +


        + (Go To Top)
        +

      +
      + + + + + + + +
      +

      +


      + +
      +
      +

      AIX Instructions:
      + +

        +

        Instructions +

          +
        • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
        • At the prompt type:  sh ./NetLogo1_1Installer.bin +
        +


        + Notes
        +

          + +
        • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site. + + +
        +


        + (Go To Top)
        +

      +
      + + + + + + + +
      +

      +


      + +
      +
      +

      Solaris Instructions:
      + +

        +

        Instructions +

          +
        • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
        • At the prompt type:  sh ./NetLogo1_1Installer.bin +
        +


        + Notes
        +

          + +
        • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site. + + +
        +


        + (Go To Top)
        +

      +
      + + + + + + + +
      +

      +


      + +
      +
      +

      HP-UX Instructions:
      + +

        +

        Instructions +

          +
        • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
        • At the prompt type:  sh ./NetLogo1_1Installer.bin +
        +


        + Notes
        +

          + +
        • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site or contact your OS manufacturer. + + +
        +


        + (Go To Top)
        +

      +
      + + + + + + + +
      +

      +


      + +
      +
      +

      Unix Instructions:
      + +

        +

        Instructions +

          +
        • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
        • At the prompt type:  sh ./NetLogo1_1Installer.bin +
        +


        + Notes
        +

          + +
        • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site or contact your OS manufacturer. +
        • If you do not have a Java virtual machine installed, be sure to download the package above which includes one. Otherwise you may need to download one from Sun's Java web site or contact your OS manufacturer. +
        +


        + (Go To Top)
        +

      +
      + + + + + + + + +
      +

      +


      + +
      +
      +

      All Other Platforms Instructions:
      + +

      +
      +
        +

        Instructions (Unix or Unix-like operating systems) +

          +
        • For Java 2, after downloading, type
          +   java -jar NetLogo1_1Installer.jar +
        • For Java 1.1, after downloading, type
          +   jre -cp NetLogo1_1Installer.jar install +
        • If that does not work, try
          +   java -classpath [path to]classes.zip:NetLogo1_1Installer.jar install +
        • If that does not work either, on sh-like shells, try
          +   cd [to directory where NetLogo1_1Installer.jar is located]
          +   CLASSPATH=NetLogo1_1Installer.jar
          +   export CLASSPATH
          +   java install +
        • Or for csh-like shells, try
          +   cd [to directory where NetLogo1_1Installer.jar is located]
          +   setenv CLASSPATH NetLogo1_1Installer.jar
          +   java install +
        +


        + Instructions (for other platforms)
        +

          +
        • Be sure you have Java 1.1.6 or later installed. You can download Java from Sun's site +
        • In a console window, change to the directory where you downloaded NetLogo1_1Installer.jar to before running the installer +
        • Your operating system may invoke Java in a different way. To start the installer, add NetLogo1_1Installer.jar to your CLASSPATH, then start the main class of the installer named install +
        +


        + (Go To Top)
        +

      +
      + + + +
      + +Installers created with InstallAnywhere.
      +InstallAnywhere is a registered trademark of Zero G Software, Inc.
      +Mac OS is a registered trademark of Apple Computer, Inc.
      +Solaris and Java are trademarks of Sun Microsystems, Inc.
      +Windows is a registered trademark of Microsoft Corporation.
      +All other marks are properties of their respective owners.
      +
      + +
      + + + + diff --git a/src/pages/downloads/archive/html/1.1f/index.html b/src/pages/downloads/archive/html/1.1f/index.html new file mode 100644 index 0000000..1e7c345 --- /dev/null +++ b/src/pages/downloads/archive/html/1.1f/index.html @@ -0,0 +1,1300 @@ + + + +NetLogo 1.1 Rev F Downloads + + + + + + + + + +

      NetLogo banner +

      + +

      NetLogo 1.1 Rev F Downloads

      + +

      + + + +

      Attention Windows users: +

        +
      • NetLogo runs fastest with the IBM 1.1 VM. Therefore we strongly +recommend the "Includes Java VM" option. (Questions? See below.) +
      • If you are running anti-virus software there may be a long pause +(as much as two minutes) near the end of the download process. +
      + + + +


      + +
      + + + + + + + + + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Platform +
      + + includes Java VM
      (recommended) +
      +
      +
      + + without Java VM +
      +
      +
      + Instructions
      +
      +
      + +
      +
      +
      + + + Windows + +
      +
      + +
      + + Download + (13.2M) +
      + +
      + +
      + + Download + (8.4M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Mac OS 8 or 9 + +
      +
      + +
      + + Download + (12.2M) +
      + +
      + +
      + Download + (8.4M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Mac OS X + +
      +
      + + +
      + Download + (8.3M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Linux + +
      +
      + +
      + Download + (40.9M) +
      + +
      + +
      + Download + (8.2M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + AIX + +
      +
      + + + +
      + Download + (8.2M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Solaris + +
      +
      + + + +
      + Download + (8.2M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + HP-UX + +
      +
      + + + +
      + Download + (8.2M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Unix + +
      +
      + + +
      + Download + (8.2M) +
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Other Java-enabled Platforms + +
      +
      + + +
      + Download + (8.1M) +
      + +
      +
      + View
      +
      + +

      + + + +

      +


      + +
      +

      Windows Instructions:
      + +

        +

        Instructions +

          +
        • After downloading, double-click NetLogo1.1Installer.exe +
        +


        + Notes
        +

          +
        • We strongly recommend the "includes Java VM" download option. +
        • Choosing this download option installs IBM's 1.1.8 VM for NetLogo's private use only. Other programs on your system are not affected. +
        • NetLogo runs much faster on this VM than any other VM. +
        • Even if you have downloaded NetLogo before, you should still choose "Includes Java VM". The bundled VM is not shared between different versions of NetLogo. +
        • You should only choose the "without Java VM" download if either: +
            + +
          • You have already, separately and independently from any NetLogo + download, installed the IBM 1.1 VM on your system yourself. + +
          • You are certain you wish to try using a VM other than our + recommended VM. + +
          + + +
        +


        + (Go To Top)
        +

      +
      + + + + +
      +

      +


      + +
      +
      +

      Mac OS Classic (8.6 or greater) Instructions:
      + +

        +

        Instructions +

          +
        • After downloading, double-click NetLogo1.1Installer +
        +


        + Notes
        +

          +
        • Requires PowerPC and Mac OS 8.6 or later + + +
        • If you do not already have Macintosh Runtime for Java version 2.2.5 on your system, or if you are not sure, be sure to download the package above which includes it. +
        • The installer is MacBinary encoded and will be automatically decoded after downloading.
          + If it does not, you can decode it using StuffIt Expander 4.5 or later +
        +


        + (Go To Top)
        +

      +
      + + + + +
      +

      +


      + +
      +
      +

      Mac OS X Instructions:
      + +

        +

        Instructions +

          +
        • After downloading, double-click NetLogo1.1Installer +
        +


        + Notes
        +

          +
        • NetLogo will run as a Classic application under the Classic environment. (We plan to support OS X natively in a future version.) +
        • Requires PowerPC and Mac OS X 10.0 or later +
        • The installer will be recognized by Stuffit Expander and will be automatically decoded after downloading.
          + If it does not, you can decode it using StuffIt Expander 6.0 or later +
        +


        + (Go To Top)
        +

      +
      + + + + +
      +

      +


      + +
      +
      +

      Linux Instructions:
      + +

        +

        Instructions +

          +
        • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
        • At the prompt type:  sh ./NetLogo1_1Installer.bin +
        +


        + Notes
        +

          + + + +
        • If you do not have a Java virtual machine installed, be sure to download the package above which includes one. Otherwise you may need to download one from Sun's Java web site or contact your OS manufacturer. +
        +


        + (Go To Top)
        +

      +
      + + + + + + + +
      +

      +


      + +
      +
      +

      AIX Instructions:
      + +

        +

        Instructions +

          +
        • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
        • At the prompt type:  sh ./NetLogo1_1Installer.bin +
        +


        + Notes
        +

          + +
        • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site. + + +
        +


        + (Go To Top)
        +

      +
      + + + + + + + +
      +

      +


      + +
      +
      +

      Solaris Instructions:
      + +

        +

        Instructions +

          +
        • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
        • At the prompt type:  sh ./NetLogo1_1Installer.bin +
        +


        + Notes
        +

          + +
        • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site. + + +
        +


        + (Go To Top)
        +

      +
      + + + + + + + +
      +

      +


      + +
      +
      +

      HP-UX Instructions:
      + +

        +

        Instructions +

          +
        • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
        • At the prompt type:  sh ./NetLogo1_1Installer.bin +
        +


        + Notes
        +

          + +
        • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site or contact your OS manufacturer. + + +
        +


        + (Go To Top)
        +

      +
      + + + + + + + +
      +

      +


      + +
      +
      +

      Unix Instructions:
      + +

        +

        Instructions +

          +
        • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
        • At the prompt type:  sh ./NetLogo1_1Installer.bin +
        +


        + Notes
        +

          + +
        • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site or contact your OS manufacturer. +
        • If you do not have a Java virtual machine installed, be sure to download the package above which includes one. Otherwise you may need to download one from Sun's Java web site or contact your OS manufacturer. +
        +


        + (Go To Top)
        +

      +
      + + + + + + + + +
      +

      +


      + +
      +
      +

      All Other Platforms Instructions:
      + +

      +
      +
        +

        Instructions (Unix or Unix-like operating systems) +

          +
        • For Java 2, after downloading, type
          +   java -jar NetLogo1_1Installer.jar +
        • For Java 1.1, after downloading, type
          +   jre -cp NetLogo1_1Installer.jar install +
        • If that does not work, try
          +   java -classpath [path to]classes.zip:NetLogo1_1Installer.jar install +
        • If that does not work either, on sh-like shells, try
          +   cd [to directory where NetLogo1_1Installer.jar is located]
          +   CLASSPATH=NetLogo1_1Installer.jar
          +   export CLASSPATH
          +   java install +
        • Or for csh-like shells, try
          +   cd [to directory where NetLogo1_1Installer.jar is located]
          +   setenv CLASSPATH NetLogo1_1Installer.jar
          +   java install +
        +


        + Instructions (for other platforms)
        +

          +
        • Be sure you have Java 1.1.6 or later installed. You can download Java from Sun's site +
        • In a console window, change to the directory where you downloaded NetLogo1_1Installer.jar to before running the installer +
        • Your operating system may invoke Java in a different way. To start the installer, add NetLogo1_1Installer.jar to your CLASSPATH, then start the main class of the installer named install +
        +


        + (Go To Top)
        +

      +
      + + + +
      + +Installers created with InstallAnywhere.
      +InstallAnywhere is a registered trademark of Zero G Software, Inc.
      +Mac OS is a registered trademark of Apple Computer, Inc.
      +Solaris and Java are trademarks of Sun Microsystems, Inc.
      +Windows is a registered trademark of Microsoft Corporation.
      +All other marks are properties of their respective owners.
      +
      + +
      + + + + diff --git a/src/pages/downloads/archive/html/1.2.1/index.html b/src/pages/downloads/archive/html/1.2.1/index.html new file mode 100644 index 0000000..13d1f73 --- /dev/null +++ b/src/pages/downloads/archive/html/1.2.1/index.html @@ -0,0 +1,830 @@ + + + +NetLogo 1.2.1 Downloads + + + + + + + + + +

      NetLogo banner +

      + +

      NetLogo 1.2.1 Downloads

      + +

      + + + +

      Attention Windows users: +

        +
      • NetLogo runs fastest and is most reliable with the IBM 1.1 VM. Therefore we strongly +recommend the "Includes Java VM" option. (Questions? See below.) +
      • If you are running anti-virus software there may be a long pause +(as much as two minutes) near the end of the download process. +
      + +

      Attention Mac OS X users: +

        +
      • If you are installing under Mac OS X, you must choose the Mac + OS X download. The installer for Mac OS 8 or 9 does not work + properly on OS X. +
      + +
      + +


      + +
      + + + + + + + + + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Platform +
      + + includes Java VM
      (recommended) +
      +
      +
      + + without Java VM +
      +
      +
      + Details
      +
      +
      + +
      +
      +
      + + + Windows + +
      +
      + +
      + Download (14.9 MB)
      + +
      + +
      + Download (10.0 MB)
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Mac OS X + +
      +
      + + +
      + Download (9.4 MB)
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Mac OS 8 or 9 + +
      +
      + +
      + Download (13.9 MB)
      + +
      + +
      + Download (10.1 MB)
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Other Java-enabled Platforms + +
      +
      + + +
      + Download (6.6 MB)
      + +
      +
      + View
      +
      + +

      + + + +

      +


      + +
      +

      Windows Details:
      + +

        +
      • We strongly recommend the "includes Java VM" download option. +
      • Choosing this download option installs IBM's 1.1.8 VM for NetLogo's private use only. Other programs on your system are not affected. +
      • NetLogo runs much faster on this VM than any other VM, + and is more reliable. +
      • Even if you have downloaded NetLogo before, you should still choose "Includes Java VM". The bundled VM is not shared between different versions of NetLogo. +
      • You should only choose the "without Java VM" download if either: +
          + +
        • You have already, separately and independently from any NetLogo + download, installed the IBM 1.1 VM on your system yourself. + +
        • You are certain you wish to try using a VM other than our + recommended VM. + +
        + +
      + +


      + (Go To Top)
      +

      + + + + +
      +

      +


      + +
      +
      +

      Mac OS X Details:
      + +

        +
      • Once downloaded, NetLogo may be run either as a native OS X application, or in the Classic environment. +
      +


      + (Go To Top)
      + +

      + + + +
      +

      +


      + +
      +
      +

      Mac OS 8 or 9 Details:
      + +

        +
      • After downloading, double-click NetLogo1.2.1Installer +
      • If you do not already have Macintosh Runtime for Java version 2.2.5 on your system, or if you are not sure, be sure to download the package above which includes it. +
      • The installer is MacBinary encoded and will be automatically decoded after downloading.
        + If it does not, you can decode it using StuffIt Expander 4.5 or later. +
      +


      + (Go To Top)
      + +

      + + + + + +
      +

      +


      + +
      +
      +

      Other Platform Details:
      + +

      +
      +
        +
      • Be sure you have Java 1.1.8 or later installed. Newer Java versions such as 1.3, 1.4, or 1.4.1 should work even better. You can download Java from Sun's site. +
      • The download is in the form of a .tar.gz file. + You may untar this file into any directory. +
      • Once untarred, the NetLogo application is in the NetLogo.jar file in the netlogo-1.2.1 folder. +
      • The method for starting the application may be different + depending on your operating system and Java virtual machine. + You may be able to just double-click the NetLogo.jar + file in your file manager. + Or, a typical sequence of commands on a Unix-style machine would be: +
        +cd netlogo-1.2.1
        +java -jar NetLogo.jar
        +
      • For the computer HubNet client, substitute HubNet.jar + for NetLogo.jar. +
      +


      + (Go To Top)
      +

      + + + +
      + +Installers created with InstallAnywhere.
      +InstallAnywhere is a registered trademark of Zero G Software, Inc.
      +Mac OS is a registered trademark of Apple Computer, Inc.
      +Java is a trademark of Sun Microsystems, Inc.
      +Windows is a registered trademark of Microsoft Corporation.
      +All other marks are properties of their respective owners.
      +
      + +
      + + + + diff --git a/src/pages/downloads/archive/html/1.2/index.html b/src/pages/downloads/archive/html/1.2/index.html new file mode 100644 index 0000000..055a382 --- /dev/null +++ b/src/pages/downloads/archive/html/1.2/index.html @@ -0,0 +1,830 @@ + + + +NetLogo 1.2.1 Downloads + + + + + + + + + +

      NetLogo banner +

      + +

      NetLogo 1.2.1 Downloads

      + +

      + + + +

      Attention Windows users: +

        +
      • NetLogo runs fastest and is most reliable with the IBM 1.1 VM. Therefore we strongly +recommend the "Includes Java VM" option. (Questions? See below.) +
      • If you are running anti-virus software there may be a long pause +(as much as two minutes) near the end of the download process. +
      + +

      Attention Mac OS X users: +

        +
      • If you are installing under Mac OS X, you must choose the Mac + OS X download. The installer for Mac OS 8 or 9 does not work + properly on OS X. +
      + +
      + +


      + +
      + + + + + + + + + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Platform +
      + + includes Java VM
      (recommended) +
      +
      +
      + + without Java VM +
      +
      +
      + Details
      +
      +
      + +
      +
      +
      + + + Windows + +
      +
      + +
      + Download (14.9 MB)
      + +
      + +
      + Download (10.0 MB)
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Mac OS X + +
      +
      + + +
      + Download (9.4 MB)
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Mac OS 8 or 9 + +
      +
      + +
      + Download (13.9 MB)
      + +
      + +
      + Download (10.1 MB)
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Other Java-enabled Platforms + +
      +
      + + +
      + Download (6.6 MB)
      + +
      +
      + View
      +
      + +

      + + + +

      +


      + +
      +

      Windows Details:
      + +

        +
      • We strongly recommend the "includes Java VM" download option. +
      • Choosing this download option installs IBM's 1.1.8 VM for NetLogo's private use only. Other programs on your system are not affected. +
      • NetLogo runs much faster on this VM than any other VM, + and is more reliable. +
      • Even if you have downloaded NetLogo before, you should still choose "Includes Java VM". The bundled VM is not shared between different versions of NetLogo. +
      • You should only choose the "without Java VM" download if either: +
          + +
        • You have already, separately and independently from any NetLogo + download, installed the IBM 1.1 VM on your system yourself. + +
        • You are certain you wish to try using a VM other than our + recommended VM. + +
        + +
      + +


      + (Go To Top)
      +

      + + + + +
      +

      +


      + +
      +
      +

      Mac OS X Details:
      + +

        +
      • Once downloaded, NetLogo may be run either as a native OS X application, or in the Classic environment. +
      +


      + (Go To Top)
      + +

      + + + +
      +

      +


      + +
      +
      +

      Mac OS 8 or 9 Details:
      + +

        +
      • After downloading, double-click NetLogo1.2.1Installer +
      • If you do not already have Macintosh Runtime for Java version 2.2.5 on your system, or if you are not sure, be sure to download the package above which includes it. +
      • The installer is MacBinary encoded and will be automatically decoded after downloading.
        + If it does not, you can decode it using StuffIt Expander 4.5 or later. +
      +


      + (Go To Top)
      + +

      + + + + + +
      +

      +


      + +
      +
      +

      Other Platform Details:
      + +

      +
      +
        +
      • Be sure you have Java 1.1.8 or later installed. Newer Java versions such as 1.3, 1.4, or 1.4.1 should work even better. You can download Java from Sun's site. +
      • The download is in the form of a .tar.gz file. + You may untar this file into any directory. +
      • Once untarred, the NetLogo application is in the NetLogo.jar file in the netlogo-1.2.1 folder. +
      • The method for starting the application may be different + depending on your operating system and Java virtual machine. + You may be able to just double-click the NetLogo.jar + file in your file manager. + Or, a typical sequence of commands on a Unix-style machine would be: +
        +cd netlogo-1.2.1
        +java -jar NetLogo.jar
        +
      • For the computer HubNet client, substitute HubNet.jar + for NetLogo.jar. +
      +


      + (Go To Top)
      +

      + + + +
      + +Installers created with InstallAnywhere.
      +InstallAnywhere is a registered trademark of Zero G Software, Inc.
      +Mac OS is a registered trademark of Apple Computer, Inc.
      +Java is a trademark of Sun Microsystems, Inc.
      +Windows is a registered trademark of Microsoft Corporation.
      +All other marks are properties of their respective owners.
      +
      + +
      + + + + diff --git a/src/pages/downloads/archive/html/1.3.1/index.html b/src/pages/downloads/archive/html/1.3.1/index.html new file mode 100644 index 0000000..9f06553 --- /dev/null +++ b/src/pages/downloads/archive/html/1.3.1/index.html @@ -0,0 +1,831 @@ + + + +NetLogo 1.3.1 Downloads + + + + + + + + + +

      NetLogo banner +

      + +

      NetLogo 1.3.1 Downloads

      + +

      + + + +

      Attention Windows users: +

        +
      • NetLogo runs fastest and is most reliable with the IBM 1.1 VM. Therefore we strongly +recommend the "Includes Java VM" option. (Questions? See below.) +
      • If you are running anti-virus software there may be a long pause +(as much as two minutes) near the end of the download process. +
      + +

      Attention Mac OS X users: +

        +
      • If you are installing under Mac OS X, you must choose the Mac + OS X download. The installer for Mac OS 8 or 9 does not work + properly on OS X. +
      + +
      + +


      + +
      + + + + + + + + + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Platform +
      + + includes Java VM
      (recommended) +
      +
      +
      + + without Java VM +
      +
      +
      + Details
      +
      +
      + +
      +
      +
      + + + Windows + +
      +
      + +
      + Download (15.3 MB)
      + +
      + +
      + Download (10.4 MB)
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Mac OS X + +
      +
      + + +
      + Download (9.7 MB)
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Mac OS 8 or 9 + +
      +
      + +
      + Download (14.3 MB)
      + +
      + +
      + Download (10.5 MB)
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Other Java-enabled Platforms + +
      +
      + + +
      + Download (7.1 MB)
      + +
      +
      + View
      +
      + +

      + + + +

      +


      + +
      +

      Windows Details:
      + +

        +
      • We strongly recommend the "includes Java VM" download option. +
      • Choosing this download option installs IBM's 1.1.8 VM for NetLogo's private use only. Other programs on your system are not affected. +
      • NetLogo runs much faster on this VM than any other VM, + and is more reliable. +
      • Even if you have downloaded NetLogo before, you should still choose "Includes Java VM". The bundled VM is not shared between different versions of NetLogo. +
      • You should only choose the "without Java VM" download if either: +
          + +
        • You have already, separately and independently from any NetLogo + download, installed the IBM 1.1 VM on your system yourself. + +
        • You are certain you wish to try using a VM other than our + recommended VM. + +
        + +
      + +


      + (Go To Top)
      +

      + + + + +
      +

      +


      + +
      +
      +

      Mac OS X Details:
      + +

        +
      • Once downloaded, NetLogo may be run either as a native OS X application, or in the Classic environment. +
      +


      + (Go To Top)
      + +

      + + + +
      +

      +


      + +
      +
      +

      Mac OS 8 or 9 Details:
      + +

        +
      • After downloading, double-click NetLogo1.3.1Installer +
      • If you do not already have Macintosh Runtime for Java version 2.2.5 on your system, or if you are not sure, be sure to download the package above which includes it. +
      • The installer is MacBinary encoded and will be automatically decoded after downloading.
        + If it does not, you can decode it using StuffIt Expander 4.5 or later. +
      +


      + (Go To Top)
      + +

      + + + + + +
      +

      +


      + +
      +
      +

      Other Platform Details:
      + +

      +
      +
        +
      • Be sure you have Java 1.1.8 or later installed. Newer Java versions such as 1.3, 1.4, or 1.4.1 should work even better. You can download Java from Sun's site. +
      • The download is in the form of a .tar.gz file. + You may untar this file into any directory. +
      • Once untarred, the NetLogo application is in the NetLogo.jar file in the netlogo-1.3.1 folder. +
      • The method for starting the application may be different + depending on your operating system and Java virtual machine. + You may be able to just double-click the NetLogo.jar + file in your file manager. + Or, a typical sequence of commands on a Unix-style machine would be: +
        +cd netlogo-1.3.1
        +java -jar NetLogo.jar
        +
      • For the computer HubNet client, substitute HubNet.jar + for NetLogo.jar. +
      +


      + (Go To Top)
      +

      + + + +
      + +Installers created with InstallAnywhere.
      +InstallAnywhere is a registered trademark of Zero G Software, Inc.
      +Mac OS is a registered trademark of Apple Computer, Inc.
      +Java is a trademark of Sun Microsystems, Inc.
      +Windows is a registered trademark of Microsoft Corporation.
      +All other marks are properties of their respective owners.
      +
      + +
      + + + + + diff --git a/src/pages/downloads/archive/html/1.3/index.html b/src/pages/downloads/archive/html/1.3/index.html new file mode 100644 index 0000000..82dcde7 --- /dev/null +++ b/src/pages/downloads/archive/html/1.3/index.html @@ -0,0 +1,831 @@ + + + +NetLogo 1.3 Downloads + + + + + + + + + +

      NetLogo banner +

      + +

      NetLogo 1.3 Downloads

      + +

      + + + +

      Attention Windows users: +

        +
      • NetLogo runs fastest and is most reliable with the IBM 1.1 VM. Therefore we strongly +recommend the "Includes Java VM" option. (Questions? See below.) +
      • If you are running anti-virus software there may be a long pause +(as much as two minutes) near the end of the download process. +
      + +

      Attention Mac OS X users: +

        +
      • If you are installing under Mac OS X, you must choose the Mac + OS X download. The installer for Mac OS 8 or 9 does not work + properly on OS X. +
      + +
      + +


      + +
      + + + + + + + + + + + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Platform +
      + + includes Java VM
      (recommended) +
      +
      +
      + + without Java VM +
      +
      +
      + Details
      +
      +
      + +
      +
      +
      + + + Windows + +
      +
      + +
      + Download (15.3 MB)
      + +
      + +
      + Download (10.4 MB)
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Mac OS X + +
      +
      + + +
      + Download (9.7 MB)
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Mac OS 8 or 9 + +
      +
      + +
      + Download (14.3 MB)
      + +
      + +
      + Download (10.5 MB)
      + +
      +
      + View
      +
      +
      + +
      +
      +
      + + + Other Java-enabled Platforms + +
      +
      + + +
      + Download (7.1 MB)
      + +
      +
      + View
      +
      + +

      + + + +

      +


      + +
      +

      Windows Details:
      + +

        +
      • We strongly recommend the "includes Java VM" download option. +
      • Choosing this download option installs IBM's 1.1.8 VM for NetLogo's private use only. Other programs on your system are not affected. +
      • NetLogo runs much faster on this VM than any other VM, + and is more reliable. +
      • Even if you have downloaded NetLogo before, you should still choose "Includes Java VM". The bundled VM is not shared between different versions of NetLogo. +
      • You should only choose the "without Java VM" download if either: +
          + +
        • You have already, separately and independently from any NetLogo + download, installed the IBM 1.1 VM on your system yourself. + +
        • You are certain you wish to try using a VM other than our + recommended VM. + +
        + +
      + +


      + (Go To Top)
      +

      + + + + +
      +

      +


      + +
      +
      +

      Mac OS X Details:
      + +

        +
      • Once downloaded, NetLogo may be run either as a native OS X application, or in the Classic environment. +
      +


      + (Go To Top)
      + +

      + + + +
      +

      +


      + +
      +
      +

      Mac OS 8 or 9 Details:
      + +

        +
      • After downloading, double-click NetLogo1.3Installer +
      • If you do not already have Macintosh Runtime for Java version 2.2.5 on your system, or if you are not sure, be sure to download the package above which includes it. +
      • The installer is MacBinary encoded and will be automatically decoded after downloading.
        + If it does not, you can decode it using StuffIt Expander 4.5 or later. +
      +


      + (Go To Top)
      + +

      + + + + + +
      +

      +


      + +
      +
      +

      Other Platform Details:
      + +

      +
      +
        +
      • Be sure you have Java 1.1.8 or later installed. Newer Java versions such as 1.3, 1.4, or 1.4.1 should work even better. You can download Java from Sun's site. +
      • The download is in the form of a .tar.gz file. + You may untar this file into any directory. +
      • Once untarred, the NetLogo application is in the NetLogo.jar file in the netlogo-1.3 folder. +
      • The method for starting the application may be different + depending on your operating system and Java virtual machine. + You may be able to just double-click the NetLogo.jar + file in your file manager. + Or, a typical sequence of commands on a Unix-style machine would be: +
        +cd netlogo-1.3
        +java -jar NetLogo.jar
        +
      • For the computer HubNet client, substitute HubNet.jar + for NetLogo.jar. +
      +


      + (Go To Top)
      +

      + + + +
      + +Installers created with InstallAnywhere.
      +InstallAnywhere is a registered trademark of Zero G Software, Inc.
      +Mac OS is a registered trademark of Apple Computer, Inc.
      +Java is a trademark of Sun Microsystems, Inc.
      +Windows is a registered trademark of Microsoft Corporation.
      +All other marks are properties of their respective owners.
      +
      + +
      + + + + + diff --git a/src/pages/downloads/archive/html/2.0.1/index.html b/src/pages/downloads/archive/html/2.0.1/index.html new file mode 100644 index 0000000..4bc3951 --- /dev/null +++ b/src/pages/downloads/archive/html/2.0.1/index.html @@ -0,0 +1,787 @@ + + + + + + NetLogo 2.0.1 Downloads + + + + + + + + + + + + + + +

      NetLogo banner

      +

      + + + + +
      +

      NetLogo 2.0.1 Downloads

      + +

      + Notes for Windows users: +

      +
        +
      • + NetLogo runs fastest and is most reliable on the Sun 1.4.2 VM. Therefore we strongly recommend the + "Includes Java VM" option. (Questions? See below.) +
      • + +
      • + If you are running anti-virus software there may be a long pause (as much as two minutes) near the end + of the download process. +
      • +
      + +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Platform +
      + includes Java VM
      (recommended)
      +
      +
      +
      + without Java VM +
      +
      +
      + Details +
      +
      +
      + +
      +
      + + +
      + + Windows + +
      +
      +
      + Download (21.6 MB) +
      +
      +
      + Download (9.3 MB) +
      +
      +
      + View +
      +
      +
      + +
      +
      + + +
      + + Mac OS X + +
      +
      +
      + Download (8.8 MB) +
      +
      +
      + View +
      +
      +
      + +
      +
      + + +
      + + Other Java-enabled Platforms + +
      +
      +
      + Download (8.2 MB) +
      +
      +
      + View +
      +
      + +

      + + + + +
      + +

      +
      + +
      +

      + Windows Details:
      +

      + +
        +
      • We strongly recommend the "includes Java VM" download option.
      • +
      • + Choosing this download option installs Sun's 1.4.2 VM for NetLogo's private use only. Other programs on + your system are not affected. +
      • +
      • NetLogo runs faster and is more reliable on this VM than any other VM.
      • +
      • + Even if you have downloaded NetLogo before, you should still choose "Includes Java VM". The bundled VM + is not shared between different versions of NetLogo. +
      • +
      • + You should only choose the "without Java VM" download if either: +
          +
        • + You have already, separately and independently from any NetLogo download, installed the Sun 1.4.2 VM + on your system yourself. +
        • + +
        • You are certain you wish to try using a VM other than our recommended VM.
        • +
        +
      • +
      + +

      +
      + (Go To Top)
      +

      +
      + + +
      +

      +
      +
      +
      +

      + Mac OS X Details:
      +

      + +
        +
      • + On OS X 10.2, NetLogo requires Java 1.4.1 Update 1, which is available from Apple via Software Update. +
      • +
      + +

      +
      + (Go To Top)
      +

      +
      + + + +
      +

      +
      +
      +
      +

      + Other Platform Details:
      +

      +
      + +
      +
        +
      • + Be sure you have Java 1.4.1 or later installed. Newer Java versions such as 1.4.2 should work even + better. You can download Java from Sun's site. +
      • +
      • + The download is in the form of a .tar.gz file. You may untar this file into any directory. +
      • + +
      • + Once untarred, the NetLogo application is in the NetLogo.jar file in the + netlogo-2.0.1 folder. +
      • +
      • + The method for starting the application may be different depending on your operating system and Java + virtual machine. You may be able to just double-click the NetLogo.jar + file in your file manager. Or, a typical sequence of commands on a Unix-style machine would be: +
        +cd netlogo-2.0.1
        +java -jar NetLogo.jar
        +
      • + +
      • For the computer HubNet client, substitute HubNet.jar for NetLogo.jar.
      • +
      + +

      +
      + (Go To Top)
      +

      +
      + +
      + + Installers created with InstallAnywhere.
      + InstallAnywhere is a registered trademark of Zero G Software, Inc.
      + Mac OS X is a registered trademark of Apple Computer, Inc.
      + Java is a trademark of Sun Microsystems, Inc.
      + Windows is a registered trademark of Microsoft Corporation.
      + All other marks are properties of their respective owners.
      +
      +
      + + diff --git a/src/pages/downloads/archive/html/2.0.2/index.html b/src/pages/downloads/archive/html/2.0.2/index.html new file mode 100644 index 0000000..f7496e7 --- /dev/null +++ b/src/pages/downloads/archive/html/2.0.2/index.html @@ -0,0 +1,787 @@ + + + + + + NetLogo 2.0.2 Downloads + + + + + + + + + + + + + + +

      NetLogo banner

      +

      + + + + +
      +

      NetLogo 2.0.2 Downloads

      + +

      + Notes for Windows users: +

      +
        +
      • + NetLogo runs fastest and is most reliable on the Sun 1.4.2 VM. Therefore we strongly recommend the + "Includes Java VM" option. (Questions? See below.) +
      • + +
      • + If you are running anti-virus software there may be a long pause (as much as two minutes) near the end + of the download process. +
      • +
      + +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Platform +
      + includes Java VM
      (recommended)
      +
      +
      +
      + without Java VM +
      +
      +
      + Details +
      +
      +
      + +
      +
      + + +
      + + Windows + +
      +
      +
      + Download (22.1 MB) +
      +
      +
      + Download (9.6 MB) +
      +
      +
      + View +
      +
      +
      + +
      +
      + + +
      + + Mac OS X + +
      +
      +
      + Download (9.1 MB) +
      +
      +
      + View +
      +
      +
      + +
      +
      + + +
      + + Other Java-enabled Platforms + +
      +
      +
      + Download (8.5 MB) +
      +
      +
      + View +
      +
      + +

      + + + + +
      + +

      +
      + +
      +

      + Windows Details:
      +

      + +
        +
      • We strongly recommend the "includes Java VM" download option.
      • +
      • + Choosing this download option installs Sun's 1.4.2 VM for NetLogo's private use only. Other programs on + your system are not affected. +
      • +
      • NetLogo runs faster and is more reliable on this VM than any other VM.
      • +
      • + Even if you have downloaded NetLogo before, you should still choose "Includes Java VM". The bundled VM + is not shared between different versions of NetLogo. +
      • +
      • + You should only choose the "without Java VM" download if either: +
          +
        • + You have already, separately and independently from any NetLogo download, installed the Sun 1.4.2 VM + on your system yourself. +
        • + +
        • You are certain you wish to try using a VM other than our recommended VM.
        • +
        +
      • +
      + +

      +
      + (Go To Top)
      +

      +
      + + +
      +

      +
      +
      +
      +

      + Mac OS X Details:
      +

      + +
        +
      • + On OS X 10.2, NetLogo requires Java 1.4.1 Update 1, which is available from Apple via Software Update. +
      • +
      + +

      +
      + (Go To Top)
      +

      +
      + + + +
      +

      +
      +
      +
      +

      + Other Platform Details:
      +

      +
      + +
      +
        +
      • + Be sure you have Java 1.4.1 or later installed. Newer Java versions such as 1.4.2 should work even + better. You can download Java from Sun's site. +
      • +
      • + The download is in the form of a .tar.gz file. You may untar this file into any directory. +
      • + +
      • + Once untarred, the NetLogo application is in the NetLogo.jar file in the + netlogo-2.0.2 folder. +
      • +
      • + The method for starting the application may be different depending on your operating system and Java + virtual machine. You may be able to just double-click the NetLogo.jar + file in your file manager. Or, a typical sequence of commands on a Unix-style machine would be: +
        +cd netlogo-2.0.2
        +java -jar NetLogo.jar
        +
      • + +
      • For the computer HubNet client, substitute HubNet.jar for NetLogo.jar.
      • +
      + +

      +
      + (Go To Top)
      +

      +
      + +
      + + Installers created with InstallAnywhere.
      + InstallAnywhere is a registered trademark of Zero G Software, Inc.
      + Mac OS X is a registered trademark of Apple Computer, Inc.
      + Java is a trademark of Sun Microsystems, Inc.
      + Windows is a registered trademark of Microsoft Corporation.
      + All other marks are properties of their respective owners.
      +
      +
      + + diff --git a/src/pages/downloads/archive/html/2.0/index.html b/src/pages/downloads/archive/html/2.0/index.html new file mode 100644 index 0000000..888088b --- /dev/null +++ b/src/pages/downloads/archive/html/2.0/index.html @@ -0,0 +1,787 @@ + + + + + + NetLogo 2.0.2 Downloads + + + + + + + + + + + + + + +

      NetLogo banner

      +

      + + + + +
      +

      NetLogo 2.0.2 Downloads

      + +

      + Notes for Windows users: +

      +
        +
      • + NetLogo runs fastest and is most reliable on the Sun 1.4.2 VM. Therefore we strongly recommend the + "Includes Java VM" option. (Questions? See below.) +
      • + +
      • + If you are running anti-virus software there may be a long pause (as much as two minutes) near the end + of the download process. +
      • +
      + +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Platform +
      + includes Java VM
      (recommended)
      +
      +
      +
      + without Java VM +
      +
      +
      + Details +
      +
      +
      + +
      +
      + + +
      + + Windows + +
      +
      +
      + Download (22.1 MB) +
      +
      +
      + Download (9.6 MB) +
      +
      +
      + View +
      +
      +
      + +
      +
      + + +
      + + Mac OS X + +
      +
      +
      + Download (9.1 MB) +
      +
      +
      + View +
      +
      +
      + +
      +
      + + +
      + + Other Java-enabled Platforms + +
      +
      +
      + Download (8.5 MB) +
      +
      +
      + View +
      +
      + +

      + + + + +
      + +

      +
      + +
      +

      + Windows Details:
      +

      + +
        +
      • We strongly recommend the "includes Java VM" download option.
      • +
      • + Choosing this download option installs Sun's 1.4.2 VM for NetLogo's private use only. Other programs on + your system are not affected. +
      • +
      • NetLogo runs faster and is more reliable on this VM than any other VM.
      • +
      • + Even if you have downloaded NetLogo before, you should still choose "Includes Java VM". The bundled VM + is not shared between different versions of NetLogo. +
      • +
      • + You should only choose the "without Java VM" download if either: +
          +
        • + You have already, separately and independently from any NetLogo download, installed the Sun 1.4.2 VM + on your system yourself. +
        • + +
        • You are certain you wish to try using a VM other than our recommended VM.
        • +
        +
      • +
      + +

      +
      + (Go To Top)
      +

      +
      + + +
      +

      +
      +
      +
      +

      + Mac OS X Details:
      +

      + +
        +
      • + On OS X 10.2, NetLogo requires Java 1.4.1 Update 1, which is available from Apple via Software Update. +
      • +
      + +

      +
      + (Go To Top)
      +

      +
      + + + +
      +

      +
      +
      +
      +

      + Other Platform Details:
      +

      +
      + +
      +
        +
      • + Be sure you have Java 1.4.1 or later installed. Newer Java versions such as 1.4.2 should work even + better. You can download Java from Sun's site. +
      • +
      • + The download is in the form of a .tar.gz file. You may untar this file into any directory. +
      • + +
      • + Once untarred, the NetLogo application is in the NetLogo.jar file in the + netlogo-2.0.2 folder. +
      • +
      • + The method for starting the application may be different depending on your operating system and Java + virtual machine. You may be able to just double-click the NetLogo.jar + file in your file manager. Or, a typical sequence of commands on a Unix-style machine would be: +
        +cd netlogo-2.0.2
        +java -jar NetLogo.jar
        +
      • + +
      • For the computer HubNet client, substitute HubNet.jar for NetLogo.jar.
      • +
      + +

      +
      + (Go To Top)
      +

      +
      + +
      + + Installers created with InstallAnywhere.
      + InstallAnywhere is a registered trademark of Zero G Software, Inc.
      + Mac OS X is a registered trademark of Apple Computer, Inc.
      + Java is a trademark of Sun Microsystems, Inc.
      + Windows is a registered trademark of Microsoft Corporation.
      + All other marks are properties of their respective owners.
      +
      +
      + + diff --git a/src/pages/downloads/archive/html/2.1.0/index.html b/src/pages/downloads/archive/html/2.1.0/index.html new file mode 100644 index 0000000..428b4e7 --- /dev/null +++ b/src/pages/downloads/archive/html/2.1.0/index.html @@ -0,0 +1,795 @@ + + + + + + NetLogo 2.1 Downloads + + + + + + + + + + + + + + +

      NetLogo banner

      +

      + + + + +
      +

      NetLogo 2.1 Downloads

      + + + +

      + Notes for Windows users: +

      +
        +
      • + NetLogo runs fastest and is most reliable on the Sun 1.4.2 VM. Therefore we strongly recommend the + "Includes Java VM" option. (Questions? See below.) +
      • + +
      • + If you are running anti-virus software there may be a long pause (as much as two minutes) near the end + of the download process. +
      • +
      + +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Platform +
      + includes Java VM
      (recommended)
      +
      +
      +
      + without Java VM +
      +
      +
      + Details +
      +
      +
      + +
      +
      + + +
      + + Windows + +
      +
      +
      + Download (24.4 MB) +
      +
      +
      + Download (12.0 MB) +
      +
      +
      + View +
      +
      +
      + +
      +
      + + +
      + + Mac OS X + +
      +
      +
      + Download (11.7 MB) +
      +
      +
      + View +
      +
      +
      + +
      +
      + + +
      + + Other Java-enabled Platforms + +
      +
      +
      + Download (10.9 MB) +
      +
      +
      + View +
      +
      + +

      + + + + +
      + +

      +
      + +
      +

      + Windows Details:
      +

      + +
        +
      • We strongly recommend the "includes Java VM" download option.
      • +
      • + Choosing this download option installs Sun's 1.4.2 VM for NetLogo's private use only. Other programs on + your system are not affected. +
      • +
      • NetLogo runs faster and is more reliable on this VM than any other VM.
      • +
      • + Even if you have downloaded NetLogo before, you should still choose "Includes Java VM". The bundled VM + is not shared between different versions of NetLogo. +
      • +
      • + You should only choose the "without Java VM" download if either: +
          +
        • + You have already, separately and independently from any NetLogo download, installed the Sun 1.4.2 VM + on your system yourself. +
        • + +
        • You are certain you wish to try using a VM other than our recommended VM.
        • +
        +
      • +
      + +

      +
      + (Go To Top)
      +

      +
      + + +
      +

      +
      +
      +
      +

      + Mac OS X Details:
      +

      + +
        +
      • On OS X 10.3, Java 1.4.2 Update 1 is recommended. It is available from Apple via Software Update.
      • + +
      • + On OS X 10.2, NetLogo requires Java 1.4.1 Update 1, which is available from Apple via Software Update. +
      • +
      + +

      +
      + (Go To Top)
      +

      +
      + + + +
      +

      +
      +
      +
      +

      + Other Platform Details:
      +

      +
      + +
      +
        +
      • + Be sure you have Java 1.4.1 or later installed. Newer Java versions such as 1.4.2 should work even + better. You can download Java from Sun's site. +
      • +
      • + The download is in the form of a .tar.gz file. You may untar this file into any directory. +
      • + +
      • + Once untarred, the NetLogo application is in the NetLogo.jar file in the + netlogo-2.1 folder. +
      • +
      • + The method for starting the application may be different depending on your operating system and Java + virtual machine. You may be able to just double-click the NetLogo.jar + file in your file manager. Or, a typical sequence of commands on a Unix-style machine would be: +
        +cd netlogo-2.1
        +java -jar NetLogo.jar
        +
      • + +
      • For the computer HubNet client, substitute HubNet.jar for NetLogo.jar.
      • +
      + +

      +
      + (Go To Top)
      +

      +
      + +
      + + Installers created with InstallAnywhere.
      + InstallAnywhere is a registered trademark of Zero G Software, Inc.
      + Mac OS X is a registered trademark of Apple Computer, Inc.
      + Java is a trademark of Sun Microsystems, Inc.
      + Windows is a registered trademark of Microsoft Corporation.
      + All other marks are properties of their respective owners.
      +
      +
      + + diff --git a/src/pages/downloads/archive/html/2.1/index.html b/src/pages/downloads/archive/html/2.1/index.html new file mode 100644 index 0000000..7537fb4 --- /dev/null +++ b/src/pages/downloads/archive/html/2.1/index.html @@ -0,0 +1,795 @@ + + + + + + NetLogo 2.1 Downloads + + + + + + + + + + + + + + +

      NetLogo banner

      +

      + + + + +
      +

      NetLogo 2.1 Downloads

      + + + +

      + Notes for Windows users: +

      +
        +
      • + NetLogo runs fastest and is most reliable on the Sun 1.4.2 VM. Therefore we strongly recommend the + "Includes Java VM" option. (Questions? See below.) +
      • + +
      • + If you are running anti-virus software there may be a long pause (as much as two minutes) near the end + of the download process. +
      • +
      + +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Platform +
      + includes Java VM
      (recommended)
      +
      +
      +
      + without Java VM +
      +
      +
      + Details +
      +
      +
      + +
      +
      + + +
      + + Windows + +
      +
      +
      + Download (24.4 MB) +
      +
      +
      + Download (12.0 MB) +
      +
      +
      + View +
      +
      +
      + +
      +
      + + +
      + + Mac OS X + +
      +
      +
      + Download (11.7 MB) +
      +
      +
      + View +
      +
      +
      + +
      +
      + + +
      + + Other Java-enabled Platforms + +
      +
      +
      + Download (10.9 MB) +
      +
      +
      + View +
      +
      + +

      + + + + +
      + +

      +
      + +
      +

      + Windows Details:
      +

      + +
        +
      • We strongly recommend the "includes Java VM" download option.
      • +
      • + Choosing this download option installs Sun's 1.4.2 VM for NetLogo's private use only. Other programs on + your system are not affected. +
      • +
      • NetLogo runs faster and is more reliable on this VM than any other VM.
      • +
      • + Even if you have downloaded NetLogo before, you should still choose "Includes Java VM". The bundled VM + is not shared between different versions of NetLogo. +
      • +
      • + You should only choose the "without Java VM" download if either: +
          +
        • + You have already, separately and independently from any NetLogo download, installed the Sun 1.4.2 VM + on your system yourself. +
        • + +
        • You are certain you wish to try using a VM other than our recommended VM.
        • +
        +
      • +
      + +

      +
      + (Go To Top)
      +

      +
      + + +
      +

      +
      +
      +
      +

      + Mac OS X Details:
      +

      + +
        +
      • On OS X 10.3, Java 1.4.2 Update 1 is recommended. It is available from Apple via Software Update.
      • + +
      • + On OS X 10.2, NetLogo requires Java 1.4.1 Update 1, which is available from Apple via Software Update. +
      • +
      + +

      +
      + (Go To Top)
      +

      +
      + + + +
      +

      +
      +
      +
      +

      + Other Platform Details:
      +

      +
      + +
      +
        +
      • + Be sure you have Java 1.4.1 or later installed. Newer Java versions such as 1.4.2 should work even + better. You can download Java from Sun's site. +
      • +
      • + The download is in the form of a .tar.gz file. You may untar this file into any directory. +
      • + +
      • + Once untarred, the NetLogo application is in the NetLogo.jar file in the + netlogo-2.1 folder. +
      • +
      • + The method for starting the application may be different depending on your operating system and Java + virtual machine. You may be able to just double-click the NetLogo.jar + file in your file manager. Or, a typical sequence of commands on a Unix-style machine would be: +
        +cd netlogo-2.1
        +java -jar NetLogo.jar
        +
      • + +
      • For the computer HubNet client, substitute HubNet.jar for NetLogo.jar.
      • +
      + +

      +
      + (Go To Top)
      +

      +
      + +
      + + Installers created with InstallAnywhere.
      + InstallAnywhere is a registered trademark of Zero G Software, Inc.
      + Mac OS X is a registered trademark of Apple Computer, Inc.
      + Java is a trademark of Sun Microsystems, Inc.
      + Windows is a registered trademark of Microsoft Corporation.
      + All other marks are properties of their respective owners.
      +
      +
      + + diff --git a/src/pages/downloads/archive/html/3.0.0/index.html b/src/pages/downloads/archive/html/3.0.0/index.html new file mode 100644 index 0000000..bd11b99 --- /dev/null +++ b/src/pages/downloads/archive/html/3.0.0/index.html @@ -0,0 +1,142 @@ + + + + + +NetLogo 3.0 Downloads + + + + + +

      + +

      + + +
      +

      NetLogo 3.0 Downloads

      +


      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Operating System    +
      + + includes Java
      (recommended) +
      +
      +
      + + does not
      include Java +
      +
      Windows +
      + + Download (43M) +
      +
      +
      + + Download (30M) +
      + +
      Mac OS X + +
      + + Download (30M) +
      +
      Other +
      + + Download (29M) +
      +
      + +

      + + +

      +


      + +

      Notes for Windows users:
      + +

        +
      • Certain anti-virus software may cause a long + pause (as much as two minutes) near the end of the download + process. +
      • We strongly recommend the "includes Java" download. This choice installs Java (version 1.4.2) for NetLogo's private use only. Other programs on your system are not affected. +
      • Even if you have downloaded NetLogo before, you should still choose "Includes Java". The included Java is not shared between different versions of NetLogo. +
      • You should only choose the "does not include Java" download if + you have already, separately and independently from any NetLogo + download, installed Java (version 1.4.2 or higher) on your system yourself. + +
      + + + +


      + +

      +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

      + + + + diff --git a/src/pages/downloads/archive/html/3.0.1/index.html b/src/pages/downloads/archive/html/3.0.1/index.html new file mode 100644 index 0000000..054ead8 --- /dev/null +++ b/src/pages/downloads/archive/html/3.0.1/index.html @@ -0,0 +1,142 @@ + + + + + +NetLogo 3.0.1 Downloads + + + + + +

      + +

      + + +
      +

      NetLogo 3.0.1 Downloads

      +


      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Operating System    +
      + + includes Java
      (recommended) +
      +
      +
      + + does not
      include Java +
      +
      Windows +
      + + Download (35M) +
      +
      +
      + + Download (21M) +
      + +
      Mac OS X + +
      + + Download (21M) +
      +
      Other +
      + + Download (21M) +
      +
      + +

      + + +

      +


      + +

      Notes for Windows users:
      + +

        +
      • Certain anti-virus software may cause a long + pause (as much as two minutes) near the end of the download + process. +
      • We strongly recommend the "includes Java" download. This choice installs Java (version 1.4.2) for NetLogo's private use only. Other programs on your system are not affected. +
      • Even if you have downloaded NetLogo before, you should still choose "Includes Java". The included Java is not shared between different versions of NetLogo. +
      • You should only choose the "does not include Java" download if + you have already, separately and independently from any NetLogo + download, installed Java (version 1.4.2 or higher) on your system yourself. + +
      + + + +


      + +

      +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

      + + + + diff --git a/src/pages/downloads/archive/html/3.0.2/index.html b/src/pages/downloads/archive/html/3.0.2/index.html new file mode 100644 index 0000000..cddc0ec --- /dev/null +++ b/src/pages/downloads/archive/html/3.0.2/index.html @@ -0,0 +1,142 @@ + + + + + +NetLogo 3.0.2 Downloads + + + + + +

      + +

      + + +
      +

      NetLogo 3.0.2 Downloads

      +


      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Operating System    +
      + + includes Java
      (recommended) +
      +
      +
      + + does not
      include Java +
      +
      Windows +
      + + Download (35M) +
      +
      +
      + + Download (21M) +
      + +
      Mac OS X + +
      + + Download (21M) +
      +
      Other +
      + + Download (21M) +
      +
      + +

      + + +

      +


      + +

      Notes for Windows users:
      + +

        +
      • Certain anti-virus software may cause a long + pause (as much as two minutes) near the end of the download + process. +
      • We strongly recommend the "includes Java" download. This choice installs Java (version 1.4.2) for NetLogo's private use only. Other programs on your system are not affected. +
      • Even if you have downloaded NetLogo before, you should still choose "Includes Java". The included Java is not shared between different versions of NetLogo. +
      • You should only choose the "does not include Java" download if + you have already, separately and independently from any NetLogo + download, installed Java (version 1.4.2 or higher) on your system yourself. + +
      + + + +


      + +

      +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

      + + + + diff --git a/src/pages/downloads/archive/html/3.0/index.html b/src/pages/downloads/archive/html/3.0/index.html new file mode 100644 index 0000000..bbcdbdd --- /dev/null +++ b/src/pages/downloads/archive/html/3.0/index.html @@ -0,0 +1,142 @@ + + + + + +NetLogo 3.0.2 Downloads + + + + + +

      + +

      + + +
      +

      NetLogo 3.0.2 Downloads

      +


      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Operating System    +
      + + includes Java
      (recommended) +
      +
      +
      + + does not
      include Java +
      +
      Windows +
      + + Download (35M) +
      +
      +
      + + Download (21M) +
      + +
      Mac OS X + +
      + + Download (21M) +
      +
      Other +
      + + Download (21M) +
      +
      + +

      + + +

      +


      + +

      Notes for Windows users:
      + +

        +
      • Certain anti-virus software may cause a long + pause (as much as two minutes) near the end of the download + process. +
      • We strongly recommend the "includes Java" download. This choice installs Java (version 1.4.2) for NetLogo's private use only. Other programs on your system are not affected. +
      • Even if you have downloaded NetLogo before, you should still choose "Includes Java". The included Java is not shared between different versions of NetLogo. +
      • You should only choose the "does not include Java" download if + you have already, separately and independently from any NetLogo + download, installed Java (version 1.4.2 or higher) on your system yourself. + +
      + + + +


      + +

      +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

      + + + + diff --git a/src/pages/downloads/archive/html/3.1.0/index.html b/src/pages/downloads/archive/html/3.1.0/index.html new file mode 100644 index 0000000..614281c --- /dev/null +++ b/src/pages/downloads/archive/html/3.1.0/index.html @@ -0,0 +1,143 @@ + + + + + +NetLogo 3.1 Downloads + + + + + +

      + +

      + + +
      +

      NetLogo 3.1 Downloads

      +

      April 14, 2006

      +


      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Operating System    +
      + + includes Java
      (recommended) +
      +
      +
      + + does not
      include Java +
      +
      Windows +
      + + Download (48M) +
      +
      +
      + + Download (25M) +
      + +
      Mac OS X + +
      + + Download (25M) +
      +
      Other +
      + + Download (24M) +
      +
      + +

      + + +

      +


      + +

      Notes for Windows users:
      + +

        +
      • Certain anti-virus software may cause a long + pause (as much as two minutes) near the end of the download + process. +
      • We strongly recommend the "includes Java" download. This choice installs Java (version 1.5.0) for NetLogo's private use only. Other programs on your system are not affected. +
      • Even if you have downloaded NetLogo before, you should still choose "Includes Java". The included Java is not shared between different versions of NetLogo. +
      • You should only choose the "does not include Java" download if + you have already, separately and independently from any NetLogo + download, installed Java (version 1.4.2 or higher, preferably 1.5.0 or higher) on your system yourself. + +
      + + + +


      + +

      +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

      + + + + diff --git a/src/pages/downloads/archive/html/3.1.1/index.html b/src/pages/downloads/archive/html/3.1.1/index.html new file mode 100644 index 0000000..281ad03 --- /dev/null +++ b/src/pages/downloads/archive/html/3.1.1/index.html @@ -0,0 +1,143 @@ + + + + + +NetLogo 3.1.1 Downloads + + + + + +

      + +

      + + +
      +

      NetLogo 3.1.1 Downloads

      +

      June 16, 2006

      +


      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Operating System    +
      + + includes Java
      (recommended) +
      +
      +
      + + does not
      include Java +
      +
      Windows +
      + + Download (48M) +
      +
      +
      + + Download (25M) +
      + +
      Mac OS X + +
      + + Download (25M) +
      +
      Other +
      + + Download (24M) +
      +
      + +

      + + +

      +


      + +

      Notes for Windows users:
      + +

        +
      • Certain anti-virus software may cause a long + pause (as much as two minutes) near the end of the download + process. +
      • We strongly recommend the "includes Java" download. This choice installs Java (version 1.5.0) for NetLogo's private use only. Other programs on your system are not affected. +
      • Even if you have downloaded NetLogo before, you should still choose "Includes Java". The included Java is not shared between different versions of NetLogo. +
      • You should only choose the "does not include Java" download if + you have already, separately and independently from any NetLogo + download, installed Java (version 1.4.2 or higher, preferably 1.5.0 or higher) on your system yourself. + +
      + + + +


      + +

      +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

      + + + + diff --git a/src/pages/downloads/archive/html/3.1.2/index.html b/src/pages/downloads/archive/html/3.1.2/index.html new file mode 100644 index 0000000..50c27c8 --- /dev/null +++ b/src/pages/downloads/archive/html/3.1.2/index.html @@ -0,0 +1,143 @@ + + + + + +NetLogo 3.1.2 Downloads + + + + + +

      + +

      + + +
      +

      NetLogo 3.1.2 Downloads

      +

      August 9, 2006

      +


      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Operating System    +
      + + includes Java
      (recommended) +
      +
      +
      + + does not
      include Java +
      +
      Windows +
      + + Download (48M) +
      +
      +
      + + Download (25M) +
      + +
      Mac OS X + +
      + + Download (25M) +
      +
      Other +
      + + Download (24M) +
      +
      + +

      + + +

      +


      + +

      Notes for Windows users:
      + +

        +
      • Certain anti-virus software may cause a long + pause (as much as two minutes) near the end of the download + process. +
      • We strongly recommend the "includes Java" download. This choice installs Java (version 1.5.0) for NetLogo's private use only. Other programs on your system are not affected. +
      • Even if you have downloaded NetLogo before, you should still choose "Includes Java". The included Java is not shared between different versions of NetLogo. +
      • You should only choose the "does not include Java" download if + you have already, separately and independently from any NetLogo + download, installed Java (version 1.4.2 or higher, preferably 1.5.0 or higher) on your system yourself. + +
      + + + +


      + +

      +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

      + + + + diff --git a/src/pages/downloads/archive/html/3.1.3/index.html b/src/pages/downloads/archive/html/3.1.3/index.html new file mode 100644 index 0000000..2e03697 --- /dev/null +++ b/src/pages/downloads/archive/html/3.1.3/index.html @@ -0,0 +1,143 @@ + + + + + +NetLogo 3.1.3 Downloads + + + + + +

      + +

      + + +
      +

      NetLogo 3.1.3 Downloads

      +

      September 20, 2006

      +


      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Operating System    +
      + + includes Java
      (recommended) +
      +
      +
      + + does not
      include Java +
      +
      Windows +
      + + Download (48M) +
      +
      +
      + + Download (25M) +
      + +
      Mac OS X + +
      + + Download (25M) +
      +
      Other +
      + + Download (24M) +
      +
      + +

      + + +

      +


      + +

      Notes for Windows users:
      + +

        +
      • Certain anti-virus software may cause a long + pause (as much as two minutes) near the end of the download + process. +
      • We strongly recommend the "includes Java" download. This choice installs Java (version 1.5.0) for NetLogo's private use only. Other programs on your system are not affected. +
      • Even if you have downloaded NetLogo before, you should still choose "Includes Java". The included Java is not shared between different versions of NetLogo. +
      • You should only choose the "does not include Java" download if + you have already, separately and independently from any NetLogo + download, installed Java (version 1.4.2 or higher, preferably 1.5.0 or higher) on your system yourself. + +
      + + + +


      + +

      +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

      + + + + diff --git a/src/pages/downloads/archive/html/3.1.4/index.html b/src/pages/downloads/archive/html/3.1.4/index.html new file mode 100644 index 0000000..cacf5eb --- /dev/null +++ b/src/pages/downloads/archive/html/3.1.4/index.html @@ -0,0 +1,143 @@ + + + + + +NetLogo 3.1.4 Downloads + + + + + +

      + +

      + + +
      +

      NetLogo 3.1.4 Downloads

      +

      February 16, 2007

      +


      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Operating System    +
      + + includes Java
      (recommended) +
      +
      +
      + + does not
      include Java +
      +
      Windows +
      + + Download (51M) +
      +
      +
      + + Download (26M) +
      + +
      Mac OS X + +
      + + Download (25M) +
      +
      Other +
      + + Download (24M) +
      +
      + +

      + + +

      +


      + +

      Notes for Windows users:
      + +

        +
      • Certain anti-virus software may cause a long + pause (as much as two minutes) near the end of the download + process. +
      • We strongly recommend the "includes Java" download. This choice installs Java (version 1.5.0) for NetLogo's private use only. Other programs on your system are not affected. +
      • Even if you have downloaded NetLogo before, you should still choose "Includes Java". The included Java is not shared between different versions of NetLogo. +
      • You should only choose the "does not include Java" download if + you have already, separately and independently from any NetLogo + download, installed Java (version 1.4.2 or higher, preferably 1.5.0 or higher) on your system yourself. + +
      + + + +


      + +

      +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

      + + + + diff --git a/src/pages/downloads/archive/html/3.1.5/index.html b/src/pages/downloads/archive/html/3.1.5/index.html new file mode 100644 index 0000000..b100bc1 --- /dev/null +++ b/src/pages/downloads/archive/html/3.1.5/index.html @@ -0,0 +1,143 @@ + + + + + +NetLogo 3.1.5 Downloads + + + + + +

      + +

      + + +
      +

      NetLogo 3.1.5 Downloads

      +

      December 5, 2007

      +


      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Operating System    +
      + + includes Java
      (recommended) +
      +
      +
      + + does not
      include Java +
      +
      Windows +
      + + Download (51M) +
      +
      +
      + + Download (26M) +
      + +
      Mac OS X + +
      + + Download (25M) +
      +
      Other +
      + + Download (24M) +
      +
      + +

      + + +

      +


      + +

      Notes for Windows users:
      + +

        +
      • Certain anti-virus software may cause a long + pause (as much as two minutes) near the end of the download + process. +
      • We strongly recommend the "includes Java" download. This choice installs Java (version 1.5.0) for NetLogo's private use only. Other programs on your system are not affected. +
      • Even if you have downloaded NetLogo before, you should still choose "Includes Java". The included Java is not shared between different versions of NetLogo. +
      • You should only choose the "does not include Java" download if + you have already, separately and independently from any NetLogo + download, installed Java (version 1.4.2 or higher, preferably 1.5.0 or higher) on your system yourself. + +
      + + + +


      + +

      +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

      + + + + diff --git a/src/pages/downloads/archive/html/3.1/index.html b/src/pages/downloads/archive/html/3.1/index.html new file mode 100644 index 0000000..8878838 --- /dev/null +++ b/src/pages/downloads/archive/html/3.1/index.html @@ -0,0 +1,143 @@ + + + + + +NetLogo 3.1.5 Downloads + + + + + +

      + +

      + + +
      +

      NetLogo 3.1.5 Downloads

      +

      December 5, 2007

      +


      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Operating System    +
      + + includes Java
      (recommended) +
      +
      +
      + + does not
      include Java +
      +
      Windows +
      + + Download (51M) +
      +
      +
      + + Download (26M) +
      + +
      Mac OS X + +
      + + Download (25M) +
      +
      Other +
      + + Download (24M) +
      +
      + +

      + + +

      +


      + +

      Notes for Windows users:
      + +

        +
      • Certain anti-virus software may cause a long + pause (as much as two minutes) near the end of the download + process. +
      • We strongly recommend the "includes Java" download. This choice installs Java (version 1.5.0) for NetLogo's private use only. Other programs on your system are not affected. +
      • Even if you have downloaded NetLogo before, you should still choose "Includes Java". The included Java is not shared between different versions of NetLogo. +
      • You should only choose the "does not include Java" download if + you have already, separately and independently from any NetLogo + download, installed Java (version 1.4.2 or higher, preferably 1.5.0 or higher) on your system yourself. + +
      + + + +


      + +

      +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

      + + + + diff --git a/src/pages/downloads/archive/html/4.0.0/index.html b/src/pages/downloads/archive/html/4.0.0/index.html new file mode 100644 index 0000000..0d93e7b --- /dev/null +++ b/src/pages/downloads/archive/html/4.0.0/index.html @@ -0,0 +1,117 @@ + + + + + +NetLogo 4.0 Downloads + + + + + +

      + +

      + + +
      +

      NetLogo 4.0 Downloads

      +

      September 25, 2007

      +


      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Windows + +
      + + Download + (58M)
      +
      Mac OS X + +
      + + Download + (31M)
      +
      Other +
      + + Download + (30M)
      +
      + +

      + + +

      +


      + +

      Notes for Windows users:
      + +

        +
      • Certain anti-virus software may cause a long + pause (as much as a minute or longer) near the end + of the download + process. +
      • Our installer includes Java (version 1.5.0) for NetLogo’s private use only. + Other programs on your computer are not affected. +
      • Want to run NetLogo using a Java VM you have + already installed yourself, instead of one bundled + with NetLogo? Click here + for cautions, technical information, and instructions. +
      + + + +


      + +

      +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

      + + + + diff --git a/src/pages/downloads/archive/html/4.0.0/windows.html b/src/pages/downloads/archive/html/4.0.0/windows.html new file mode 100644 index 0000000..b85ea8a --- /dev/null +++ b/src/pages/downloads/archive/html/4.0.0/windows.html @@ -0,0 +1,161 @@ + + + + + + NetLogo 4.0 for Windows without bundled Java + + + +

      + +

      + + + + +
      +

      NetLogo 4.0
      for Windows

      +

      (without bundled Java)

      +

      September 25, 2007

      +

      +
      +
      + +

      + + + + +
      +

      + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

      + +

      There are two reasons you might want to use the download on this page instead:

      + +
        +
      1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
      2. + +
      3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
      4. +
      + +

      + If you think the download on this page might be appropriate for you, please read the following detailed + technical information. +

      + +

      + Even if you already have Java installed on your computer, it probably will not work with + NetLogo. +

      + +

      + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Sun does not install this option. It is only included in + Sun’s Java Development Kit (JDK). +

      + +

      If you are not a Java developer, then you probably have the JRE, not the JDK.

      + +

      Therefore, if you want to run NetLogo with your own Java VM, you have two options:

      + +
        +
      1. Make sure that you have the full JDK for the Java you want to use, not just the JRE.
      2. + +
      3. Or, you can edit a configuration file in order to make NetLogo work with the JRE.
      4. +
      + +

      + We don’t recommend option 2, because NetLogo runs noticeably slower without the “server” + option. +

      + +

      + If you choose option 2 anyway, here’s what to do. You have to tell NetLogo not to try to use the + “server” VM option. First, install NetLogo using the download on this page. Then, open NetLogo + 4.0.lax in a text editor such as Notepad, located in the directory where you installed NetLogo (by default + c:/Program Files/NetLogo 4.0). You need to remove the server option from the additional java options. So + change this section: +

      + +
      +#   LAX.NL.JAVA.OPTION.ADDITIONAL
      +#   -----------------------------
      +#   don't load native libs from user dirs, only ours, also run server not client VM
      +
      +lax.nl.java.option.additional=-Djava.ext.dirs= -server -Dsun.java2d.noddraw=true
      +
      + +

      To look like this:

      + +
      +#   LAX.NL.JAVA.OPTION.ADDITIONAL
      +#   -----------------------------
      +#   don't load native libs from user dirs, only ours, also run server not client VM
      +
      +lax.nl.java.option.additional=-Djava.ext.dirs= -Dsun.java2d.noddraw=true
      +
      + +

      Again, remember that with this approach, performance is impaired.

      + +

      +
      + + + + + + + + + + +
      + + Windows +
      + Download + (32M) +
      +
      + +

      +
      + +

      Notes:

      + +
        +
      • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
      • +
      + +

      + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/4.0.1/index.html b/src/pages/downloads/archive/html/4.0.1/index.html new file mode 100644 index 0000000..f9a46f1 --- /dev/null +++ b/src/pages/downloads/archive/html/4.0.1/index.html @@ -0,0 +1,117 @@ + + + + + +NetLogo 4.0.1 Downloads + + + + + +

      + +

      + + +
      +

      NetLogo 4.0.1 Downloads

      +

      October 31, 2007

      +


      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Windows + +
      + + Download + (58M)
      +
      Mac OS X + +
      + + Download + (31M)
      +
      Other +
      + + Download + (30M)
      +
      + +

      + + +

      +


      + +

      Notes for Windows users:
      + +

        +
      • Certain anti-virus software may cause a long + pause (as much as a minute or longer) near the end + of the download + process. +
      • Our installer includes Java (version 1.5.0) for NetLogo’s private use only. + Other programs on your computer are not affected. +
      • Want to run NetLogo using a Java VM you have + already installed yourself, instead of one bundled + with NetLogo? Click here + for cautions, technical information, and instructions. +
      + + + +


      + +

      +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

      + + + + diff --git a/src/pages/downloads/archive/html/4.0.1/windows.html b/src/pages/downloads/archive/html/4.0.1/windows.html new file mode 100644 index 0000000..d187cc2 --- /dev/null +++ b/src/pages/downloads/archive/html/4.0.1/windows.html @@ -0,0 +1,161 @@ + + + + + + NetLogo 4.0.1 for Windows without bundled Java + + + +

      + +

      + + + + +
      +

      NetLogo 4.0.1
      for Windows

      +

      (without bundled Java)

      +

      October 31, 2007

      +

      +
      +
      + +

      + + + + +
      +

      + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

      + +

      There are two reasons you might want to use the download on this page instead:

      + +
        +
      1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
      2. + +
      3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
      4. +
      + +

      + If you think the download on this page might be appropriate for you, please read the following detailed + technical information. +

      + +

      + Even if you already have Java installed on your computer, it probably will not work with + NetLogo. +

      + +

      + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Sun does not install this option. It is only included in + Sun’s Java Development Kit (JDK). +

      + +

      If you are not a Java developer, then you probably have the JRE, not the JDK.

      + +

      Therefore, if you want to run NetLogo with your own Java VM, you have two options:

      + +
        +
      1. Make sure that you have the full JDK for the Java you want to use, not just the JRE.
      2. + +
      3. Or, you can edit a configuration file in order to make NetLogo work with the JRE.
      4. +
      + +

      + We don’t recommend option 2, because NetLogo runs noticeably slower without the “server” + option. +

      + +

      + If you choose option 2 anyway, here’s what to do. You have to tell NetLogo not to try to use the + “server” VM option. First, install NetLogo using the download on this page. Then, open NetLogo + 4.0.1.lax, located in the directory where you installed NetLogo (by default c:/Program Files/NetLogo 4.0.1), + in a text editor such as Notepad. You need to remove the -server option from the additional java + options. So change this section: +

      + +
      +#   LAX.NL.JAVA.OPTION.ADDITIONAL
      +#   -----------------------------
      +#   don't load native libs from user dirs, only ours, also run server not client VM
      +
      +lax.nl.java.option.additional=-Djava.ext.dirs= -server -Dsun.java2d.noddraw=true
      +
      + +

      To look like this:

      + +
      +#   LAX.NL.JAVA.OPTION.ADDITIONAL
      +#   -----------------------------
      +#   don't load native libs from user dirs, only ours, also run server not client VM
      +
      +lax.nl.java.option.additional=-Djava.ext.dirs= -Dsun.java2d.noddraw=true
      +
      + +

      Again, remember that with this approach, performance is impaired.

      + +

      +
      + + + + + + + + + + +
      + + Windows +
      + Download + (32M) +
      +
      + +

      +
      + +

      Notes:

      + +
        +
      • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
      • +
      + +

      + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/4.0.2/index.html b/src/pages/downloads/archive/html/4.0.2/index.html new file mode 100644 index 0000000..3f9bb34 --- /dev/null +++ b/src/pages/downloads/archive/html/4.0.2/index.html @@ -0,0 +1,117 @@ + + + + + +NetLogo 4.0.2 Downloads + + + + + +

      + +

      + + +
      +

      NetLogo 4.0.2 Downloads

      +

      December 5, 2007

      +


      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Windows + +
      + + Download + (58M)
      +
      Mac OS X + +
      + + Download + (31M)
      +
      Other +
      + + Download + (30M)
      +
      + +

      + + +

      +


      + +

      Notes for Windows users:
      + +

        +
      • Certain anti-virus software may cause a long + pause (as much as a minute or longer) near the end + of the download + process. +
      • Our installer includes Java (version 1.5.0) for NetLogo’s private use only. + Other programs on your computer are not affected. +
      • Want to run NetLogo using a Java VM you have + already installed yourself, instead of one bundled + with NetLogo? Click here + for cautions, technical information, and instructions. +
      + + + +


      + +

      +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

      + + + + diff --git a/src/pages/downloads/archive/html/4.0.2/windows.html b/src/pages/downloads/archive/html/4.0.2/windows.html new file mode 100644 index 0000000..a6fc321 --- /dev/null +++ b/src/pages/downloads/archive/html/4.0.2/windows.html @@ -0,0 +1,161 @@ + + + + + + NetLogo 4.0.2 for Windows without bundled Java + + + +

      + +

      + + + + +
      +

      NetLogo 4.0.2
      for Windows

      +

      (without bundled Java)

      +

      December 5, 2007

      +

      +
      +
      + +

      + + + + +
      +

      + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

      + +

      There are two reasons you might want to use the download on this page instead:

      + +
        +
      1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
      2. + +
      3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
      4. +
      + +

      + If you think the download on this page might be appropriate for you, please read the following detailed + technical information. +

      + +

      + Even if you already have Java installed on your computer, it probably will not work with + NetLogo. +

      + +

      + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Sun does not install this option. It is only included in + Sun’s Java Development Kit (JDK). +

      + +

      If you are not a Java developer, then you probably have the JRE, not the JDK.

      + +

      Therefore, if you want to run NetLogo with your own Java VM, you have two options:

      + +
        +
      1. Make sure that you have the full JDK for the Java you want to use, not just the JRE.
      2. + +
      3. Or, you can edit a configuration file in order to make NetLogo work with the JRE.
      4. +
      + +

      + We don’t recommend option 2, because NetLogo runs noticeably slower without the “server” + option. +

      + +

      + If you choose option 2 anyway, here’s what to do. You have to tell NetLogo not to try to use the + “server” VM option. First, install NetLogo using the download on this page. Then, open NetLogo + 4.0.2.lax, located in the directory where you installed NetLogo (by default c:/Program Files/NetLogo 4.0.2), + in a text editor such as Notepad. You need to remove the -server option from the additional java + options. So change this section: +

      + +
      +#   LAX.NL.JAVA.OPTION.ADDITIONAL
      +#   -----------------------------
      +#   don't load native libs from user dirs, only ours, also run server not client VM
      +
      +lax.nl.java.option.additional=-Djava.ext.dirs= -server -Dsun.java2d.noddraw=true
      +
      + +

      To look like this:

      + +
      +#   LAX.NL.JAVA.OPTION.ADDITIONAL
      +#   -----------------------------
      +#   don't load native libs from user dirs, only ours, also run server not client VM
      +
      +lax.nl.java.option.additional=-Djava.ext.dirs= -Dsun.java2d.noddraw=true
      +
      + +

      Again, remember that with this approach, performance is impaired.

      + +

      +
      + + + + + + + + + + +
      + + Windows +
      + Download + (32M) +
      +
      + +

      +
      + +

      Notes:

      + +
        +
      • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
      • +
      + +

      + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/4.0.3/index.html b/src/pages/downloads/archive/html/4.0.3/index.html new file mode 100644 index 0000000..b3b86e2 --- /dev/null +++ b/src/pages/downloads/archive/html/4.0.3/index.html @@ -0,0 +1,117 @@ + + + + + +NetLogo 4.0.3 Downloads + + + + + +

      + +

      + + +
      +

      NetLogo 4.0.3 Downloads

      +

      August 6, 2008

      +


      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Windows + +
      + + Download + (63M)
      +
      Mac OS X + +
      + + Download + (36M)
      +
      Other +
      + + Download + (35M)
      +
      + +

      + + +

      +


      + +

      Notes for Windows users:
      + +

        +
      • Certain anti-virus software may cause a long + pause (as much as a minute or longer) near the end + of the download + process. +
      • Our installer includes Java (version 1.5.0) for NetLogo’s private use only. + Other programs on your computer are not affected. +
      • Want to run NetLogo using a Java VM you have + already installed yourself, instead of one bundled + with NetLogo? Click here + for cautions, technical information, and instructions. +
      + + + +


      + +

      +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

      + + + + diff --git a/src/pages/downloads/archive/html/4.0.3/windows.html b/src/pages/downloads/archive/html/4.0.3/windows.html new file mode 100644 index 0000000..5494c2a --- /dev/null +++ b/src/pages/downloads/archive/html/4.0.3/windows.html @@ -0,0 +1,161 @@ + + + + + + NetLogo 4.0.3 for Windows without bundled Java + + + +

      + +

      + + + + +
      +

      NetLogo 4.0.3
      for Windows

      +

      (without bundled Java)

      +

      August 6, 2008

      +

      +
      +
      + +

      + + + + +
      +

      + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

      + +

      There are two reasons you might want to use the download on this page instead:

      + +
        +
      1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
      2. + +
      3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
      4. +
      + +

      + If you think the download on this page might be appropriate for you, please read the following detailed + technical information. +

      + +

      + Even if you already have Java installed on your computer, it probably will not work with + NetLogo. +

      + +

      + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Sun does not install this option. It is only included in + Sun’s Java Development Kit (JDK). +

      + +

      If you are not a Java developer, then you probably have the JRE, not the JDK.

      + +

      Therefore, if you want to run NetLogo with your own Java VM, you have two options:

      + +
        +
      1. Make sure that you have the full JDK for the Java you want to use, not just the JRE.
      2. + +
      3. Or, you can edit a configuration file in order to make NetLogo work with the JRE.
      4. +
      + +

      + We don’t recommend option 2, because NetLogo runs noticeably slower without the “server” + option. +

      + +

      + If you choose option 2 anyway, here’s what to do. You have to tell NetLogo not to try to use the + “server” VM option. First, install NetLogo using the download on this page. Then, open NetLogo + 4.0.3.lax, located in the directory where you installed NetLogo (by default c:/Program Files/NetLogo 4.0.3), + in a text editor such as Notepad. You need to remove the -server option from the additional java + options. So change this section: +

      + +
      +#   LAX.NL.JAVA.OPTION.ADDITIONAL
      +#   -----------------------------
      +#   don't load native libs from user dirs, only ours, also run server not client VM
      +
      +lax.nl.java.option.additional=-Djava.ext.dirs= -server -Dsun.java2d.noddraw=true
      +
      + +

      To look like this:

      + +
      +#   LAX.NL.JAVA.OPTION.ADDITIONAL
      +#   -----------------------------
      +#   don't load native libs from user dirs, only ours, also run server not client VM
      +
      +lax.nl.java.option.additional=-Djava.ext.dirs= -Dsun.java2d.noddraw=true
      +
      + +

      Again, remember that with this approach, performance is impaired.

      + +

      +
      + + + + + + + + + + +
      + + Windows +
      + Download + (37M) +
      +
      + +

      +
      + +

      Notes:

      + +
        +
      • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
      • +
      + +

      + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/4.0.4/index.html b/src/pages/downloads/archive/html/4.0.4/index.html new file mode 100644 index 0000000..8514633 --- /dev/null +++ b/src/pages/downloads/archive/html/4.0.4/index.html @@ -0,0 +1,117 @@ + + + + + +NetLogo 4.0.4 Downloads + + + + + +

      + +

      + + +
      +

      NetLogo 4.0.4 Downloads

      +

      November 24, 2008

      +


      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Windows + +
      + + Download + (63M)
      +
      Mac OS X + +
      + + Download + (36M)
      +
      Other +
      + + Download + (35M)
      +
      + +

      + + +

      +


      + +

      Notes for Windows users:
      + +

        +
      • Certain anti-virus software may cause a long + pause (as much as a minute or longer) near the end + of the download + process. +
      • Our installer includes Java (version 1.5.0) for NetLogo’s private use only. + Other programs on your computer are not affected. +
      • Want to run NetLogo using a Java VM you have + already installed yourself, instead of one bundled + with NetLogo? Click here + for cautions, technical information, and instructions. +
      + + + +


      + +

      +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

      + + + + diff --git a/src/pages/downloads/archive/html/4.0.4/windows.html b/src/pages/downloads/archive/html/4.0.4/windows.html new file mode 100644 index 0000000..07a4b62 --- /dev/null +++ b/src/pages/downloads/archive/html/4.0.4/windows.html @@ -0,0 +1,161 @@ + + + + + + NetLogo 4.0.4 for Windows without bundled Java + + + +

      + +

      + + + + +
      +

      NetLogo 4.0.4
      for Windows

      +

      (without bundled Java)

      +

      November 24, 2008

      +

      +
      +
      + +

      + + + + +
      +

      + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

      + +

      There are two reasons you might want to use the download on this page instead:

      + +
        +
      1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
      2. + +
      3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
      4. +
      + +

      + If you think the download on this page might be appropriate for you, please read the following detailed + technical information. +

      + +

      + Even if you already have Java installed on your computer, it probably will not work with + NetLogo. +

      + +

      + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Sun does not install this option. It is only included in + Sun’s Java Development Kit (JDK). +

      + +

      If you are not a Java developer, then you probably have the JRE, not the JDK.

      + +

      Therefore, if you want to run NetLogo with your own Java VM, you have two options:

      + +
        +
      1. Make sure that you have the full JDK for the Java you want to use, not just the JRE.
      2. + +
      3. Or, you can edit a configuration file in order to make NetLogo work with the JRE.
      4. +
      + +

      + We don’t recommend option 2, because NetLogo runs noticeably slower without the “server” + option. +

      + +

      + If you choose option 2 anyway, here’s what to do. You have to tell NetLogo not to try to use the + “server” VM option. First, install NetLogo using the download on this page. Then, open NetLogo + 4.0.4.lax, located in the directory where you installed NetLogo (by default c:/Program Files/NetLogo 4.0.4), + in a text editor such as Notepad. You need to remove the -server option from the additional java + options. So change this section: +

      + +
      +#   LAX.NL.JAVA.OPTION.ADDITIONAL
      +#   -----------------------------
      +#   don't load native libs from user dirs, only ours, also run server not client VM
      +
      +lax.nl.java.option.additional=-Djava.ext.dirs= -server -Dsun.java2d.noddraw=true
      +
      + +

      To look like this:

      + +
      +#   LAX.NL.JAVA.OPTION.ADDITIONAL
      +#   -----------------------------
      +#   don't load native libs from user dirs, only ours, also run server not client VM
      +
      +lax.nl.java.option.additional=-Djava.ext.dirs= -Dsun.java2d.noddraw=true
      +
      + +

      Again, remember that with this approach, performance is impaired.

      + +

      +
      + + + + + + + + + + +
      + + Windows +
      + Download + (37M) +
      +
      + +

      +
      + +

      Notes:

      + +
        +
      • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
      • +
      + +

      + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/4.0.5/index.html b/src/pages/downloads/archive/html/4.0.5/index.html new file mode 100644 index 0000000..67a4ad5 --- /dev/null +++ b/src/pages/downloads/archive/html/4.0.5/index.html @@ -0,0 +1,117 @@ + + + + + +NetLogo 4.0.5 Downloads + + + + + +

      + +

      + + +
      +

      NetLogo 4.0.5 Downloads

      +

      December 14, 2009

      +


      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Windows + +
      + + Download + (63M)
      +
      Mac OS X + +
      + + Download + (37M)
      +
      Other +
      + + Download + (35M)
      +
      + +

      + + +

      +


      + +

      Notes for Windows users:
      + +

        +
      • Certain anti-virus software may cause a long + pause (as much as a minute or longer) near the end + of the download + process. +
      • Our installer includes Java (version 1.5.0) for NetLogo’s private use only. + Other programs on your computer are not affected. +
      • Want to run NetLogo using a Java VM you have + already installed yourself, instead of one bundled + with NetLogo? Click here + for cautions, technical information, and instructions. +
      + + + +


      + +

      +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

      + + + + diff --git a/src/pages/downloads/archive/html/4.0.5/windows.html b/src/pages/downloads/archive/html/4.0.5/windows.html new file mode 100644 index 0000000..fb89d2b --- /dev/null +++ b/src/pages/downloads/archive/html/4.0.5/windows.html @@ -0,0 +1,161 @@ + + + + + + NetLogo 4.0.5 for Windows without bundled Java + + + +

      + +

      + + + + +
      +

      NetLogo 4.0.5
      for Windows

      +

      (without bundled Java)

      +

      December 14, 2009

      +

      +
      +
      + +

      + + + + +
      +

      + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

      + +

      There are two reasons you might want to use the download on this page instead:

      + +
        +
      1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
      2. + +
      3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
      4. +
      + +

      + If you think the download on this page might be appropriate for you, please read the following detailed + technical information. +

      + +

      + Even if you already have Java installed on your computer, it probably will not work with + NetLogo. +

      + +

      + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Sun does not install this option. It is only included in + Sun’s Java Development Kit (JDK). +

      + +

      If you are not a Java developer, then you probably have the JRE, not the JDK.

      + +

      Therefore, if you want to run NetLogo with your own Java VM, you have two options:

      + +
        +
      1. Make sure that you have the full JDK for the Java you want to use, not just the JRE.
      2. + +
      3. Or, you can edit a configuration file in order to make NetLogo work with the JRE.
      4. +
      + +

      + We don’t recommend option 2, because NetLogo runs noticeably slower without the “server” + option. +

      + +

      + If you choose option 2 anyway, here’s what to do. You have to tell NetLogo not to try to use the + “server” VM option. First, install NetLogo using the download on this page. Then, open NetLogo + 4.0.5.lax, located in the directory where you installed NetLogo (by default c:/Program Files/NetLogo 4.0.5), + in a text editor such as Notepad. You need to remove the -server option from the additional java + options. So change this section: +

      + +
      +#   LAX.NL.JAVA.OPTION.ADDITIONAL
      +#   -----------------------------
      +#   don't load native libs from user dirs, only ours, also run server not client VM
      +
      +lax.nl.java.option.additional=-Djava.ext.dirs= -server -Dsun.java2d.noddraw=true
      +
      + +

      To look like this:

      + +
      +#   LAX.NL.JAVA.OPTION.ADDITIONAL
      +#   -----------------------------
      +#   don't load native libs from user dirs, only ours, also run server not client VM
      +
      +lax.nl.java.option.additional=-Djava.ext.dirs= -Dsun.java2d.noddraw=true
      +
      + +

      Again, remember that with this approach, performance is impaired.

      + +

      +
      + + + + + + + + + + +
      + + Windows +
      + Download + (37M) +
      +
      + +

      +
      + +

      Notes:

      + +
        +
      • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
      • +
      + +

      + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/4.0/index.html b/src/pages/downloads/archive/html/4.0/index.html new file mode 100644 index 0000000..b1060bd --- /dev/null +++ b/src/pages/downloads/archive/html/4.0/index.html @@ -0,0 +1,117 @@ + + + + + +NetLogo 4.0.5 Downloads + + + + + +

      + +

      + + +
      +

      NetLogo 4.0.5 Downloads

      +

      December 14, 2009

      +


      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Windows + +
      + + Download + (63M)
      +
      Mac OS X + +
      + + Download + (37M)
      +
      Other +
      + + Download + (35M)
      +
      + +

      + + +

      +


      + +

      Notes for Windows users:
      + +

        +
      • Certain anti-virus software may cause a long + pause (as much as a minute or longer) near the end + of the download + process. +
      • Our installer includes Java (version 1.5.0) for NetLogo’s private use only. + Other programs on your computer are not affected. +
      • Want to run NetLogo using a Java VM you have + already installed yourself, instead of one bundled + with NetLogo? Click here + for cautions, technical information, and instructions. +
      + + + +


      + +

      +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

      + + + + diff --git a/src/pages/downloads/archive/html/4.0/windows.html b/src/pages/downloads/archive/html/4.0/windows.html new file mode 100644 index 0000000..f6ba7b3 --- /dev/null +++ b/src/pages/downloads/archive/html/4.0/windows.html @@ -0,0 +1,161 @@ + + + + + + NetLogo 4.0.5 for Windows without bundled Java + + + +

      + +

      + + + + +
      +

      NetLogo 4.0.5
      for Windows

      +

      (without bundled Java)

      +

      December 14, 2009

      +

      +
      +
      + +

      + + + + +
      +

      + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

      + +

      There are two reasons you might want to use the download on this page instead:

      + +
        +
      1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
      2. + +
      3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
      4. +
      + +

      + If you think the download on this page might be appropriate for you, please read the following detailed + technical information. +

      + +

      + Even if you already have Java installed on your computer, it probably will not work with + NetLogo. +

      + +

      + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Sun does not install this option. It is only included in + Sun’s Java Development Kit (JDK). +

      + +

      If you are not a Java developer, then you probably have the JRE, not the JDK.

      + +

      Therefore, if you want to run NetLogo with your own Java VM, you have two options:

      + +
        +
      1. Make sure that you have the full JDK for the Java you want to use, not just the JRE.
      2. + +
      3. Or, you can edit a configuration file in order to make NetLogo work with the JRE.
      4. +
      + +

      + We don’t recommend option 2, because NetLogo runs noticeably slower without the “server” + option. +

      + +

      + If you choose option 2 anyway, here’s what to do. You have to tell NetLogo not to try to use the + “server” VM option. First, install NetLogo using the download on this page. Then, open NetLogo + 4.0.5.lax, located in the directory where you installed NetLogo (by default c:/Program Files/NetLogo 4.0.5), + in a text editor such as Notepad. You need to remove the -server option from the additional java + options. So change this section: +

      + +
      +#   LAX.NL.JAVA.OPTION.ADDITIONAL
      +#   -----------------------------
      +#   don't load native libs from user dirs, only ours, also run server not client VM
      +
      +lax.nl.java.option.additional=-Djava.ext.dirs= -server -Dsun.java2d.noddraw=true
      +
      + +

      To look like this:

      + +
      +#   LAX.NL.JAVA.OPTION.ADDITIONAL
      +#   -----------------------------
      +#   don't load native libs from user dirs, only ours, also run server not client VM
      +
      +lax.nl.java.option.additional=-Djava.ext.dirs= -Dsun.java2d.noddraw=true
      +
      + +

      Again, remember that with this approach, performance is impaired.

      + +

      +
      + + + + + + + + + + +
      + + Windows +
      + Download + (37M) +
      +
      + +

      +
      + +

      Notes:

      + +
        +
      • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
      • +
      + +

      + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/4.1.0/index.html b/src/pages/downloads/archive/html/4.1.0/index.html new file mode 100644 index 0000000..f3db42d --- /dev/null +++ b/src/pages/downloads/archive/html/4.1.0/index.html @@ -0,0 +1,132 @@ + + + + + +NetLogo 4.1 Downloads + + + + + + + + + +

      + +

      + + +
      +

      NetLogo 4.1 Downloads

      +

      December 20, 2009

      +


      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Windows + +
      + + Download + (62M)
      +
      Mac OS X + +
      + + Download + (43M)
      +
      Other +
      + + Download + (41M)
      +
      + + + +
      +


      + +

      sign up for mailing lists

      + +

      + +Donate
      + +

      + + +

      +


      + +

      Notes for Windows users:
      + +

        +
      • Certain anti-virus software may cause a long + pause (as much as a minute or longer) near the end + of the download + process. +
      • Our installer includes Java 6 for NetLogo’s private use only. + Other programs on your computer are not affected. +
      • Want to run NetLogo using a Java VM you have + already installed yourself, instead of one bundled + with NetLogo? Click here + for cautions, technical information, and instructions. +
      + + + +


      + +

      +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

      + + + + diff --git a/src/pages/downloads/archive/html/4.1.0/windows.html b/src/pages/downloads/archive/html/4.1.0/windows.html new file mode 100644 index 0000000..3ca3eb9 --- /dev/null +++ b/src/pages/downloads/archive/html/4.1.0/windows.html @@ -0,0 +1,122 @@ + + + + + + NetLogo 4.1 for Windows without bundled Java + + + +

      + +

      + + + + +
      +

      NetLogo 4.1
      for Windows

      +

      (without bundled Java)

      +

      December 20, 2009

      +

      +
      +
      + +

      + + + + +
      + + +

      + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

      + +

      There are two reasons you might want to use the download on this page instead:

      + +
        +
      1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
      2. + +
      3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
      4. +
      + +

      + If you think the download on this page might be appropriate for you, please read the following technical + information. +

      + +

      + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

      + +

      + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Sun does not install this option. It is only included in + Sun’s Java Development Kit (JDK). +

      + +

      + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models will run substantially slower. +

      + +

      +
      + + + + + + + + + + +
      + + Windows +
      + Download + (43M) +
      +
      + +

      +
      + +

      Notes:

      + +
        +
      • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
      • +
      + +

      + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/4.1.1/index.html b/src/pages/downloads/archive/html/4.1.1/index.html new file mode 100644 index 0000000..f8f17cd --- /dev/null +++ b/src/pages/downloads/archive/html/4.1.1/index.html @@ -0,0 +1,120 @@ + + + + + +NetLogo 4.1.1 Downloads + + + + + + +

      + +

      + + +
      +

      NetLogo 4.1.1 Downloads

      +

      August 4, 2010

      +


      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Windows + +
      + + Download + (62M)
      +
      Mac OS X + +
      + + Download + (43M)
      +
      Other +
      + + Download + (41M)
      +
      + +


      Donate
      + +

      + + +

      +


      + +

      Notes for Windows users:
      + +

        +
      • Certain anti-virus software may cause a long + pause (as much as a minute or longer) near the end + of the download + process. +
      • Our installer includes Java 6 for NetLogo’s private use only. + Other programs on your computer are not affected. +
      • Want to run NetLogo using a Java VM you have + already installed yourself, instead of one bundled + with NetLogo? Click here + for cautions, technical information, and instructions. +
      + + + +


      + +

      +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

      + + + + diff --git a/src/pages/downloads/archive/html/4.1.1/windows.html b/src/pages/downloads/archive/html/4.1.1/windows.html new file mode 100644 index 0000000..86ad703 --- /dev/null +++ b/src/pages/downloads/archive/html/4.1.1/windows.html @@ -0,0 +1,122 @@ + + + + + + NetLogo 4.1.1 for Windows without bundled Java + + + +

      + +

      + + + + +
      +

      NetLogo 4.1.1
      for Windows

      +

      (without bundled Java)

      +

      August 4, 2010

      +

      +
      +
      + +

      + + + + +
      + + +

      + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

      + +

      There are two reasons you might want to use the download on this page instead:

      + +
        +
      1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
      2. + +
      3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
      4. +
      + +

      + If you think the download on this page might be appropriate for you, please read the following technical + information. +

      + +

      + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

      + +

      + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Sun does not install this option. It is only included in + Sun’s Java Development Kit (JDK). +

      + +

      + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models will run substantially slower. +

      + +

      +
      + + + + + + + + + + +
      + + Windows +
      + Download + (43M) +
      +
      + +

      +
      + +

      Notes:

      + +
        +
      • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
      • +
      + +

      + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/4.1.2/index.html b/src/pages/downloads/archive/html/4.1.2/index.html new file mode 100644 index 0000000..775fee8 --- /dev/null +++ b/src/pages/downloads/archive/html/4.1.2/index.html @@ -0,0 +1,120 @@ + + + + + +NetLogo 4.1.2 Downloads + + + + + + +

      + +

      + + +
      +

      NetLogo 4.1.2 Downloads

      +

      December 6, 2010

      +


      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Windows + +
      + + Download + (63M)
      +
      Mac OS X + +
      + + Download + (43M)
      +
      Other +
      + + Download + (41M)
      +
      + +


      Donate
      + +

      + + +

      +


      + +

      Notes for Windows users:
      + +

        +
      • Certain anti-virus software may cause a long + pause (as much as a minute or longer) near the end + of the download + process. +
      • Our installer includes Java 6 for NetLogo’s private use only. + Other programs on your computer are not affected. +
      • Want to run NetLogo using a Java VM you have + already installed yourself, instead of one bundled + with NetLogo? Click here + for cautions, technical information, and instructions. +
      + + + +


      + +

      +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

      + + + + diff --git a/src/pages/downloads/archive/html/4.1.2/windows.html b/src/pages/downloads/archive/html/4.1.2/windows.html new file mode 100644 index 0000000..6c881f9 --- /dev/null +++ b/src/pages/downloads/archive/html/4.1.2/windows.html @@ -0,0 +1,122 @@ + + + + + + NetLogo 4.1.2 for Windows without bundled Java + + + +

      + +

      + + + + +
      +

      NetLogo 4.1.2
      for Windows

      +

      (without bundled Java)

      +

      December 6, 2010

      +

      +
      +
      + +

      + + + + +
      + + +

      + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

      + +

      There are two reasons you might want to use the download on this page instead:

      + +
        +
      1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
      2. + +
      3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
      4. +
      + +

      + If you think the download on this page might be appropriate for you, please read the following technical + information. +

      + +

      + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

      + +

      + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Sun does not install this option. It is only included in + Sun’s Java Development Kit (JDK). +

      + +

      + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models will run substantially slower. +

      + +

      +
      + + + + + + + + + + +
      + + Windows +
      + Download + (44M) +
      +
      + +

      +
      + +

      Notes:

      + +
        +
      • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
      • +
      + +

      + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/4.1.3/index.html b/src/pages/downloads/archive/html/4.1.3/index.html new file mode 100644 index 0000000..5c769be --- /dev/null +++ b/src/pages/downloads/archive/html/4.1.3/index.html @@ -0,0 +1,127 @@ + + + + + +NetLogo 4.1.3 Downloads + + + + + + +

      + +

      + + +
      +

      NetLogo 4.1.3 Downloads

      +

      April 3, 2011

      +


      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Mac OS X + +
      + + Download + (43M)
      +
      Windows + +
      + + Download + (63M)
      +
      Other +
      + + Download + (42M)
      +
      + +


      Donate
      + +

      + + +

      +


      + +

      Notes for Windows users:
      + +

        +
      • Our installer includes Java 6 for NetLogo’s private use only. + Other programs on your computer are not affected. +
      • Want to run NetLogo using a Java VM you have + already installed yourself, instead of one bundled + with NetLogo? Click here + for cautions, technical information, and instructions. +
      + +

      +


      + +

      Notes for Linux users:
      + +

        +
      • Some Linux distributions include a Java implementation which is not good + enough to run NetLogo. Make sure you are using Java from Sun, not OpenJDK. +
      + + + + +


      + +

      +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

      + + + + diff --git a/src/pages/downloads/archive/html/4.1.3/windows.html b/src/pages/downloads/archive/html/4.1.3/windows.html new file mode 100644 index 0000000..e2d6e29 --- /dev/null +++ b/src/pages/downloads/archive/html/4.1.3/windows.html @@ -0,0 +1,122 @@ + + + + + + NetLogo 4.1.3 for Windows without bundled Java + + + +

      + +

      + + + + +
      +

      NetLogo 4.1.3
      for Windows

      +

      (without bundled Java)

      +

      April 3, 2011

      +

      +
      +
      + +

      + + + + +
      + + +

      + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

      + +

      There are two reasons you might want to use the download on this page instead:

      + +
        +
      1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
      2. + +
      3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
      4. +
      + +

      + If you think the download on this page might be appropriate for you, please read the following technical + information. +

      + +

      + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

      + +

      + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Sun does not install this option. It is only included in + Sun’s Java Development Kit (JDK). +

      + +

      + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models will run substantially slower. +

      + +

      +
      + + + + + + + + + + +
      + + Windows +
      + Download + (44M) +
      +
      + +

      +
      + +

      Notes:

      + +
        +
      • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
      • +
      + +

      + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/4.1/index.html b/src/pages/downloads/archive/html/4.1/index.html new file mode 100644 index 0000000..987a3b5 --- /dev/null +++ b/src/pages/downloads/archive/html/4.1/index.html @@ -0,0 +1,127 @@ + + + + + +NetLogo 4.1.3 Downloads + + + + + + +

      + +

      + + +
      +

      NetLogo 4.1.3 Downloads

      +

      April 3, 2011

      +


      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Mac OS X + +
      + + Download + (43M)
      +
      Windows + +
      + + Download + (63M)
      +
      Other +
      + + Download + (42M)
      +
      + +


      Donate
      + +

      + + +

      +


      + +

      Notes for Windows users:
      + +

        +
      • Our installer includes Java 6 for NetLogo’s private use only. + Other programs on your computer are not affected. +
      • Want to run NetLogo using a Java VM you have + already installed yourself, instead of one bundled + with NetLogo? Click here + for cautions, technical information, and instructions. +
      + +

      +


      + +

      Notes for Linux users:
      + +

        +
      • Some Linux distributions include a Java implementation which is not good + enough to run NetLogo. Make sure you are using Java from Sun, not OpenJDK. +
      + + + + +


      + +

      +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

      + + + + diff --git a/src/pages/downloads/archive/html/4.1/windows.html b/src/pages/downloads/archive/html/4.1/windows.html new file mode 100644 index 0000000..48e7c35 --- /dev/null +++ b/src/pages/downloads/archive/html/4.1/windows.html @@ -0,0 +1,122 @@ + + + + + + NetLogo 4.1.3 for Windows without bundled Java + + + +

      + +

      + + + + +
      +

      NetLogo 4.1.3
      for Windows

      +

      (without bundled Java)

      +

      April 3, 2011

      +

      +
      +
      + +

      + + + + +
      + + +

      + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

      + +

      There are two reasons you might want to use the download on this page instead:

      + +
        +
      1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
      2. + +
      3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
      4. +
      + +

      + If you think the download on this page might be appropriate for you, please read the following technical + information. +

      + +

      + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

      + +

      + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Sun does not install this option. It is only included in + Sun’s Java Development Kit (JDK). +

      + +

      + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models will run substantially slower. +

      + +

      +
      + + + + + + + + + + +
      + + Windows +
      + Download + (44M) +
      +
      + +

      +
      + +

      Notes:

      + +
        +
      • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
      • +
      + +

      + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.0.0/index.html b/src/pages/downloads/archive/html/5.0.0/index.html new file mode 100644 index 0000000..7ce6a26 --- /dev/null +++ b/src/pages/downloads/archive/html/5.0.0/index.html @@ -0,0 +1,160 @@ + + + + + + NetLogo 5.0 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 5.0 Downloads

      +

      February 16, 2012

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (62M) +
      +
      + + Windows +
      + Download + (82M) +
      +
      + + Other +
      + Download + (60M) +
      +
      + + + + + +
      +

      +
      +
      +

      sign up for mailing lists

      +

      + Donate
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for cautions, technical information, and instructions. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Some Linux distributions include a Java implementation which is not good enough to run NetLogo. If you + have trouble, try Java from Sun, not OpenJDK (or, try a newer OpenJDK). +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.0.0/windows.html b/src/pages/downloads/archive/html/5.0.0/windows.html new file mode 100644 index 0000000..b10e840 --- /dev/null +++ b/src/pages/downloads/archive/html/5.0.0/windows.html @@ -0,0 +1,122 @@ + + + + + + NetLogo 5.0 for Windows without bundled Java + + + +

      + +

      + + + + +
      +

      NetLogo 5.0
      for Windows

      +

      (without bundled Java)

      +

      February 16, 2012

      +

      +
      +
      + +

      + + + + +
      + + +

      + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

      + +

      There are two reasons you might want to use the download on this page instead:

      + +
        +
      1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
      2. + +
      3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
      4. +
      + +

      + If you think the download on this page might be appropriate for you, please read the following technical + information. +

      + +

      + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

      + +

      + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Sun does not install this option. It is only included in + Sun’s Java Development Kit (JDK). +

      + +

      + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

      + +

      +
      + + + + + + + + + + +
      + + Windows +
      + Download + (62M) +
      +
      + +

      +
      + +

      Notes:

      + +
        +
      • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
      • +
      + +

      + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.0.1/index.html b/src/pages/downloads/archive/html/5.0.1/index.html new file mode 100644 index 0000000..4edb39b --- /dev/null +++ b/src/pages/downloads/archive/html/5.0.1/index.html @@ -0,0 +1,160 @@ + + + + + + NetLogo 5.0.1 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 5.0.1 Downloads

      +

      April 12, 2012

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (63M) +
      +
      + + Windows +
      + Download + (83M) +
      +
      + + Other +
      + Download + (60M) +
      +
      + + + + + +
      +

      +
      +
      +

      sign up for mailing lists

      +

      + Donate
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for cautions, technical information, and instructions. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Some Linux distributions include a Java implementation which is not good enough to run NetLogo. If you + have trouble, try Java from Oracle, not OpenJDK (or, try a newer OpenJDK). +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.0.1/windows.html b/src/pages/downloads/archive/html/5.0.1/windows.html new file mode 100644 index 0000000..d8e3c0e --- /dev/null +++ b/src/pages/downloads/archive/html/5.0.1/windows.html @@ -0,0 +1,120 @@ + + + + + + NetLogo 5.0.1 for Windows without bundled Java + + + +

      + +

      + + + + +
      +

      NetLogo 5.0.1
      for Windows

      +

      (without bundled Java)

      +

      April 12, 2012

      +
      + +

      + + + + +
      + + +

      + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

      + +

      There are two reasons you might want to use the download on this page instead:

      + +
        +
      1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
      2. + +
      3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
      4. +
      + +

      + If you think the download on this page might be appropriate for you, please read the following technical + information. +

      + +

      + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

      + +

      + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

      + +

      + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

      + +

      +
      + + + + + + + + + + +
      + + Windows +
      + Download + (64M) +
      +
      + +

      +
      + +

      Notes:

      + +
        +
      • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
      • +
      + +

      + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.0.2/index.html b/src/pages/downloads/archive/html/5.0.2/index.html new file mode 100644 index 0000000..7532682 --- /dev/null +++ b/src/pages/downloads/archive/html/5.0.2/index.html @@ -0,0 +1,160 @@ + + + + + + NetLogo 5.0.2 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 5.0.2 Downloads

      +

      July 27, 2012

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (64M) +
      +
      + + Windows +
      + Download + (84M) +
      +
      + + Other +
      + Download + (61M) +
      +
      + + + + + +
      +

      +
      +
      +

      sign up for mailing lists

      +

      + Donate
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for cautions, technical information, and instructions. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Some Linux distributions include a Java implementation which is not good enough to run NetLogo. If you + have trouble, try Java from Oracle, not OpenJDK (or, try a newer OpenJDK). +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.0.2/windows.html b/src/pages/downloads/archive/html/5.0.2/windows.html new file mode 100644 index 0000000..763bc84 --- /dev/null +++ b/src/pages/downloads/archive/html/5.0.2/windows.html @@ -0,0 +1,120 @@ + + + + + + NetLogo 5.0.2 for Windows without bundled Java + + + +

      + +

      + + + + +
      +

      NetLogo 5.0.2
      for Windows

      +

      (without bundled Java)

      +

      July 27, 2012

      +
      + +

      + + + + +
      + + +

      + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

      + +

      There are two reasons you might want to use the download on this page instead:

      + +
        +
      1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
      2. + +
      3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
      4. +
      + +

      + If you think the download on this page might be appropriate for you, please read the following technical + information. +

      + +

      + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

      + +

      + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

      + +

      + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

      + +

      +
      + + + + + + + + + + +
      + + Windows +
      + Download + (64M) +
      +
      + +

      +
      + +

      Notes:

      + +
        +
      • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
      • +
      + +

      + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.0.3/index.html b/src/pages/downloads/archive/html/5.0.3/index.html new file mode 100644 index 0000000..4c53fdc --- /dev/null +++ b/src/pages/downloads/archive/html/5.0.3/index.html @@ -0,0 +1,168 @@ + + + + + + NetLogo 5.0.3 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 5.0.3 Downloads

      +

      October 25, 2012

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (65M) +
      +
      + + Windows +
      + Download + (86M) +
      +
      + + Other +
      + Download + (64M) +
      +
      + + + + + +
      +

      +
      +
      +

      sign up for mailing lists

      +

      + Donate
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for cautions, technical information, and instructions. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + + + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.0.3/windows.html b/src/pages/downloads/archive/html/5.0.3/windows.html new file mode 100644 index 0000000..5e35eb5 --- /dev/null +++ b/src/pages/downloads/archive/html/5.0.3/windows.html @@ -0,0 +1,120 @@ + + + + + + NetLogo 5.0.3 for Windows without bundled Java + + + +

      + +

      + + + + +
      +

      NetLogo 5.0.3
      for Windows

      +

      (without bundled Java)

      +

      October 25, 2012

      +
      + +

      + + + + +
      + + +

      + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

      + +

      There are two reasons you might want to use the download on this page instead:

      + +
        +
      1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
      2. + +
      3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
      4. +
      + +

      + If you think the download on this page might be appropriate for you, please read the following technical + information. +

      + +

      + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

      + +

      + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

      + +

      + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

      + +

      +
      + + + + + + + + + + +
      + + Windows +
      + Download + (66M) +
      +
      + +

      +
      + +

      Notes:

      + +
        +
      • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
      • +
      + +

      + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.0.4/index.html b/src/pages/downloads/archive/html/5.0.4/index.html new file mode 100644 index 0000000..9d8694b --- /dev/null +++ b/src/pages/downloads/archive/html/5.0.4/index.html @@ -0,0 +1,168 @@ + + + + + + NetLogo 5.0.4 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 5.0.4 Downloads

      +

      March 19, 2013

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (68M) +
      +
      + + Windows +
      + Download + (88M) +
      +
      + + Other +
      + Download + (66M) +
      +
      + + + + + +
      +

      +
      +
      +

      sign up for mailing lists

      +

      + Donate
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for instructions, cautions, and download link. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + + + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.0.4/windows.html b/src/pages/downloads/archive/html/5.0.4/windows.html new file mode 100644 index 0000000..ef7a835 --- /dev/null +++ b/src/pages/downloads/archive/html/5.0.4/windows.html @@ -0,0 +1,120 @@ + + + + + + NetLogo 5.0.4 for Windows without bundled Java + + + +

      + +

      + + + + +
      +

      NetLogo 5.0.4
      for Windows

      +

      (without bundled Java)

      +

      March 19, 2013

      +
      + +

      + + + + +
      + + +

      + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

      + +

      There are two reasons you might want to use the download on this page instead:

      + +
        +
      1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
      2. + +
      3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
      4. +
      + +

      + If you think the download on this page might be appropriate for you, please read the following technical + information. +

      + +

      + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

      + +

      + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

      + +

      + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

      + +

      +
      + + + + + + + + + + +
      + + Windows +
      + Download + (69M) +
      +
      + +

      +
      + +

      Notes:

      + +
        +
      • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
      • +
      + +

      + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.0.5/index.html b/src/pages/downloads/archive/html/5.0.5/index.html new file mode 100644 index 0000000..2aadf11 --- /dev/null +++ b/src/pages/downloads/archive/html/5.0.5/index.html @@ -0,0 +1,168 @@ + + + + + + NetLogo 5.0.5 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 5.0.5 Downloads

      +

      December 19, 2013

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (69M) +
      +
      + + Windows +
      + Download + (89M) +
      +
      + + Other +
      + Download + (67M) +
      +
      + + + + + +
      +

      +
      +
      +

      sign up for mailing lists

      +

      + Donate
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for instructions, cautions, and download link. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + + + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.0.5/windows.html b/src/pages/downloads/archive/html/5.0.5/windows.html new file mode 100644 index 0000000..859e585 --- /dev/null +++ b/src/pages/downloads/archive/html/5.0.5/windows.html @@ -0,0 +1,120 @@ + + + + + + NetLogo 5.0.5 for Windows without bundled Java + + + +

      + +

      + + + + +
      +

      NetLogo 5.0.5
      for Windows

      +

      (without bundled Java)

      +

      December 19, 2013

      +
      + +

      + + + + +
      + + +

      + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

      + +

      There are two reasons you might want to use the download on this page instead:

      + +
        +
      1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
      2. + +
      3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
      4. +
      + +

      + If you think the download on this page might be appropriate for you, please read the following technical + information. +

      + +

      + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

      + +

      + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

      + +

      + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

      + +

      +
      + + + + + + + + + + +
      + + Windows +
      + Download + (70M) +
      +
      + +

      +
      + +

      Notes:

      + +
        +
      • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
      • +
      + +

      + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.0/index.html b/src/pages/downloads/archive/html/5.0/index.html new file mode 100644 index 0000000..2271547 --- /dev/null +++ b/src/pages/downloads/archive/html/5.0/index.html @@ -0,0 +1,168 @@ + + + + + + NetLogo 5.1.0 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 5.1.0 Downloads

      +

      July 25, 2014

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (69M) +
      +
      + + Windows +
      + Download + (89M) +
      +
      + + Other +
      + Download + (67M) +
      +
      + + + + + +
      +

      +
      +
      +

      sign up for mailing lists

      +

      + Donate
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for instructions, cautions, and download link. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + + + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.0/windows.html b/src/pages/downloads/archive/html/5.0/windows.html new file mode 100644 index 0000000..490ca57 --- /dev/null +++ b/src/pages/downloads/archive/html/5.0/windows.html @@ -0,0 +1,120 @@ + + + + + + NetLogo 5.1.0 for Windows without bundled Java + + + +

      + +

      + + + + +
      +

      NetLogo 5.1.0
      for Windows

      +

      (without bundled Java)

      +

      July 25, 2014

      +
      + +

      + + + + +
      + + +

      + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

      + +

      There are two reasons you might want to use the download on this page instead:

      + +
        +
      1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
      2. + +
      3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
      4. +
      + +

      + If you think the download on this page might be appropriate for you, please read the following technical + information. +

      + +

      + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

      + +

      + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

      + +

      + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

      + +

      +
      + + + + + + + + + + +
      + + Windows +
      + Download + (70M) +
      +
      + +

      +
      + +

      Notes:

      + +
        +
      • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
      • +
      + +

      + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.1.0-M1/index.html b/src/pages/downloads/archive/html/5.1.0-M1/index.html new file mode 100644 index 0000000..2d8e988 --- /dev/null +++ b/src/pages/downloads/archive/html/5.1.0-M1/index.html @@ -0,0 +1,160 @@ + + + + + + NetLogo 5.1.0-M1 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 5.1.0-M1 Downloads

      +

      INTERIM DEVEL BUILD

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (83M) +
      +
      + + Windows +
      + Download + (104M) +
      +
      + + Other +
      + Download + (78M) +
      +
      + + + + + +
      +

      +
      +
      +

      sign up for mailing lists

      +

      + Donate
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for cautions, technical information, and instructions. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Some Linux distributions include a Java implementation which is not good enough to run NetLogo. If you + have trouble, try Java from Oracle, not OpenJDK (or, try a newer OpenJDK). +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.1.0-M1/windows.html b/src/pages/downloads/archive/html/5.1.0-M1/windows.html new file mode 100644 index 0000000..3e17e0c --- /dev/null +++ b/src/pages/downloads/archive/html/5.1.0-M1/windows.html @@ -0,0 +1,122 @@ + + + + + + NetLogo 5.1.0-M1 for Windows without bundled Java + + + +

      + +

      + + + + +
      +

      NetLogo 5.1.0-M1
      for Windows

      +

      (without bundled Java)

      +

      INTERIM DEVEL BUILD

      +
      + +

      + + + + +
      + + +

      + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

      + +

      There are two reasons you might want to use the download on this page instead:

      + +
        +
      1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
      2. + +
      3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
      4. +
      + +

      + If you think the download on this page might be appropriate for you, please read the following technical + information. +

      + +

      + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

      + +

      + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

      + +

      + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

      + +

      +
      + + + + + + + + + + +
      + + Windows +
      + + Download + (84M) +
      +
      + +

      +
      + +

      Notes:

      + +
        +
      • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
      • +
      + +

      + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.1.0-M2/index.html b/src/pages/downloads/archive/html/5.1.0-M2/index.html new file mode 100644 index 0000000..03b6641 --- /dev/null +++ b/src/pages/downloads/archive/html/5.1.0-M2/index.html @@ -0,0 +1,168 @@ + + + + + + NetLogo 5.1.0-M2 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 5.1.0-M2 Downloads

      +

      INTERIM DEVEL BUILD

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (83M) +
      +
      + + Windows +
      + Download + (104M) +
      +
      + + Other +
      + Download + (78M) +
      +
      + + + + + +
      +

      +
      +
      +

      sign up for mailing lists

      +

      + Donate
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for cautions, technical information, and instructions. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + + + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.1.0-M2/windows.html b/src/pages/downloads/archive/html/5.1.0-M2/windows.html new file mode 100644 index 0000000..f607553 --- /dev/null +++ b/src/pages/downloads/archive/html/5.1.0-M2/windows.html @@ -0,0 +1,122 @@ + + + + + + NetLogo 5.1.0-M2 for Windows without bundled Java + + + +

      + +

      + + + + +
      +

      NetLogo 5.1.0-M2
      for Windows

      +

      (without bundled Java)

      +

      INTERIM DEVEL BUILD

      +
      + +

      + + + + +
      + + +

      + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

      + +

      There are two reasons you might want to use the download on this page instead:

      + +
        +
      1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
      2. + +
      3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
      4. +
      + +

      + If you think the download on this page might be appropriate for you, please read the following technical + information. +

      + +

      + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

      + +

      + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

      + +

      + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

      + +

      +
      + + + + + + + + + + +
      + + Windows +
      + + Download + (84M) +
      +
      + +

      +
      + +

      Notes:

      + +
        +
      • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
      • +
      + +

      + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.1.0/index.html b/src/pages/downloads/archive/html/5.1.0/index.html new file mode 100644 index 0000000..3919041 --- /dev/null +++ b/src/pages/downloads/archive/html/5.1.0/index.html @@ -0,0 +1,168 @@ + + + + + + NetLogo 5.1.0 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 5.1.0 Downloads

      +

      July 25, 2014

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (69M) +
      +
      + + Windows +
      + Download + (89M) +
      +
      + + Other +
      + Download + (67M) +
      +
      + + + + + +
      +

      +
      +
      +

      sign up for mailing lists

      +

      + Donate
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for instructions, cautions, and download link. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + + + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.1.0/windows.html b/src/pages/downloads/archive/html/5.1.0/windows.html new file mode 100644 index 0000000..3c821ea --- /dev/null +++ b/src/pages/downloads/archive/html/5.1.0/windows.html @@ -0,0 +1,120 @@ + + + + + + NetLogo 5.1.0 for Windows without bundled Java + + + +

      + +

      + + + + +
      +

      NetLogo 5.1.0
      for Windows

      +

      (without bundled Java)

      +

      July 25, 2014

      +
      + +

      + + + + +
      + + +

      + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

      + +

      There are two reasons you might want to use the download on this page instead:

      + +
        +
      1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
      2. + +
      3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
      4. +
      + +

      + If you think the download on this page might be appropriate for you, please read the following technical + information. +

      + +

      + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

      + +

      + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

      + +

      + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

      + +

      +
      + + + + + + + + + + +
      + + Windows +
      + Download + (70M) +
      +
      + +

      +
      + +

      Notes:

      + +
        +
      • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
      • +
      + +

      + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.1/index.html b/src/pages/downloads/archive/html/5.1/index.html new file mode 100644 index 0000000..17d78c6 --- /dev/null +++ b/src/pages/downloads/archive/html/5.1/index.html @@ -0,0 +1,168 @@ + + + + + + NetLogo 5.1.0 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 5.1.0 Downloads

      +

      July 25, 2014

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (69M) +
      +
      + + Windows +
      + Download + (89M) +
      +
      + + Other +
      + Download + (67M) +
      +
      + + + + + +
      +

      +
      +
      +

      sign up for mailing lists

      +

      + Donate
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for instructions, cautions, and download link. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + + + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.1/windows.html b/src/pages/downloads/archive/html/5.1/windows.html new file mode 100644 index 0000000..0983b2b --- /dev/null +++ b/src/pages/downloads/archive/html/5.1/windows.html @@ -0,0 +1,120 @@ + + + + + + NetLogo 5.1.0 for Windows without bundled Java + + + +

      + +

      + + + + +
      +

      NetLogo 5.1.0
      for Windows

      +

      (without bundled Java)

      +

      July 25, 2014

      +
      + +

      + + + + +
      + + +

      + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

      + +

      There are two reasons you might want to use the download on this page instead:

      + +
        +
      1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
      2. + +
      3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
      4. +
      + +

      + If you think the download on this page might be appropriate for you, please read the following technical + information. +

      + +

      + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

      + +

      + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

      + +

      + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

      + +

      +
      + + + + + + + + + + +
      + + Windows +
      + Download + (70M) +
      +
      + +

      +
      + +

      Notes:

      + +
        +
      • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
      • +
      + +

      + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.2-RC2/index.html b/src/pages/downloads/archive/html/5.2-RC2/index.html new file mode 100644 index 0000000..957621f --- /dev/null +++ b/src/pages/downloads/archive/html/5.2-RC2/index.html @@ -0,0 +1,168 @@ + + + + + + NetLogo 5.2-RC2 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 5.2-RC2 Downloads

      +

      January 26, 2015

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (71M) +
      +
      + + Windows +
      + Download + (91M) +
      +
      + + Other +
      + Download + (69M) +
      +
      + + + + + +
      +

      +
      +
      +

      sign up for mailing lists

      +

      + Donate
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for instructions, cautions, and download link. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + + + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.2-RC2/windows.html b/src/pages/downloads/archive/html/5.2-RC2/windows.html new file mode 100644 index 0000000..57230c9 --- /dev/null +++ b/src/pages/downloads/archive/html/5.2-RC2/windows.html @@ -0,0 +1,120 @@ + + + + + + NetLogo 5.2-RC2 for Windows without bundled Java + + + +

      + +

      + + + + +
      +

      NetLogo 5.2-RC2
      for Windows

      +

      (without bundled Java)

      +

      January 26, 2015

      +
      + +

      + + + + +
      + + +

      + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

      + +

      There are two reasons you might want to use the download on this page instead:

      + +
        +
      1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
      2. + +
      3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
      4. +
      + +

      + If you think the download on this page might be appropriate for you, please read the following technical + information. +

      + +

      + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

      + +

      + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

      + +

      + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

      + +

      +
      + + + + + + + + + + +
      + + Windows +
      + Download + (72M) +
      +
      + +

      +
      + +

      Notes:

      + +
        +
      • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
      • +
      + +

      + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.2-RC3/index.html b/src/pages/downloads/archive/html/5.2-RC3/index.html new file mode 100644 index 0000000..1b7eedf --- /dev/null +++ b/src/pages/downloads/archive/html/5.2-RC3/index.html @@ -0,0 +1,168 @@ + + + + + + NetLogo 5.2-RC3 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 5.2-RC3 Downloads

      +

      January 26, 2015

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (99M) +
      +
      + + Windows +
      + Download + (119M) +
      +
      + + Other +
      + Download + (97M) +
      +
      + + + + + +
      +

      +
      +
      +

      sign up for mailing lists

      +

      + Donate
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for instructions, cautions, and download link. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + + + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.2-RC3/windows.html b/src/pages/downloads/archive/html/5.2-RC3/windows.html new file mode 100644 index 0000000..748f72f --- /dev/null +++ b/src/pages/downloads/archive/html/5.2-RC3/windows.html @@ -0,0 +1,120 @@ + + + + + + NetLogo 5.2-RC3 for Windows without bundled Java + + + +

      + +

      + + + + +
      +

      NetLogo 5.2-RC3
      for Windows

      +

      (without bundled Java)

      +

      January 26, 2015

      +
      + +

      + + + + +
      + + +

      + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

      + +

      There are two reasons you might want to use the download on this page instead:

      + +
        +
      1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
      2. + +
      3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
      4. +
      + +

      + If you think the download on this page might be appropriate for you, please read the following technical + information. +

      + +

      + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

      + +

      + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

      + +

      + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

      + +

      +
      + + + + + + + + + + +
      + + Windows +
      + Download + (100M) +
      +
      + +

      +
      + +

      Notes:

      + +
        +
      • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
      • +
      + +

      + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.2.0-RC4/index.html b/src/pages/downloads/archive/html/5.2.0-RC4/index.html new file mode 100644 index 0000000..9344129 --- /dev/null +++ b/src/pages/downloads/archive/html/5.2.0-RC4/index.html @@ -0,0 +1,168 @@ + + + + + + NetLogo 5.2.0-RC4 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 5.2.0-RC4 Downloads

      +

      March 21, 2015

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (102M) +
      +
      + + Windows +
      + Download + (122M) +
      +
      + + Other +
      + Download + (100M) +
      +
      + + + + + +
      +

      +
      +
      +

      sign up for mailing lists

      +

      + Donate
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for instructions, cautions, and download link. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + + + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.2.0-RC4/windows.html b/src/pages/downloads/archive/html/5.2.0-RC4/windows.html new file mode 100644 index 0000000..c6e8e85 --- /dev/null +++ b/src/pages/downloads/archive/html/5.2.0-RC4/windows.html @@ -0,0 +1,122 @@ + + + + + + NetLogo 5.2.0-RC4 for Windows without bundled Java + + + +

      + +

      + + + + +
      +

      NetLogo 5.2.0-RC4
      for Windows

      +

      (without bundled Java)

      +

      March 21, 2015

      +
      + +

      + + + + +
      + + +

      + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

      + +

      There are two reasons you might want to use the download on this page instead:

      + +
        +
      1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
      2. + +
      3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
      4. +
      + +

      + If you think the download on this page might be appropriate for you, please read the following technical + information. +

      + +

      + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

      + +

      + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

      + +

      + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

      + +

      +
      + + + + + + + + + + +
      + + Windows +
      + + Download + (103M) +
      +
      + +

      +
      + +

      Notes:

      + +
        +
      • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
      • +
      + +

      + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.2.0-RC5/index.html b/src/pages/downloads/archive/html/5.2.0-RC5/index.html new file mode 100644 index 0000000..fad990d --- /dev/null +++ b/src/pages/downloads/archive/html/5.2.0-RC5/index.html @@ -0,0 +1,199 @@ + + + + + + NetLogo 5.2.0-RC5 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 5.2.0-RC5 Downloads

      +

      April 1, 2015

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (103M) +
      +
      On OS X 10.10 (Yosemite) or later? See below!
      + + Windows +
      + Download + (123M) +
      +
      + + Other +
      + Download + (101M) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + NetLogo requires the Apple supported Java6 that can be found on Apple's support website at + http://support.apple.com/kb/DL1572 +
      • + +
      • + Some users have experienced problems after upgrading their version of OS X to the Yosemite OS. Installing + the aforementioned Java6 package will fix the issue. Please see + these notes + for more information. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for instructions, cautions, and download link. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + + + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.2.0-RC5/windows.html b/src/pages/downloads/archive/html/5.2.0-RC5/windows.html new file mode 100644 index 0000000..5251f43 --- /dev/null +++ b/src/pages/downloads/archive/html/5.2.0-RC5/windows.html @@ -0,0 +1,122 @@ + + + + + + NetLogo 5.2.0-RC5 for Windows without bundled Java + + + +

      + +

      + + + + +
      +

      NetLogo 5.2.0-RC5
      for Windows

      +

      (without bundled Java)

      +

      April 1, 2015

      +
      + +

      + + + + +
      + + +

      + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

      + +

      There are two reasons you might want to use the download on this page instead:

      + +
        +
      1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
      2. + +
      3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
      4. +
      + +

      + If you think the download on this page might be appropriate for you, please read the following technical + information. +

      + +

      + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

      + +

      + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

      + +

      + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

      + +

      +
      + + + + + + + + + + +
      + + Windows +
      + + Download + (104M) +
      +
      + +

      +
      + +

      Notes:

      + +
        +
      • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
      • +
      + +

      + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.2.0/index.html b/src/pages/downloads/archive/html/5.2.0/index.html new file mode 100644 index 0000000..d85975c --- /dev/null +++ b/src/pages/downloads/archive/html/5.2.0/index.html @@ -0,0 +1,199 @@ + + + + + + NetLogo 5.2 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 5.2 Downloads

      +

      April 3, 2015

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (104M) +
      +
      On OS X 10.10 (Yosemite) or later? See below!
      + + Windows +
      + Download + (123M) +
      +
      + + Other +
      + Download + (101M) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + NetLogo requires the Apple supported Java6 that can be found on Apple's support website at + http://support.apple.com/kb/DL1572 +
      • + +
      • + Some users have experienced problems after upgrading their version of OS X to the Yosemite OS. Installing + the aforementioned Java6 package will fix the issue. Please see + these notes + for more information. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for instructions, cautions, and download link. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + + + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.2.0/windows.html b/src/pages/downloads/archive/html/5.2.0/windows.html new file mode 100644 index 0000000..3dd5549 --- /dev/null +++ b/src/pages/downloads/archive/html/5.2.0/windows.html @@ -0,0 +1,120 @@ + + + + + + NetLogo 5.2 for Windows without bundled Java + + + +

      + +

      + + + + +
      +

      NetLogo 5.2
      for Windows

      +

      (without bundled Java)

      +

      April 3, 2015

      +
      + +

      + + + + +
      + + +

      + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

      + +

      There are two reasons you might want to use the download on this page instead:

      + +
        +
      1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
      2. + +
      3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
      4. +
      + +

      + If you think the download on this page might be appropriate for you, please read the following technical + information. +

      + +

      + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

      + +

      + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

      + +

      + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

      + +

      +
      + + + + + + + + + + +
      + + Windows +
      + Download + (104M) +
      +
      + +

      +
      + +

      Notes:

      + +
        +
      • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
      • +
      + +

      + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.2.1/index.html b/src/pages/downloads/archive/html/5.2.1/index.html new file mode 100644 index 0000000..8a648c3 --- /dev/null +++ b/src/pages/downloads/archive/html/5.2.1/index.html @@ -0,0 +1,199 @@ + + + + + + NetLogo 5.2.1 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 5.2.1 Downloads

      +

      October 1, 2015

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (106M) +
      +
      On OS X 10.10 (Yosemite) or later? See below!
      + + Windows +
      + Download + (126M) +
      +
      + + Other +
      + Download + (104M) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + NetLogo requires the Apple supported Java6 that can be found on Apple's support website at + http://support.apple.com/kb/DL1572 +
      • + +
      • + Some users have experienced problems after upgrading their version of OS X to the Yosemite OS. Installing + the aforementioned Java6 package will fix the issue. Please see + these notes + for more information. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for instructions, cautions, and download link. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + + + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.2.1/windows.html b/src/pages/downloads/archive/html/5.2.1/windows.html new file mode 100644 index 0000000..b148085 --- /dev/null +++ b/src/pages/downloads/archive/html/5.2.1/windows.html @@ -0,0 +1,120 @@ + + + + + + NetLogo 5.2.1 for Windows without bundled Java + + + +

      + +

      + + + + +
      +

      NetLogo 5.2.1
      for Windows

      +

      (without bundled Java)

      +

      October 1, 2015

      +
      + +

      + + + + +
      + + +

      + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

      + +

      There are two reasons you might want to use the download on this page instead:

      + +
        +
      1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
      2. + +
      3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
      4. +
      + +

      + If you think the download on this page might be appropriate for you, please read the following technical + information. +

      + +

      + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

      + +

      + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

      + +

      + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

      + +

      +
      + + + + + + + + + + +
      + + Windows +
      + Download + (107M) +
      +
      + +

      +
      + +

      Notes:

      + +
        +
      • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
      • +
      + +

      + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.2/index.html b/src/pages/downloads/archive/html/5.2/index.html new file mode 100644 index 0000000..9e8b2eb --- /dev/null +++ b/src/pages/downloads/archive/html/5.2/index.html @@ -0,0 +1,199 @@ + + + + + + NetLogo 5.2.1 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 5.2.1 Downloads

      +

      October 1, 2015

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (106M) +
      +
      On OS X 10.10 (Yosemite) or later? See below!
      + + Windows +
      + Download + (126M) +
      +
      + + Other +
      + Download + (104M) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + NetLogo requires the Apple supported Java6 that can be found on Apple's support website at + http://support.apple.com/kb/DL1572 +
      • + +
      • + Some users have experienced problems after upgrading their version of OS X to the Yosemite OS. Installing + the aforementioned Java6 package will fix the issue. Please see + these notes + for more information. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for instructions, cautions, and download link. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + + + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.2/windows.html b/src/pages/downloads/archive/html/5.2/windows.html new file mode 100644 index 0000000..d824fe8 --- /dev/null +++ b/src/pages/downloads/archive/html/5.2/windows.html @@ -0,0 +1,120 @@ + + + + + + NetLogo 5.2.1 for Windows without bundled Java + + + +

      + +

      + + + + +
      +

      NetLogo 5.2.1
      for Windows

      +

      (without bundled Java)

      +

      October 1, 2015

      +
      + +

      + + + + +
      + + +

      + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

      + +

      There are two reasons you might want to use the download on this page instead:

      + +
        +
      1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
      2. + +
      3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
      4. +
      + +

      + If you think the download on this page might be appropriate for you, please read the following technical + information. +

      + +

      + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

      + +

      + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

      + +

      + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

      + +

      +
      + + + + + + + + + + +
      + + Windows +
      + Download + (107M) +
      +
      + +

      +
      + +

      Notes:

      + +
        +
      • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
      • +
      + +

      + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.3-RC1/index.html b/src/pages/downloads/archive/html/5.3-RC1/index.html new file mode 100644 index 0000000..d4bc9a9 --- /dev/null +++ b/src/pages/downloads/archive/html/5.3-RC1/index.html @@ -0,0 +1,220 @@ + + + + + + NetLogo 5.3-RC1 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 5.3-RC1 Downloads

      +

      December 4, 2015

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (181 MB) +
      +
      + + Windows (32-bit) +
      + Download + (158 MB) +
      +
      + + Windows (64-bit) +
      + Download + (160 MB) +
      +
      + + Other (32-bit) +
      + Download + (173 MB) +
      +
      + + Other (64-bit) +
      + Download + (171 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + NetLogo 5.3-RC1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.3.0/index.html b/src/pages/downloads/archive/html/5.3.0/index.html new file mode 100644 index 0000000..c1a95e7 --- /dev/null +++ b/src/pages/downloads/archive/html/5.3.0/index.html @@ -0,0 +1,220 @@ + + + + + + NetLogo 5.3 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 5.3 Downloads

      +

      December 4, 2015

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (181 MB) +
      +
      + + Windows (32-bit) +
      + Download + (158 MB) +
      +
      + + Windows (64-bit) +
      + Download + (160 MB) +
      +
      + + Linux (32-bit) +
      + Download + (173 MB) +
      +
      + + Linux (64-bit) +
      + Download + (171 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + NetLogo 5.3 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.3.1-RC1/index.html b/src/pages/downloads/archive/html/5.3.1-RC1/index.html new file mode 100644 index 0000000..50c42b0 --- /dev/null +++ b/src/pages/downloads/archive/html/5.3.1-RC1/index.html @@ -0,0 +1,220 @@ + + + + + + NetLogo 5.3.1-RC1 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 5.3.1-RC1 Downloads

      +

      January 26, 2016

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (182 MB) +
      +
      + + Windows (32-bit) +
      + Download + (159 MB) +
      +
      + + Windows (64-bit) +
      + Download + (160 MB) +
      +
      + + Linux (32-bit) +
      + Download + (174 MB) +
      +
      + + Linux (64-bit) +
      + Download + (172 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + NetLogo 5.3.1-RC1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.3.1-RC2/index.html b/src/pages/downloads/archive/html/5.3.1-RC2/index.html new file mode 100644 index 0000000..de6533a --- /dev/null +++ b/src/pages/downloads/archive/html/5.3.1-RC2/index.html @@ -0,0 +1,220 @@ + + + + + + NetLogo 5.3.1-RC2 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 5.3.1-RC2 Downloads

      +

      February 16, 2016

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (172 MB) +
      +
      + + Windows (32-bit) +
      + Download + (157 MB) +
      +
      + + Windows (64-bit) +
      + Download + (159 MB) +
      +
      + + Linux (32-bit) +
      + Download + (172 MB) +
      +
      + + Linux (64-bit) +
      + Download + (170 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + NetLogo 5.3.1-RC2 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.3.1-RC3/index.html b/src/pages/downloads/archive/html/5.3.1-RC3/index.html new file mode 100644 index 0000000..0f45c55 --- /dev/null +++ b/src/pages/downloads/archive/html/5.3.1-RC3/index.html @@ -0,0 +1,220 @@ + + + + + + NetLogo 5.3.1-RC3 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 5.3.1-RC3 Downloads

      +

      February 23, 2016

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (168 MB) +
      +
      + + Windows (32-bit) +
      + Download + (158 MB) +
      +
      + + Windows (64-bit) +
      + Download + (159 MB) +
      +
      + + Linux (32-bit) +
      + Download + (173 MB) +
      +
      + + Linux (64-bit) +
      + Download + (171 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + NetLogo 5.3.1-RC3 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.3.1/index.html b/src/pages/downloads/archive/html/5.3.1/index.html new file mode 100644 index 0000000..d2fc03a --- /dev/null +++ b/src/pages/downloads/archive/html/5.3.1/index.html @@ -0,0 +1,220 @@ + + + + + + NetLogo 5.3.1 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 5.3.1 Downloads

      +

      February 29, 2016

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (168 MB) +
      +
      + + Windows (32-bit) +
      + Download + (158 MB) +
      +
      + + Windows (64-bit) +
      + Download + (159 MB) +
      +
      + + Linux (32-bit) +
      + Download + (173 MB) +
      +
      + + Linux (64-bit) +
      + Download + (171 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + NetLogo 5.3.1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/5.3/index.html b/src/pages/downloads/archive/html/5.3/index.html new file mode 100644 index 0000000..66b40d6 --- /dev/null +++ b/src/pages/downloads/archive/html/5.3/index.html @@ -0,0 +1,220 @@ + + + + + + NetLogo 5.3.1 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 5.3.1 Downloads

      +

      February 29, 2016

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (168 MB) +
      +
      + + Windows (32-bit) +
      + Download + (158 MB) +
      +
      + + Windows (64-bit) +
      + Download + (159 MB) +
      +
      + + Linux (32-bit) +
      + Download + (173 MB) +
      +
      + + Linux (64-bit) +
      + Download + (171 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + NetLogo 5.3.1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/6.0-BETA1/index.html b/src/pages/downloads/archive/html/6.0-BETA1/index.html new file mode 100644 index 0000000..6bb0eaf --- /dev/null +++ b/src/pages/downloads/archive/html/6.0-BETA1/index.html @@ -0,0 +1,223 @@ + + + + + + NetLogo 6.0-BETA1 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.0-BETA1 Downloads

      +

      October 24, 2016

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (179 MB) +
      +
      + + Windows (32-bit) +
      + Download + (157 MB) +
      +
      + + Windows (64-bit) +
      + Download + (158 MB) +
      +
      + + Linux (32-bit) +
      + Download + (171 MB) +
      +
      + + Linux (64-bit) +
      + Download + (167 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + NetLogo 6.0-BETA1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
      • +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/6.0-BETA2/index.html b/src/pages/downloads/archive/html/6.0-BETA2/index.html new file mode 100644 index 0000000..d11b4e7 --- /dev/null +++ b/src/pages/downloads/archive/html/6.0-BETA2/index.html @@ -0,0 +1,223 @@ + + + + + + NetLogo 6.0-BETA2 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.0-BETA2 Downloads

      +

      November 21, 2016

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (190 MB) +
      +
      + + Windows (32-bit) +
      + Download + (165 MB) +
      +
      + + Windows (64-bit) +
      + Download + (167 MB) +
      +
      + + Linux (32-bit) +
      + Download + (190 MB) +
      +
      + + Linux (64-bit) +
      + Download + (187 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + NetLogo 6.0-BETA2 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
      • +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/6.0-CONSTRUCTIONISM-2016-PREVIEW/index.html b/src/pages/downloads/archive/html/6.0-CONSTRUCTIONISM-2016-PREVIEW/index.html new file mode 100644 index 0000000..5e70dca --- /dev/null +++ b/src/pages/downloads/archive/html/6.0-CONSTRUCTIONISM-2016-PREVIEW/index.html @@ -0,0 +1,235 @@ + + + + + + NetLogo 6.0-CONSTRUCTIONISM-2016-PREVIEW Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.0-CONSTRUCTIONISM-2016-PREVIEW Downloads

      +

      December 4, 2015

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (195 MB) +
      +
      + + Windows (32-bit) +
      + Download + (180 MB) +
      +
      + + Windows (64-bit) +
      + Download + (181 MB) +
      +
      + + Linux (32-bit) +
      + Download + (195 MB) +
      +
      + + Linux (64-bit) +
      + Download + (193 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + NetLogo 6.0-CONSTRUCTIONISM-2016-PREVIEW requires OS X 10.7.4 or higher. If you need to run NetLogo on an + older version, please consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/6.0-M1/index.html b/src/pages/downloads/archive/html/6.0-M1/index.html new file mode 100644 index 0000000..bb7b3b0 --- /dev/null +++ b/src/pages/downloads/archive/html/6.0-M1/index.html @@ -0,0 +1,220 @@ + + + + + + NetLogo 6.0-M1 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.0-M1 Downloads

      +

      December 4, 2015

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (159 MB) +
      +
      + + Windows (32-bit) +
      + Download + (148 MB) +
      +
      + + Windows (64-bit) +
      + Download + (150 MB) +
      +
      + + Linux (32-bit) +
      + Download + (159 MB) +
      +
      + + Linux (64-bit) +
      + Download + (157 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + NetLogo 6.0-M1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/6.0-M2/index.html b/src/pages/downloads/archive/html/6.0-M2/index.html new file mode 100644 index 0000000..a222e20 --- /dev/null +++ b/src/pages/downloads/archive/html/6.0-M2/index.html @@ -0,0 +1,220 @@ + + + + + + NetLogo 6.0-M2 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.0-M2 Downloads

      +

      March 25, 2016

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (160 MB) +
      +
      + + Windows (32-bit) +
      + Download + (154 MB) +
      +
      + + Windows (64-bit) +
      + Download + (150 MB) +
      +
      + + Linux (32-bit) +
      + Download + (159 MB) +
      +
      + + Linux (64-bit) +
      + Download + (157 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + NetLogo 6.0-M2 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/6.0-M3/index.html b/src/pages/downloads/archive/html/6.0-M3/index.html new file mode 100644 index 0000000..0dfc8db --- /dev/null +++ b/src/pages/downloads/archive/html/6.0-M3/index.html @@ -0,0 +1,220 @@ + + + + + + NetLogo 6.0-M3 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.0-M3 Downloads

      +

      March 30, 2016

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (160 MB) +
      +
      + + Windows (32-bit) +
      + Download + (149 MB) +
      +
      + + Windows (64-bit) +
      + Download + (150 MB) +
      +
      + + Linux (32-bit) +
      + Download + (160 MB) +
      +
      + + Linux (64-bit) +
      + Download + (158 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + NetLogo 6.0-M3 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/6.0-M4/index.html b/src/pages/downloads/archive/html/6.0-M4/index.html new file mode 100644 index 0000000..265e9d9 --- /dev/null +++ b/src/pages/downloads/archive/html/6.0-M4/index.html @@ -0,0 +1,220 @@ + + + + + + NetLogo 6.0-M4 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.0-M4 Downloads

      +

      April 1, 2016

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (160 MB) +
      +
      + + Windows (32-bit) +
      + Download + (149 MB) +
      +
      + + Windows (64-bit) +
      + Download + (150 MB) +
      +
      + + Linux (32-bit) +
      + Download + (160 MB) +
      +
      + + Linux (64-bit) +
      + Download + (158 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + NetLogo 6.0-M4 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/6.0-M5/index.html b/src/pages/downloads/archive/html/6.0-M5/index.html new file mode 100644 index 0000000..6ad69eb --- /dev/null +++ b/src/pages/downloads/archive/html/6.0-M5/index.html @@ -0,0 +1,220 @@ + + + + + + NetLogo 6.0-M5 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.0-M5 Downloads

      +

      April 19, 2016

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (160 MB) +
      +
      + + Windows (32-bit) +
      + Download + (149 MB) +
      +
      + + Windows (64-bit) +
      + Download + (150 MB) +
      +
      + + Linux (32-bit) +
      + Download + (160 MB) +
      +
      + + Linux (64-bit) +
      + Download + (158 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + NetLogo 6.0-M5 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/6.0-M6/index.html b/src/pages/downloads/archive/html/6.0-M6/index.html new file mode 100644 index 0000000..92c17fd --- /dev/null +++ b/src/pages/downloads/archive/html/6.0-M6/index.html @@ -0,0 +1,220 @@ + + + + + + NetLogo 6.0-M6 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.0-M6 Downloads

      +

      May 3, 2016

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (161 MB) +
      +
      + + Windows (32-bit) +
      + Download + (150 MB) +
      +
      + + Windows (64-bit) +
      + Download + (151 MB) +
      +
      + + Linux (32-bit) +
      + Download + (161 MB) +
      +
      + + Linux (64-bit) +
      + Download + (158 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + NetLogo 6.0-M6 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/6.0-M7/index.html b/src/pages/downloads/archive/html/6.0-M7/index.html new file mode 100644 index 0000000..7c24d2b --- /dev/null +++ b/src/pages/downloads/archive/html/6.0-M7/index.html @@ -0,0 +1,220 @@ + + + + + + NetLogo 6.0-M7 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.0-M7 Downloads

      +

      May 23, 2016

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (168 MB) +
      +
      + + Windows (32-bit) +
      + Download + (152 MB) +
      +
      + + Windows (64-bit) +
      + Download + (153 MB) +
      +
      + + Linux (32-bit) +
      + Download + (167 MB) +
      +
      + + Linux (64-bit) +
      + Download + (164 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + NetLogo 6.0-M7 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/6.0-M8/index.html b/src/pages/downloads/archive/html/6.0-M8/index.html new file mode 100644 index 0000000..90533cd --- /dev/null +++ b/src/pages/downloads/archive/html/6.0-M8/index.html @@ -0,0 +1,220 @@ + + + + + + NetLogo 6.0-M8 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.0-M8 Downloads

      +

      June 6, 2016

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (168 MB) +
      +
      + + Windows (32-bit) +
      + Download + (152 MB) +
      +
      + + Windows (64-bit) +
      + Download + (153 MB) +
      +
      + + Linux (32-bit) +
      + Download + (157 MB) +
      +
      + + Linux (64-bit) +
      + Download + (164 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + NetLogo 6.0-M8 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/6.0-M9/index.html b/src/pages/downloads/archive/html/6.0-M9/index.html new file mode 100644 index 0000000..885be2e --- /dev/null +++ b/src/pages/downloads/archive/html/6.0-M9/index.html @@ -0,0 +1,220 @@ + + + + + + NetLogo 6.0-M9 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.0-M9 Downloads

      +

      July 22, 2016

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (171 MB) +
      +
      + + Windows (32-bit) +
      + Download + (153 MB) +
      +
      + + Windows (64-bit) +
      + Download + (155 MB) +
      +
      + + Linux (32-bit) +
      + Download + (164 MB) +
      +
      + + Linux (64-bit) +
      + Download + (166 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + NetLogo 6.0-M9 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/6.0.0/index.html b/src/pages/downloads/archive/html/6.0.0/index.html new file mode 100644 index 0000000..e8884bb --- /dev/null +++ b/src/pages/downloads/archive/html/6.0.0/index.html @@ -0,0 +1,225 @@ + + + + + + NetLogo 6.0 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.0 Downloads

      +

      January 5, 2017

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (199 MB) +
      +
      + + Windows (32-bit) +
      + Download + (175 MB) +
      +
      + + Windows (64-bit) +
      + Download + (177 MB) +
      +
      + + Linux (32-bit) +
      + Download + (199 MB) +
      +
      + + Linux (64-bit) +
      + Download + (197 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + NetLogo 6.0 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
      • +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/6.0.1-M1/index.html b/src/pages/downloads/archive/html/6.0.1-M1/index.html new file mode 100644 index 0000000..02d0494 --- /dev/null +++ b/src/pages/downloads/archive/html/6.0.1-M1/index.html @@ -0,0 +1,225 @@ + + + + + + NetLogo 6.0.1-M1 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.0.1-M1 Downloads

      +

      February 16, 2017

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (199 MB) +
      +
      + + Windows (32-bit) +
      + Download + (175 MB) +
      +
      + + Windows (64-bit) +
      + Download + (177 MB) +
      +
      + + Linux (32-bit) +
      + Download + (200 MB) +
      +
      + + Linux (64-bit) +
      + Download + (197 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + NetLogo 6.0.1-M1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
      • +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/6.0.1-RC1/index.html b/src/pages/downloads/archive/html/6.0.1-RC1/index.html new file mode 100644 index 0000000..d4f636d --- /dev/null +++ b/src/pages/downloads/archive/html/6.0.1-RC1/index.html @@ -0,0 +1,225 @@ + + + + + + NetLogo 6.0.1-RC1 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.0.1-RC1 Downloads

      +

      March 1, 2017

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (199 MB) +
      +
      + + Windows (32-bit) +
      + Download + (175 MB) +
      +
      + + Windows (64-bit) +
      + Download + (176 MB) +
      +
      + + Linux (32-bit) +
      + Download + (199 MB) +
      +
      + + Linux (64-bit) +
      + Download + (197 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + NetLogo 6.0.1-RC1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
      • +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/6.0.1/index.html b/src/pages/downloads/archive/html/6.0.1/index.html new file mode 100644 index 0000000..bb2e8e1 --- /dev/null +++ b/src/pages/downloads/archive/html/6.0.1/index.html @@ -0,0 +1,230 @@ + + + + + + NetLogo 6.0.1 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.0.1 Downloads

      +

      March 21, 2017

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (199 MB) +
      +
      + + Windows (32-bit) +
      + Download + (175 MB) +
      +
      + + Windows (64-bit) +
      + Download + (176 MB) +
      +
      + + Linux (32-bit) +
      + Download + (199 MB) +
      +
      + + Linux (64-bit) +
      + Download + (197 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + Some users have reported problems running NetLogo 6 on Mac OS Sierra. We're continuing to investigate this + and hope to find a fix soon. For the latest updates and workaround information, please see our + known issues page. +
      • +
      • + NetLogo 6.0.1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
      • +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/6.0.2-RC1/index.html b/src/pages/downloads/archive/html/6.0.2-RC1/index.html new file mode 100644 index 0000000..2d81080 --- /dev/null +++ b/src/pages/downloads/archive/html/6.0.2-RC1/index.html @@ -0,0 +1,213 @@ + + + + + + NetLogo 6.0.2-RC1 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.0.2 Downloads

      +

      August 11, 2017

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Windows (32-bit) +
      + Download + (171 MB) +
      +
      + + Windows (64-bit) +
      + Download + (173 MB) +
      +
      + + Linux (32-bit) +
      + Download + (192 MB) +
      +
      + + Linux (64-bit) +
      + Download + (190 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + Some users have reported problems running NetLogo 6 on Mac OS Sierra. We're continuing to investigate this + and hope to find a fix soon. For the latest updates and workaround information, please see our + known issues page. +
      • +
      • + NetLogo 6.0.2 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
      • +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/6.0.2/index.html b/src/pages/downloads/archive/html/6.0.2/index.html new file mode 100644 index 0000000..5609cef --- /dev/null +++ b/src/pages/downloads/archive/html/6.0.2/index.html @@ -0,0 +1,230 @@ + + + + + + NetLogo 6.0.2 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.0.2 Downloads

      +

      August 11, 2017

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (191 MB) +
      +
      + + Windows (32-bit) +
      + Download + (171 MB) +
      +
      + + Windows (64-bit) +
      + Download + (173 MB) +
      +
      + + Linux (32-bit) +
      + Download + (192 MB) +
      +
      + + Linux (64-bit) +
      + Download + (190 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + Some users have reported problems running NetLogo 6 on Mac OS Sierra. We're continuing to investigate this + and hope to find a fix soon. For the latest updates and workaround information, please see our + known issues page. +
      • +
      • + NetLogo 6.0.2 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
      • +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/6.0.3/index.html b/src/pages/downloads/archive/html/6.0.3/index.html new file mode 100644 index 0000000..d1145e7 --- /dev/null +++ b/src/pages/downloads/archive/html/6.0.3/index.html @@ -0,0 +1,230 @@ + + + + + + NetLogo 6.0.3 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.0.3 Downloads

      +

      March 21, 2018

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (226 MB) +
      +
      + + Windows (32-bit) +
      + Download + (181 MB) +
      +
      + + Windows (64-bit) +
      + Download + (183 MB) +
      +
      + + Linux (32-bit) +
      + Download + (202 MB) +
      +
      + + Linux (64-bit) +
      + Download + (199 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + Some users have reported problems running NetLogo 6 on Mac OS Sierra. We're continuing to investigate this + and hope to find a fix soon. For the latest updates and workaround information, please see our + known issues page. +
      • +
      • + NetLogo 6.0.3 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
      • +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/6.0.4/index.html b/src/pages/downloads/archive/html/6.0.4/index.html new file mode 100644 index 0000000..01db6cc --- /dev/null +++ b/src/pages/downloads/archive/html/6.0.4/index.html @@ -0,0 +1,230 @@ + + + + + + NetLogo 6.0.4 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.0.4 Downloads

      +

      June 14, 2018

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (209 MB) +
      +
      + + Windows (32-bit) +
      + Download + (181 MB) +
      +
      + + Windows (64-bit) +
      + Download + (183 MB) +
      +
      + + Linux (32-bit) +
      + Download + (203 MB) +
      +
      + + Linux (64-bit) +
      + Download + (200 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + Some users have reported problems running NetLogo 6 on Mac OS Sierra. We're continuing to investigate this + and hope to find a fix soon. For the latest updates and workaround information, please see our + known issues page. +
      • +
      • + NetLogo 6.0.4 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
      • +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/6.0/index.html b/src/pages/downloads/archive/html/6.0/index.html new file mode 100644 index 0000000..5cba302 --- /dev/null +++ b/src/pages/downloads/archive/html/6.0/index.html @@ -0,0 +1,230 @@ + + + + + + NetLogo 6.0.4 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.0.4 Downloads

      +

      June 14, 2018

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (209 MB) +
      +
      + + Windows (32-bit) +
      + Download + (181 MB) +
      +
      + + Windows (64-bit) +
      + Download + (183 MB) +
      +
      + + Linux (32-bit) +
      + Download + (203 MB) +
      +
      + + Linux (64-bit) +
      + Download + (200 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + Some users have reported problems running NetLogo 6 on Mac OS Sierra. We're continuing to investigate this + and hope to find a fix soon. For the latest updates and workaround information, please see our + known issues page. +
      • +
      • + NetLogo 6.0.4 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
      • +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/6.0beta/index.html b/src/pages/downloads/archive/html/6.0beta/index.html new file mode 100644 index 0000000..283d0ba --- /dev/null +++ b/src/pages/downloads/archive/html/6.0beta/index.html @@ -0,0 +1,220 @@ + + + + + + NetLogo 6.0-M6 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.0-M6 Downloads

      +

      May 3, 2016

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (161 MB) +
      +
      + + Windows (32-bit) +
      + Download + (150 MB) +
      +
      + + Windows (64-bit) +
      + Download + (151 MB) +
      +
      + + Linux (32-bit) +
      + Download + (161 MB) +
      +
      + + Linux (64-bit) +
      + Download + (158 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + NetLogo 6.0-M6 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • + +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/6.1.0/index.html b/src/pages/downloads/archive/html/6.1.0/index.html new file mode 100644 index 0000000..a915819 --- /dev/null +++ b/src/pages/downloads/archive/html/6.1.0/index.html @@ -0,0 +1,200 @@ + + + + + + NetLogo 6.1.0 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.1.0 Downloads

      +

      May 17, 2019

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Mac OS X +
      + Download + (213 MB) +
      +
      Windows (32-bit) +
      + Download + (185 MB) +
      +
      Windows (64-bit) +
      + Download + (187 MB) +
      +
      Linux (32-bit) +
      + Download + (211 MB) +
      +
      Linux (64-bit) +
      + Download + (208 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      Notes for Mac OS X users:

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + Some users have reported problems running NetLogo 6 on Mac OS Sierra. We're continuing to investigate this + and hope to find a fix soon. For the latest updates and workaround information, please see our + known issues page. +
      • +
      • + NetLogo 6.1.0 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
      • +
      + +

      +
      +

      Notes for Windows users:

      + +
      + + diff --git a/src/pages/downloads/archive/html/6.1.1/index.html b/src/pages/downloads/archive/html/6.1.1/index.html new file mode 100644 index 0000000..cedd74d --- /dev/null +++ b/src/pages/downloads/archive/html/6.1.1/index.html @@ -0,0 +1,232 @@ + + + + + + NetLogo 6.1.1 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.1.1 Downloads

      +

      September 26, 2019

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (215 MB) +
      +
      + + Windows (32-bit) +
      + Download + (186 MB) +
      +
      + + Windows (64-bit) +
      + Download + (189 MB) +
      +
      + + Linux (32-bit) +
      + Download + (213 MB) +
      +
      + + Linux (64-bit) +
      + Download + (210 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
      • +
      • + NetLogo 6.1.1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
      • +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/6.1/index.html b/src/pages/downloads/archive/html/6.1/index.html new file mode 100644 index 0000000..84377fa --- /dev/null +++ b/src/pages/downloads/archive/html/6.1/index.html @@ -0,0 +1,232 @@ + + + + + + NetLogo 6.1.1 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.1.1 Downloads

      +

      September 26, 2019

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (215 MB) +
      +
      + + Windows (32-bit) +
      + Download + (186 MB) +
      +
      + + Windows (64-bit) +
      + Download + (189 MB) +
      +
      + + Linux (32-bit) +
      + Download + (213 MB) +
      +
      + + Linux (64-bit) +
      + Download + (210 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
      • +
      • + NetLogo 6.1.1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
      • +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/6.2.0/index.html b/src/pages/downloads/archive/html/6.2.0/index.html new file mode 100644 index 0000000..8f82237 --- /dev/null +++ b/src/pages/downloads/archive/html/6.2.0/index.html @@ -0,0 +1,202 @@ + + + + + + NetLogo 6.2.0 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.2.0 Downloads

      +

      December 23, 2020

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Mac OS X +
      + Download + (235 MB) +
      +
      Windows (32-bit) +
      + Download + (204 MB) +
      +
      Windows (64-bit) +
      + Download + (206 MB) +
      +
      Linux (32-bit) +
      + Download + (225 MB) +
      +
      Linux (64-bit) +
      + Download + (224 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      Notes for Mac OS X users:

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
      • +
      • + NetLogo 6.2.0 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
      • +
      + +

      +
      +

      Notes for Windows users:

      + +
      + + diff --git a/src/pages/downloads/archive/html/6.2.1/index.html b/src/pages/downloads/archive/html/6.2.1/index.html new file mode 100644 index 0000000..249a183 --- /dev/null +++ b/src/pages/downloads/archive/html/6.2.1/index.html @@ -0,0 +1,232 @@ + + + + + + NetLogo 6.2.1 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.2.1 Downloads

      +

      October 14, 2021

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (242 MB) +
      +
      + + Windows (32-bit) +
      + Download + (210 MB) +
      +
      + + Windows (64-bit) +
      + Download + (213 MB) +
      +
      + + Linux (32-bit) +
      + Download + (231 MB) +
      +
      + + Linux (64-bit) +
      + Download + (231 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
      • +
      • + NetLogo 6.2.1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
      • +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/6.2.2/index.html b/src/pages/downloads/archive/html/6.2.2/index.html new file mode 100644 index 0000000..54df60f --- /dev/null +++ b/src/pages/downloads/archive/html/6.2.2/index.html @@ -0,0 +1,232 @@ + + + + + + NetLogo 6.2.2 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.2.2 Downloads

      +

      December 8, 2021

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (243 MB) +
      +
      + + Windows (32-bit) +
      + Download + (215 MB) +
      +
      + + Windows (64-bit) +
      + Download + (217 MB) +
      +
      + + Linux (32-bit) +
      + Download + (232 MB) +
      +
      + + Linux (64-bit) +
      + Download + (232 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
      • +
      • + NetLogo 6.2.2 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
      • +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/6.2/index.html b/src/pages/downloads/archive/html/6.2/index.html new file mode 100644 index 0000000..aeee5b8 --- /dev/null +++ b/src/pages/downloads/archive/html/6.2/index.html @@ -0,0 +1,232 @@ + + + + + + NetLogo 6.2.2 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.2.2 Downloads

      +

      December 8, 2021

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (243 MB) +
      +
      + + Windows (32-bit) +
      + Download + (215 MB) +
      +
      + + Windows (64-bit) +
      + Download + (217 MB) +
      +
      + + Linux (32-bit) +
      + Download + (232 MB) +
      +
      + + Linux (64-bit) +
      + Download + (232 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
      • +
      • + NetLogo 6.2.2 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
      • +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/6.3.0/index.html b/src/pages/downloads/archive/html/6.3.0/index.html new file mode 100644 index 0000000..66da175 --- /dev/null +++ b/src/pages/downloads/archive/html/6.3.0/index.html @@ -0,0 +1,202 @@ + + + + + + NetLogo 6.3.0 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.3.0 Downloads

      +

      September 29, 2022

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Mac OS X +
      + Download + (350 MB) +
      +
      Windows (32-bit) +
      + Download + (302 MB) +
      +
      Windows (64-bit) +
      + Download + (314 MB) +
      +
      Linux (32-bit) +
      + Download + (307 MB) +
      +
      Linux (64-bit) +
      + Download + (326 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      Notes for Mac OS X users:

      + +
        +
      • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
      • +
      • + NetLogo 6.3.0 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
      • +
      + +

      +
      +

      Notes for Windows users:

      + +
      + + diff --git a/src/pages/downloads/archive/html/6.3/index.html b/src/pages/downloads/archive/html/6.3/index.html new file mode 100644 index 0000000..910a68c --- /dev/null +++ b/src/pages/downloads/archive/html/6.3/index.html @@ -0,0 +1,232 @@ + + + + + + NetLogo 6.3.0 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.3.0 Downloads

      +

      September 29, 2022

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (350 MB) +
      +
      + + Windows (32-bit) +
      + Download + (302 MB) +
      +
      + + Windows (64-bit) +
      + Download + (314 MB) +
      +
      + + Linux (32-bit) +
      + Download + (307 MB) +
      +
      + + Linux (64-bit) +
      + Download + (326 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
      • +
      • + NetLogo 6.3.0 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
      • +
      • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + If you are not sure about which version to download and your computer was made after 2005, choose 64-bit. + More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/6.4.0-beta1/index.html b/src/pages/downloads/archive/html/6.4.0-beta1/index.html new file mode 100644 index 0000000..20be541 --- /dev/null +++ b/src/pages/downloads/archive/html/6.4.0-beta1/index.html @@ -0,0 +1,202 @@ + + + + + + NetLogo 6.4.0-beta1 Downloads + + + +

      + +

      + + + + +
      +

      NetLogo 6.4.0-beta1 Downloads

      +

      October 2, 2023

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Mac OS X +
      + Download + (457 MB) +
      +
      Windows (32-bit) +
      + Download + (583 MB) +
      +
      Windows (64-bit) +
      + Download + (591 MB) +
      +
      Linux (32-bit) +
      + Download + (413 MB) +
      +
      Linux (64-bit) +
      + Download + (434 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      Notes for Mac OS X users:

      + +
        +
      • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
      • +
      • + NetLogo 6.4.0-beta1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
      • +
      + +

      +
      +

      Notes for Windows users:

      + +
      + + diff --git a/src/pages/downloads/archive/html/6.4.0/index.html b/src/pages/downloads/archive/html/6.4.0/index.html index bf4a167..7799019 100644 --- a/src/pages/downloads/archive/html/6.4.0/index.html +++ b/src/pages/downloads/archive/html/6.4.0/index.html @@ -15,7 +15,7 @@ -

      +

      @@ -32,9 +32,7 @@

      November 16, 2023

      - + @@ -49,15 +47,13 @@

      November 16, 2023

      - + @@ -66,15 +62,13 @@

      November 16, 2023

      - + @@ -83,13 +77,13 @@

      November 16, 2023

      - + @@ -98,13 +92,13 @@

      November 16, 2023

      - + @@ -114,8 +108,7 @@

      November 16, 2023


      - sign up for NetLogo community mailing lists
      + sign up for NetLogo community mailing lists
      (where many questions can be posted and answered)

      @@ -125,14 +118,8 @@

      Your donations (tax deductible) will help us continue to maintain and improve it.

      - DonateDonate

      @@ -144,11 +131,7 @@


      -

      - Notes for Mac OS X users:
      -

      +

      Notes for Mac OS X users:

      • @@ -160,27 +143,21 @@

        (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates and workaround information, please see our known issues page.

      • NetLogo 6.4.0 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier.


      -

      - Notes for Windows users:
      -

      +

      Notes for Windows users:

      - - Mac OS X
      - - Windows (32-bit)
      - Download + Download (298 MB)
      - - Windows (64-bit)
      - Download + Download (311 MB)
      Linux (32-bit)
      - Download + Download (332 MB)
      Linux (64-bit)
      - Download + Download (353 MB)
      + + + +
      +

      NetLogo 6.4.0 Downloads

      +

      November 16, 2023

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X +
      + Download + (346 MB) +
      +
      + + Windows (32-bit) +
      + Download + (298 MB) +
      +
      + + Windows (64-bit) +
      + Download + (311 MB) +
      +
      + + Linux (32-bit) +
      + Download + (332 MB) +
      +
      + + Linux (64-bit) +
      + Download + (353 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
      • +
      • + NetLogo 6.4.0 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
      • +
      • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + If you are not sure about which version to download and your computer was made after 2005, choose 64-bit. + More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write + bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/7.0.0-beta1/index.html b/src/pages/downloads/archive/html/7.0.0-beta1/index.html new file mode 100644 index 0000000..1c19820 --- /dev/null +++ b/src/pages/downloads/archive/html/7.0.0-beta1/index.html @@ -0,0 +1,251 @@ + + + + + + NetLogo 7.0.0-beta1 Downloads + + + +

      + NetLogo banner +

      + +

      + + + + +
      +

      NetLogo 7.0.0-beta1 Downloads

      +

      May 21, 2025

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X Intel +
      + Download + (488 MB) +
      +
      + + Mac OS X Silicon +
      + Download + (463 MB) +
      +
      + + Windows (32-bit) +
      + Download + (277 MB) +
      +
      + + Windows (64-bit) +
      + Download + (335 MB) +
      +
      + + Linux (32-bit) +
      + Download + (314 MB) +
      +
      + + Linux (64-bit) +
      + Download + (347 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
      • +
      • + NetLogo 7.0.0-beta1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
      • +
      • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + If you are not sure about which version to download and your computer was made after 2005, choose 64-bit. + More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/7.0.0-beta2/index.html b/src/pages/downloads/archive/html/7.0.0-beta2/index.html new file mode 100644 index 0000000..935b55c --- /dev/null +++ b/src/pages/downloads/archive/html/7.0.0-beta2/index.html @@ -0,0 +1,251 @@ + + + + + + NetLogo 7.0.0-beta2 Downloads + + + +

      + NetLogo banner +

      + +

      + + + + +
      +

      NetLogo 7.0.0-beta2 Downloads

      +

      July 18, 2025

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X Intel +
      + Download + (391 MB) +
      +
      + + Mac OS X Silicon +
      + Download + (366 MB) +
      +
      + + Windows (64-bit) +
      + Download + (351 MB) +
      +
      + + Windows (32-bit) +
      + Download + (294 MB) +
      +
      + + Linux (64-bit) +
      + Download + (431 MB) +
      +
      + + Linux (32-bit) +
      + Download + (397 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
      • +
      • + NetLogo 7.0.0-beta2 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
      • +
      • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + If you are not sure about which version to download and your computer was made after 2005, choose 64-bit. + More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/7.0.0/index.html b/src/pages/downloads/archive/html/7.0.0/index.html new file mode 100644 index 0000000..3a18bcc --- /dev/null +++ b/src/pages/downloads/archive/html/7.0.0/index.html @@ -0,0 +1,249 @@ + + + + + + NetLogo 7.0.0 Downloads + + + +

      + NetLogo banner +

      + +

      + + + + +
      +

      NetLogo 7.0.0 Downloads

      +

      September 8, 2025

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X Intel +
      + Download + (415 MB) +
      +
      + + Mac OS X Silicon +
      + Download + (390 MB) +
      +
      + + Windows (64-bit) +
      + Download + (376 MB) +
      +
      + + Windows (32-bit) +
      + Download + (353 MB) +
      +
      + + Linux (64-bit) +
      + Download + (413 MB) +
      +
      + + Linux (32-bit) +
      + Download + (379 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
      • +
      • + NetLogo 7.0.0 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
      • +
      • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + If you are not sure about which version to download and your computer was made after 2005, choose 64-bit. + More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + From 2b7ba75da303ae4efb835aef427b55d7756bfbca Mon Sep 17 00:00:00 2001 From: Omar Ibrahim Date: Tue, 21 Oct 2025 09:45:03 -0500 Subject: [PATCH 08/16] Minor: Add mountain lion page --- src/pages/downloads/archive.astro | 6 +-- .../downloads/archive/mountain-lion.astro | 51 +++++++++++++++++++ 2 files changed, 54 insertions(+), 3 deletions(-) create mode 100644 src/pages/downloads/archive/mountain-lion.astro diff --git a/src/pages/downloads/archive.astro b/src/pages/downloads/archive.astro index 7084958..b985140 100644 --- a/src/pages/downloads/archive.astro +++ b/src/pages/downloads/archive.astro @@ -10,14 +10,14 @@ const title = 'NetLogo Download Archive'; const description = 'Archive of previous NetLogo versions'; --- - +

      {description}. See release notes for details on version differences. Click on any version to go to its download page.
      - (Mac OS X users wanting to use NetLogo versions prior to 5.0.4, please read thisread this)

      +
      +

      NetLogo OS X 10.8 and later Compatibility Info

      + +

      Depending on your system settings, installation of NetLogo may be blocked by Apple's "Gatekeeper" feature.

      + +

      NetLogo versions before 5.0.4

      + +

      + If you try to install older NetLogo versions on OS X 10.8 or later, when you try to open the disk image you'll get + a rather alarming-seeming dialog that says NetLogo is "damaged and can't be opened. You should move it to the + trash." The OS is wrong; the application is fine. In order to open the disk image, you just need to open System + Preferences, go to the Security & Privacy panel, and change the "Allow applications downloaded from:" setting + for Gatekeeper to "Anywhere". + +

      NetLogo versions since 5.0.4

      + +

      + Versions of NetLogo 5.0.4 and later will still be blocked if your Gatekeeper is set to "Mac Store App" only, but + instead of Gatekeeper telling you that the file is damaged, it will tell you that it was not downloaded from the + app store. Setting your Gatekeeper to "Mac App Store and identified developers" will permit installation. + +

      + The first time you open NetLogo, you will see a dialog informing you that "NetLogo is an application + downloaded from the Internet. Are you sure you want to open it?" Clicking "Open" will dismiss the dialog and + prevent it from showing when launching NetLogo in the future. + +

      + Note that NetLogo should be installed and launched for the first time by the same account (one with + administrator privileges). Gatekeeper appears to prevent non-administrator users from opening applications + downloaded from the internet. + +

      About Gatekeeper

      + +

      + For more details, see this Apple support document. + +

      (return to download page)

      +

      +

      +

      +

      +

      +
      +
      From e13a6526aa1e0cace9dbdb3c6cab82afe503966c Mon Sep 17 00:00:00 2001 From: Omar Ibrahim Date: Tue, 21 Oct 2025 09:45:11 -0500 Subject: [PATCH 09/16] Minor: add assets --- .../static_assets/downloads/archive/os-java.png | Bin 0 -> 18611 bytes public/static_assets/downloads/archive/os-x.gif | Bin 0 -> 984 bytes 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 public/static_assets/downloads/archive/os-java.png create mode 100644 public/static_assets/downloads/archive/os-x.gif diff --git a/public/static_assets/downloads/archive/os-java.png b/public/static_assets/downloads/archive/os-java.png new file mode 100644 index 0000000000000000000000000000000000000000..850c028bd5c73c602a13f7422caea17aa9686537 GIT binary patch literal 18611 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 literal 0 HcmV?d00001 diff --git a/public/static_assets/downloads/archive/os-x.gif b/public/static_assets/downloads/archive/os-x.gif new file mode 100644 index 0000000000000000000000000000000000000000..820c7d8d9fa233b4ce9f90ee8e5fc2baf801f1c8 GIT binary patch literal 984 zcmeIx+e=e%00;0>h8PrTjV@y4C6q|S6mJP(=Db0a=0l0pj6$(UvjU$?hnYr@qNRbz z1eX)D<~DRWO`S{Klr(44shhj+=r-rh&USWo&d#s)NA%W*@ALQJ3*X%QoV4_^Fen7V z00jIf0DJ&=0Yw4I2PhJd7$Dt%znT*=g1}+@u3G?7K;eaR+vhuwG+!QzqDG(rb+lufd=*Y^!vLPpi>utb|6n ztx_tscD$Rv*Ee87X?Cr{#2QQ}cJT z_t_1RbW^y5j?St^On@s|?U&S@XAI$&`Mz|vJ9W^L+KZ$NlPO#xnMWiFs00oX&vM2N z63~DDa)CI1x&I4L&;)cKh{j8U=IH>^7x`NG>BQp=d3#V5rT zho`sF+p`M;#hLnR0n*OknytvyELO+)(7U_gR}D8#Luq5J%lRGjlUel7*0jvx*rqc{ z?Tm^7H2XL`k8^B@5mR_JwB#N#b>Hx=iyKX^mR^cJ!V0UnkT~6<%{`Y)(;XB>7Du#P zY;2MkLjr?tLBWsb8v>%@UPV8-a#N5%52g(jsU_N(nC7VyRqjJ!56a7a)I%A600y$0 Ai~s-t literal 0 HcmV?d00001 From b0dbef483f6e94ba5a4e143f17be413f8f711f4c Mon Sep 17 00:00:00 2001 From: Omar Ibrahim Date: Tue, 21 Oct 2025 09:45:20 -0500 Subject: [PATCH 10/16] Minor: update link to archive in download form --- src/components/download/download-form.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/download/download-form.tsx b/src/components/download/download-form.tsx index 6d794b9..783e119 100644 --- a/src/components/download/download-form.tsx +++ b/src/components/download/download-form.tsx @@ -340,7 +340,7 @@ const DownloadForm = ({ versions, devOs }: DownloadFormProps) => {
      - Version {formData.version} previous versions here + Version {formData.version} previous versions here
      @@ -370,4 +370,3 @@ const DownloadForm = ({ versions, devOs }: DownloadFormProps) => { }; export { DownloadForm }; - From 4de3e1cfdb9b7d5559b6bd497e7497a1926c404d Mon Sep 17 00:00:00 2001 From: Omar Ibrahim Date: Tue, 21 Oct 2025 09:45:47 -0500 Subject: [PATCH 11/16] Minor: hide version 2.0.0 since it is not available as a webpage --- src/pages/downloads/archive/_versions.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/downloads/archive/_versions.json b/src/pages/downloads/archive/_versions.json index dd885d3..685b72f 100644 --- a/src/pages/downloads/archive/_versions.json +++ b/src/pages/downloads/archive/_versions.json @@ -514,7 +514,7 @@ { "version": "2.0", "releaseDate": "December 2003", - "href": "/downloads/archive/2.0.0/", + "href": "/downloads/archive/2.0.2/", "blurb": "Fast, flicker-free, non-grid-based graphics system." }, { From f811cb3f243e3de134aa43ff49e39f0614ec227d Mon Sep 17 00:00:00 2001 From: Omar Ibrahim Date: Tue, 21 Oct 2025 09:46:04 -0500 Subject: [PATCH 12/16] Major: update all download links to S3 instead of CCL --- .../downloads/archive/html/1.0/index.html | 50 +++++++++---------- .../downloads/archive/html/1.0d/index.html | 50 +++++++++---------- .../downloads/archive/html/1.1/index.html | 50 +++++++++---------- .../downloads/archive/html/1.1f/index.html | 50 +++++++++---------- .../downloads/archive/html/1.2.1/index.html | 34 ++++++------- .../downloads/archive/html/1.2/index.html | 34 ++++++------- .../downloads/archive/html/1.3.1/index.html | 34 ++++++------- .../downloads/archive/html/1.3/index.html | 34 ++++++------- .../downloads/archive/html/2.0.1/index.html | 37 +++++++------- .../downloads/archive/html/2.0.2/index.html | 37 +++++++------- .../downloads/archive/html/2.0/index.html | 35 ++++++------- .../downloads/archive/html/2.1.0/index.html | 35 ++++++------- .../downloads/archive/html/2.1/index.html | 35 ++++++------- .../downloads/archive/html/3.0.0/index.html | 6 +-- .../downloads/archive/html/3.0.1/index.html | 6 +-- .../downloads/archive/html/3.0.2/index.html | 6 +-- .../downloads/archive/html/3.0/index.html | 6 +-- .../downloads/archive/html/3.1.0/index.html | 6 +-- .../downloads/archive/html/3.1.1/index.html | 6 +-- .../downloads/archive/html/3.1.2/index.html | 6 +-- .../downloads/archive/html/3.1.3/index.html | 6 +-- .../downloads/archive/html/3.1.4/index.html | 6 +-- .../downloads/archive/html/3.1.5/index.html | 6 +-- .../downloads/archive/html/3.1/index.html | 6 +-- .../downloads/archive/html/4.0.0/index.html | 4 +- .../downloads/archive/html/4.0.0/windows.html | 2 +- .../downloads/archive/html/4.0.1/index.html | 4 +- .../downloads/archive/html/4.0.1/windows.html | 2 +- .../downloads/archive/html/4.0.2/index.html | 4 +- .../downloads/archive/html/4.0.2/windows.html | 2 +- .../downloads/archive/html/4.0.3/index.html | 4 +- .../downloads/archive/html/4.0.3/windows.html | 2 +- .../downloads/archive/html/4.0.4/index.html | 4 +- .../downloads/archive/html/4.0.4/windows.html | 2 +- .../downloads/archive/html/4.0.5/index.html | 4 +- .../downloads/archive/html/4.0.5/windows.html | 2 +- .../downloads/archive/html/4.0/index.html | 4 +- .../downloads/archive/html/4.0/windows.html | 2 +- .../downloads/archive/html/4.1.0/index.html | 4 +- .../downloads/archive/html/4.1.0/windows.html | 2 +- .../downloads/archive/html/4.1.1/index.html | 4 +- .../downloads/archive/html/4.1.1/windows.html | 2 +- .../downloads/archive/html/4.1.2/index.html | 4 +- .../downloads/archive/html/4.1.2/windows.html | 2 +- .../downloads/archive/html/4.1.3/index.html | 4 +- .../downloads/archive/html/4.1.3/windows.html | 2 +- .../downloads/archive/html/4.1/index.html | 4 +- .../downloads/archive/html/4.1/windows.html | 2 +- .../downloads/archive/html/5.0.0/index.html | 4 +- .../downloads/archive/html/5.0.0/windows.html | 2 +- .../downloads/archive/html/5.0.1/index.html | 4 +- .../downloads/archive/html/5.0.1/windows.html | 2 +- .../downloads/archive/html/5.0.2/index.html | 4 +- .../downloads/archive/html/5.0.2/windows.html | 2 +- .../downloads/archive/html/5.0.3/index.html | 4 +- .../downloads/archive/html/5.0.3/windows.html | 2 +- .../downloads/archive/html/5.0.4/index.html | 4 +- .../downloads/archive/html/5.0.4/windows.html | 2 +- .../downloads/archive/html/5.0.5/index.html | 4 +- .../downloads/archive/html/5.0.5/windows.html | 2 +- .../downloads/archive/html/5.0/index.html | 4 +- .../downloads/archive/html/5.0/windows.html | 2 +- .../archive/html/5.1.0-M1/index.html | 6 ++- .../archive/html/5.1.0-M1/windows.html | 2 +- .../archive/html/5.1.0-M2/index.html | 6 ++- .../archive/html/5.1.0-M2/windows.html | 2 +- .../downloads/archive/html/5.1.0/index.html | 4 +- .../downloads/archive/html/5.1.0/windows.html | 2 +- .../downloads/archive/html/5.1/index.html | 4 +- .../downloads/archive/html/5.1/windows.html | 2 +- .../downloads/archive/html/5.2-RC2/index.html | 6 ++- .../archive/html/5.2-RC2/windows.html | 2 +- .../downloads/archive/html/5.2-RC3/index.html | 6 ++- .../archive/html/5.2-RC3/windows.html | 2 +- .../archive/html/5.2.0-RC4/index.html | 8 ++- .../archive/html/5.2.0-RC4/windows.html | 2 +- .../archive/html/5.2.0-RC5/index.html | 8 ++- .../archive/html/5.2.0-RC5/windows.html | 2 +- .../downloads/archive/html/5.2.0/index.html | 4 +- .../downloads/archive/html/5.2.0/windows.html | 2 +- .../downloads/archive/html/5.2.1/index.html | 4 +- .../downloads/archive/html/5.2.1/windows.html | 2 +- .../downloads/archive/html/5.2/index.html | 4 +- .../downloads/archive/html/5.2/windows.html | 2 +- .../downloads/archive/html/5.3-RC1/index.html | 10 ++-- .../downloads/archive/html/5.3.0/index.html | 10 ++-- .../archive/html/5.3.1-RC1/index.html | 10 ++-- .../archive/html/5.3.1-RC2/index.html | 10 ++-- .../archive/html/5.3.1-RC3/index.html | 10 ++-- .../downloads/archive/html/5.3.1/index.html | 10 ++-- .../downloads/archive/html/5.3/index.html | 10 ++-- .../archive/html/6.0-BETA1/index.html | 10 ++-- .../archive/html/6.0-BETA2/index.html | 10 ++-- .../index.html | 10 ++-- .../downloads/archive/html/6.0-M1/index.html | 10 ++-- .../downloads/archive/html/6.0-M2/index.html | 10 ++-- .../downloads/archive/html/6.0-M3/index.html | 10 ++-- .../downloads/archive/html/6.0-M4/index.html | 10 ++-- .../downloads/archive/html/6.0-M5/index.html | 10 ++-- .../downloads/archive/html/6.0-M6/index.html | 10 ++-- .../downloads/archive/html/6.0-M7/index.html | 10 ++-- .../downloads/archive/html/6.0-M8/index.html | 10 ++-- .../downloads/archive/html/6.0-M9/index.html | 10 ++-- .../downloads/archive/html/6.0.0/index.html | 10 ++-- .../archive/html/6.0.1-M1/index.html | 10 ++-- .../archive/html/6.0.1-RC1/index.html | 10 ++-- .../downloads/archive/html/6.0.1/index.html | 10 ++-- .../archive/html/6.0.2-RC1/index.html | 8 +-- .../downloads/archive/html/6.0.2/index.html | 10 ++-- .../downloads/archive/html/6.0.3/index.html | 10 ++-- .../downloads/archive/html/6.0.4/index.html | 10 ++-- .../downloads/archive/html/6.0/index.html | 10 ++-- .../downloads/archive/html/6.0beta/index.html | 10 ++-- .../downloads/archive/html/6.1.0/index.html | 8 +-- .../downloads/archive/html/6.1.1/index.html | 10 ++-- .../downloads/archive/html/6.1/index.html | 10 ++-- .../downloads/archive/html/6.2.0/index.html | 10 ++-- .../downloads/archive/html/6.2.1/index.html | 10 ++-- .../downloads/archive/html/6.2.2/index.html | 10 ++-- .../downloads/archive/html/6.2/index.html | 10 ++-- .../downloads/archive/html/6.3.0/index.html | 10 ++-- .../downloads/archive/html/6.3/index.html | 10 ++-- .../archive/html/6.4.0-beta1/index.html | 10 ++-- .../downloads/archive/html/6.4.0/index.html | 10 ++-- .../downloads/archive/html/6.4/index.html | 10 ++-- .../archive/html/7.0.0-beta1/index.html | 12 ++--- .../archive/html/7.0.0-beta2/index.html | 12 ++--- .../downloads/archive/html/7.0.0/index.html | 12 ++--- 128 files changed, 612 insertions(+), 607 deletions(-) diff --git a/src/pages/downloads/archive/html/1.0/index.html b/src/pages/downloads/archive/html/1.0/index.html index 63ac621..5d29324 100644 --- a/src/pages/downloads/archive/html/1.0/index.html +++ b/src/pages/downloads/archive/html/1.0/index.html @@ -282,7 +282,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("
      ") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.0/InstData/Windows/VM/NetLogo1.0Installer.exe\">") // document.writeln("") @@ -298,7 +298,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.0/InstData/MacOS/VM/NetLogo1.0Installer.bin\">") // document.writeln("
      ") @@ -313,7 +313,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.0/InstData/MacOSX/NetLogo1.0Installer.sit\">") // document.writeln("
      ") @@ -332,7 +332,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.0/InstData/Unix/Linux/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -349,7 +349,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.0/InstData/Unix/Others/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -363,7 +363,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.0/InstData/Java/NetLogo1_0Installer.jar\">") // document.writeln("
      ") @@ -385,11 +385,11 @@ { if (plat!="mac") { - document.writeln("") + document.writeln("") } if (plat=="mac") { - document.writeln("") + document.writeln("") } } } @@ -509,7 +509,7 @@

      NetLogo 1.0 Downloads

      - +
      @@ -531,7 +531,7 @@

      NetLogo 1.0 Downloads

      - + Download (14.5M)
      @@ -541,7 +541,7 @@

      NetLogo 1.0 Downloads

      - + Download (9.1M)
      @@ -569,7 +569,7 @@

      NetLogo 1.0 Downloads

      - +
      @@ -592,7 +592,7 @@

      NetLogo 1.0 Downloads

      - + Download (13.5M)
      @@ -602,7 +602,7 @@

      NetLogo 1.0 Downloads

      - Download + Download (9.2M)
      @@ -627,7 +627,7 @@

      NetLogo 1.0 Downloads

      - +
      @@ -653,7 +653,7 @@

      NetLogo 1.0 Downloads

      - Download + Download (8.8M)
      @@ -678,7 +678,7 @@

      NetLogo 1.0 Downloads

      - +
      @@ -700,7 +700,7 @@

      NetLogo 1.0 Downloads

      - Download + Download (41.7M)
      @@ -709,7 +709,7 @@

      NetLogo 1.0 Downloads

      - Download + Download (9.3M)
      @@ -760,7 +760,7 @@

      NetLogo 1.0 Downloads

      - Download + Download (9.3M)
      @@ -812,7 +812,7 @@

      NetLogo 1.0 Downloads

      - Download + Download (9.3M)
      @@ -864,7 +864,7 @@

      NetLogo 1.0 Downloads

      - Download + Download (9.3M)
      @@ -913,7 +913,7 @@

      NetLogo 1.0 Downloads

      - Download + Download (9.3M)
      @@ -938,7 +938,7 @@

      NetLogo 1.0 Downloads

      - +
      @@ -963,7 +963,7 @@

      NetLogo 1.0 Downloads

      - Download + Download (8.1M)
      diff --git a/src/pages/downloads/archive/html/1.0d/index.html b/src/pages/downloads/archive/html/1.0d/index.html index a8a0e0d..5ed776b 100644 --- a/src/pages/downloads/archive/html/1.0d/index.html +++ b/src/pages/downloads/archive/html/1.0d/index.html @@ -282,7 +282,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.0d/InstData/Windows/VM/NetLogo1.0Installer.exe\">") // document.writeln("") @@ -298,7 +298,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.0d/InstData/MacOS/VM/NetLogo1.0Installer.bin\">") // document.writeln("
      ") @@ -313,7 +313,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.0d/InstData/MacOSX/NetLogo1.0Installer.sit\">") // document.writeln("
      ") @@ -332,7 +332,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.0d/InstData/Unix/Linux/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -349,7 +349,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.0d/InstData/Unix/Others/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -363,7 +363,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.0d/InstData/Java/NetLogo1_0Installer.jar\">") // document.writeln("
      ") @@ -385,11 +385,11 @@ { if (plat!="mac") { - document.writeln("") + document.writeln("") } if (plat=="mac") { - document.writeln("") + document.writeln("") } } } @@ -509,7 +509,7 @@

      NetLogo 1.0 Revision D Downloads

      - +
      @@ -531,7 +531,7 @@

      NetLogo 1.0 Revision D Downloads

      - + Download (14.5M)
      @@ -541,7 +541,7 @@

      NetLogo 1.0 Revision D Downloads

      - + Download (9.1M)
      @@ -569,7 +569,7 @@

      NetLogo 1.0 Revision D Downloads

      - +
      @@ -592,7 +592,7 @@

      NetLogo 1.0 Revision D Downloads

      - + Download (13.5M)
      @@ -602,7 +602,7 @@

      NetLogo 1.0 Revision D Downloads

      - Download + Download (9.2M)
      @@ -627,7 +627,7 @@

      NetLogo 1.0 Revision D Downloads

      - +
      @@ -653,7 +653,7 @@

      NetLogo 1.0 Revision D Downloads

      - Download + Download (8.8M)
      @@ -678,7 +678,7 @@

      NetLogo 1.0 Revision D Downloads

      - +
      @@ -700,7 +700,7 @@

      NetLogo 1.0 Revision D Downloads

      - Download + Download (41.7M)
      @@ -709,7 +709,7 @@

      NetLogo 1.0 Revision D Downloads

      - Download + Download (9.3M)
      @@ -760,7 +760,7 @@

      NetLogo 1.0 Revision D Downloads

      - Download + Download (9.3M)
      @@ -812,7 +812,7 @@

      NetLogo 1.0 Revision D Downloads

      - Download + Download (9.3M)
      @@ -864,7 +864,7 @@

      NetLogo 1.0 Revision D Downloads

      - Download + Download (9.3M)
      @@ -913,7 +913,7 @@

      NetLogo 1.0 Revision D Downloads

      - Download + Download (9.3M)
      @@ -938,7 +938,7 @@

      NetLogo 1.0 Revision D Downloads

      - +
      @@ -963,7 +963,7 @@

      NetLogo 1.0 Revision D Downloads

      - Download + Download (8.1M)
      diff --git a/src/pages/downloads/archive/html/1.1/index.html b/src/pages/downloads/archive/html/1.1/index.html index 97549c1..1406012 100644 --- a/src/pages/downloads/archive/html/1.1/index.html +++ b/src/pages/downloads/archive/html/1.1/index.html @@ -282,7 +282,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.1/InstData/Windows/VM/NetLogo1.0Installer.exe\">") // document.writeln("") @@ -298,7 +298,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.1/InstData/MacOS/VM/NetLogo1.0Installer.bin\">") // document.writeln("
      ") @@ -313,7 +313,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.1/InstData/MacOSX/NetLogo1.0Installer.sit\">") // document.writeln("
      ") @@ -332,7 +332,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.1/InstData/Unix/Linux/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -349,7 +349,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.1/InstData/Unix/Others/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -363,7 +363,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.1/InstData/Java/NetLogo1_0Installer.jar\">") // document.writeln("
      ") @@ -385,11 +385,11 @@ { if (plat!="mac") { - document.writeln("") + document.writeln("") } if (plat=="mac") { - document.writeln("") + document.writeln("") } } } @@ -502,7 +502,7 @@

      NetLogo 1.1 Rev F Downloads

      - +
      @@ -524,7 +524,7 @@

      NetLogo 1.1 Rev F Downloads

      - + Download (13.2M)
      @@ -534,7 +534,7 @@

      NetLogo 1.1 Rev F Downloads

      - + Download (8.4M)
      @@ -562,7 +562,7 @@

      NetLogo 1.1 Rev F Downloads

      - +
      @@ -585,7 +585,7 @@

      NetLogo 1.1 Rev F Downloads

      - + Download (12.2M)
      @@ -595,7 +595,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.4M)
      @@ -620,7 +620,7 @@

      NetLogo 1.1 Rev F Downloads

      - +
      @@ -646,7 +646,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.3M)
      @@ -671,7 +671,7 @@

      NetLogo 1.1 Rev F Downloads

      - +
      @@ -693,7 +693,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (40.9M)
      @@ -702,7 +702,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.2M)
      @@ -753,7 +753,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.2M)
      @@ -805,7 +805,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.2M)
      @@ -857,7 +857,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.2M)
      @@ -906,7 +906,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.2M)
      @@ -931,7 +931,7 @@

      NetLogo 1.1 Rev F Downloads

      - +
      @@ -956,7 +956,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.1M)
      diff --git a/src/pages/downloads/archive/html/1.1f/index.html b/src/pages/downloads/archive/html/1.1f/index.html index 1e7c345..b33ce91 100644 --- a/src/pages/downloads/archive/html/1.1f/index.html +++ b/src/pages/downloads/archive/html/1.1f/index.html @@ -282,7 +282,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.1f/InstData/Windows/VM/NetLogo1.0Installer.exe\">") // document.writeln("") @@ -298,7 +298,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.1f/InstData/MacOS/VM/NetLogo1.0Installer.bin\">") // document.writeln("
      ") @@ -313,7 +313,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.1f/InstData/MacOSX/NetLogo1.0Installer.sit\">") // document.writeln("
      ") @@ -332,7 +332,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.1f/InstData/Unix/Linux/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -349,7 +349,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.1f/InstData/Unix/Others/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -363,7 +363,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.1f/InstData/Java/NetLogo1_0Installer.jar\">") // document.writeln("
      ") @@ -385,11 +385,11 @@ { if (plat!="mac") { - document.writeln("") + document.writeln("") } if (plat=="mac") { - document.writeln("") + document.writeln("") } } } @@ -502,7 +502,7 @@

      NetLogo 1.1 Rev F Downloads

      - +
      @@ -524,7 +524,7 @@

      NetLogo 1.1 Rev F Downloads

      - + Download (13.2M)
      @@ -534,7 +534,7 @@

      NetLogo 1.1 Rev F Downloads

      - + Download (8.4M)
      @@ -562,7 +562,7 @@

      NetLogo 1.1 Rev F Downloads

      - +
      @@ -585,7 +585,7 @@

      NetLogo 1.1 Rev F Downloads

      - + Download (12.2M)
      @@ -595,7 +595,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.4M)
      @@ -620,7 +620,7 @@

      NetLogo 1.1 Rev F Downloads

      - +
      @@ -646,7 +646,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.3M)
      @@ -671,7 +671,7 @@

      NetLogo 1.1 Rev F Downloads

      - +
      @@ -693,7 +693,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (40.9M)
      @@ -702,7 +702,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.2M)
      @@ -753,7 +753,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.2M)
      @@ -805,7 +805,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.2M)
      @@ -857,7 +857,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.2M)
      @@ -906,7 +906,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.2M)
      @@ -931,7 +931,7 @@

      NetLogo 1.1 Rev F Downloads

      - +
      @@ -956,7 +956,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.1M)
      diff --git a/src/pages/downloads/archive/html/1.2.1/index.html b/src/pages/downloads/archive/html/1.2.1/index.html index 13d1f73..1f647d5 100644 --- a/src/pages/downloads/archive/html/1.2.1/index.html +++ b/src/pages/downloads/archive/html/1.2.1/index.html @@ -282,7 +282,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.2.1/InstData/Windows/VM/NetLogo1.0Installer.exe\">") // document.writeln("") @@ -298,7 +298,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.2.1/InstData/MacOS/VM/NetLogo1.0Installer.bin\">") // document.writeln("
      ") @@ -313,7 +313,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.2.1/InstData/MacOSX/NetLogo1.0Installer.sit\">") // document.writeln("
      ") @@ -332,7 +332,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.2.1/InstData/Unix/Linux/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -349,7 +349,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.2.1/InstData/Unix/Others/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -363,7 +363,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.2.1/InstData/Java/NetLogo1_0Installer.jar\">") // document.writeln("
      ") @@ -385,11 +385,11 @@ { if (plat!="mac") { - document.writeln("") + document.writeln("") } if (plat=="mac") { - document.writeln("") + document.writeln("") } } } @@ -509,7 +509,7 @@

      NetLogo 1.2.1 Downloads

      - +
      @@ -531,14 +531,14 @@

      NetLogo 1.2.1 Downloads

      - Download (14.9 MB)
      + Download (14.9 MB)
      - Download (10.0 MB)
      + Download (10.0 MB) @@ -563,7 +563,7 @@

      NetLogo 1.2.1 Downloads

      - +
      @@ -589,7 +589,7 @@

      NetLogo 1.2.1 Downloads

      - Download (9.4 MB)
      + Download (9.4 MB) @@ -612,7 +612,7 @@

      NetLogo 1.2.1 Downloads

      - +
      @@ -635,14 +635,14 @@

      NetLogo 1.2.1 Downloads

      - Download (13.9 MB)
      + Download (13.9 MB)
      - Download (10.1 MB)
      + Download (10.1 MB) @@ -665,7 +665,7 @@

      NetLogo 1.2.1 Downloads

      - +
      diff --git a/src/pages/downloads/archive/html/1.2/index.html b/src/pages/downloads/archive/html/1.2/index.html index 055a382..67cf84e 100644 --- a/src/pages/downloads/archive/html/1.2/index.html +++ b/src/pages/downloads/archive/html/1.2/index.html @@ -282,7 +282,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.2/InstData/Windows/VM/NetLogo1.0Installer.exe\">") // document.writeln("") @@ -298,7 +298,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.2/InstData/MacOS/VM/NetLogo1.0Installer.bin\">") // document.writeln("
      ") @@ -313,7 +313,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.2/InstData/MacOSX/NetLogo1.0Installer.sit\">") // document.writeln("
      ") @@ -332,7 +332,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.2/InstData/Unix/Linux/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -349,7 +349,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.2/InstData/Unix/Others/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -363,7 +363,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.2/InstData/Java/NetLogo1_0Installer.jar\">") // document.writeln("
      ") @@ -385,11 +385,11 @@ { if (plat!="mac") { - document.writeln("") + document.writeln("") } if (plat=="mac") { - document.writeln("") + document.writeln("") } } } @@ -509,7 +509,7 @@

      NetLogo 1.2.1 Downloads

      - +
      @@ -531,14 +531,14 @@

      NetLogo 1.2.1 Downloads

      - Download (14.9 MB)
      + Download (14.9 MB)
      - Download (10.0 MB)
      + Download (10.0 MB) @@ -563,7 +563,7 @@

      NetLogo 1.2.1 Downloads

      - +
      @@ -589,7 +589,7 @@

      NetLogo 1.2.1 Downloads

      - Download (9.4 MB)
      + Download (9.4 MB) @@ -612,7 +612,7 @@

      NetLogo 1.2.1 Downloads

      - +
      @@ -635,14 +635,14 @@

      NetLogo 1.2.1 Downloads

      - Download (13.9 MB)
      + Download (13.9 MB)
      - Download (10.1 MB)
      + Download (10.1 MB) @@ -665,7 +665,7 @@

      NetLogo 1.2.1 Downloads

      - +
      diff --git a/src/pages/downloads/archive/html/1.3.1/index.html b/src/pages/downloads/archive/html/1.3.1/index.html index 9f06553..8b95a54 100644 --- a/src/pages/downloads/archive/html/1.3.1/index.html +++ b/src/pages/downloads/archive/html/1.3.1/index.html @@ -282,7 +282,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.3.1/InstData/Windows/VM/NetLogo1.0Installer.exe\">") // document.writeln("") @@ -298,7 +298,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.3.1/InstData/MacOS/VM/NetLogo1.0Installer.bin\">") // document.writeln("
      ") @@ -313,7 +313,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.3.1/InstData/MacOSX/NetLogo1.0Installer.sit\">") // document.writeln("
      ") @@ -332,7 +332,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.3.1/InstData/Unix/Linux/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -349,7 +349,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.3.1/InstData/Unix/Others/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -363,7 +363,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.3.1/InstData/Java/NetLogo1_0Installer.jar\">") // document.writeln("
      ") @@ -385,11 +385,11 @@ { if (plat!="mac") { - document.writeln("") + document.writeln("") } if (plat=="mac") { - document.writeln("") + document.writeln("") } } } @@ -509,7 +509,7 @@

      NetLogo 1.3.1 Downloads

      - +
      @@ -531,14 +531,14 @@

      NetLogo 1.3.1 Downloads

      - Download (15.3 MB)
      + Download (15.3 MB)
      - Download (10.4 MB)
      + Download (10.4 MB) @@ -563,7 +563,7 @@

      NetLogo 1.3.1 Downloads

      - +
      @@ -589,7 +589,7 @@

      NetLogo 1.3.1 Downloads

      - Download (9.7 MB)
      + Download (9.7 MB) @@ -612,7 +612,7 @@

      NetLogo 1.3.1 Downloads

      - +
      @@ -635,14 +635,14 @@

      NetLogo 1.3.1 Downloads

      - Download (14.3 MB)
      + Download (14.3 MB)
      - Download (10.5 MB)
      + Download (10.5 MB) @@ -665,7 +665,7 @@

      NetLogo 1.3.1 Downloads

      - +
      diff --git a/src/pages/downloads/archive/html/1.3/index.html b/src/pages/downloads/archive/html/1.3/index.html index 82dcde7..a617cda 100644 --- a/src/pages/downloads/archive/html/1.3/index.html +++ b/src/pages/downloads/archive/html/1.3/index.html @@ -282,7 +282,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.3/InstData/Windows/VM/NetLogo1.0Installer.exe\">") // document.writeln("") @@ -298,7 +298,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.3/InstData/MacOS/VM/NetLogo1.0Installer.bin\">") // document.writeln("
      ") @@ -313,7 +313,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.3/InstData/MacOSX/NetLogo1.0Installer.sit\">") // document.writeln("
      ") @@ -332,7 +332,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.3/InstData/Unix/Linux/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -349,7 +349,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.3/InstData/Unix/Others/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -363,7 +363,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/1.3/InstData/Java/NetLogo1_0Installer.jar\">") // document.writeln("
      ") @@ -385,11 +385,11 @@ { if (plat!="mac") { - document.writeln("") + document.writeln("") } if (plat=="mac") { - document.writeln("") + document.writeln("") } } } @@ -509,7 +509,7 @@

      NetLogo 1.3 Downloads

      - +
      @@ -531,14 +531,14 @@

      NetLogo 1.3 Downloads

      - Download (15.3 MB)
      + Download (15.3 MB)
      - Download (10.4 MB)
      + Download (10.4 MB) @@ -563,7 +563,7 @@

      NetLogo 1.3 Downloads

      - +
      @@ -589,7 +589,7 @@

      NetLogo 1.3 Downloads

      - Download (9.7 MB)
      + Download (9.7 MB) @@ -612,7 +612,7 @@

      NetLogo 1.3 Downloads

      - +
      @@ -635,14 +635,14 @@

      NetLogo 1.3 Downloads

      - Download (14.3 MB)
      + Download (14.3 MB)
      - Download (10.5 MB)
      + Download (10.5 MB) @@ -665,7 +665,7 @@

      NetLogo 1.3 Downloads

      - +
      diff --git a/src/pages/downloads/archive/html/2.0.1/index.html b/src/pages/downloads/archive/html/2.0.1/index.html index 4bc3951..0e20c97 100644 --- a/src/pages/downloads/archive/html/2.0.1/index.html +++ b/src/pages/downloads/archive/html/2.0.1/index.html @@ -288,7 +288,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/2.0.1/InstData/Windows/VM/NetLogo1.0Installer.exe\">") // document.writeln("") @@ -304,7 +304,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/2.0.1/InstData/MacOS/VM/NetLogo1.0Installer.bin\">") // document.writeln("
      ") @@ -319,7 +319,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/2.0.1/InstData/MacOSX/NetLogo1.0Installer.sit\">") // document.writeln("
      ") @@ -338,7 +338,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/2.0.1/InstData/Unix/Linux/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -355,7 +355,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/2.0.1/InstData/Unix/Others/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -369,7 +369,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/2.0.1/InstData/Java/NetLogo1_0Installer.jar\">") // document.writeln("
      ") @@ -391,11 +391,11 @@ { if (plat!="mac") { - document.writeln("") + document.writeln("") } if (plat=="mac") { - document.writeln("") + document.writeln("") } } } @@ -514,7 +514,7 @@

      NetLogo 2.0.1 Downloads

      - +
      @@ -535,7 +535,8 @@

      NetLogo 2.0.1 Downloads

      - Download (21.6 MB)
      @@ -543,7 +544,8 @@

      NetLogo 2.0.1 Downloads

      - Download (9.3 MB)
      @@ -568,12 +570,7 @@

      NetLogo 2.0.1 Downloads

      - +
      @@ -597,7 +594,9 @@

      NetLogo 2.0.1 Downloads

      - Download (8.8 MB) + Download (8.8 MB)
      @@ -620,7 +619,7 @@

      NetLogo 2.0.1 Downloads

      - +
      diff --git a/src/pages/downloads/archive/html/2.0.2/index.html b/src/pages/downloads/archive/html/2.0.2/index.html index f7496e7..ca26020 100644 --- a/src/pages/downloads/archive/html/2.0.2/index.html +++ b/src/pages/downloads/archive/html/2.0.2/index.html @@ -288,7 +288,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/2.0.2/InstData/Windows/VM/NetLogo1.0Installer.exe\">") // document.writeln("") @@ -304,7 +304,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/2.0.2/InstData/MacOS/VM/NetLogo1.0Installer.bin\">") // document.writeln("
      ") @@ -319,7 +319,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/2.0.2/InstData/MacOSX/NetLogo1.0Installer.sit\">") // document.writeln("
      ") @@ -338,7 +338,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/2.0.2/InstData/Unix/Linux/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -355,7 +355,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/2.0.2/InstData/Unix/Others/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -369,7 +369,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/2.0.2/InstData/Java/NetLogo1_0Installer.jar\">") // document.writeln("
      ") @@ -391,11 +391,11 @@ { if (plat!="mac") { - document.writeln("") + document.writeln("") } if (plat=="mac") { - document.writeln("") + document.writeln("") } } } @@ -514,7 +514,7 @@

      NetLogo 2.0.2 Downloads

      - +
      @@ -535,7 +535,8 @@

      NetLogo 2.0.2 Downloads

      - Download (22.1 MB)
      @@ -543,7 +544,8 @@

      NetLogo 2.0.2 Downloads

      - Download (9.6 MB)
      @@ -568,12 +570,7 @@

      NetLogo 2.0.2 Downloads

      - +
      @@ -597,7 +594,9 @@

      NetLogo 2.0.2 Downloads

      - Download (9.1 MB) + Download (9.1 MB)
      @@ -620,7 +619,7 @@

      NetLogo 2.0.2 Downloads

      - +
      diff --git a/src/pages/downloads/archive/html/2.0/index.html b/src/pages/downloads/archive/html/2.0/index.html index 888088b..74a919a 100644 --- a/src/pages/downloads/archive/html/2.0/index.html +++ b/src/pages/downloads/archive/html/2.0/index.html @@ -288,7 +288,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/2.0/InstData/Windows/VM/NetLogo1.0Installer.exe\">") // document.writeln("") @@ -304,7 +304,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/2.0/InstData/MacOS/VM/NetLogo1.0Installer.bin\">") // document.writeln("
      ") @@ -319,7 +319,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/2.0/InstData/MacOSX/NetLogo1.0Installer.sit\">") // document.writeln("
      ") @@ -338,7 +338,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/2.0/InstData/Unix/Linux/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -355,7 +355,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/2.0/InstData/Unix/Others/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -369,7 +369,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/2.0/InstData/Java/NetLogo1_0Installer.jar\">") // document.writeln("
      ") @@ -391,11 +391,11 @@ { if (plat!="mac") { - document.writeln("") + document.writeln("") } if (plat=="mac") { - document.writeln("") + document.writeln("") } } } @@ -514,7 +514,7 @@

      NetLogo 2.0.2 Downloads

      - +
      @@ -535,7 +535,8 @@

      NetLogo 2.0.2 Downloads

      - Download (22.1 MB)
      @@ -543,7 +544,8 @@

      NetLogo 2.0.2 Downloads

      - Download (9.6 MB)
      @@ -568,12 +570,7 @@

      NetLogo 2.0.2 Downloads

      - +
      @@ -597,7 +594,7 @@

      NetLogo 2.0.2 Downloads

      - Download (9.1 MB) + Download (9.1 MB)
      @@ -620,7 +617,7 @@

      NetLogo 2.0.2 Downloads

      - +
      diff --git a/src/pages/downloads/archive/html/2.1.0/index.html b/src/pages/downloads/archive/html/2.1.0/index.html index 428b4e7..6a3d975 100644 --- a/src/pages/downloads/archive/html/2.1.0/index.html +++ b/src/pages/downloads/archive/html/2.1.0/index.html @@ -288,7 +288,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/2.1.0/InstData/Windows/VM/NetLogo1.0Installer.exe\">") // document.writeln("") @@ -304,7 +304,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/2.1.0/InstData/MacOS/VM/NetLogo1.0Installer.bin\">") // document.writeln("
      ") @@ -319,7 +319,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/2.1.0/InstData/MacOSX/NetLogo1.0Installer.sit\">") // document.writeln("
      ") @@ -338,7 +338,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/2.1.0/InstData/Unix/Linux/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -355,7 +355,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/2.1.0/InstData/Unix/Others/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -369,7 +369,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/2.1.0/InstData/Java/NetLogo1_0Installer.jar\">") // document.writeln("
      ") @@ -391,11 +391,11 @@ { if (plat!="mac") { - document.writeln("") + document.writeln("") } if (plat=="mac") { - document.writeln("") + document.writeln("") } } } @@ -520,7 +520,7 @@

      NetLogo 2.1 Downloads

      - +
      @@ -541,7 +541,8 @@

      NetLogo 2.1 Downloads

      - Download (24.4 MB)
      @@ -549,7 +550,8 @@

      NetLogo 2.1 Downloads

      - Download (12.0 MB)
      @@ -574,12 +576,7 @@

      NetLogo 2.1 Downloads

      - +
      @@ -603,7 +600,7 @@

      NetLogo 2.1 Downloads

      - Download (11.7 MB) + Download (11.7 MB)
      @@ -626,7 +623,7 @@

      NetLogo 2.1 Downloads

      - +
      diff --git a/src/pages/downloads/archive/html/2.1/index.html b/src/pages/downloads/archive/html/2.1/index.html index 7537fb4..7dd9e5a 100644 --- a/src/pages/downloads/archive/html/2.1/index.html +++ b/src/pages/downloads/archive/html/2.1/index.html @@ -288,7 +288,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/2.1/InstData/Windows/VM/NetLogo1.0Installer.exe\">") // document.writeln("") @@ -304,7 +304,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/2.1/InstData/MacOS/VM/NetLogo1.0Installer.bin\">") // document.writeln("
      ") @@ -319,7 +319,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/2.1/InstData/MacOSX/NetLogo1.0Installer.sit\">") // document.writeln("
      ") @@ -338,7 +338,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/2.1/InstData/Unix/Linux/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -355,7 +355,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/2.1/InstData/Unix/Others/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -369,7 +369,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://netlogo-download.s3.us-east-1.amazonaws.com/2.1/InstData/Java/NetLogo1_0Installer.jar\">") // document.writeln("
      ") @@ -391,11 +391,11 @@ { if (plat!="mac") { - document.writeln("") + document.writeln("") } if (plat=="mac") { - document.writeln("") + document.writeln("") } } } @@ -520,7 +520,7 @@

      NetLogo 2.1 Downloads

      - +
      @@ -541,7 +541,8 @@

      NetLogo 2.1 Downloads

      - Download (24.4 MB)
      @@ -549,7 +550,8 @@

      NetLogo 2.1 Downloads

      - Download (12.0 MB)
      @@ -574,12 +576,7 @@

      NetLogo 2.1 Downloads

      - +
      @@ -603,7 +600,7 @@

      NetLogo 2.1 Downloads

      - Download (11.7 MB) + Download (11.7 MB)
      @@ -626,7 +623,7 @@

      NetLogo 2.1 Downloads

      - +
      diff --git a/src/pages/downloads/archive/html/3.0.0/index.html b/src/pages/downloads/archive/html/3.0.0/index.html index bd11b99..39a0c4e 100644 --- a/src/pages/downloads/archive/html/3.0.0/index.html +++ b/src/pages/downloads/archive/html/3.0.0/index.html @@ -55,14 +55,14 @@

      NetLogo 3.0 Downloads

      Windows
      - + Download (43M)
      - + Download (30M)
      @@ -80,7 +80,7 @@

      NetLogo 3.0 Downloads

      - + Download (30M)
      diff --git a/src/pages/downloads/archive/html/3.0.1/index.html b/src/pages/downloads/archive/html/3.0.1/index.html index 054ead8..ab5b4ce 100644 --- a/src/pages/downloads/archive/html/3.0.1/index.html +++ b/src/pages/downloads/archive/html/3.0.1/index.html @@ -55,14 +55,14 @@

      NetLogo 3.0.1 Downloads

      Windows
      - + Download (35M)
      - + Download (21M)
      @@ -80,7 +80,7 @@

      NetLogo 3.0.1 Downloads

      - + Download (21M)
      diff --git a/src/pages/downloads/archive/html/3.0.2/index.html b/src/pages/downloads/archive/html/3.0.2/index.html index cddc0ec..59ec90a 100644 --- a/src/pages/downloads/archive/html/3.0.2/index.html +++ b/src/pages/downloads/archive/html/3.0.2/index.html @@ -55,14 +55,14 @@

      NetLogo 3.0.2 Downloads

      Windows
      - + Download (35M)
      - + Download (21M)
      @@ -80,7 +80,7 @@

      NetLogo 3.0.2 Downloads

      - + Download (21M)
      diff --git a/src/pages/downloads/archive/html/3.0/index.html b/src/pages/downloads/archive/html/3.0/index.html index bbcdbdd..977fe70 100644 --- a/src/pages/downloads/archive/html/3.0/index.html +++ b/src/pages/downloads/archive/html/3.0/index.html @@ -55,14 +55,14 @@

      NetLogo 3.0.2 Downloads

      Windows
      - + Download (35M)
      - + Download (21M)
      @@ -80,7 +80,7 @@

      NetLogo 3.0.2 Downloads

      - + Download (21M)
      diff --git a/src/pages/downloads/archive/html/3.1.0/index.html b/src/pages/downloads/archive/html/3.1.0/index.html index 614281c..1ac78a7 100644 --- a/src/pages/downloads/archive/html/3.1.0/index.html +++ b/src/pages/downloads/archive/html/3.1.0/index.html @@ -56,14 +56,14 @@

      April 14, 2006

      Windows
      - + Download (48M)
      - + Download (25M)
      @@ -81,7 +81,7 @@

      April 14, 2006

      - + Download (25M)
      diff --git a/src/pages/downloads/archive/html/3.1.1/index.html b/src/pages/downloads/archive/html/3.1.1/index.html index 281ad03..83abec5 100644 --- a/src/pages/downloads/archive/html/3.1.1/index.html +++ b/src/pages/downloads/archive/html/3.1.1/index.html @@ -56,14 +56,14 @@

      June 16, 2006

      Windows
      - + Download (48M)
      - + Download (25M)
      @@ -81,7 +81,7 @@

      June 16, 2006

      - + Download (25M)
      diff --git a/src/pages/downloads/archive/html/3.1.2/index.html b/src/pages/downloads/archive/html/3.1.2/index.html index 50c27c8..fce8951 100644 --- a/src/pages/downloads/archive/html/3.1.2/index.html +++ b/src/pages/downloads/archive/html/3.1.2/index.html @@ -56,14 +56,14 @@

      August 9, 2006

      Windows
      - + Download (48M)
      - + Download (25M)
      @@ -81,7 +81,7 @@

      August 9, 2006

      - + Download (25M)
      diff --git a/src/pages/downloads/archive/html/3.1.3/index.html b/src/pages/downloads/archive/html/3.1.3/index.html index 2e03697..0bb9b1b 100644 --- a/src/pages/downloads/archive/html/3.1.3/index.html +++ b/src/pages/downloads/archive/html/3.1.3/index.html @@ -56,14 +56,14 @@

      September 20, 2006

      Windows
      - + Download (48M)
      - + Download (25M)
      @@ -81,7 +81,7 @@

      September 20, 2006

      - + Download (25M)
      diff --git a/src/pages/downloads/archive/html/3.1.4/index.html b/src/pages/downloads/archive/html/3.1.4/index.html index cacf5eb..51a7bed 100644 --- a/src/pages/downloads/archive/html/3.1.4/index.html +++ b/src/pages/downloads/archive/html/3.1.4/index.html @@ -56,14 +56,14 @@

      February 16, 2007

      Windows
      - + Download (51M)
      - + Download (26M)
      @@ -81,7 +81,7 @@

      February 16, 2007

      - + Download (25M)
      diff --git a/src/pages/downloads/archive/html/3.1.5/index.html b/src/pages/downloads/archive/html/3.1.5/index.html index b100bc1..98d5180 100644 --- a/src/pages/downloads/archive/html/3.1.5/index.html +++ b/src/pages/downloads/archive/html/3.1.5/index.html @@ -56,14 +56,14 @@

      December 5, 2007

      Windows
      - + Download (51M)
      - + Download (26M)
      @@ -81,7 +81,7 @@

      December 5, 2007

      - + Download (25M)
      diff --git a/src/pages/downloads/archive/html/3.1/index.html b/src/pages/downloads/archive/html/3.1/index.html index 8878838..1763140 100644 --- a/src/pages/downloads/archive/html/3.1/index.html +++ b/src/pages/downloads/archive/html/3.1/index.html @@ -56,14 +56,14 @@

      December 5, 2007

      Windows
      - + Download (51M)
      - + Download (26M)
      @@ -81,7 +81,7 @@

      December 5, 2007

      - + Download (25M)
      diff --git a/src/pages/downloads/archive/html/4.0.0/index.html b/src/pages/downloads/archive/html/4.0.0/index.html index 0d93e7b..55d63ea 100644 --- a/src/pages/downloads/archive/html/4.0.0/index.html +++ b/src/pages/downloads/archive/html/4.0.0/index.html @@ -37,7 +37,7 @@

      September 25, 2007

      - + Download (58M)
      @@ -54,7 +54,7 @@

      September 25, 2007

      - + Download (31M)
      diff --git a/src/pages/downloads/archive/html/4.0.0/windows.html b/src/pages/downloads/archive/html/4.0.0/windows.html index b85ea8a..1ae48be 100644 --- a/src/pages/downloads/archive/html/4.0.0/windows.html +++ b/src/pages/downloads/archive/html/4.0.0/windows.html @@ -128,7 +128,7 @@

      September 25, 2007

      - Download + Download (32M)
      diff --git a/src/pages/downloads/archive/html/4.0.1/index.html b/src/pages/downloads/archive/html/4.0.1/index.html index f9a46f1..6df9732 100644 --- a/src/pages/downloads/archive/html/4.0.1/index.html +++ b/src/pages/downloads/archive/html/4.0.1/index.html @@ -37,7 +37,7 @@

      October 31, 2007

      - + Download (58M)
      @@ -54,7 +54,7 @@

      October 31, 2007

      - + Download (31M)
      diff --git a/src/pages/downloads/archive/html/4.0.1/windows.html b/src/pages/downloads/archive/html/4.0.1/windows.html index d187cc2..6f24162 100644 --- a/src/pages/downloads/archive/html/4.0.1/windows.html +++ b/src/pages/downloads/archive/html/4.0.1/windows.html @@ -128,7 +128,7 @@

      October 31, 2007

      - Download + Download (32M)
      diff --git a/src/pages/downloads/archive/html/4.0.2/index.html b/src/pages/downloads/archive/html/4.0.2/index.html index 3f9bb34..3b0c9b5 100644 --- a/src/pages/downloads/archive/html/4.0.2/index.html +++ b/src/pages/downloads/archive/html/4.0.2/index.html @@ -37,7 +37,7 @@

      December 5, 2007

      - + Download (58M)
      @@ -54,7 +54,7 @@

      December 5, 2007

      - + Download (31M)
      diff --git a/src/pages/downloads/archive/html/4.0.2/windows.html b/src/pages/downloads/archive/html/4.0.2/windows.html index a6fc321..26f2641 100644 --- a/src/pages/downloads/archive/html/4.0.2/windows.html +++ b/src/pages/downloads/archive/html/4.0.2/windows.html @@ -128,7 +128,7 @@

      December 5, 2007

      - Download + Download (32M)
      diff --git a/src/pages/downloads/archive/html/4.0.3/index.html b/src/pages/downloads/archive/html/4.0.3/index.html index b3b86e2..941cb39 100644 --- a/src/pages/downloads/archive/html/4.0.3/index.html +++ b/src/pages/downloads/archive/html/4.0.3/index.html @@ -37,7 +37,7 @@

      August 6, 2008

      - + Download (63M)
      @@ -54,7 +54,7 @@

      August 6, 2008

      - + Download (36M)
      diff --git a/src/pages/downloads/archive/html/4.0.3/windows.html b/src/pages/downloads/archive/html/4.0.3/windows.html index 5494c2a..917db52 100644 --- a/src/pages/downloads/archive/html/4.0.3/windows.html +++ b/src/pages/downloads/archive/html/4.0.3/windows.html @@ -128,7 +128,7 @@

      August 6, 2008

      - Download + Download (37M)
      diff --git a/src/pages/downloads/archive/html/4.0.4/index.html b/src/pages/downloads/archive/html/4.0.4/index.html index 8514633..6cd7595 100644 --- a/src/pages/downloads/archive/html/4.0.4/index.html +++ b/src/pages/downloads/archive/html/4.0.4/index.html @@ -37,7 +37,7 @@

      November 24, 2008

      - + Download (63M)
      @@ -54,7 +54,7 @@

      November 24, 2008

      - + Download (36M)
      diff --git a/src/pages/downloads/archive/html/4.0.4/windows.html b/src/pages/downloads/archive/html/4.0.4/windows.html index 07a4b62..f6b9019 100644 --- a/src/pages/downloads/archive/html/4.0.4/windows.html +++ b/src/pages/downloads/archive/html/4.0.4/windows.html @@ -128,7 +128,7 @@

      November 24, 2008

      - Download + Download (37M)
      diff --git a/src/pages/downloads/archive/html/4.0.5/index.html b/src/pages/downloads/archive/html/4.0.5/index.html index 67a4ad5..7310640 100644 --- a/src/pages/downloads/archive/html/4.0.5/index.html +++ b/src/pages/downloads/archive/html/4.0.5/index.html @@ -37,7 +37,7 @@

      December 14, 2009

      - + Download (63M)
      @@ -54,7 +54,7 @@

      December 14, 2009

      - + Download (37M)
      diff --git a/src/pages/downloads/archive/html/4.0.5/windows.html b/src/pages/downloads/archive/html/4.0.5/windows.html index fb89d2b..d14cf83 100644 --- a/src/pages/downloads/archive/html/4.0.5/windows.html +++ b/src/pages/downloads/archive/html/4.0.5/windows.html @@ -128,7 +128,7 @@

      December 14, 2009

      - Download + Download (37M)
      diff --git a/src/pages/downloads/archive/html/4.0/index.html b/src/pages/downloads/archive/html/4.0/index.html index b1060bd..d9b0479 100644 --- a/src/pages/downloads/archive/html/4.0/index.html +++ b/src/pages/downloads/archive/html/4.0/index.html @@ -37,7 +37,7 @@

      December 14, 2009

      - + Download (63M)
      @@ -54,7 +54,7 @@

      December 14, 2009

      - + Download (37M)
      diff --git a/src/pages/downloads/archive/html/4.0/windows.html b/src/pages/downloads/archive/html/4.0/windows.html index f6ba7b3..00df343 100644 --- a/src/pages/downloads/archive/html/4.0/windows.html +++ b/src/pages/downloads/archive/html/4.0/windows.html @@ -128,7 +128,7 @@

      December 14, 2009

      - Download + Download (37M)
      diff --git a/src/pages/downloads/archive/html/4.1.0/index.html b/src/pages/downloads/archive/html/4.1.0/index.html index f3db42d..1d36897 100644 --- a/src/pages/downloads/archive/html/4.1.0/index.html +++ b/src/pages/downloads/archive/html/4.1.0/index.html @@ -41,7 +41,7 @@

      December 20, 2009

      - + Download (62M)
      @@ -58,7 +58,7 @@

      December 20, 2009

      - + Download (43M)
      diff --git a/src/pages/downloads/archive/html/4.1.0/windows.html b/src/pages/downloads/archive/html/4.1.0/windows.html index 3ca3eb9..be66e3b 100644 --- a/src/pages/downloads/archive/html/4.1.0/windows.html +++ b/src/pages/downloads/archive/html/4.1.0/windows.html @@ -89,7 +89,7 @@

      December 20, 2009

      - Download + Download (43M)
      diff --git a/src/pages/downloads/archive/html/4.1.1/index.html b/src/pages/downloads/archive/html/4.1.1/index.html index f8f17cd..b1a83b7 100644 --- a/src/pages/downloads/archive/html/4.1.1/index.html +++ b/src/pages/downloads/archive/html/4.1.1/index.html @@ -38,7 +38,7 @@

      August 4, 2010

      - + Download (62M)
      @@ -55,7 +55,7 @@

      August 4, 2010

      - + Download (43M)
      diff --git a/src/pages/downloads/archive/html/4.1.1/windows.html b/src/pages/downloads/archive/html/4.1.1/windows.html index 86ad703..947e344 100644 --- a/src/pages/downloads/archive/html/4.1.1/windows.html +++ b/src/pages/downloads/archive/html/4.1.1/windows.html @@ -89,7 +89,7 @@

      August 4, 2010

      - Download + Download (43M)
      diff --git a/src/pages/downloads/archive/html/4.1.2/index.html b/src/pages/downloads/archive/html/4.1.2/index.html index 775fee8..5fb9049 100644 --- a/src/pages/downloads/archive/html/4.1.2/index.html +++ b/src/pages/downloads/archive/html/4.1.2/index.html @@ -38,7 +38,7 @@

      December 6, 2010

      - + Download (63M)
      @@ -55,7 +55,7 @@

      December 6, 2010

      - + Download (43M)
      diff --git a/src/pages/downloads/archive/html/4.1.2/windows.html b/src/pages/downloads/archive/html/4.1.2/windows.html index 6c881f9..60bd656 100644 --- a/src/pages/downloads/archive/html/4.1.2/windows.html +++ b/src/pages/downloads/archive/html/4.1.2/windows.html @@ -89,7 +89,7 @@

      December 6, 2010

      - Download + Download (44M)
      diff --git a/src/pages/downloads/archive/html/4.1.3/index.html b/src/pages/downloads/archive/html/4.1.3/index.html index 5c769be..2b64b37 100644 --- a/src/pages/downloads/archive/html/4.1.3/index.html +++ b/src/pages/downloads/archive/html/4.1.3/index.html @@ -39,7 +39,7 @@

      April 3, 2011

      - + Download (43M)
      @@ -56,7 +56,7 @@

      April 3, 2011

      - + Download (63M)
      diff --git a/src/pages/downloads/archive/html/4.1.3/windows.html b/src/pages/downloads/archive/html/4.1.3/windows.html index e2d6e29..41e6db2 100644 --- a/src/pages/downloads/archive/html/4.1.3/windows.html +++ b/src/pages/downloads/archive/html/4.1.3/windows.html @@ -89,7 +89,7 @@

      April 3, 2011

      - Download + Download (44M)
      diff --git a/src/pages/downloads/archive/html/4.1/index.html b/src/pages/downloads/archive/html/4.1/index.html index 987a3b5..981e686 100644 --- a/src/pages/downloads/archive/html/4.1/index.html +++ b/src/pages/downloads/archive/html/4.1/index.html @@ -39,7 +39,7 @@

      April 3, 2011

      - + Download (43M)
      @@ -56,7 +56,7 @@

      April 3, 2011

      - + Download (63M)
      diff --git a/src/pages/downloads/archive/html/4.1/windows.html b/src/pages/downloads/archive/html/4.1/windows.html index 48e7c35..ad1f02f 100644 --- a/src/pages/downloads/archive/html/4.1/windows.html +++ b/src/pages/downloads/archive/html/4.1/windows.html @@ -89,7 +89,7 @@

      April 3, 2011

      - Download + Download (44M)
      diff --git a/src/pages/downloads/archive/html/5.0.0/index.html b/src/pages/downloads/archive/html/5.0.0/index.html index 7ce6a26..12ed54e 100644 --- a/src/pages/downloads/archive/html/5.0.0/index.html +++ b/src/pages/downloads/archive/html/5.0.0/index.html @@ -40,7 +40,7 @@

      February 16, 2012

      - Download + Download (62M)
      @@ -57,7 +57,7 @@

      February 16, 2012

      - Download + Download (82M)
      diff --git a/src/pages/downloads/archive/html/5.0.0/windows.html b/src/pages/downloads/archive/html/5.0.0/windows.html index b10e840..52abba0 100644 --- a/src/pages/downloads/archive/html/5.0.0/windows.html +++ b/src/pages/downloads/archive/html/5.0.0/windows.html @@ -89,7 +89,7 @@

      February 16, 2012

      - Download + Download (62M)
      diff --git a/src/pages/downloads/archive/html/5.0.1/index.html b/src/pages/downloads/archive/html/5.0.1/index.html index 4edb39b..d00cb17 100644 --- a/src/pages/downloads/archive/html/5.0.1/index.html +++ b/src/pages/downloads/archive/html/5.0.1/index.html @@ -40,7 +40,7 @@

      April 12, 2012

      - Download + Download (63M)
      @@ -57,7 +57,7 @@

      April 12, 2012

      - Download + Download (83M)
      diff --git a/src/pages/downloads/archive/html/5.0.1/windows.html b/src/pages/downloads/archive/html/5.0.1/windows.html index d8e3c0e..28bb632 100644 --- a/src/pages/downloads/archive/html/5.0.1/windows.html +++ b/src/pages/downloads/archive/html/5.0.1/windows.html @@ -87,7 +87,7 @@

      April 12, 2012

      - Download + Download (64M)
      diff --git a/src/pages/downloads/archive/html/5.0.2/index.html b/src/pages/downloads/archive/html/5.0.2/index.html index 7532682..8623b42 100644 --- a/src/pages/downloads/archive/html/5.0.2/index.html +++ b/src/pages/downloads/archive/html/5.0.2/index.html @@ -40,7 +40,7 @@

      July 27, 2012

      - Download + Download (64M)
      @@ -57,7 +57,7 @@

      July 27, 2012

      - Download + Download (84M)
      diff --git a/src/pages/downloads/archive/html/5.0.2/windows.html b/src/pages/downloads/archive/html/5.0.2/windows.html index 763bc84..f7afee0 100644 --- a/src/pages/downloads/archive/html/5.0.2/windows.html +++ b/src/pages/downloads/archive/html/5.0.2/windows.html @@ -87,7 +87,7 @@

      July 27, 2012

      - Download + Download (64M)
      diff --git a/src/pages/downloads/archive/html/5.0.3/index.html b/src/pages/downloads/archive/html/5.0.3/index.html index 4c53fdc..d2ad523 100644 --- a/src/pages/downloads/archive/html/5.0.3/index.html +++ b/src/pages/downloads/archive/html/5.0.3/index.html @@ -40,7 +40,7 @@

      October 25, 2012

      - Download + Download (65M)
      @@ -57,7 +57,7 @@

      October 25, 2012

      - Download + Download (86M)
      diff --git a/src/pages/downloads/archive/html/5.0.3/windows.html b/src/pages/downloads/archive/html/5.0.3/windows.html index 5e35eb5..b339e65 100644 --- a/src/pages/downloads/archive/html/5.0.3/windows.html +++ b/src/pages/downloads/archive/html/5.0.3/windows.html @@ -87,7 +87,7 @@

      October 25, 2012

      - Download + Download (66M)
      diff --git a/src/pages/downloads/archive/html/5.0.4/index.html b/src/pages/downloads/archive/html/5.0.4/index.html index 9d8694b..86688eb 100644 --- a/src/pages/downloads/archive/html/5.0.4/index.html +++ b/src/pages/downloads/archive/html/5.0.4/index.html @@ -40,7 +40,7 @@

      March 19, 2013

      - Download + Download (68M)
      @@ -57,7 +57,7 @@

      March 19, 2013

      - Download + Download (88M)
      diff --git a/src/pages/downloads/archive/html/5.0.4/windows.html b/src/pages/downloads/archive/html/5.0.4/windows.html index ef7a835..7394ee0 100644 --- a/src/pages/downloads/archive/html/5.0.4/windows.html +++ b/src/pages/downloads/archive/html/5.0.4/windows.html @@ -87,7 +87,7 @@

      March 19, 2013

      - Download + Download (69M)
      diff --git a/src/pages/downloads/archive/html/5.0.5/index.html b/src/pages/downloads/archive/html/5.0.5/index.html index 2aadf11..5b20d67 100644 --- a/src/pages/downloads/archive/html/5.0.5/index.html +++ b/src/pages/downloads/archive/html/5.0.5/index.html @@ -40,7 +40,7 @@

      December 19, 2013

      - Download + Download (69M)
      @@ -57,7 +57,7 @@

      December 19, 2013

      - Download + Download (89M)
      diff --git a/src/pages/downloads/archive/html/5.0.5/windows.html b/src/pages/downloads/archive/html/5.0.5/windows.html index 859e585..c73da48 100644 --- a/src/pages/downloads/archive/html/5.0.5/windows.html +++ b/src/pages/downloads/archive/html/5.0.5/windows.html @@ -87,7 +87,7 @@

      December 19, 2013

      - Download + Download (70M)
      diff --git a/src/pages/downloads/archive/html/5.0/index.html b/src/pages/downloads/archive/html/5.0/index.html index 2271547..10c41dc 100644 --- a/src/pages/downloads/archive/html/5.0/index.html +++ b/src/pages/downloads/archive/html/5.0/index.html @@ -40,7 +40,7 @@

      July 25, 2014

      - Download + Download (69M)
      @@ -57,7 +57,7 @@

      July 25, 2014

      - Download + Download (89M)
      diff --git a/src/pages/downloads/archive/html/5.0/windows.html b/src/pages/downloads/archive/html/5.0/windows.html index 490ca57..c61f461 100644 --- a/src/pages/downloads/archive/html/5.0/windows.html +++ b/src/pages/downloads/archive/html/5.0/windows.html @@ -87,7 +87,7 @@

      July 25, 2014

      - Download + Download (70M)
      diff --git a/src/pages/downloads/archive/html/5.1.0-M1/index.html b/src/pages/downloads/archive/html/5.1.0-M1/index.html index 2d8e988..e7cca84 100644 --- a/src/pages/downloads/archive/html/5.1.0-M1/index.html +++ b/src/pages/downloads/archive/html/5.1.0-M1/index.html @@ -40,7 +40,7 @@

      INTERIM DEVEL BUILD

      - Download + Download (83M)
      @@ -57,7 +57,9 @@

      INTERIM DEVEL BUILD

      - Download + + Download (104M)
      diff --git a/src/pages/downloads/archive/html/5.1.0-M1/windows.html b/src/pages/downloads/archive/html/5.1.0-M1/windows.html index 3e17e0c..504fe0c 100644 --- a/src/pages/downloads/archive/html/5.1.0-M1/windows.html +++ b/src/pages/downloads/archive/html/5.1.0-M1/windows.html @@ -87,7 +87,7 @@

      INTERIM DEVEL BUILD

      - + Download (84M) diff --git a/src/pages/downloads/archive/html/5.1.0-M2/index.html b/src/pages/downloads/archive/html/5.1.0-M2/index.html index 03b6641..b874311 100644 --- a/src/pages/downloads/archive/html/5.1.0-M2/index.html +++ b/src/pages/downloads/archive/html/5.1.0-M2/index.html @@ -40,7 +40,7 @@

      INTERIM DEVEL BUILD

      - Download + Download (83M)
      @@ -57,7 +57,9 @@

      INTERIM DEVEL BUILD

      - Download + + Download (104M)
      diff --git a/src/pages/downloads/archive/html/5.1.0-M2/windows.html b/src/pages/downloads/archive/html/5.1.0-M2/windows.html index f607553..991fd29 100644 --- a/src/pages/downloads/archive/html/5.1.0-M2/windows.html +++ b/src/pages/downloads/archive/html/5.1.0-M2/windows.html @@ -87,7 +87,7 @@

      INTERIM DEVEL BUILD

      - + Download (84M) diff --git a/src/pages/downloads/archive/html/5.1.0/index.html b/src/pages/downloads/archive/html/5.1.0/index.html index 3919041..0798132 100644 --- a/src/pages/downloads/archive/html/5.1.0/index.html +++ b/src/pages/downloads/archive/html/5.1.0/index.html @@ -40,7 +40,7 @@

      July 25, 2014

      - Download + Download (69M)
      @@ -57,7 +57,7 @@

      July 25, 2014

      - Download + Download (89M)
      diff --git a/src/pages/downloads/archive/html/5.1.0/windows.html b/src/pages/downloads/archive/html/5.1.0/windows.html index 3c821ea..2d4ade4 100644 --- a/src/pages/downloads/archive/html/5.1.0/windows.html +++ b/src/pages/downloads/archive/html/5.1.0/windows.html @@ -87,7 +87,7 @@

      July 25, 2014

      - Download + Download (70M)
      diff --git a/src/pages/downloads/archive/html/5.1/index.html b/src/pages/downloads/archive/html/5.1/index.html index 17d78c6..5982e17 100644 --- a/src/pages/downloads/archive/html/5.1/index.html +++ b/src/pages/downloads/archive/html/5.1/index.html @@ -40,7 +40,7 @@

      July 25, 2014

      - Download + Download (69M)
      @@ -57,7 +57,7 @@

      July 25, 2014

      - Download + Download (89M)
      diff --git a/src/pages/downloads/archive/html/5.1/windows.html b/src/pages/downloads/archive/html/5.1/windows.html index 0983b2b..0e38670 100644 --- a/src/pages/downloads/archive/html/5.1/windows.html +++ b/src/pages/downloads/archive/html/5.1/windows.html @@ -87,7 +87,7 @@

      July 25, 2014

      - Download + Download (70M)
      diff --git a/src/pages/downloads/archive/html/5.2-RC2/index.html b/src/pages/downloads/archive/html/5.2-RC2/index.html index 957621f..29d3054 100644 --- a/src/pages/downloads/archive/html/5.2-RC2/index.html +++ b/src/pages/downloads/archive/html/5.2-RC2/index.html @@ -40,7 +40,7 @@

      January 26, 2015

      - Download + Download (71M)
      @@ -57,7 +57,9 @@

      January 26, 2015

      - Download + + Download (91M)
      diff --git a/src/pages/downloads/archive/html/5.2-RC2/windows.html b/src/pages/downloads/archive/html/5.2-RC2/windows.html index 57230c9..3432423 100644 --- a/src/pages/downloads/archive/html/5.2-RC2/windows.html +++ b/src/pages/downloads/archive/html/5.2-RC2/windows.html @@ -87,7 +87,7 @@

      January 26, 2015

      - Download + Download (72M)
      diff --git a/src/pages/downloads/archive/html/5.2-RC3/index.html b/src/pages/downloads/archive/html/5.2-RC3/index.html index 1b7eedf..4beeac2 100644 --- a/src/pages/downloads/archive/html/5.2-RC3/index.html +++ b/src/pages/downloads/archive/html/5.2-RC3/index.html @@ -40,7 +40,7 @@

      January 26, 2015

      - Download + Download (99M)
      @@ -57,7 +57,9 @@

      January 26, 2015

      - Download + + Download (119M)
      diff --git a/src/pages/downloads/archive/html/5.2-RC3/windows.html b/src/pages/downloads/archive/html/5.2-RC3/windows.html index 748f72f..9f3cfe0 100644 --- a/src/pages/downloads/archive/html/5.2-RC3/windows.html +++ b/src/pages/downloads/archive/html/5.2-RC3/windows.html @@ -87,7 +87,7 @@

      January 26, 2015

      - Download + Download (100M)
      diff --git a/src/pages/downloads/archive/html/5.2.0-RC4/index.html b/src/pages/downloads/archive/html/5.2.0-RC4/index.html index 9344129..5660ef8 100644 --- a/src/pages/downloads/archive/html/5.2.0-RC4/index.html +++ b/src/pages/downloads/archive/html/5.2.0-RC4/index.html @@ -40,7 +40,9 @@

      March 21, 2015

      - Download + + Download (102M)
      @@ -57,7 +59,9 @@

      March 21, 2015

      - Download + + Download (122M)
      diff --git a/src/pages/downloads/archive/html/5.2.0-RC4/windows.html b/src/pages/downloads/archive/html/5.2.0-RC4/windows.html index c6e8e85..b4166f8 100644 --- a/src/pages/downloads/archive/html/5.2.0-RC4/windows.html +++ b/src/pages/downloads/archive/html/5.2.0-RC4/windows.html @@ -87,7 +87,7 @@

      March 21, 2015

      - + Download (103M) diff --git a/src/pages/downloads/archive/html/5.2.0-RC5/index.html b/src/pages/downloads/archive/html/5.2.0-RC5/index.html index fad990d..efe47bd 100644 --- a/src/pages/downloads/archive/html/5.2.0-RC5/index.html +++ b/src/pages/downloads/archive/html/5.2.0-RC5/index.html @@ -40,7 +40,9 @@

      April 1, 2015

      - Download + + Download (103M)
      @@ -63,7 +65,9 @@

      April 1, 2015

      - Download + + Download (123M)
      diff --git a/src/pages/downloads/archive/html/5.2.0-RC5/windows.html b/src/pages/downloads/archive/html/5.2.0-RC5/windows.html index 5251f43..c7710e6 100644 --- a/src/pages/downloads/archive/html/5.2.0-RC5/windows.html +++ b/src/pages/downloads/archive/html/5.2.0-RC5/windows.html @@ -87,7 +87,7 @@

      April 1, 2015

      - + Download (104M) diff --git a/src/pages/downloads/archive/html/5.2.0/index.html b/src/pages/downloads/archive/html/5.2.0/index.html index d85975c..fb89be6 100644 --- a/src/pages/downloads/archive/html/5.2.0/index.html +++ b/src/pages/downloads/archive/html/5.2.0/index.html @@ -40,7 +40,7 @@

      April 3, 2015

      - Download + Download (104M)
      @@ -63,7 +63,7 @@

      April 3, 2015

      - Download + Download (123M)
      diff --git a/src/pages/downloads/archive/html/5.2.0/windows.html b/src/pages/downloads/archive/html/5.2.0/windows.html index 3dd5549..e33bcda 100644 --- a/src/pages/downloads/archive/html/5.2.0/windows.html +++ b/src/pages/downloads/archive/html/5.2.0/windows.html @@ -87,7 +87,7 @@

      April 3, 2015

      - Download + Download (104M)
      diff --git a/src/pages/downloads/archive/html/5.2.1/index.html b/src/pages/downloads/archive/html/5.2.1/index.html index 8a648c3..44307b1 100644 --- a/src/pages/downloads/archive/html/5.2.1/index.html +++ b/src/pages/downloads/archive/html/5.2.1/index.html @@ -40,7 +40,7 @@

      October 1, 2015

      - Download + Download (106M)
      @@ -63,7 +63,7 @@

      October 1, 2015

      - Download + Download (126M)
      diff --git a/src/pages/downloads/archive/html/5.2.1/windows.html b/src/pages/downloads/archive/html/5.2.1/windows.html index b148085..86104d7 100644 --- a/src/pages/downloads/archive/html/5.2.1/windows.html +++ b/src/pages/downloads/archive/html/5.2.1/windows.html @@ -87,7 +87,7 @@

      October 1, 2015

      - Download + Download (107M)
      diff --git a/src/pages/downloads/archive/html/5.2/index.html b/src/pages/downloads/archive/html/5.2/index.html index 9e8b2eb..825e8d0 100644 --- a/src/pages/downloads/archive/html/5.2/index.html +++ b/src/pages/downloads/archive/html/5.2/index.html @@ -40,7 +40,7 @@

      October 1, 2015

      - Download + Download (106M)
      @@ -63,7 +63,7 @@

      October 1, 2015

      - Download + Download (126M)
      diff --git a/src/pages/downloads/archive/html/5.2/windows.html b/src/pages/downloads/archive/html/5.2/windows.html index d824fe8..fa5b0ae 100644 --- a/src/pages/downloads/archive/html/5.2/windows.html +++ b/src/pages/downloads/archive/html/5.2/windows.html @@ -87,7 +87,7 @@

      October 1, 2015

      - Download + Download (107M)
      diff --git a/src/pages/downloads/archive/html/5.3-RC1/index.html b/src/pages/downloads/archive/html/5.3-RC1/index.html index d4bc9a9..10dfce2 100644 --- a/src/pages/downloads/archive/html/5.3-RC1/index.html +++ b/src/pages/downloads/archive/html/5.3-RC1/index.html @@ -40,7 +40,7 @@

      December 4, 2015

      - Download + Download (181 MB)
      @@ -57,7 +57,7 @@

      December 4, 2015

      - Download + Download (158 MB)
      @@ -74,7 +74,7 @@

      December 4, 2015

      - Download + Download (160 MB)
      @@ -91,7 +91,7 @@

      December 4, 2015

      - Download + Download (173 MB)
      @@ -108,7 +108,7 @@

      December 4, 2015

      - Download + Download (171 MB)
      diff --git a/src/pages/downloads/archive/html/5.3.0/index.html b/src/pages/downloads/archive/html/5.3.0/index.html index c1a95e7..44169e2 100644 --- a/src/pages/downloads/archive/html/5.3.0/index.html +++ b/src/pages/downloads/archive/html/5.3.0/index.html @@ -40,7 +40,7 @@

      December 4, 2015

      - Download + Download (181 MB)
      @@ -57,7 +57,7 @@

      December 4, 2015

      - Download + Download (158 MB)
      @@ -74,7 +74,7 @@

      December 4, 2015

      - Download + Download (160 MB)
      @@ -91,7 +91,7 @@

      December 4, 2015

      - Download + Download (173 MB)
      @@ -108,7 +108,7 @@

      December 4, 2015

      - Download + Download (171 MB)
      diff --git a/src/pages/downloads/archive/html/5.3.1-RC1/index.html b/src/pages/downloads/archive/html/5.3.1-RC1/index.html index 50c42b0..8665f14 100644 --- a/src/pages/downloads/archive/html/5.3.1-RC1/index.html +++ b/src/pages/downloads/archive/html/5.3.1-RC1/index.html @@ -40,7 +40,7 @@

      January 26, 2016

      - Download + Download (182 MB)
      @@ -57,7 +57,7 @@

      January 26, 2016

      - Download + Download (159 MB)
      @@ -74,7 +74,7 @@

      January 26, 2016

      - Download + Download (160 MB)
      @@ -91,7 +91,7 @@

      January 26, 2016

      - Download + Download (174 MB)
      @@ -108,7 +108,7 @@

      January 26, 2016

      - Download + Download (172 MB)
      diff --git a/src/pages/downloads/archive/html/5.3.1-RC2/index.html b/src/pages/downloads/archive/html/5.3.1-RC2/index.html index de6533a..de11b7c 100644 --- a/src/pages/downloads/archive/html/5.3.1-RC2/index.html +++ b/src/pages/downloads/archive/html/5.3.1-RC2/index.html @@ -40,7 +40,7 @@

      February 16, 2016

      - Download + Download (172 MB)
      @@ -57,7 +57,7 @@

      February 16, 2016

      - Download + Download (157 MB)
      @@ -74,7 +74,7 @@

      February 16, 2016

      - Download + Download (159 MB)
      @@ -91,7 +91,7 @@

      February 16, 2016

      - Download + Download (172 MB)
      @@ -108,7 +108,7 @@

      February 16, 2016

      - Download + Download (170 MB)
      diff --git a/src/pages/downloads/archive/html/5.3.1-RC3/index.html b/src/pages/downloads/archive/html/5.3.1-RC3/index.html index 0f45c55..f768c87 100644 --- a/src/pages/downloads/archive/html/5.3.1-RC3/index.html +++ b/src/pages/downloads/archive/html/5.3.1-RC3/index.html @@ -40,7 +40,7 @@

      February 23, 2016

      - Download + Download (168 MB)
      @@ -57,7 +57,7 @@

      February 23, 2016

      - Download + Download (158 MB)
      @@ -74,7 +74,7 @@

      February 23, 2016

      - Download + Download (159 MB)
      @@ -91,7 +91,7 @@

      February 23, 2016

      - Download + Download (173 MB)
      @@ -108,7 +108,7 @@

      February 23, 2016

      - Download + Download (171 MB)
      diff --git a/src/pages/downloads/archive/html/5.3.1/index.html b/src/pages/downloads/archive/html/5.3.1/index.html index d2fc03a..4f18405 100644 --- a/src/pages/downloads/archive/html/5.3.1/index.html +++ b/src/pages/downloads/archive/html/5.3.1/index.html @@ -40,7 +40,7 @@

      February 29, 2016

      - Download + Download (168 MB)
      @@ -57,7 +57,7 @@

      February 29, 2016

      - Download + Download (158 MB)
      @@ -74,7 +74,7 @@

      February 29, 2016

      - Download + Download (159 MB)
      @@ -91,7 +91,7 @@

      February 29, 2016

      - Download + Download (173 MB)
      @@ -108,7 +108,7 @@

      February 29, 2016

      - Download + Download (171 MB)
      diff --git a/src/pages/downloads/archive/html/5.3/index.html b/src/pages/downloads/archive/html/5.3/index.html index 66b40d6..a7235de 100644 --- a/src/pages/downloads/archive/html/5.3/index.html +++ b/src/pages/downloads/archive/html/5.3/index.html @@ -40,7 +40,7 @@

      February 29, 2016

      - Download + Download (168 MB)
      @@ -57,7 +57,7 @@

      February 29, 2016

      - Download + Download (158 MB)
      @@ -74,7 +74,7 @@

      February 29, 2016

      - Download + Download (159 MB)
      @@ -91,7 +91,7 @@

      February 29, 2016

      - Download + Download (173 MB)
      @@ -108,7 +108,7 @@

      February 29, 2016

      - Download + Download (171 MB)
      diff --git a/src/pages/downloads/archive/html/6.0-BETA1/index.html b/src/pages/downloads/archive/html/6.0-BETA1/index.html index 6bb0eaf..fa9f899 100644 --- a/src/pages/downloads/archive/html/6.0-BETA1/index.html +++ b/src/pages/downloads/archive/html/6.0-BETA1/index.html @@ -40,7 +40,7 @@

      October 24, 2016

      - Download + Download (179 MB)
      @@ -57,7 +57,7 @@

      October 24, 2016

      - Download + Download (157 MB)
      @@ -74,7 +74,7 @@

      October 24, 2016

      - Download + Download (158 MB)
      @@ -91,7 +91,7 @@

      October 24, 2016

      - Download + Download (171 MB)
      @@ -108,7 +108,7 @@

      October 24, 2016

      - Download + Download (167 MB)
      diff --git a/src/pages/downloads/archive/html/6.0-BETA2/index.html b/src/pages/downloads/archive/html/6.0-BETA2/index.html index d11b4e7..6883b5c 100644 --- a/src/pages/downloads/archive/html/6.0-BETA2/index.html +++ b/src/pages/downloads/archive/html/6.0-BETA2/index.html @@ -40,7 +40,7 @@

      November 21, 2016

      - Download + Download (190 MB)
      @@ -57,7 +57,7 @@

      November 21, 2016

      - Download + Download (165 MB)
      @@ -74,7 +74,7 @@

      November 21, 2016

      - Download + Download (167 MB)
      @@ -91,7 +91,7 @@

      November 21, 2016

      - Download + Download (190 MB)
      @@ -108,7 +108,7 @@

      November 21, 2016

      - Download + Download (187 MB)
      diff --git a/src/pages/downloads/archive/html/6.0-CONSTRUCTIONISM-2016-PREVIEW/index.html b/src/pages/downloads/archive/html/6.0-CONSTRUCTIONISM-2016-PREVIEW/index.html index 5e70dca..b2c2193 100644 --- a/src/pages/downloads/archive/html/6.0-CONSTRUCTIONISM-2016-PREVIEW/index.html +++ b/src/pages/downloads/archive/html/6.0-CONSTRUCTIONISM-2016-PREVIEW/index.html @@ -41,7 +41,7 @@

      December 4, 2015

      Download (195 MB) @@ -61,7 +61,7 @@

      December 4, 2015

      Download (180 MB) @@ -81,7 +81,7 @@

      December 4, 2015

      Download (181 MB) @@ -101,7 +101,7 @@

      December 4, 2015

      Download (195 MB) @@ -121,7 +121,7 @@

      December 4, 2015

      Download (193 MB) diff --git a/src/pages/downloads/archive/html/6.0-M1/index.html b/src/pages/downloads/archive/html/6.0-M1/index.html index bb7b3b0..d641f19 100644 --- a/src/pages/downloads/archive/html/6.0-M1/index.html +++ b/src/pages/downloads/archive/html/6.0-M1/index.html @@ -40,7 +40,7 @@

      December 4, 2015

      - Download + Download (159 MB)
      @@ -57,7 +57,7 @@

      December 4, 2015

      - Download + Download (148 MB)
      @@ -74,7 +74,7 @@

      December 4, 2015

      - Download + Download (150 MB)
      @@ -91,7 +91,7 @@

      December 4, 2015

      - Download + Download (159 MB)
      @@ -108,7 +108,7 @@

      December 4, 2015

      - Download + Download (157 MB)
      diff --git a/src/pages/downloads/archive/html/6.0-M2/index.html b/src/pages/downloads/archive/html/6.0-M2/index.html index a222e20..15eaade 100644 --- a/src/pages/downloads/archive/html/6.0-M2/index.html +++ b/src/pages/downloads/archive/html/6.0-M2/index.html @@ -40,7 +40,7 @@

      March 25, 2016

      - Download + Download (160 MB)
      @@ -57,7 +57,7 @@

      March 25, 2016

      - Download + Download (154 MB)
      @@ -74,7 +74,7 @@

      March 25, 2016

      - Download + Download (150 MB)
      @@ -91,7 +91,7 @@

      March 25, 2016

      - Download + Download (159 MB)
      @@ -108,7 +108,7 @@

      March 25, 2016

      - Download + Download (157 MB)
      diff --git a/src/pages/downloads/archive/html/6.0-M3/index.html b/src/pages/downloads/archive/html/6.0-M3/index.html index 0dfc8db..5ebe034 100644 --- a/src/pages/downloads/archive/html/6.0-M3/index.html +++ b/src/pages/downloads/archive/html/6.0-M3/index.html @@ -40,7 +40,7 @@

      March 30, 2016

      - Download + Download (160 MB)
      @@ -57,7 +57,7 @@

      March 30, 2016

      - Download + Download (149 MB)
      @@ -74,7 +74,7 @@

      March 30, 2016

      - Download + Download (150 MB)
      @@ -91,7 +91,7 @@

      March 30, 2016

      - Download + Download (160 MB)
      @@ -108,7 +108,7 @@

      March 30, 2016

      - Download + Download (158 MB)
      diff --git a/src/pages/downloads/archive/html/6.0-M4/index.html b/src/pages/downloads/archive/html/6.0-M4/index.html index 265e9d9..1b38308 100644 --- a/src/pages/downloads/archive/html/6.0-M4/index.html +++ b/src/pages/downloads/archive/html/6.0-M4/index.html @@ -40,7 +40,7 @@

      April 1, 2016

      - Download + Download (160 MB)
      @@ -57,7 +57,7 @@

      April 1, 2016

      - Download + Download (149 MB)
      @@ -74,7 +74,7 @@

      April 1, 2016

      - Download + Download (150 MB)
      @@ -91,7 +91,7 @@

      April 1, 2016

      - Download + Download (160 MB)
      @@ -108,7 +108,7 @@

      April 1, 2016

      - Download + Download (158 MB)
      diff --git a/src/pages/downloads/archive/html/6.0-M5/index.html b/src/pages/downloads/archive/html/6.0-M5/index.html index 6ad69eb..38ea8ae 100644 --- a/src/pages/downloads/archive/html/6.0-M5/index.html +++ b/src/pages/downloads/archive/html/6.0-M5/index.html @@ -40,7 +40,7 @@

      April 19, 2016

      - Download + Download (160 MB)
      @@ -57,7 +57,7 @@

      April 19, 2016

      - Download + Download (149 MB)
      @@ -74,7 +74,7 @@

      April 19, 2016

      - Download + Download (150 MB)
      @@ -91,7 +91,7 @@

      April 19, 2016

      - Download + Download (160 MB)
      @@ -108,7 +108,7 @@

      April 19, 2016

      - Download + Download (158 MB)
      diff --git a/src/pages/downloads/archive/html/6.0-M6/index.html b/src/pages/downloads/archive/html/6.0-M6/index.html index 92c17fd..585bc7b 100644 --- a/src/pages/downloads/archive/html/6.0-M6/index.html +++ b/src/pages/downloads/archive/html/6.0-M6/index.html @@ -40,7 +40,7 @@

      May 3, 2016

      - Download + Download (161 MB)
      @@ -57,7 +57,7 @@

      May 3, 2016

      - Download + Download (150 MB)
      @@ -74,7 +74,7 @@

      May 3, 2016

      - Download + Download (151 MB)
      @@ -91,7 +91,7 @@

      May 3, 2016

      - Download + Download (161 MB)
      @@ -108,7 +108,7 @@

      May 3, 2016

      - Download + Download (158 MB)
      diff --git a/src/pages/downloads/archive/html/6.0-M7/index.html b/src/pages/downloads/archive/html/6.0-M7/index.html index 7c24d2b..548e4e6 100644 --- a/src/pages/downloads/archive/html/6.0-M7/index.html +++ b/src/pages/downloads/archive/html/6.0-M7/index.html @@ -40,7 +40,7 @@

      May 23, 2016

      - Download + Download (168 MB)
      @@ -57,7 +57,7 @@

      May 23, 2016

      - Download + Download (152 MB)
      @@ -74,7 +74,7 @@

      May 23, 2016

      - Download + Download (153 MB)
      @@ -91,7 +91,7 @@

      May 23, 2016

      - Download + Download (167 MB)
      @@ -108,7 +108,7 @@

      May 23, 2016

      - Download + Download (164 MB)
      diff --git a/src/pages/downloads/archive/html/6.0-M8/index.html b/src/pages/downloads/archive/html/6.0-M8/index.html index 90533cd..c209386 100644 --- a/src/pages/downloads/archive/html/6.0-M8/index.html +++ b/src/pages/downloads/archive/html/6.0-M8/index.html @@ -40,7 +40,7 @@

      June 6, 2016

      - Download + Download (168 MB)
      @@ -57,7 +57,7 @@

      June 6, 2016

      - Download + Download (152 MB)
      @@ -74,7 +74,7 @@

      June 6, 2016

      - Download + Download (153 MB)
      @@ -91,7 +91,7 @@

      June 6, 2016

      - Download + Download (157 MB)
      @@ -108,7 +108,7 @@

      June 6, 2016

      - Download + Download (164 MB)
      diff --git a/src/pages/downloads/archive/html/6.0-M9/index.html b/src/pages/downloads/archive/html/6.0-M9/index.html index 885be2e..75d302a 100644 --- a/src/pages/downloads/archive/html/6.0-M9/index.html +++ b/src/pages/downloads/archive/html/6.0-M9/index.html @@ -40,7 +40,7 @@

      July 22, 2016

      - Download + Download (171 MB)
      @@ -57,7 +57,7 @@

      July 22, 2016

      - Download + Download (153 MB)
      @@ -74,7 +74,7 @@

      July 22, 2016

      - Download + Download (155 MB)
      @@ -91,7 +91,7 @@

      July 22, 2016

      - Download + Download (164 MB)
      @@ -108,7 +108,7 @@

      July 22, 2016

      - Download + Download (166 MB)
      diff --git a/src/pages/downloads/archive/html/6.0.0/index.html b/src/pages/downloads/archive/html/6.0.0/index.html index e8884bb..3e00ed4 100644 --- a/src/pages/downloads/archive/html/6.0.0/index.html +++ b/src/pages/downloads/archive/html/6.0.0/index.html @@ -40,7 +40,7 @@

      January 5, 2017

      - Download + Download (199 MB)
      @@ -57,7 +57,7 @@

      January 5, 2017

      - Download + Download (175 MB)
      @@ -74,7 +74,7 @@

      January 5, 2017

      - Download + Download (177 MB)
      @@ -91,7 +91,7 @@

      January 5, 2017

      - Download + Download (199 MB)
      @@ -108,7 +108,7 @@

      January 5, 2017

      - Download + Download (197 MB)
      diff --git a/src/pages/downloads/archive/html/6.0.1-M1/index.html b/src/pages/downloads/archive/html/6.0.1-M1/index.html index 02d0494..aea8ed5 100644 --- a/src/pages/downloads/archive/html/6.0.1-M1/index.html +++ b/src/pages/downloads/archive/html/6.0.1-M1/index.html @@ -40,7 +40,7 @@

      February 16, 2017

      - Download + Download (199 MB)
      @@ -57,7 +57,7 @@

      February 16, 2017

      - Download + Download (175 MB)
      @@ -74,7 +74,7 @@

      February 16, 2017

      - Download + Download (177 MB)
      @@ -91,7 +91,7 @@

      February 16, 2017

      - Download + Download (200 MB)
      @@ -108,7 +108,7 @@

      February 16, 2017

      - Download + Download (197 MB)
      diff --git a/src/pages/downloads/archive/html/6.0.1-RC1/index.html b/src/pages/downloads/archive/html/6.0.1-RC1/index.html index d4f636d..7988773 100644 --- a/src/pages/downloads/archive/html/6.0.1-RC1/index.html +++ b/src/pages/downloads/archive/html/6.0.1-RC1/index.html @@ -40,7 +40,7 @@

      March 1, 2017

      - Download + Download (199 MB)
      @@ -57,7 +57,7 @@

      March 1, 2017

      - Download + Download (175 MB)
      @@ -74,7 +74,7 @@

      March 1, 2017

      - Download + Download (176 MB)
      @@ -91,7 +91,7 @@

      March 1, 2017

      - Download + Download (199 MB)
      @@ -108,7 +108,7 @@

      March 1, 2017

      - Download + Download (197 MB)
      diff --git a/src/pages/downloads/archive/html/6.0.1/index.html b/src/pages/downloads/archive/html/6.0.1/index.html index bb2e8e1..459b06b 100644 --- a/src/pages/downloads/archive/html/6.0.1/index.html +++ b/src/pages/downloads/archive/html/6.0.1/index.html @@ -40,7 +40,7 @@

      March 21, 2017

      - Download + Download (199 MB)
      @@ -57,7 +57,7 @@

      March 21, 2017

      - Download + Download (175 MB)
      @@ -74,7 +74,7 @@

      March 21, 2017

      - Download + Download (176 MB)
      @@ -91,7 +91,7 @@

      March 21, 2017

      - Download + Download (199 MB)
      @@ -108,7 +108,7 @@

      March 21, 2017

      - Download + Download (197 MB)
      diff --git a/src/pages/downloads/archive/html/6.0.2-RC1/index.html b/src/pages/downloads/archive/html/6.0.2-RC1/index.html index 2d81080..edb9da3 100644 --- a/src/pages/downloads/archive/html/6.0.2-RC1/index.html +++ b/src/pages/downloads/archive/html/6.0.2-RC1/index.html @@ -40,7 +40,7 @@

      August 11, 2017

      - Download + Download (171 MB)
      @@ -57,7 +57,7 @@

      August 11, 2017

      - Download + Download (173 MB)
      @@ -74,7 +74,7 @@

      August 11, 2017

      - Download + Download (192 MB)
      @@ -91,7 +91,7 @@

      August 11, 2017

      - Download + Download (190 MB)
      diff --git a/src/pages/downloads/archive/html/6.0.2/index.html b/src/pages/downloads/archive/html/6.0.2/index.html index 5609cef..62bc886 100644 --- a/src/pages/downloads/archive/html/6.0.2/index.html +++ b/src/pages/downloads/archive/html/6.0.2/index.html @@ -40,7 +40,7 @@

      August 11, 2017

      - Download + Download (191 MB)
      @@ -57,7 +57,7 @@

      August 11, 2017

      - Download + Download (171 MB)
      @@ -74,7 +74,7 @@

      August 11, 2017

      - Download + Download (173 MB)
      @@ -91,7 +91,7 @@

      August 11, 2017

      - Download + Download (192 MB)
      @@ -108,7 +108,7 @@

      August 11, 2017

      - Download + Download (190 MB)
      diff --git a/src/pages/downloads/archive/html/6.0.3/index.html b/src/pages/downloads/archive/html/6.0.3/index.html index d1145e7..fa925be 100644 --- a/src/pages/downloads/archive/html/6.0.3/index.html +++ b/src/pages/downloads/archive/html/6.0.3/index.html @@ -40,7 +40,7 @@

      March 21, 2018

      - Download + Download (226 MB)
      @@ -57,7 +57,7 @@

      March 21, 2018

      - Download + Download (181 MB)
      @@ -74,7 +74,7 @@

      March 21, 2018

      - Download + Download (183 MB)
      @@ -91,7 +91,7 @@

      March 21, 2018

      - Download + Download (202 MB)
      @@ -108,7 +108,7 @@

      March 21, 2018

      - Download + Download (199 MB)
      diff --git a/src/pages/downloads/archive/html/6.0.4/index.html b/src/pages/downloads/archive/html/6.0.4/index.html index 01db6cc..0a3f90a 100644 --- a/src/pages/downloads/archive/html/6.0.4/index.html +++ b/src/pages/downloads/archive/html/6.0.4/index.html @@ -40,7 +40,7 @@

      June 14, 2018

      - Download + Download (209 MB)
      @@ -57,7 +57,7 @@

      June 14, 2018

      - Download + Download (181 MB)
      @@ -74,7 +74,7 @@

      June 14, 2018

      - Download + Download (183 MB)
      @@ -91,7 +91,7 @@

      June 14, 2018

      - Download + Download (203 MB)
      @@ -108,7 +108,7 @@

      June 14, 2018

      - Download + Download (200 MB)
      diff --git a/src/pages/downloads/archive/html/6.0/index.html b/src/pages/downloads/archive/html/6.0/index.html index 5cba302..84fd82b 100644 --- a/src/pages/downloads/archive/html/6.0/index.html +++ b/src/pages/downloads/archive/html/6.0/index.html @@ -40,7 +40,7 @@

      June 14, 2018

      - Download + Download (209 MB)
      @@ -57,7 +57,7 @@

      June 14, 2018

      - Download + Download (181 MB)
      @@ -74,7 +74,7 @@

      June 14, 2018

      - Download + Download (183 MB)
      @@ -91,7 +91,7 @@

      June 14, 2018

      - Download + Download (203 MB)
      @@ -108,7 +108,7 @@

      June 14, 2018

      - Download + Download (200 MB)
      diff --git a/src/pages/downloads/archive/html/6.0beta/index.html b/src/pages/downloads/archive/html/6.0beta/index.html index 283d0ba..1a03fa1 100644 --- a/src/pages/downloads/archive/html/6.0beta/index.html +++ b/src/pages/downloads/archive/html/6.0beta/index.html @@ -40,7 +40,7 @@

      May 3, 2016

      - Download + Download (161 MB)
      @@ -57,7 +57,7 @@

      May 3, 2016

      - Download + Download (150 MB)
      @@ -74,7 +74,7 @@

      May 3, 2016

      - Download + Download (151 MB)
      @@ -91,7 +91,7 @@

      May 3, 2016

      - Download + Download (161 MB)
      @@ -108,7 +108,7 @@

      May 3, 2016

      - Download + Download (158 MB)
      diff --git a/src/pages/downloads/archive/html/6.1.0/index.html b/src/pages/downloads/archive/html/6.1.0/index.html index a915819..690611f 100644 --- a/src/pages/downloads/archive/html/6.1.0/index.html +++ b/src/pages/downloads/archive/html/6.1.0/index.html @@ -38,7 +38,7 @@

      May 17, 2019

      - Download + Download (213 MB)
      @@ -53,7 +53,7 @@

      May 17, 2019

      - Download + Download (185 MB)
      @@ -68,7 +68,7 @@

      May 17, 2019

      - Download + Download (187 MB)
      @@ -83,7 +83,7 @@

      May 17, 2019

      - Download + Download (211 MB)
      diff --git a/src/pages/downloads/archive/html/6.1.1/index.html b/src/pages/downloads/archive/html/6.1.1/index.html index cedd74d..9a7f145 100644 --- a/src/pages/downloads/archive/html/6.1.1/index.html +++ b/src/pages/downloads/archive/html/6.1.1/index.html @@ -40,7 +40,7 @@

      September 26, 2019

      - Download + Download (215 MB)
      @@ -57,7 +57,7 @@

      September 26, 2019

      - Download + Download (186 MB)
      @@ -74,7 +74,7 @@

      September 26, 2019

      - Download + Download (189 MB)
      @@ -91,7 +91,7 @@

      September 26, 2019

      - Download + Download (213 MB)
      @@ -108,7 +108,7 @@

      September 26, 2019

      - Download + Download (210 MB)
      diff --git a/src/pages/downloads/archive/html/6.1/index.html b/src/pages/downloads/archive/html/6.1/index.html index 84377fa..3876a32 100644 --- a/src/pages/downloads/archive/html/6.1/index.html +++ b/src/pages/downloads/archive/html/6.1/index.html @@ -40,7 +40,7 @@

      September 26, 2019

      - Download + Download (215 MB)
      @@ -57,7 +57,7 @@

      September 26, 2019

      - Download + Download (186 MB)
      @@ -74,7 +74,7 @@

      September 26, 2019

      - Download + Download (189 MB)
      @@ -91,7 +91,7 @@

      September 26, 2019

      - Download + Download (213 MB)
      @@ -108,7 +108,7 @@

      September 26, 2019

      - Download + Download (210 MB)
      diff --git a/src/pages/downloads/archive/html/6.2.0/index.html b/src/pages/downloads/archive/html/6.2.0/index.html index 8f82237..f69ab23 100644 --- a/src/pages/downloads/archive/html/6.2.0/index.html +++ b/src/pages/downloads/archive/html/6.2.0/index.html @@ -38,7 +38,7 @@

      December 23, 2020

      - Download + Download (235 MB)
      @@ -53,7 +53,7 @@

      December 23, 2020

      - Download + Download (204 MB)
      @@ -68,7 +68,7 @@

      December 23, 2020

      - Download + Download (206 MB)
      @@ -83,7 +83,7 @@

      December 23, 2020

      - Download + Download (225 MB)
      @@ -98,7 +98,7 @@

      December 23, 2020

      - Download + Download (224 MB)
      diff --git a/src/pages/downloads/archive/html/6.2.1/index.html b/src/pages/downloads/archive/html/6.2.1/index.html index 249a183..25b0faf 100644 --- a/src/pages/downloads/archive/html/6.2.1/index.html +++ b/src/pages/downloads/archive/html/6.2.1/index.html @@ -40,7 +40,7 @@

      October 14, 2021

      - Download + Download (242 MB)
      @@ -57,7 +57,7 @@

      October 14, 2021

      - Download + Download (210 MB)
      @@ -74,7 +74,7 @@

      October 14, 2021

      - Download + Download (213 MB)
      @@ -91,7 +91,7 @@

      October 14, 2021

      - Download + Download (231 MB)
      @@ -108,7 +108,7 @@

      October 14, 2021

      - Download + Download (231 MB)
      diff --git a/src/pages/downloads/archive/html/6.2.2/index.html b/src/pages/downloads/archive/html/6.2.2/index.html index 54df60f..8a4aa60 100644 --- a/src/pages/downloads/archive/html/6.2.2/index.html +++ b/src/pages/downloads/archive/html/6.2.2/index.html @@ -40,7 +40,7 @@

      December 8, 2021

      - Download + Download (243 MB)
      @@ -57,7 +57,7 @@

      December 8, 2021

      - Download + Download (215 MB)
      @@ -74,7 +74,7 @@

      December 8, 2021

      - Download + Download (217 MB)
      @@ -91,7 +91,7 @@

      December 8, 2021

      - Download + Download (232 MB)
      @@ -108,7 +108,7 @@

      December 8, 2021

      - Download + Download (232 MB)
      diff --git a/src/pages/downloads/archive/html/6.2/index.html b/src/pages/downloads/archive/html/6.2/index.html index aeee5b8..4992016 100644 --- a/src/pages/downloads/archive/html/6.2/index.html +++ b/src/pages/downloads/archive/html/6.2/index.html @@ -40,7 +40,7 @@

      December 8, 2021

      - Download + Download (243 MB)
      @@ -57,7 +57,7 @@

      December 8, 2021

      - Download + Download (215 MB)
      @@ -74,7 +74,7 @@

      December 8, 2021

      - Download + Download (217 MB)
      @@ -91,7 +91,7 @@

      December 8, 2021

      - Download + Download (232 MB)
      @@ -108,7 +108,7 @@

      December 8, 2021

      - Download + Download (232 MB)
      diff --git a/src/pages/downloads/archive/html/6.3.0/index.html b/src/pages/downloads/archive/html/6.3.0/index.html index 66da175..745088d 100644 --- a/src/pages/downloads/archive/html/6.3.0/index.html +++ b/src/pages/downloads/archive/html/6.3.0/index.html @@ -38,7 +38,7 @@

      September 29, 2022

      - Download + Download (350 MB)
      @@ -53,7 +53,7 @@

      September 29, 2022

      - Download + Download (302 MB)
      @@ -68,7 +68,7 @@

      September 29, 2022

      - Download + Download (314 MB)
      @@ -83,7 +83,7 @@

      September 29, 2022

      - Download + Download (307 MB)
      @@ -98,7 +98,7 @@

      September 29, 2022

      - Download + Download (326 MB)
      diff --git a/src/pages/downloads/archive/html/6.3/index.html b/src/pages/downloads/archive/html/6.3/index.html index 910a68c..a35b2ce 100644 --- a/src/pages/downloads/archive/html/6.3/index.html +++ b/src/pages/downloads/archive/html/6.3/index.html @@ -40,7 +40,7 @@

      September 29, 2022

      - Download + Download (350 MB)
      @@ -57,7 +57,7 @@

      September 29, 2022

      - Download + Download (302 MB)
      @@ -74,7 +74,7 @@

      September 29, 2022

      - Download + Download (314 MB)
      @@ -91,7 +91,7 @@

      September 29, 2022

      - Download + Download (307 MB)
      @@ -108,7 +108,7 @@

      September 29, 2022

      - Download + Download (326 MB)
      diff --git a/src/pages/downloads/archive/html/6.4.0-beta1/index.html b/src/pages/downloads/archive/html/6.4.0-beta1/index.html index 20be541..7f7deed 100644 --- a/src/pages/downloads/archive/html/6.4.0-beta1/index.html +++ b/src/pages/downloads/archive/html/6.4.0-beta1/index.html @@ -38,7 +38,7 @@

      October 2, 2023

      - Download + Download (457 MB)
      @@ -53,7 +53,7 @@

      October 2, 2023

      - Download + Download (583 MB)
      @@ -68,7 +68,7 @@

      October 2, 2023

      - Download + Download (591 MB)
      @@ -83,7 +83,7 @@

      October 2, 2023

      - Download + Download (413 MB)
      @@ -98,7 +98,7 @@

      October 2, 2023

      - Download + Download (434 MB)
      diff --git a/src/pages/downloads/archive/html/6.4.0/index.html b/src/pages/downloads/archive/html/6.4.0/index.html index 7799019..17da3b3 100644 --- a/src/pages/downloads/archive/html/6.4.0/index.html +++ b/src/pages/downloads/archive/html/6.4.0/index.html @@ -38,7 +38,7 @@

      November 16, 2023

      - Download + Download (346 MB)
      @@ -53,7 +53,7 @@

      November 16, 2023

      - Download + Download (298 MB)
      @@ -68,7 +68,7 @@

      November 16, 2023

      - Download + Download (311 MB)
      @@ -83,7 +83,7 @@

      November 16, 2023

      - Download + Download (332 MB)
      @@ -98,7 +98,7 @@

      November 16, 2023

      - Download + Download (353 MB)
      diff --git a/src/pages/downloads/archive/html/6.4/index.html b/src/pages/downloads/archive/html/6.4/index.html index 38d5c4b..070e321 100644 --- a/src/pages/downloads/archive/html/6.4/index.html +++ b/src/pages/downloads/archive/html/6.4/index.html @@ -40,7 +40,7 @@

      November 16, 2023

      - Download + Download (346 MB)
      @@ -57,7 +57,7 @@

      November 16, 2023

      - Download + Download (298 MB)
      @@ -74,7 +74,7 @@

      November 16, 2023

      - Download + Download (311 MB)
      @@ -91,7 +91,7 @@

      November 16, 2023

      - Download + Download (332 MB)
      @@ -108,7 +108,7 @@

      November 16, 2023

      - Download + Download (353 MB)
      diff --git a/src/pages/downloads/archive/html/7.0.0-beta1/index.html b/src/pages/downloads/archive/html/7.0.0-beta1/index.html index 1c19820..1699c41 100644 --- a/src/pages/downloads/archive/html/7.0.0-beta1/index.html +++ b/src/pages/downloads/archive/html/7.0.0-beta1/index.html @@ -42,7 +42,7 @@

      May 21, 2025

      - Download + Download (488 MB)
      @@ -59,7 +59,7 @@

      May 21, 2025

      - Download + Download (463 MB)
      @@ -76,7 +76,7 @@

      May 21, 2025

      - Download + Download (277 MB)
      @@ -93,7 +93,7 @@

      May 21, 2025

      - Download + Download (335 MB)
      @@ -110,7 +110,7 @@

      May 21, 2025

      - Download + Download (314 MB)
      @@ -127,7 +127,7 @@

      May 21, 2025

      - Download + Download (347 MB)
      diff --git a/src/pages/downloads/archive/html/7.0.0-beta2/index.html b/src/pages/downloads/archive/html/7.0.0-beta2/index.html index 935b55c..d61cf25 100644 --- a/src/pages/downloads/archive/html/7.0.0-beta2/index.html +++ b/src/pages/downloads/archive/html/7.0.0-beta2/index.html @@ -42,7 +42,7 @@

      July 18, 2025

      - Download + Download (391 MB)
      @@ -59,7 +59,7 @@

      July 18, 2025

      - Download + Download (366 MB)
      @@ -76,7 +76,7 @@

      July 18, 2025

      - Download + Download (351 MB)
      @@ -93,7 +93,7 @@

      July 18, 2025

      - Download + Download (294 MB)
      @@ -110,7 +110,7 @@

      July 18, 2025

      - Download + Download (431 MB)
      @@ -127,7 +127,7 @@

      July 18, 2025

      - Download + Download (397 MB)
      diff --git a/src/pages/downloads/archive/html/7.0.0/index.html b/src/pages/downloads/archive/html/7.0.0/index.html index 3a18bcc..8e58995 100644 --- a/src/pages/downloads/archive/html/7.0.0/index.html +++ b/src/pages/downloads/archive/html/7.0.0/index.html @@ -42,7 +42,7 @@

      September 8, 2025

      - Download + Download (415 MB)
      @@ -59,7 +59,7 @@

      September 8, 2025

      - Download + Download (390 MB)
      @@ -76,7 +76,7 @@

      September 8, 2025

      - Download + Download (376 MB)
      @@ -93,7 +93,7 @@

      September 8, 2025

      - Download + Download (353 MB)
      @@ -110,7 +110,7 @@

      September 8, 2025

      - Download + Download (413 MB)
      @@ -127,7 +127,7 @@

      September 8, 2025

      - Download + Download (379 MB)
      From a949dc1c8d7326d547eb54263ac8d69d6d8946bf Mon Sep 17 00:00:00 2001 From: Omar Ibrahim Date: Fri, 14 Nov 2025 12:33:54 -0600 Subject: [PATCH 13/16] Minor: Update archive download links to R2 --- .../downloads/archive/html/1.0/index.html | 40 +++++++++---------- .../downloads/archive/html/1.0d/index.html | 40 +++++++++---------- .../downloads/archive/html/1.1/index.html | 40 +++++++++---------- .../downloads/archive/html/1.1f/index.html | 40 +++++++++---------- .../downloads/archive/html/1.2.1/index.html | 26 ++++++------ .../downloads/archive/html/1.2/index.html | 26 ++++++------ .../downloads/archive/html/1.3.1/index.html | 26 ++++++------ .../downloads/archive/html/1.3/index.html | 26 ++++++------ .../downloads/archive/html/2.0.1/index.html | 26 +++++------- .../downloads/archive/html/2.0.2/index.html | 26 +++++------- .../downloads/archive/html/2.0/index.html | 24 +++++------ .../downloads/archive/html/2.1.0/index.html | 24 +++++------ .../downloads/archive/html/2.1/index.html | 24 +++++------ .../downloads/archive/html/3.0.0/index.html | 6 +-- .../downloads/archive/html/3.0.1/index.html | 6 +-- .../downloads/archive/html/3.0.2/index.html | 6 +-- .../downloads/archive/html/3.0/index.html | 6 +-- .../downloads/archive/html/3.1.0/index.html | 6 +-- .../downloads/archive/html/3.1.1/index.html | 6 +-- .../downloads/archive/html/3.1.2/index.html | 6 +-- .../downloads/archive/html/3.1.3/index.html | 6 +-- .../downloads/archive/html/3.1.4/index.html | 6 +-- .../downloads/archive/html/3.1.5/index.html | 6 +-- .../downloads/archive/html/3.1/index.html | 6 +-- .../downloads/archive/html/4.0.0/index.html | 4 +- .../downloads/archive/html/4.0.0/windows.html | 2 +- .../downloads/archive/html/4.0.1/index.html | 4 +- .../downloads/archive/html/4.0.1/windows.html | 2 +- .../downloads/archive/html/4.0.2/index.html | 4 +- .../downloads/archive/html/4.0.2/windows.html | 2 +- .../downloads/archive/html/4.0.3/index.html | 4 +- .../downloads/archive/html/4.0.3/windows.html | 2 +- .../downloads/archive/html/4.0.4/index.html | 4 +- .../downloads/archive/html/4.0.4/windows.html | 2 +- .../downloads/archive/html/4.0.5/index.html | 4 +- .../downloads/archive/html/4.0.5/windows.html | 2 +- .../downloads/archive/html/4.0/index.html | 4 +- .../downloads/archive/html/4.0/windows.html | 2 +- .../downloads/archive/html/4.1.0/index.html | 4 +- .../downloads/archive/html/4.1.0/windows.html | 2 +- .../downloads/archive/html/4.1.1/index.html | 4 +- .../downloads/archive/html/4.1.1/windows.html | 2 +- .../downloads/archive/html/4.1.2/index.html | 4 +- .../downloads/archive/html/4.1.2/windows.html | 2 +- .../downloads/archive/html/4.1.3/index.html | 4 +- .../downloads/archive/html/4.1.3/windows.html | 2 +- .../downloads/archive/html/4.1/index.html | 4 +- .../downloads/archive/html/4.1/windows.html | 2 +- .../downloads/archive/html/5.0.0/index.html | 4 +- .../downloads/archive/html/5.0.0/windows.html | 2 +- .../downloads/archive/html/5.0.1/index.html | 4 +- .../downloads/archive/html/5.0.1/windows.html | 2 +- .../downloads/archive/html/5.0.2/index.html | 4 +- .../downloads/archive/html/5.0.2/windows.html | 2 +- .../downloads/archive/html/5.0.3/index.html | 4 +- .../downloads/archive/html/5.0.3/windows.html | 2 +- .../downloads/archive/html/5.0.4/index.html | 4 +- .../downloads/archive/html/5.0.4/windows.html | 2 +- .../downloads/archive/html/5.0.5/index.html | 4 +- .../downloads/archive/html/5.0.5/windows.html | 2 +- .../downloads/archive/html/5.0/index.html | 4 +- .../downloads/archive/html/5.0/windows.html | 2 +- .../archive/html/5.1.0-M1/index.html | 6 +-- .../archive/html/5.1.0-M1/windows.html | 4 +- .../archive/html/5.1.0-M2/index.html | 6 +-- .../archive/html/5.1.0-M2/windows.html | 4 +- .../downloads/archive/html/5.1.0/index.html | 4 +- .../downloads/archive/html/5.1.0/windows.html | 2 +- .../downloads/archive/html/5.1/index.html | 4 +- .../downloads/archive/html/5.1/windows.html | 2 +- .../downloads/archive/html/5.2-RC2/index.html | 6 +-- .../archive/html/5.2-RC2/windows.html | 2 +- .../downloads/archive/html/5.2-RC3/index.html | 6 +-- .../archive/html/5.2-RC3/windows.html | 2 +- .../archive/html/5.2.0-RC4/index.html | 8 +--- .../archive/html/5.2.0-RC4/windows.html | 4 +- .../archive/html/5.2.0-RC5/index.html | 8 +--- .../archive/html/5.2.0-RC5/windows.html | 4 +- .../downloads/archive/html/5.2.0/index.html | 4 +- .../downloads/archive/html/5.2.0/windows.html | 2 +- .../downloads/archive/html/5.2.1/index.html | 4 +- .../downloads/archive/html/5.2.1/windows.html | 2 +- .../downloads/archive/html/5.2/index.html | 4 +- .../downloads/archive/html/5.2/windows.html | 2 +- .../downloads/archive/html/5.3-RC1/index.html | 10 ++--- .../downloads/archive/html/5.3.0/index.html | 10 ++--- .../archive/html/5.3.1-RC1/index.html | 10 ++--- .../archive/html/5.3.1-RC2/index.html | 10 ++--- .../archive/html/5.3.1-RC3/index.html | 10 ++--- .../downloads/archive/html/5.3.1/index.html | 10 ++--- .../downloads/archive/html/5.3/index.html | 10 ++--- .../archive/html/6.0-BETA1/index.html | 10 ++--- .../archive/html/6.0-BETA2/index.html | 10 ++--- .../index.html | 10 ++--- .../downloads/archive/html/6.0-M1/index.html | 10 ++--- .../downloads/archive/html/6.0-M2/index.html | 10 ++--- .../downloads/archive/html/6.0-M3/index.html | 10 ++--- .../downloads/archive/html/6.0-M4/index.html | 10 ++--- .../downloads/archive/html/6.0-M5/index.html | 10 ++--- .../downloads/archive/html/6.0-M6/index.html | 10 ++--- .../downloads/archive/html/6.0-M7/index.html | 10 ++--- .../downloads/archive/html/6.0-M8/index.html | 10 ++--- .../downloads/archive/html/6.0-M9/index.html | 10 ++--- .../downloads/archive/html/6.0.0/index.html | 10 ++--- .../archive/html/6.0.1-M1/index.html | 10 ++--- .../archive/html/6.0.1-RC1/index.html | 10 ++--- .../downloads/archive/html/6.0.1/index.html | 10 ++--- .../archive/html/6.0.2-RC1/index.html | 8 ++-- .../downloads/archive/html/6.0.2/index.html | 10 ++--- .../downloads/archive/html/6.0.3/index.html | 10 ++--- .../downloads/archive/html/6.0.4/index.html | 10 ++--- .../downloads/archive/html/6.0/index.html | 10 ++--- .../downloads/archive/html/6.0beta/index.html | 10 ++--- .../downloads/archive/html/6.1.0/index.html | 8 ++-- .../downloads/archive/html/6.1.1/index.html | 10 ++--- .../downloads/archive/html/6.1/index.html | 10 ++--- .../downloads/archive/html/6.2.0/index.html | 10 ++--- .../downloads/archive/html/6.2.1/index.html | 10 ++--- .../downloads/archive/html/6.2.2/index.html | 10 ++--- .../downloads/archive/html/6.2/index.html | 10 ++--- .../downloads/archive/html/6.3.0/index.html | 10 ++--- .../downloads/archive/html/6.3/index.html | 10 ++--- .../archive/html/6.4.0-beta1/index.html | 10 ++--- .../downloads/archive/html/6.4.0/index.html | 10 ++--- .../downloads/archive/html/6.4/index.html | 10 ++--- .../archive/html/7.0.0-beta1/index.html | 12 +++--- .../archive/html/7.0.0-beta2/index.html | 12 +++--- .../downloads/archive/html/7.0.0/index.html | 12 +++--- 128 files changed, 531 insertions(+), 569 deletions(-) diff --git a/src/pages/downloads/archive/html/1.0/index.html b/src/pages/downloads/archive/html/1.0/index.html index 5d29324..c43f32f 100644 --- a/src/pages/downloads/archive/html/1.0/index.html +++ b/src/pages/downloads/archive/html/1.0/index.html @@ -282,7 +282,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.0/InstData/Windows/VM/NetLogo1.0Installer.exe\">") // document.writeln("") @@ -298,7 +298,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.0/InstData/MacOS/VM/NetLogo1.0Installer.bin\">") // document.writeln("
      ") @@ -313,7 +313,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.0/InstData/MacOSX/NetLogo1.0Installer.sit\">") // document.writeln("
      ") @@ -332,7 +332,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.0/InstData/Unix/Linux/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -349,7 +349,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.0/InstData/Unix/Others/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -363,7 +363,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.0/InstData/Java/NetLogo1_0Installer.jar\">") // document.writeln("
      ") @@ -385,11 +385,11 @@ { if (plat!="mac") { - document.writeln("") + document.writeln("") } if (plat=="mac") { - document.writeln("") + document.writeln("") } } } @@ -531,7 +531,7 @@

      NetLogo 1.0 Downloads

      - + Download (14.5M)
      @@ -541,7 +541,7 @@

      NetLogo 1.0 Downloads

      - + Download (9.1M)
      @@ -592,7 +592,7 @@

      NetLogo 1.0 Downloads

      - + Download (13.5M)
      @@ -602,7 +602,7 @@

      NetLogo 1.0 Downloads

      - Download + Download (9.2M)
      @@ -653,7 +653,7 @@

      NetLogo 1.0 Downloads

      - Download + Download (8.8M)
      @@ -700,7 +700,7 @@

      NetLogo 1.0 Downloads

      - Download + Download (41.7M)
      @@ -709,7 +709,7 @@

      NetLogo 1.0 Downloads

      - Download + Download (9.3M)
      @@ -760,7 +760,7 @@

      NetLogo 1.0 Downloads

      - Download + Download (9.3M)
      @@ -812,7 +812,7 @@

      NetLogo 1.0 Downloads

      - Download + Download (9.3M)
      @@ -864,7 +864,7 @@

      NetLogo 1.0 Downloads

      - Download + Download (9.3M)
      @@ -913,7 +913,7 @@

      NetLogo 1.0 Downloads

      - Download + Download (9.3M)
      @@ -963,7 +963,7 @@

      NetLogo 1.0 Downloads

      - Download + Download (8.1M)
      diff --git a/src/pages/downloads/archive/html/1.0d/index.html b/src/pages/downloads/archive/html/1.0d/index.html index 5ed776b..30ad2fd 100644 --- a/src/pages/downloads/archive/html/1.0d/index.html +++ b/src/pages/downloads/archive/html/1.0d/index.html @@ -282,7 +282,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.0d/InstData/Windows/VM/NetLogo1.0Installer.exe\">") // document.writeln("") @@ -298,7 +298,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.0d/InstData/MacOS/VM/NetLogo1.0Installer.bin\">") // document.writeln("
      ") @@ -313,7 +313,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.0d/InstData/MacOSX/NetLogo1.0Installer.sit\">") // document.writeln("
      ") @@ -332,7 +332,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.0d/InstData/Unix/Linux/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -349,7 +349,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.0d/InstData/Unix/Others/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -363,7 +363,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.0d/InstData/Java/NetLogo1_0Installer.jar\">") // document.writeln("
      ") @@ -385,11 +385,11 @@ { if (plat!="mac") { - document.writeln("") + document.writeln("") } if (plat=="mac") { - document.writeln("") + document.writeln("") } } } @@ -531,7 +531,7 @@

      NetLogo 1.0 Revision D Downloads

      - + Download (14.5M)
      @@ -541,7 +541,7 @@

      NetLogo 1.0 Revision D Downloads

      - + Download (9.1M)
      @@ -592,7 +592,7 @@

      NetLogo 1.0 Revision D Downloads

      - + Download (13.5M)
      @@ -602,7 +602,7 @@

      NetLogo 1.0 Revision D Downloads

      - Download + Download (9.2M)
      @@ -653,7 +653,7 @@

      NetLogo 1.0 Revision D Downloads

      - Download + Download (8.8M)
      @@ -700,7 +700,7 @@

      NetLogo 1.0 Revision D Downloads

      - Download + Download (41.7M)
      @@ -709,7 +709,7 @@

      NetLogo 1.0 Revision D Downloads

      - Download + Download (9.3M)
      @@ -760,7 +760,7 @@

      NetLogo 1.0 Revision D Downloads

      - Download + Download (9.3M)
      @@ -812,7 +812,7 @@

      NetLogo 1.0 Revision D Downloads

      - Download + Download (9.3M)
      @@ -864,7 +864,7 @@

      NetLogo 1.0 Revision D Downloads

      - Download + Download (9.3M)
      @@ -913,7 +913,7 @@

      NetLogo 1.0 Revision D Downloads

      - Download + Download (9.3M)
      @@ -963,7 +963,7 @@

      NetLogo 1.0 Revision D Downloads

      - Download + Download (8.1M)
      diff --git a/src/pages/downloads/archive/html/1.1/index.html b/src/pages/downloads/archive/html/1.1/index.html index 1406012..a0c3337 100644 --- a/src/pages/downloads/archive/html/1.1/index.html +++ b/src/pages/downloads/archive/html/1.1/index.html @@ -282,7 +282,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.1/InstData/Windows/VM/NetLogo1.0Installer.exe\">") // document.writeln("") @@ -298,7 +298,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.1/InstData/MacOS/VM/NetLogo1.0Installer.bin\">") // document.writeln("
      ") @@ -313,7 +313,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.1/InstData/MacOSX/NetLogo1.0Installer.sit\">") // document.writeln("
      ") @@ -332,7 +332,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.1/InstData/Unix/Linux/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -349,7 +349,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.1/InstData/Unix/Others/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -363,7 +363,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.1/InstData/Java/NetLogo1_0Installer.jar\">") // document.writeln("
      ") @@ -385,11 +385,11 @@ { if (plat!="mac") { - document.writeln("") + document.writeln("") } if (plat=="mac") { - document.writeln("") + document.writeln("") } } } @@ -524,7 +524,7 @@

      NetLogo 1.1 Rev F Downloads

      - + Download (13.2M)
      @@ -534,7 +534,7 @@

      NetLogo 1.1 Rev F Downloads

      - + Download (8.4M)
      @@ -585,7 +585,7 @@

      NetLogo 1.1 Rev F Downloads

      - + Download (12.2M)
      @@ -595,7 +595,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.4M)
      @@ -646,7 +646,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.3M)
      @@ -693,7 +693,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (40.9M)
      @@ -702,7 +702,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.2M)
      @@ -753,7 +753,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.2M)
      @@ -805,7 +805,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.2M)
      @@ -857,7 +857,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.2M)
      @@ -906,7 +906,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.2M)
      @@ -956,7 +956,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.1M)
      diff --git a/src/pages/downloads/archive/html/1.1f/index.html b/src/pages/downloads/archive/html/1.1f/index.html index b33ce91..63fe1fd 100644 --- a/src/pages/downloads/archive/html/1.1f/index.html +++ b/src/pages/downloads/archive/html/1.1f/index.html @@ -282,7 +282,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.1f/InstData/Windows/VM/NetLogo1.0Installer.exe\">") // document.writeln("") @@ -298,7 +298,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.1f/InstData/MacOS/VM/NetLogo1.0Installer.bin\">") // document.writeln("
      ") @@ -313,7 +313,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.1f/InstData/MacOSX/NetLogo1.0Installer.sit\">") // document.writeln("
      ") @@ -332,7 +332,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.1f/InstData/Unix/Linux/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -349,7 +349,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.1f/InstData/Unix/Others/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -363,7 +363,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.1f/InstData/Java/NetLogo1_0Installer.jar\">") // document.writeln("
      ") @@ -385,11 +385,11 @@ { if (plat!="mac") { - document.writeln("") + document.writeln("") } if (plat=="mac") { - document.writeln("") + document.writeln("") } } } @@ -524,7 +524,7 @@

      NetLogo 1.1 Rev F Downloads

      - + Download (13.2M)
      @@ -534,7 +534,7 @@

      NetLogo 1.1 Rev F Downloads

      - + Download (8.4M)
      @@ -585,7 +585,7 @@

      NetLogo 1.1 Rev F Downloads

      - + Download (12.2M)
      @@ -595,7 +595,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.4M)
      @@ -646,7 +646,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.3M)
      @@ -693,7 +693,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (40.9M)
      @@ -702,7 +702,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.2M)
      @@ -753,7 +753,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.2M)
      @@ -805,7 +805,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.2M)
      @@ -857,7 +857,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.2M)
      @@ -906,7 +906,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.2M)
      @@ -956,7 +956,7 @@

      NetLogo 1.1 Rev F Downloads

      - Download + Download (8.1M)
      diff --git a/src/pages/downloads/archive/html/1.2.1/index.html b/src/pages/downloads/archive/html/1.2.1/index.html index 1f647d5..81f7e79 100644 --- a/src/pages/downloads/archive/html/1.2.1/index.html +++ b/src/pages/downloads/archive/html/1.2.1/index.html @@ -282,7 +282,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.2.1/InstData/Windows/VM/NetLogo1.0Installer.exe\">") // document.writeln("") @@ -298,7 +298,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.2.1/InstData/MacOS/VM/NetLogo1.0Installer.bin\">") // document.writeln("
      ") @@ -313,7 +313,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.2.1/InstData/MacOSX/NetLogo1.0Installer.sit\">") // document.writeln("
      ") @@ -332,7 +332,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.2.1/InstData/Unix/Linux/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -349,7 +349,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.2.1/InstData/Unix/Others/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -363,7 +363,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.2.1/InstData/Java/NetLogo1_0Installer.jar\">") // document.writeln("
      ") @@ -385,11 +385,11 @@ { if (plat!="mac") { - document.writeln("") + document.writeln("") } if (plat=="mac") { - document.writeln("") + document.writeln("") } } } @@ -531,14 +531,14 @@

      NetLogo 1.2.1 Downloads

      - Download (14.9 MB)
      + Download (14.9 MB)
      - Download (10.0 MB)
      + Download (10.0 MB) @@ -589,7 +589,7 @@

      NetLogo 1.2.1 Downloads

      - Download (9.4 MB)
      + Download (9.4 MB) @@ -635,14 +635,14 @@

      NetLogo 1.2.1 Downloads

      - Download (13.9 MB)
      + Download (13.9 MB)
      - Download (10.1 MB)
      + Download (10.1 MB) diff --git a/src/pages/downloads/archive/html/1.2/index.html b/src/pages/downloads/archive/html/1.2/index.html index 67cf84e..a6d9324 100644 --- a/src/pages/downloads/archive/html/1.2/index.html +++ b/src/pages/downloads/archive/html/1.2/index.html @@ -282,7 +282,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.2/InstData/Windows/VM/NetLogo1.0Installer.exe\">") // document.writeln("") @@ -298,7 +298,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.2/InstData/MacOS/VM/NetLogo1.0Installer.bin\">") // document.writeln("
      ") @@ -313,7 +313,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.2/InstData/MacOSX/NetLogo1.0Installer.sit\">") // document.writeln("
      ") @@ -332,7 +332,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.2/InstData/Unix/Linux/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -349,7 +349,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.2/InstData/Unix/Others/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -363,7 +363,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.2/InstData/Java/NetLogo1_0Installer.jar\">") // document.writeln("
      ") @@ -385,11 +385,11 @@ { if (plat!="mac") { - document.writeln("") + document.writeln("") } if (plat=="mac") { - document.writeln("") + document.writeln("") } } } @@ -531,14 +531,14 @@

      NetLogo 1.2.1 Downloads

      - Download (14.9 MB)
      + Download (14.9 MB)
      - Download (10.0 MB)
      + Download (10.0 MB) @@ -589,7 +589,7 @@

      NetLogo 1.2.1 Downloads

      - Download (9.4 MB)
      + Download (9.4 MB) @@ -635,14 +635,14 @@

      NetLogo 1.2.1 Downloads

      - Download (13.9 MB)
      + Download (13.9 MB)
      - Download (10.1 MB)
      + Download (10.1 MB) diff --git a/src/pages/downloads/archive/html/1.3.1/index.html b/src/pages/downloads/archive/html/1.3.1/index.html index 8b95a54..ce18581 100644 --- a/src/pages/downloads/archive/html/1.3.1/index.html +++ b/src/pages/downloads/archive/html/1.3.1/index.html @@ -282,7 +282,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.3.1/InstData/Windows/VM/NetLogo1.0Installer.exe\">") // document.writeln("") @@ -298,7 +298,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.3.1/InstData/MacOS/VM/NetLogo1.0Installer.bin\">") // document.writeln("
      ") @@ -313,7 +313,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.3.1/InstData/MacOSX/NetLogo1.0Installer.sit\">") // document.writeln("
      ") @@ -332,7 +332,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.3.1/InstData/Unix/Linux/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -349,7 +349,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.3.1/InstData/Unix/Others/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -363,7 +363,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.3.1/InstData/Java/NetLogo1_0Installer.jar\">") // document.writeln("
      ") @@ -385,11 +385,11 @@ { if (plat!="mac") { - document.writeln("") + document.writeln("") } if (plat=="mac") { - document.writeln("") + document.writeln("") } } } @@ -531,14 +531,14 @@

      NetLogo 1.3.1 Downloads

      - Download (15.3 MB)
      + Download (15.3 MB)
      - Download (10.4 MB)
      + Download (10.4 MB) @@ -589,7 +589,7 @@

      NetLogo 1.3.1 Downloads

      - Download (9.7 MB)
      + Download (9.7 MB) @@ -635,14 +635,14 @@

      NetLogo 1.3.1 Downloads

      - Download (14.3 MB)
      + Download (14.3 MB)
      - Download (10.5 MB)
      + Download (10.5 MB) diff --git a/src/pages/downloads/archive/html/1.3/index.html b/src/pages/downloads/archive/html/1.3/index.html index a617cda..be01252 100644 --- a/src/pages/downloads/archive/html/1.3/index.html +++ b/src/pages/downloads/archive/html/1.3/index.html @@ -282,7 +282,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.3/InstData/Windows/VM/NetLogo1.0Installer.exe\">") // document.writeln("") @@ -298,7 +298,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.3/InstData/MacOS/VM/NetLogo1.0Installer.bin\">") // document.writeln("
      ") @@ -313,7 +313,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.3/InstData/MacOSX/NetLogo1.0Installer.sit\">") // document.writeln("
      ") @@ -332,7 +332,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.3/InstData/Unix/Linux/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -349,7 +349,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.3/InstData/Unix/Others/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -363,7 +363,7 @@ document.writeln("Recommended installer for your platform...
      ") document.write("") + document.write("https://downloads.netlogo.org/1.3/InstData/Java/NetLogo1_0Installer.jar\">") // document.writeln("
      ") @@ -385,11 +385,11 @@ { if (plat!="mac") { - document.writeln("") + document.writeln("") } if (plat=="mac") { - document.writeln("") + document.writeln("") } } } @@ -531,14 +531,14 @@

      NetLogo 1.3 Downloads

      - Download (15.3 MB)
      + Download (15.3 MB)
      - Download (10.4 MB)
      + Download (10.4 MB) @@ -589,7 +589,7 @@

      NetLogo 1.3 Downloads

      - Download (9.7 MB)
      + Download (9.7 MB) @@ -635,14 +635,14 @@

      NetLogo 1.3 Downloads

      - Download (14.3 MB)
      + Download (14.3 MB)
      - Download (10.5 MB)
      + Download (10.5 MB) diff --git a/src/pages/downloads/archive/html/2.0.1/index.html b/src/pages/downloads/archive/html/2.0.1/index.html index 0e20c97..5113ac8 100644 --- a/src/pages/downloads/archive/html/2.0.1/index.html +++ b/src/pages/downloads/archive/html/2.0.1/index.html @@ -288,7 +288,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://downloads.netlogo.org/2.0.1/InstData/Windows/VM/NetLogo1.0Installer.exe\">") // document.writeln("") @@ -304,7 +304,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://downloads.netlogo.org/2.0.1/InstData/MacOS/VM/NetLogo1.0Installer.bin\">") // document.writeln("
      ") @@ -319,7 +319,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://downloads.netlogo.org/2.0.1/InstData/MacOSX/NetLogo1.0Installer.sit\">") // document.writeln("
      ") @@ -338,7 +338,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://downloads.netlogo.org/2.0.1/InstData/Unix/Linux/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -355,7 +355,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://downloads.netlogo.org/2.0.1/InstData/Unix/Others/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -369,7 +369,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://downloads.netlogo.org/2.0.1/InstData/Java/NetLogo1_0Installer.jar\">") // document.writeln("
      ") @@ -391,11 +391,11 @@ { if (plat!="mac") { - document.writeln("") + document.writeln("") } if (plat=="mac") { - document.writeln("") + document.writeln("") } } } @@ -535,8 +535,7 @@

      NetLogo 2.0.1 Downloads

      - Download (21.6 MB)
      @@ -544,8 +543,7 @@

      NetLogo 2.0.1 Downloads

      - Download (9.3 MB)
      @@ -594,9 +592,7 @@

      NetLogo 2.0.1 Downloads

      - Download (8.8 MB) + Download (8.8 MB)
      diff --git a/src/pages/downloads/archive/html/2.0.2/index.html b/src/pages/downloads/archive/html/2.0.2/index.html index ca26020..ab69433 100644 --- a/src/pages/downloads/archive/html/2.0.2/index.html +++ b/src/pages/downloads/archive/html/2.0.2/index.html @@ -288,7 +288,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://downloads.netlogo.org/2.0.2/InstData/Windows/VM/NetLogo1.0Installer.exe\">") // document.writeln("") @@ -304,7 +304,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://downloads.netlogo.org/2.0.2/InstData/MacOS/VM/NetLogo1.0Installer.bin\">") // document.writeln("
      ") @@ -319,7 +319,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://downloads.netlogo.org/2.0.2/InstData/MacOSX/NetLogo1.0Installer.sit\">") // document.writeln("
      ") @@ -338,7 +338,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://downloads.netlogo.org/2.0.2/InstData/Unix/Linux/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -355,7 +355,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://downloads.netlogo.org/2.0.2/InstData/Unix/Others/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -369,7 +369,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://downloads.netlogo.org/2.0.2/InstData/Java/NetLogo1_0Installer.jar\">") // document.writeln("
      ") @@ -391,11 +391,11 @@ { if (plat!="mac") { - document.writeln("") + document.writeln("") } if (plat=="mac") { - document.writeln("") + document.writeln("") } } } @@ -535,8 +535,7 @@

      NetLogo 2.0.2 Downloads

      - Download (22.1 MB)
      @@ -544,8 +543,7 @@

      NetLogo 2.0.2 Downloads

      - Download (9.6 MB)
      @@ -594,9 +592,7 @@

      NetLogo 2.0.2 Downloads

      - Download (9.1 MB) + Download (9.1 MB)
      diff --git a/src/pages/downloads/archive/html/2.0/index.html b/src/pages/downloads/archive/html/2.0/index.html index 74a919a..934b5f3 100644 --- a/src/pages/downloads/archive/html/2.0/index.html +++ b/src/pages/downloads/archive/html/2.0/index.html @@ -288,7 +288,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://downloads.netlogo.org/2.0/InstData/Windows/VM/NetLogo1.0Installer.exe\">") // document.writeln("") @@ -304,7 +304,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://downloads.netlogo.org/2.0/InstData/MacOS/VM/NetLogo1.0Installer.bin\">") // document.writeln("
      ") @@ -319,7 +319,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://downloads.netlogo.org/2.0/InstData/MacOSX/NetLogo1.0Installer.sit\">") // document.writeln("
      ") @@ -338,7 +338,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://downloads.netlogo.org/2.0/InstData/Unix/Linux/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -355,7 +355,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://downloads.netlogo.org/2.0/InstData/Unix/Others/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -369,7 +369,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://downloads.netlogo.org/2.0/InstData/Java/NetLogo1_0Installer.jar\">") // document.writeln("
      ") @@ -391,11 +391,11 @@ { if (plat!="mac") { - document.writeln("") + document.writeln("") } if (plat=="mac") { - document.writeln("") + document.writeln("") } } } @@ -535,8 +535,7 @@

      NetLogo 2.0.2 Downloads

      - Download (22.1 MB)
      @@ -544,8 +543,7 @@

      NetLogo 2.0.2 Downloads

      - Download (9.6 MB)
      @@ -594,7 +592,7 @@

      NetLogo 2.0.2 Downloads

      - Download (9.1 MB) + Download (9.1 MB)
      diff --git a/src/pages/downloads/archive/html/2.1.0/index.html b/src/pages/downloads/archive/html/2.1.0/index.html index 6a3d975..b2a215b 100644 --- a/src/pages/downloads/archive/html/2.1.0/index.html +++ b/src/pages/downloads/archive/html/2.1.0/index.html @@ -288,7 +288,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://downloads.netlogo.org/2.1.0/InstData/Windows/VM/NetLogo1.0Installer.exe\">") // document.writeln("") @@ -304,7 +304,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://downloads.netlogo.org/2.1.0/InstData/MacOS/VM/NetLogo1.0Installer.bin\">") // document.writeln("
      ") @@ -319,7 +319,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://downloads.netlogo.org/2.1.0/InstData/MacOSX/NetLogo1.0Installer.sit\">") // document.writeln("
      ") @@ -338,7 +338,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://downloads.netlogo.org/2.1.0/InstData/Unix/Linux/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -355,7 +355,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://downloads.netlogo.org/2.1.0/InstData/Unix/Others/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -369,7 +369,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://downloads.netlogo.org/2.1.0/InstData/Java/NetLogo1_0Installer.jar\">") // document.writeln("
      ") @@ -391,11 +391,11 @@ { if (plat!="mac") { - document.writeln("") + document.writeln("") } if (plat=="mac") { - document.writeln("") + document.writeln("") } } } @@ -541,8 +541,7 @@

      NetLogo 2.1 Downloads

      - Download (24.4 MB)
      @@ -550,8 +549,7 @@

      NetLogo 2.1 Downloads

      - Download (12.0 MB)
      @@ -600,7 +598,7 @@

      NetLogo 2.1 Downloads

      - Download (11.7 MB) + Download (11.7 MB)
      diff --git a/src/pages/downloads/archive/html/2.1/index.html b/src/pages/downloads/archive/html/2.1/index.html index 7dd9e5a..4762e74 100644 --- a/src/pages/downloads/archive/html/2.1/index.html +++ b/src/pages/downloads/archive/html/2.1/index.html @@ -288,7 +288,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://downloads.netlogo.org/2.1/InstData/Windows/VM/NetLogo1.0Installer.exe\">") // document.writeln("") @@ -304,7 +304,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://downloads.netlogo.org/2.1/InstData/MacOS/VM/NetLogo1.0Installer.bin\">") // document.writeln("
      ") @@ -319,7 +319,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://downloads.netlogo.org/2.1/InstData/MacOSX/NetLogo1.0Installer.sit\">") // document.writeln("
      ") @@ -338,7 +338,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://downloads.netlogo.org/2.1/InstData/Unix/Linux/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -355,7 +355,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://downloads.netlogo.org/2.1/InstData/Unix/Others/NetLogo1_0Installer.bin\">") // document.writeln("
      ") @@ -369,7 +369,7 @@ document.writeln("Recommended installer for your platform...<\/b>
      ") document.write("") + document.write("https://downloads.netlogo.org/2.1/InstData/Java/NetLogo1_0Installer.jar\">") // document.writeln("
      ") @@ -391,11 +391,11 @@ { if (plat!="mac") { - document.writeln("") + document.writeln("") } if (plat=="mac") { - document.writeln("") + document.writeln("") } } } @@ -541,8 +541,7 @@

      NetLogo 2.1 Downloads

      - Download (24.4 MB)
      @@ -550,8 +549,7 @@

      NetLogo 2.1 Downloads

      - Download (12.0 MB)
      @@ -600,7 +598,7 @@

      NetLogo 2.1 Downloads

      - Download (11.7 MB) + Download (11.7 MB)
      diff --git a/src/pages/downloads/archive/html/3.0.0/index.html b/src/pages/downloads/archive/html/3.0.0/index.html index 39a0c4e..e9a9a6f 100644 --- a/src/pages/downloads/archive/html/3.0.0/index.html +++ b/src/pages/downloads/archive/html/3.0.0/index.html @@ -55,14 +55,14 @@

      NetLogo 3.0 Downloads

      Windows
      - + Download (43M)
      - + Download (30M)
      @@ -80,7 +80,7 @@

      NetLogo 3.0 Downloads

      - + Download (30M)
      diff --git a/src/pages/downloads/archive/html/3.0.1/index.html b/src/pages/downloads/archive/html/3.0.1/index.html index ab5b4ce..c121c79 100644 --- a/src/pages/downloads/archive/html/3.0.1/index.html +++ b/src/pages/downloads/archive/html/3.0.1/index.html @@ -55,14 +55,14 @@

      NetLogo 3.0.1 Downloads

      Windows
      - + Download (35M)
      - + Download (21M)
      @@ -80,7 +80,7 @@

      NetLogo 3.0.1 Downloads

      - + Download (21M)
      diff --git a/src/pages/downloads/archive/html/3.0.2/index.html b/src/pages/downloads/archive/html/3.0.2/index.html index 59ec90a..dff4c24 100644 --- a/src/pages/downloads/archive/html/3.0.2/index.html +++ b/src/pages/downloads/archive/html/3.0.2/index.html @@ -55,14 +55,14 @@

      NetLogo 3.0.2 Downloads

      Windows
      - + Download (35M)
      - + Download (21M)
      @@ -80,7 +80,7 @@

      NetLogo 3.0.2 Downloads

      - + Download (21M)
      diff --git a/src/pages/downloads/archive/html/3.0/index.html b/src/pages/downloads/archive/html/3.0/index.html index 977fe70..ea1cc08 100644 --- a/src/pages/downloads/archive/html/3.0/index.html +++ b/src/pages/downloads/archive/html/3.0/index.html @@ -55,14 +55,14 @@

      NetLogo 3.0.2 Downloads

      Windows
      - + Download (35M)
      - + Download (21M)
      @@ -80,7 +80,7 @@

      NetLogo 3.0.2 Downloads

      - + Download (21M)
      diff --git a/src/pages/downloads/archive/html/3.1.0/index.html b/src/pages/downloads/archive/html/3.1.0/index.html index 1ac78a7..fbe9e50 100644 --- a/src/pages/downloads/archive/html/3.1.0/index.html +++ b/src/pages/downloads/archive/html/3.1.0/index.html @@ -56,14 +56,14 @@

      April 14, 2006

      Windows
      - + Download (48M)
      - + Download (25M)
      @@ -81,7 +81,7 @@

      April 14, 2006

      - + Download (25M)
      diff --git a/src/pages/downloads/archive/html/3.1.1/index.html b/src/pages/downloads/archive/html/3.1.1/index.html index 83abec5..17f8bc5 100644 --- a/src/pages/downloads/archive/html/3.1.1/index.html +++ b/src/pages/downloads/archive/html/3.1.1/index.html @@ -56,14 +56,14 @@

      June 16, 2006

      Windows
      - + Download (48M)
      - + Download (25M)
      @@ -81,7 +81,7 @@

      June 16, 2006

      - + Download (25M)
      diff --git a/src/pages/downloads/archive/html/3.1.2/index.html b/src/pages/downloads/archive/html/3.1.2/index.html index fce8951..4a3fed0 100644 --- a/src/pages/downloads/archive/html/3.1.2/index.html +++ b/src/pages/downloads/archive/html/3.1.2/index.html @@ -56,14 +56,14 @@

      August 9, 2006

      Windows
      - + Download (48M)
      - + Download (25M)
      @@ -81,7 +81,7 @@

      August 9, 2006

      - + Download (25M)
      diff --git a/src/pages/downloads/archive/html/3.1.3/index.html b/src/pages/downloads/archive/html/3.1.3/index.html index 0bb9b1b..0b7aa6d 100644 --- a/src/pages/downloads/archive/html/3.1.3/index.html +++ b/src/pages/downloads/archive/html/3.1.3/index.html @@ -56,14 +56,14 @@

      September 20, 2006

      Windows
      - + Download (48M)
      - + Download (25M)
      @@ -81,7 +81,7 @@

      September 20, 2006

      - + Download (25M)
      diff --git a/src/pages/downloads/archive/html/3.1.4/index.html b/src/pages/downloads/archive/html/3.1.4/index.html index 51a7bed..a8795a0 100644 --- a/src/pages/downloads/archive/html/3.1.4/index.html +++ b/src/pages/downloads/archive/html/3.1.4/index.html @@ -56,14 +56,14 @@

      February 16, 2007

      Windows
      - + Download (51M)
      - + Download (26M)
      @@ -81,7 +81,7 @@

      February 16, 2007

      - + Download (25M)
      diff --git a/src/pages/downloads/archive/html/3.1.5/index.html b/src/pages/downloads/archive/html/3.1.5/index.html index 98d5180..3eb4009 100644 --- a/src/pages/downloads/archive/html/3.1.5/index.html +++ b/src/pages/downloads/archive/html/3.1.5/index.html @@ -56,14 +56,14 @@

      December 5, 2007

      Windows
      - + Download (51M)
      - + Download (26M)
      @@ -81,7 +81,7 @@

      December 5, 2007

      - + Download (25M)
      diff --git a/src/pages/downloads/archive/html/3.1/index.html b/src/pages/downloads/archive/html/3.1/index.html index 1763140..a869fce 100644 --- a/src/pages/downloads/archive/html/3.1/index.html +++ b/src/pages/downloads/archive/html/3.1/index.html @@ -56,14 +56,14 @@

      December 5, 2007

      Windows
      - + Download (51M)
      - + Download (26M)
      @@ -81,7 +81,7 @@

      December 5, 2007

      - + Download (25M)
      diff --git a/src/pages/downloads/archive/html/4.0.0/index.html b/src/pages/downloads/archive/html/4.0.0/index.html index 55d63ea..c22de51 100644 --- a/src/pages/downloads/archive/html/4.0.0/index.html +++ b/src/pages/downloads/archive/html/4.0.0/index.html @@ -37,7 +37,7 @@

      September 25, 2007

      - + Download (58M)
      @@ -54,7 +54,7 @@

      September 25, 2007

      - + Download (31M)
      diff --git a/src/pages/downloads/archive/html/4.0.0/windows.html b/src/pages/downloads/archive/html/4.0.0/windows.html index 1ae48be..727ca40 100644 --- a/src/pages/downloads/archive/html/4.0.0/windows.html +++ b/src/pages/downloads/archive/html/4.0.0/windows.html @@ -128,7 +128,7 @@

      September 25, 2007

      - Download + Download (32M)
      diff --git a/src/pages/downloads/archive/html/4.0.1/index.html b/src/pages/downloads/archive/html/4.0.1/index.html index 6df9732..846f743 100644 --- a/src/pages/downloads/archive/html/4.0.1/index.html +++ b/src/pages/downloads/archive/html/4.0.1/index.html @@ -37,7 +37,7 @@

      October 31, 2007

      - + Download (58M)
      @@ -54,7 +54,7 @@

      October 31, 2007

      - + Download (31M)
      diff --git a/src/pages/downloads/archive/html/4.0.1/windows.html b/src/pages/downloads/archive/html/4.0.1/windows.html index 6f24162..7751b45 100644 --- a/src/pages/downloads/archive/html/4.0.1/windows.html +++ b/src/pages/downloads/archive/html/4.0.1/windows.html @@ -128,7 +128,7 @@

      October 31, 2007

      - Download + Download (32M)
      diff --git a/src/pages/downloads/archive/html/4.0.2/index.html b/src/pages/downloads/archive/html/4.0.2/index.html index 3b0c9b5..4cf05b8 100644 --- a/src/pages/downloads/archive/html/4.0.2/index.html +++ b/src/pages/downloads/archive/html/4.0.2/index.html @@ -37,7 +37,7 @@

      December 5, 2007

      - + Download (58M)
      @@ -54,7 +54,7 @@

      December 5, 2007

      - + Download (31M)
      diff --git a/src/pages/downloads/archive/html/4.0.2/windows.html b/src/pages/downloads/archive/html/4.0.2/windows.html index 26f2641..511aa05 100644 --- a/src/pages/downloads/archive/html/4.0.2/windows.html +++ b/src/pages/downloads/archive/html/4.0.2/windows.html @@ -128,7 +128,7 @@

      December 5, 2007

      - Download + Download (32M)
      diff --git a/src/pages/downloads/archive/html/4.0.3/index.html b/src/pages/downloads/archive/html/4.0.3/index.html index 941cb39..5cf89c6 100644 --- a/src/pages/downloads/archive/html/4.0.3/index.html +++ b/src/pages/downloads/archive/html/4.0.3/index.html @@ -37,7 +37,7 @@

      August 6, 2008

      - + Download (63M)
      @@ -54,7 +54,7 @@

      August 6, 2008

      - + Download (36M)
      diff --git a/src/pages/downloads/archive/html/4.0.3/windows.html b/src/pages/downloads/archive/html/4.0.3/windows.html index 917db52..6316cca 100644 --- a/src/pages/downloads/archive/html/4.0.3/windows.html +++ b/src/pages/downloads/archive/html/4.0.3/windows.html @@ -128,7 +128,7 @@

      August 6, 2008

      - Download + Download (37M)
      diff --git a/src/pages/downloads/archive/html/4.0.4/index.html b/src/pages/downloads/archive/html/4.0.4/index.html index 6cd7595..7de5a44 100644 --- a/src/pages/downloads/archive/html/4.0.4/index.html +++ b/src/pages/downloads/archive/html/4.0.4/index.html @@ -37,7 +37,7 @@

      November 24, 2008

      - + Download (63M)
      @@ -54,7 +54,7 @@

      November 24, 2008

      - + Download (36M)
      diff --git a/src/pages/downloads/archive/html/4.0.4/windows.html b/src/pages/downloads/archive/html/4.0.4/windows.html index f6b9019..74cef75 100644 --- a/src/pages/downloads/archive/html/4.0.4/windows.html +++ b/src/pages/downloads/archive/html/4.0.4/windows.html @@ -128,7 +128,7 @@

      November 24, 2008

      - Download + Download (37M)
      diff --git a/src/pages/downloads/archive/html/4.0.5/index.html b/src/pages/downloads/archive/html/4.0.5/index.html index 7310640..22c92e7 100644 --- a/src/pages/downloads/archive/html/4.0.5/index.html +++ b/src/pages/downloads/archive/html/4.0.5/index.html @@ -37,7 +37,7 @@

      December 14, 2009

      - + Download (63M)
      @@ -54,7 +54,7 @@

      December 14, 2009

      - + Download (37M)
      diff --git a/src/pages/downloads/archive/html/4.0.5/windows.html b/src/pages/downloads/archive/html/4.0.5/windows.html index d14cf83..6637590 100644 --- a/src/pages/downloads/archive/html/4.0.5/windows.html +++ b/src/pages/downloads/archive/html/4.0.5/windows.html @@ -128,7 +128,7 @@

      December 14, 2009

      - Download + Download (37M)
      diff --git a/src/pages/downloads/archive/html/4.0/index.html b/src/pages/downloads/archive/html/4.0/index.html index d9b0479..e99a9d7 100644 --- a/src/pages/downloads/archive/html/4.0/index.html +++ b/src/pages/downloads/archive/html/4.0/index.html @@ -37,7 +37,7 @@

      December 14, 2009

      - + Download (63M)
      @@ -54,7 +54,7 @@

      December 14, 2009

      - + Download (37M)
      diff --git a/src/pages/downloads/archive/html/4.0/windows.html b/src/pages/downloads/archive/html/4.0/windows.html index 00df343..9965ea7 100644 --- a/src/pages/downloads/archive/html/4.0/windows.html +++ b/src/pages/downloads/archive/html/4.0/windows.html @@ -128,7 +128,7 @@

      December 14, 2009

      - Download + Download (37M)
      diff --git a/src/pages/downloads/archive/html/4.1.0/index.html b/src/pages/downloads/archive/html/4.1.0/index.html index 1d36897..b5ef258 100644 --- a/src/pages/downloads/archive/html/4.1.0/index.html +++ b/src/pages/downloads/archive/html/4.1.0/index.html @@ -41,7 +41,7 @@

      December 20, 2009

      - + Download (62M)
      @@ -58,7 +58,7 @@

      December 20, 2009

      - + Download (43M)
      diff --git a/src/pages/downloads/archive/html/4.1.0/windows.html b/src/pages/downloads/archive/html/4.1.0/windows.html index be66e3b..4196a05 100644 --- a/src/pages/downloads/archive/html/4.1.0/windows.html +++ b/src/pages/downloads/archive/html/4.1.0/windows.html @@ -89,7 +89,7 @@

      December 20, 2009

      - Download + Download (43M)
      diff --git a/src/pages/downloads/archive/html/4.1.1/index.html b/src/pages/downloads/archive/html/4.1.1/index.html index b1a83b7..0d9b74a 100644 --- a/src/pages/downloads/archive/html/4.1.1/index.html +++ b/src/pages/downloads/archive/html/4.1.1/index.html @@ -38,7 +38,7 @@

      August 4, 2010

      - + Download (62M)
      @@ -55,7 +55,7 @@

      August 4, 2010

      - + Download (43M)
      diff --git a/src/pages/downloads/archive/html/4.1.1/windows.html b/src/pages/downloads/archive/html/4.1.1/windows.html index 947e344..dd43f85 100644 --- a/src/pages/downloads/archive/html/4.1.1/windows.html +++ b/src/pages/downloads/archive/html/4.1.1/windows.html @@ -89,7 +89,7 @@

      August 4, 2010

      - Download + Download (43M)
      diff --git a/src/pages/downloads/archive/html/4.1.2/index.html b/src/pages/downloads/archive/html/4.1.2/index.html index 5fb9049..aacd4f8 100644 --- a/src/pages/downloads/archive/html/4.1.2/index.html +++ b/src/pages/downloads/archive/html/4.1.2/index.html @@ -38,7 +38,7 @@

      December 6, 2010

      - + Download (63M)
      @@ -55,7 +55,7 @@

      December 6, 2010

      - + Download (43M)
      diff --git a/src/pages/downloads/archive/html/4.1.2/windows.html b/src/pages/downloads/archive/html/4.1.2/windows.html index 60bd656..7cecbf3 100644 --- a/src/pages/downloads/archive/html/4.1.2/windows.html +++ b/src/pages/downloads/archive/html/4.1.2/windows.html @@ -89,7 +89,7 @@

      December 6, 2010

      - Download + Download (44M)
      diff --git a/src/pages/downloads/archive/html/4.1.3/index.html b/src/pages/downloads/archive/html/4.1.3/index.html index 2b64b37..0354252 100644 --- a/src/pages/downloads/archive/html/4.1.3/index.html +++ b/src/pages/downloads/archive/html/4.1.3/index.html @@ -39,7 +39,7 @@

      April 3, 2011

      - + Download (43M)
      @@ -56,7 +56,7 @@

      April 3, 2011

      - + Download (63M)
      diff --git a/src/pages/downloads/archive/html/4.1.3/windows.html b/src/pages/downloads/archive/html/4.1.3/windows.html index 41e6db2..015a53a 100644 --- a/src/pages/downloads/archive/html/4.1.3/windows.html +++ b/src/pages/downloads/archive/html/4.1.3/windows.html @@ -89,7 +89,7 @@

      April 3, 2011

      - Download + Download (44M)
      diff --git a/src/pages/downloads/archive/html/4.1/index.html b/src/pages/downloads/archive/html/4.1/index.html index 981e686..79e6047 100644 --- a/src/pages/downloads/archive/html/4.1/index.html +++ b/src/pages/downloads/archive/html/4.1/index.html @@ -39,7 +39,7 @@

      April 3, 2011

      - + Download (43M)
      @@ -56,7 +56,7 @@

      April 3, 2011

      - + Download (63M)
      diff --git a/src/pages/downloads/archive/html/4.1/windows.html b/src/pages/downloads/archive/html/4.1/windows.html index ad1f02f..b170e5d 100644 --- a/src/pages/downloads/archive/html/4.1/windows.html +++ b/src/pages/downloads/archive/html/4.1/windows.html @@ -89,7 +89,7 @@

      April 3, 2011

      - Download + Download (44M)
      diff --git a/src/pages/downloads/archive/html/5.0.0/index.html b/src/pages/downloads/archive/html/5.0.0/index.html index 12ed54e..c31aefa 100644 --- a/src/pages/downloads/archive/html/5.0.0/index.html +++ b/src/pages/downloads/archive/html/5.0.0/index.html @@ -40,7 +40,7 @@

      February 16, 2012

      - Download + Download (62M)
      @@ -57,7 +57,7 @@

      February 16, 2012

      - Download + Download (82M)
      diff --git a/src/pages/downloads/archive/html/5.0.0/windows.html b/src/pages/downloads/archive/html/5.0.0/windows.html index 52abba0..c00b744 100644 --- a/src/pages/downloads/archive/html/5.0.0/windows.html +++ b/src/pages/downloads/archive/html/5.0.0/windows.html @@ -89,7 +89,7 @@

      February 16, 2012

      - Download + Download (62M)
      diff --git a/src/pages/downloads/archive/html/5.0.1/index.html b/src/pages/downloads/archive/html/5.0.1/index.html index d00cb17..a26a6d6 100644 --- a/src/pages/downloads/archive/html/5.0.1/index.html +++ b/src/pages/downloads/archive/html/5.0.1/index.html @@ -40,7 +40,7 @@

      April 12, 2012

      - Download + Download (63M)
      @@ -57,7 +57,7 @@

      April 12, 2012

      - Download + Download (83M)
      diff --git a/src/pages/downloads/archive/html/5.0.1/windows.html b/src/pages/downloads/archive/html/5.0.1/windows.html index 28bb632..fa0958b 100644 --- a/src/pages/downloads/archive/html/5.0.1/windows.html +++ b/src/pages/downloads/archive/html/5.0.1/windows.html @@ -87,7 +87,7 @@

      April 12, 2012

      - Download + Download (64M)
      diff --git a/src/pages/downloads/archive/html/5.0.2/index.html b/src/pages/downloads/archive/html/5.0.2/index.html index 8623b42..9ee7904 100644 --- a/src/pages/downloads/archive/html/5.0.2/index.html +++ b/src/pages/downloads/archive/html/5.0.2/index.html @@ -40,7 +40,7 @@

      July 27, 2012

      - Download + Download (64M)
      @@ -57,7 +57,7 @@

      July 27, 2012

      - Download + Download (84M)
      diff --git a/src/pages/downloads/archive/html/5.0.2/windows.html b/src/pages/downloads/archive/html/5.0.2/windows.html index f7afee0..2d1b360 100644 --- a/src/pages/downloads/archive/html/5.0.2/windows.html +++ b/src/pages/downloads/archive/html/5.0.2/windows.html @@ -87,7 +87,7 @@

      July 27, 2012

      - Download + Download (64M)
      diff --git a/src/pages/downloads/archive/html/5.0.3/index.html b/src/pages/downloads/archive/html/5.0.3/index.html index d2ad523..f2be373 100644 --- a/src/pages/downloads/archive/html/5.0.3/index.html +++ b/src/pages/downloads/archive/html/5.0.3/index.html @@ -40,7 +40,7 @@

      October 25, 2012

      - Download + Download (65M)
      @@ -57,7 +57,7 @@

      October 25, 2012

      - Download + Download (86M)
      diff --git a/src/pages/downloads/archive/html/5.0.3/windows.html b/src/pages/downloads/archive/html/5.0.3/windows.html index b339e65..a4c0387 100644 --- a/src/pages/downloads/archive/html/5.0.3/windows.html +++ b/src/pages/downloads/archive/html/5.0.3/windows.html @@ -87,7 +87,7 @@

      October 25, 2012

      - Download + Download (66M)
      diff --git a/src/pages/downloads/archive/html/5.0.4/index.html b/src/pages/downloads/archive/html/5.0.4/index.html index 86688eb..490f475 100644 --- a/src/pages/downloads/archive/html/5.0.4/index.html +++ b/src/pages/downloads/archive/html/5.0.4/index.html @@ -40,7 +40,7 @@

      March 19, 2013

      - Download + Download (68M)
      @@ -57,7 +57,7 @@

      March 19, 2013

      - Download + Download (88M)
      diff --git a/src/pages/downloads/archive/html/5.0.4/windows.html b/src/pages/downloads/archive/html/5.0.4/windows.html index 7394ee0..f03d10d 100644 --- a/src/pages/downloads/archive/html/5.0.4/windows.html +++ b/src/pages/downloads/archive/html/5.0.4/windows.html @@ -87,7 +87,7 @@

      March 19, 2013

      - Download + Download (69M)
      diff --git a/src/pages/downloads/archive/html/5.0.5/index.html b/src/pages/downloads/archive/html/5.0.5/index.html index 5b20d67..5be3c8a 100644 --- a/src/pages/downloads/archive/html/5.0.5/index.html +++ b/src/pages/downloads/archive/html/5.0.5/index.html @@ -40,7 +40,7 @@

      December 19, 2013

      - Download + Download (69M)
      @@ -57,7 +57,7 @@

      December 19, 2013

      - Download + Download (89M)
      diff --git a/src/pages/downloads/archive/html/5.0.5/windows.html b/src/pages/downloads/archive/html/5.0.5/windows.html index c73da48..4e37762 100644 --- a/src/pages/downloads/archive/html/5.0.5/windows.html +++ b/src/pages/downloads/archive/html/5.0.5/windows.html @@ -87,7 +87,7 @@

      December 19, 2013

      - Download + Download (70M)
      diff --git a/src/pages/downloads/archive/html/5.0/index.html b/src/pages/downloads/archive/html/5.0/index.html index 10c41dc..497c5d7 100644 --- a/src/pages/downloads/archive/html/5.0/index.html +++ b/src/pages/downloads/archive/html/5.0/index.html @@ -40,7 +40,7 @@

      July 25, 2014

      - Download + Download (69M)
      @@ -57,7 +57,7 @@

      July 25, 2014

      - Download + Download (89M)
      diff --git a/src/pages/downloads/archive/html/5.0/windows.html b/src/pages/downloads/archive/html/5.0/windows.html index c61f461..a0cdd35 100644 --- a/src/pages/downloads/archive/html/5.0/windows.html +++ b/src/pages/downloads/archive/html/5.0/windows.html @@ -87,7 +87,7 @@

      July 25, 2014

      - Download + Download (70M)
      diff --git a/src/pages/downloads/archive/html/5.1.0-M1/index.html b/src/pages/downloads/archive/html/5.1.0-M1/index.html index e7cca84..93c592a 100644 --- a/src/pages/downloads/archive/html/5.1.0-M1/index.html +++ b/src/pages/downloads/archive/html/5.1.0-M1/index.html @@ -40,7 +40,7 @@

      INTERIM DEVEL BUILD

      - Download + Download (83M)
      @@ -57,9 +57,7 @@

      INTERIM DEVEL BUILD

      - - Download + Download (104M)
      diff --git a/src/pages/downloads/archive/html/5.1.0-M1/windows.html b/src/pages/downloads/archive/html/5.1.0-M1/windows.html index 504fe0c..a3d0093 100644 --- a/src/pages/downloads/archive/html/5.1.0-M1/windows.html +++ b/src/pages/downloads/archive/html/5.1.0-M1/windows.html @@ -87,9 +87,7 @@

      INTERIM DEVEL BUILD

      - - Download + Download (84M)
      diff --git a/src/pages/downloads/archive/html/5.1.0-M2/index.html b/src/pages/downloads/archive/html/5.1.0-M2/index.html index b874311..65211cd 100644 --- a/src/pages/downloads/archive/html/5.1.0-M2/index.html +++ b/src/pages/downloads/archive/html/5.1.0-M2/index.html @@ -40,7 +40,7 @@

      INTERIM DEVEL BUILD

      - Download + Download (83M)
      @@ -57,9 +57,7 @@

      INTERIM DEVEL BUILD

      - - Download + Download (104M)
      diff --git a/src/pages/downloads/archive/html/5.1.0-M2/windows.html b/src/pages/downloads/archive/html/5.1.0-M2/windows.html index 991fd29..bb633da 100644 --- a/src/pages/downloads/archive/html/5.1.0-M2/windows.html +++ b/src/pages/downloads/archive/html/5.1.0-M2/windows.html @@ -87,9 +87,7 @@

      INTERIM DEVEL BUILD

      - - Download + Download (84M)
      diff --git a/src/pages/downloads/archive/html/5.1.0/index.html b/src/pages/downloads/archive/html/5.1.0/index.html index 0798132..5ea47c8 100644 --- a/src/pages/downloads/archive/html/5.1.0/index.html +++ b/src/pages/downloads/archive/html/5.1.0/index.html @@ -40,7 +40,7 @@

      July 25, 2014

      - Download + Download (69M)
      @@ -57,7 +57,7 @@

      July 25, 2014

      - Download + Download (89M)
      diff --git a/src/pages/downloads/archive/html/5.1.0/windows.html b/src/pages/downloads/archive/html/5.1.0/windows.html index 2d4ade4..c567fcd 100644 --- a/src/pages/downloads/archive/html/5.1.0/windows.html +++ b/src/pages/downloads/archive/html/5.1.0/windows.html @@ -87,7 +87,7 @@

      July 25, 2014

      - Download + Download (70M)
      diff --git a/src/pages/downloads/archive/html/5.1/index.html b/src/pages/downloads/archive/html/5.1/index.html index 5982e17..a02b6c1 100644 --- a/src/pages/downloads/archive/html/5.1/index.html +++ b/src/pages/downloads/archive/html/5.1/index.html @@ -40,7 +40,7 @@

      July 25, 2014

      - Download + Download (69M)
      @@ -57,7 +57,7 @@

      July 25, 2014

      - Download + Download (89M)
      diff --git a/src/pages/downloads/archive/html/5.1/windows.html b/src/pages/downloads/archive/html/5.1/windows.html index 0e38670..14f84c2 100644 --- a/src/pages/downloads/archive/html/5.1/windows.html +++ b/src/pages/downloads/archive/html/5.1/windows.html @@ -87,7 +87,7 @@

      July 25, 2014

      - Download + Download (70M)
      diff --git a/src/pages/downloads/archive/html/5.2-RC2/index.html b/src/pages/downloads/archive/html/5.2-RC2/index.html index 29d3054..783c9ae 100644 --- a/src/pages/downloads/archive/html/5.2-RC2/index.html +++ b/src/pages/downloads/archive/html/5.2-RC2/index.html @@ -40,7 +40,7 @@

      January 26, 2015

      - Download + Download (71M)
      @@ -57,9 +57,7 @@

      January 26, 2015

      - - Download + Download (91M)
      diff --git a/src/pages/downloads/archive/html/5.2-RC2/windows.html b/src/pages/downloads/archive/html/5.2-RC2/windows.html index 3432423..30d78e3 100644 --- a/src/pages/downloads/archive/html/5.2-RC2/windows.html +++ b/src/pages/downloads/archive/html/5.2-RC2/windows.html @@ -87,7 +87,7 @@

      January 26, 2015

      - Download + Download (72M)
      diff --git a/src/pages/downloads/archive/html/5.2-RC3/index.html b/src/pages/downloads/archive/html/5.2-RC3/index.html index 4beeac2..56ec9f3 100644 --- a/src/pages/downloads/archive/html/5.2-RC3/index.html +++ b/src/pages/downloads/archive/html/5.2-RC3/index.html @@ -40,7 +40,7 @@

      January 26, 2015

      - Download + Download (99M)
      @@ -57,9 +57,7 @@

      January 26, 2015

      - - Download + Download (119M)
      diff --git a/src/pages/downloads/archive/html/5.2-RC3/windows.html b/src/pages/downloads/archive/html/5.2-RC3/windows.html index 9f3cfe0..09b5bcf 100644 --- a/src/pages/downloads/archive/html/5.2-RC3/windows.html +++ b/src/pages/downloads/archive/html/5.2-RC3/windows.html @@ -87,7 +87,7 @@

      January 26, 2015

      - Download + Download (100M)
      diff --git a/src/pages/downloads/archive/html/5.2.0-RC4/index.html b/src/pages/downloads/archive/html/5.2.0-RC4/index.html index 5660ef8..66d4733 100644 --- a/src/pages/downloads/archive/html/5.2.0-RC4/index.html +++ b/src/pages/downloads/archive/html/5.2.0-RC4/index.html @@ -40,9 +40,7 @@

      March 21, 2015

      - - Download + Download (102M)
      @@ -59,9 +57,7 @@

      March 21, 2015

      - - Download + Download (122M)
      diff --git a/src/pages/downloads/archive/html/5.2.0-RC4/windows.html b/src/pages/downloads/archive/html/5.2.0-RC4/windows.html index b4166f8..fe14cec 100644 --- a/src/pages/downloads/archive/html/5.2.0-RC4/windows.html +++ b/src/pages/downloads/archive/html/5.2.0-RC4/windows.html @@ -87,9 +87,7 @@

      March 21, 2015

      - - Download + Download (103M)
      diff --git a/src/pages/downloads/archive/html/5.2.0-RC5/index.html b/src/pages/downloads/archive/html/5.2.0-RC5/index.html index efe47bd..8771b5f 100644 --- a/src/pages/downloads/archive/html/5.2.0-RC5/index.html +++ b/src/pages/downloads/archive/html/5.2.0-RC5/index.html @@ -40,9 +40,7 @@

      April 1, 2015

      - - Download + Download (103M)
      @@ -65,9 +63,7 @@

      April 1, 2015

      - - Download + Download (123M)
      diff --git a/src/pages/downloads/archive/html/5.2.0-RC5/windows.html b/src/pages/downloads/archive/html/5.2.0-RC5/windows.html index c7710e6..c7824a4 100644 --- a/src/pages/downloads/archive/html/5.2.0-RC5/windows.html +++ b/src/pages/downloads/archive/html/5.2.0-RC5/windows.html @@ -87,9 +87,7 @@

      April 1, 2015

      - - Download + Download (104M)
      diff --git a/src/pages/downloads/archive/html/5.2.0/index.html b/src/pages/downloads/archive/html/5.2.0/index.html index fb89be6..67d01d2 100644 --- a/src/pages/downloads/archive/html/5.2.0/index.html +++ b/src/pages/downloads/archive/html/5.2.0/index.html @@ -40,7 +40,7 @@

      April 3, 2015

      - Download + Download (104M)
      @@ -63,7 +63,7 @@

      April 3, 2015

      - Download + Download (123M)
      diff --git a/src/pages/downloads/archive/html/5.2.0/windows.html b/src/pages/downloads/archive/html/5.2.0/windows.html index e33bcda..ad496cf 100644 --- a/src/pages/downloads/archive/html/5.2.0/windows.html +++ b/src/pages/downloads/archive/html/5.2.0/windows.html @@ -87,7 +87,7 @@

      April 3, 2015

      - Download + Download (104M)
      diff --git a/src/pages/downloads/archive/html/5.2.1/index.html b/src/pages/downloads/archive/html/5.2.1/index.html index 44307b1..cf6c7f7 100644 --- a/src/pages/downloads/archive/html/5.2.1/index.html +++ b/src/pages/downloads/archive/html/5.2.1/index.html @@ -40,7 +40,7 @@

      October 1, 2015

      - Download + Download (106M)
      @@ -63,7 +63,7 @@

      October 1, 2015

      - Download + Download (126M)
      diff --git a/src/pages/downloads/archive/html/5.2.1/windows.html b/src/pages/downloads/archive/html/5.2.1/windows.html index 86104d7..b20ab88 100644 --- a/src/pages/downloads/archive/html/5.2.1/windows.html +++ b/src/pages/downloads/archive/html/5.2.1/windows.html @@ -87,7 +87,7 @@

      October 1, 2015

      - Download + Download (107M)
      diff --git a/src/pages/downloads/archive/html/5.2/index.html b/src/pages/downloads/archive/html/5.2/index.html index 825e8d0..ad985e1 100644 --- a/src/pages/downloads/archive/html/5.2/index.html +++ b/src/pages/downloads/archive/html/5.2/index.html @@ -40,7 +40,7 @@

      October 1, 2015

      - Download + Download (106M)
      @@ -63,7 +63,7 @@

      October 1, 2015

      - Download + Download (126M)
      diff --git a/src/pages/downloads/archive/html/5.2/windows.html b/src/pages/downloads/archive/html/5.2/windows.html index fa5b0ae..48b122d 100644 --- a/src/pages/downloads/archive/html/5.2/windows.html +++ b/src/pages/downloads/archive/html/5.2/windows.html @@ -87,7 +87,7 @@

      October 1, 2015

      - Download + Download (107M)
      diff --git a/src/pages/downloads/archive/html/5.3-RC1/index.html b/src/pages/downloads/archive/html/5.3-RC1/index.html index 10dfce2..95314c6 100644 --- a/src/pages/downloads/archive/html/5.3-RC1/index.html +++ b/src/pages/downloads/archive/html/5.3-RC1/index.html @@ -40,7 +40,7 @@

      December 4, 2015

      - Download + Download (181 MB)
      @@ -57,7 +57,7 @@

      December 4, 2015

      - Download + Download (158 MB)
      @@ -74,7 +74,7 @@

      December 4, 2015

      - Download + Download (160 MB)
      @@ -91,7 +91,7 @@

      December 4, 2015

      - Download + Download (173 MB)
      @@ -108,7 +108,7 @@

      December 4, 2015

      - Download + Download (171 MB)
      diff --git a/src/pages/downloads/archive/html/5.3.0/index.html b/src/pages/downloads/archive/html/5.3.0/index.html index 44169e2..75e33cd 100644 --- a/src/pages/downloads/archive/html/5.3.0/index.html +++ b/src/pages/downloads/archive/html/5.3.0/index.html @@ -40,7 +40,7 @@

      December 4, 2015

      - Download + Download (181 MB)
      @@ -57,7 +57,7 @@

      December 4, 2015

      - Download + Download (158 MB)
      @@ -74,7 +74,7 @@

      December 4, 2015

      - Download + Download (160 MB)
      @@ -91,7 +91,7 @@

      December 4, 2015

      - Download + Download (173 MB)
      @@ -108,7 +108,7 @@

      December 4, 2015

      - Download + Download (171 MB)
      diff --git a/src/pages/downloads/archive/html/5.3.1-RC1/index.html b/src/pages/downloads/archive/html/5.3.1-RC1/index.html index 8665f14..a764f2a 100644 --- a/src/pages/downloads/archive/html/5.3.1-RC1/index.html +++ b/src/pages/downloads/archive/html/5.3.1-RC1/index.html @@ -40,7 +40,7 @@

      January 26, 2016

      - Download + Download (182 MB)
      @@ -57,7 +57,7 @@

      January 26, 2016

      - Download + Download (159 MB)
      @@ -74,7 +74,7 @@

      January 26, 2016

      - Download + Download (160 MB)
      @@ -91,7 +91,7 @@

      January 26, 2016

      - Download + Download (174 MB)
      @@ -108,7 +108,7 @@

      January 26, 2016

      - Download + Download (172 MB)
      diff --git a/src/pages/downloads/archive/html/5.3.1-RC2/index.html b/src/pages/downloads/archive/html/5.3.1-RC2/index.html index de11b7c..b64921f 100644 --- a/src/pages/downloads/archive/html/5.3.1-RC2/index.html +++ b/src/pages/downloads/archive/html/5.3.1-RC2/index.html @@ -40,7 +40,7 @@

      February 16, 2016

      - Download + Download (172 MB)
      @@ -57,7 +57,7 @@

      February 16, 2016

      - Download + Download (157 MB)
      @@ -74,7 +74,7 @@

      February 16, 2016

      - Download + Download (159 MB)
      @@ -91,7 +91,7 @@

      February 16, 2016

      - Download + Download (172 MB)
      @@ -108,7 +108,7 @@

      February 16, 2016

      - Download + Download (170 MB)
      diff --git a/src/pages/downloads/archive/html/5.3.1-RC3/index.html b/src/pages/downloads/archive/html/5.3.1-RC3/index.html index f768c87..321f89f 100644 --- a/src/pages/downloads/archive/html/5.3.1-RC3/index.html +++ b/src/pages/downloads/archive/html/5.3.1-RC3/index.html @@ -40,7 +40,7 @@

      February 23, 2016

      - Download + Download (168 MB)
      @@ -57,7 +57,7 @@

      February 23, 2016

      - Download + Download (158 MB)
      @@ -74,7 +74,7 @@

      February 23, 2016

      - Download + Download (159 MB)
      @@ -91,7 +91,7 @@

      February 23, 2016

      - Download + Download (173 MB)
      @@ -108,7 +108,7 @@

      February 23, 2016

      - Download + Download (171 MB)
      diff --git a/src/pages/downloads/archive/html/5.3.1/index.html b/src/pages/downloads/archive/html/5.3.1/index.html index 4f18405..32b47d9 100644 --- a/src/pages/downloads/archive/html/5.3.1/index.html +++ b/src/pages/downloads/archive/html/5.3.1/index.html @@ -40,7 +40,7 @@

      February 29, 2016

      - Download + Download (168 MB)
      @@ -57,7 +57,7 @@

      February 29, 2016

      - Download + Download (158 MB)
      @@ -74,7 +74,7 @@

      February 29, 2016

      - Download + Download (159 MB)
      @@ -91,7 +91,7 @@

      February 29, 2016

      - Download + Download (173 MB)
      @@ -108,7 +108,7 @@

      February 29, 2016

      - Download + Download (171 MB)
      diff --git a/src/pages/downloads/archive/html/5.3/index.html b/src/pages/downloads/archive/html/5.3/index.html index a7235de..2e60650 100644 --- a/src/pages/downloads/archive/html/5.3/index.html +++ b/src/pages/downloads/archive/html/5.3/index.html @@ -40,7 +40,7 @@

      February 29, 2016

      - Download + Download (168 MB)
      @@ -57,7 +57,7 @@

      February 29, 2016

      - Download + Download (158 MB)
      @@ -74,7 +74,7 @@

      February 29, 2016

      - Download + Download (159 MB)
      @@ -91,7 +91,7 @@

      February 29, 2016

      - Download + Download (173 MB)
      @@ -108,7 +108,7 @@

      February 29, 2016

      - Download + Download (171 MB)
      diff --git a/src/pages/downloads/archive/html/6.0-BETA1/index.html b/src/pages/downloads/archive/html/6.0-BETA1/index.html index fa9f899..f13f29f 100644 --- a/src/pages/downloads/archive/html/6.0-BETA1/index.html +++ b/src/pages/downloads/archive/html/6.0-BETA1/index.html @@ -40,7 +40,7 @@

      October 24, 2016

      - Download + Download (179 MB)
      @@ -57,7 +57,7 @@

      October 24, 2016

      - Download + Download (157 MB)
      @@ -74,7 +74,7 @@

      October 24, 2016

      - Download + Download (158 MB)
      @@ -91,7 +91,7 @@

      October 24, 2016

      - Download + Download (171 MB)
      @@ -108,7 +108,7 @@

      October 24, 2016

      - Download + Download (167 MB)
      diff --git a/src/pages/downloads/archive/html/6.0-BETA2/index.html b/src/pages/downloads/archive/html/6.0-BETA2/index.html index 6883b5c..cc30a9f 100644 --- a/src/pages/downloads/archive/html/6.0-BETA2/index.html +++ b/src/pages/downloads/archive/html/6.0-BETA2/index.html @@ -40,7 +40,7 @@

      November 21, 2016

      - Download + Download (190 MB)
      @@ -57,7 +57,7 @@

      November 21, 2016

      - Download + Download (165 MB)
      @@ -74,7 +74,7 @@

      November 21, 2016

      - Download + Download (167 MB)
      @@ -91,7 +91,7 @@

      November 21, 2016

      - Download + Download (190 MB)
      @@ -108,7 +108,7 @@

      November 21, 2016

      - Download + Download (187 MB)
      diff --git a/src/pages/downloads/archive/html/6.0-CONSTRUCTIONISM-2016-PREVIEW/index.html b/src/pages/downloads/archive/html/6.0-CONSTRUCTIONISM-2016-PREVIEW/index.html index b2c2193..35432f6 100644 --- a/src/pages/downloads/archive/html/6.0-CONSTRUCTIONISM-2016-PREVIEW/index.html +++ b/src/pages/downloads/archive/html/6.0-CONSTRUCTIONISM-2016-PREVIEW/index.html @@ -41,7 +41,7 @@

      December 4, 2015

      Download (195 MB) @@ -61,7 +61,7 @@

      December 4, 2015

      Download (180 MB) @@ -81,7 +81,7 @@

      December 4, 2015

      Download (181 MB) @@ -101,7 +101,7 @@

      December 4, 2015

      Download (195 MB) @@ -121,7 +121,7 @@

      December 4, 2015

      Download (193 MB) diff --git a/src/pages/downloads/archive/html/6.0-M1/index.html b/src/pages/downloads/archive/html/6.0-M1/index.html index d641f19..6e8bbca 100644 --- a/src/pages/downloads/archive/html/6.0-M1/index.html +++ b/src/pages/downloads/archive/html/6.0-M1/index.html @@ -40,7 +40,7 @@

      December 4, 2015

      - Download + Download (159 MB)
      @@ -57,7 +57,7 @@

      December 4, 2015

      - Download + Download (148 MB)
      @@ -74,7 +74,7 @@

      December 4, 2015

      - Download + Download (150 MB)
      @@ -91,7 +91,7 @@

      December 4, 2015

      - Download + Download (159 MB)
      @@ -108,7 +108,7 @@

      December 4, 2015

      - Download + Download (157 MB)
      diff --git a/src/pages/downloads/archive/html/6.0-M2/index.html b/src/pages/downloads/archive/html/6.0-M2/index.html index 15eaade..096e458 100644 --- a/src/pages/downloads/archive/html/6.0-M2/index.html +++ b/src/pages/downloads/archive/html/6.0-M2/index.html @@ -40,7 +40,7 @@

      March 25, 2016

      - Download + Download (160 MB)
      @@ -57,7 +57,7 @@

      March 25, 2016

      - Download + Download (154 MB)
      @@ -74,7 +74,7 @@

      March 25, 2016

      - Download + Download (150 MB)
      @@ -91,7 +91,7 @@

      March 25, 2016

      - Download + Download (159 MB)
      @@ -108,7 +108,7 @@

      March 25, 2016

      - Download + Download (157 MB)
      diff --git a/src/pages/downloads/archive/html/6.0-M3/index.html b/src/pages/downloads/archive/html/6.0-M3/index.html index 5ebe034..1c380c6 100644 --- a/src/pages/downloads/archive/html/6.0-M3/index.html +++ b/src/pages/downloads/archive/html/6.0-M3/index.html @@ -40,7 +40,7 @@

      March 30, 2016

      - Download + Download (160 MB)
      @@ -57,7 +57,7 @@

      March 30, 2016

      - Download + Download (149 MB)
      @@ -74,7 +74,7 @@

      March 30, 2016

      - Download + Download (150 MB)
      @@ -91,7 +91,7 @@

      March 30, 2016

      - Download + Download (160 MB)
      @@ -108,7 +108,7 @@

      March 30, 2016

      - Download + Download (158 MB)
      diff --git a/src/pages/downloads/archive/html/6.0-M4/index.html b/src/pages/downloads/archive/html/6.0-M4/index.html index 1b38308..2157def 100644 --- a/src/pages/downloads/archive/html/6.0-M4/index.html +++ b/src/pages/downloads/archive/html/6.0-M4/index.html @@ -40,7 +40,7 @@

      April 1, 2016

      - Download + Download (160 MB)
      @@ -57,7 +57,7 @@

      April 1, 2016

      - Download + Download (149 MB)
      @@ -74,7 +74,7 @@

      April 1, 2016

      - Download + Download (150 MB)
      @@ -91,7 +91,7 @@

      April 1, 2016

      - Download + Download (160 MB)
      @@ -108,7 +108,7 @@

      April 1, 2016

      - Download + Download (158 MB)
      diff --git a/src/pages/downloads/archive/html/6.0-M5/index.html b/src/pages/downloads/archive/html/6.0-M5/index.html index 38ea8ae..2659106 100644 --- a/src/pages/downloads/archive/html/6.0-M5/index.html +++ b/src/pages/downloads/archive/html/6.0-M5/index.html @@ -40,7 +40,7 @@

      April 19, 2016

      - Download + Download (160 MB)
      @@ -57,7 +57,7 @@

      April 19, 2016

      - Download + Download (149 MB)
      @@ -74,7 +74,7 @@

      April 19, 2016

      - Download + Download (150 MB)
      @@ -91,7 +91,7 @@

      April 19, 2016

      - Download + Download (160 MB)
      @@ -108,7 +108,7 @@

      April 19, 2016

      - Download + Download (158 MB)
      diff --git a/src/pages/downloads/archive/html/6.0-M6/index.html b/src/pages/downloads/archive/html/6.0-M6/index.html index 585bc7b..78660e9 100644 --- a/src/pages/downloads/archive/html/6.0-M6/index.html +++ b/src/pages/downloads/archive/html/6.0-M6/index.html @@ -40,7 +40,7 @@

      May 3, 2016

      - Download + Download (161 MB)
      @@ -57,7 +57,7 @@

      May 3, 2016

      - Download + Download (150 MB)
      @@ -74,7 +74,7 @@

      May 3, 2016

      - Download + Download (151 MB)
      @@ -91,7 +91,7 @@

      May 3, 2016

      - Download + Download (161 MB)
      @@ -108,7 +108,7 @@

      May 3, 2016

      - Download + Download (158 MB)
      diff --git a/src/pages/downloads/archive/html/6.0-M7/index.html b/src/pages/downloads/archive/html/6.0-M7/index.html index 548e4e6..8289432 100644 --- a/src/pages/downloads/archive/html/6.0-M7/index.html +++ b/src/pages/downloads/archive/html/6.0-M7/index.html @@ -40,7 +40,7 @@

      May 23, 2016

      - Download + Download (168 MB)
      @@ -57,7 +57,7 @@

      May 23, 2016

      - Download + Download (152 MB)
      @@ -74,7 +74,7 @@

      May 23, 2016

      - Download + Download (153 MB)
      @@ -91,7 +91,7 @@

      May 23, 2016

      - Download + Download (167 MB)
      @@ -108,7 +108,7 @@

      May 23, 2016

      - Download + Download (164 MB)
      diff --git a/src/pages/downloads/archive/html/6.0-M8/index.html b/src/pages/downloads/archive/html/6.0-M8/index.html index c209386..c1eee91 100644 --- a/src/pages/downloads/archive/html/6.0-M8/index.html +++ b/src/pages/downloads/archive/html/6.0-M8/index.html @@ -40,7 +40,7 @@

      June 6, 2016

      - Download + Download (168 MB)
      @@ -57,7 +57,7 @@

      June 6, 2016

      - Download + Download (152 MB)
      @@ -74,7 +74,7 @@

      June 6, 2016

      - Download + Download (153 MB)
      @@ -91,7 +91,7 @@

      June 6, 2016

      - Download + Download (157 MB)
      @@ -108,7 +108,7 @@

      June 6, 2016

      - Download + Download (164 MB)
      diff --git a/src/pages/downloads/archive/html/6.0-M9/index.html b/src/pages/downloads/archive/html/6.0-M9/index.html index 75d302a..a598d24 100644 --- a/src/pages/downloads/archive/html/6.0-M9/index.html +++ b/src/pages/downloads/archive/html/6.0-M9/index.html @@ -40,7 +40,7 @@

      July 22, 2016

      - Download + Download (171 MB)
      @@ -57,7 +57,7 @@

      July 22, 2016

      - Download + Download (153 MB)
      @@ -74,7 +74,7 @@

      July 22, 2016

      - Download + Download (155 MB)
      @@ -91,7 +91,7 @@

      July 22, 2016

      - Download + Download (164 MB)
      @@ -108,7 +108,7 @@

      July 22, 2016

      - Download + Download (166 MB)
      diff --git a/src/pages/downloads/archive/html/6.0.0/index.html b/src/pages/downloads/archive/html/6.0.0/index.html index 3e00ed4..c8a8203 100644 --- a/src/pages/downloads/archive/html/6.0.0/index.html +++ b/src/pages/downloads/archive/html/6.0.0/index.html @@ -40,7 +40,7 @@

      January 5, 2017

      - Download + Download (199 MB)
      @@ -57,7 +57,7 @@

      January 5, 2017

      - Download + Download (175 MB)
      @@ -74,7 +74,7 @@

      January 5, 2017

      - Download + Download (177 MB)
      @@ -91,7 +91,7 @@

      January 5, 2017

      - Download + Download (199 MB)
      @@ -108,7 +108,7 @@

      January 5, 2017

      - Download + Download (197 MB)
      diff --git a/src/pages/downloads/archive/html/6.0.1-M1/index.html b/src/pages/downloads/archive/html/6.0.1-M1/index.html index aea8ed5..bbb1fd6 100644 --- a/src/pages/downloads/archive/html/6.0.1-M1/index.html +++ b/src/pages/downloads/archive/html/6.0.1-M1/index.html @@ -40,7 +40,7 @@

      February 16, 2017

      - Download + Download (199 MB)
      @@ -57,7 +57,7 @@

      February 16, 2017

      - Download + Download (175 MB)
      @@ -74,7 +74,7 @@

      February 16, 2017

      - Download + Download (177 MB)
      @@ -91,7 +91,7 @@

      February 16, 2017

      - Download + Download (200 MB)
      @@ -108,7 +108,7 @@

      February 16, 2017

      - Download + Download (197 MB)
      diff --git a/src/pages/downloads/archive/html/6.0.1-RC1/index.html b/src/pages/downloads/archive/html/6.0.1-RC1/index.html index 7988773..a97989c 100644 --- a/src/pages/downloads/archive/html/6.0.1-RC1/index.html +++ b/src/pages/downloads/archive/html/6.0.1-RC1/index.html @@ -40,7 +40,7 @@

      March 1, 2017

      - Download + Download (199 MB)
      @@ -57,7 +57,7 @@

      March 1, 2017

      - Download + Download (175 MB)
      @@ -74,7 +74,7 @@

      March 1, 2017

      - Download + Download (176 MB)
      @@ -91,7 +91,7 @@

      March 1, 2017

      - Download + Download (199 MB)
      @@ -108,7 +108,7 @@

      March 1, 2017

      - Download + Download (197 MB)
      diff --git a/src/pages/downloads/archive/html/6.0.1/index.html b/src/pages/downloads/archive/html/6.0.1/index.html index 459b06b..4e15d20 100644 --- a/src/pages/downloads/archive/html/6.0.1/index.html +++ b/src/pages/downloads/archive/html/6.0.1/index.html @@ -40,7 +40,7 @@

      March 21, 2017

      - Download + Download (199 MB)
      @@ -57,7 +57,7 @@

      March 21, 2017

      - Download + Download (175 MB)
      @@ -74,7 +74,7 @@

      March 21, 2017

      - Download + Download (176 MB)
      @@ -91,7 +91,7 @@

      March 21, 2017

      - Download + Download (199 MB)
      @@ -108,7 +108,7 @@

      March 21, 2017

      - Download + Download (197 MB)
      diff --git a/src/pages/downloads/archive/html/6.0.2-RC1/index.html b/src/pages/downloads/archive/html/6.0.2-RC1/index.html index edb9da3..c215cd8 100644 --- a/src/pages/downloads/archive/html/6.0.2-RC1/index.html +++ b/src/pages/downloads/archive/html/6.0.2-RC1/index.html @@ -40,7 +40,7 @@

      August 11, 2017

      - Download + Download (171 MB)
      @@ -57,7 +57,7 @@

      August 11, 2017

      - Download + Download (173 MB)
      @@ -74,7 +74,7 @@

      August 11, 2017

      - Download + Download (192 MB)
      @@ -91,7 +91,7 @@

      August 11, 2017

      - Download + Download (190 MB)
      diff --git a/src/pages/downloads/archive/html/6.0.2/index.html b/src/pages/downloads/archive/html/6.0.2/index.html index 62bc886..057f897 100644 --- a/src/pages/downloads/archive/html/6.0.2/index.html +++ b/src/pages/downloads/archive/html/6.0.2/index.html @@ -40,7 +40,7 @@

      August 11, 2017

      - Download + Download (191 MB)
      @@ -57,7 +57,7 @@

      August 11, 2017

      - Download + Download (171 MB)
      @@ -74,7 +74,7 @@

      August 11, 2017

      - Download + Download (173 MB)
      @@ -91,7 +91,7 @@

      August 11, 2017

      - Download + Download (192 MB)
      @@ -108,7 +108,7 @@

      August 11, 2017

      - Download + Download (190 MB)
      diff --git a/src/pages/downloads/archive/html/6.0.3/index.html b/src/pages/downloads/archive/html/6.0.3/index.html index fa925be..c2bbfcd 100644 --- a/src/pages/downloads/archive/html/6.0.3/index.html +++ b/src/pages/downloads/archive/html/6.0.3/index.html @@ -40,7 +40,7 @@

      March 21, 2018

      - Download + Download (226 MB)
      @@ -57,7 +57,7 @@

      March 21, 2018

      - Download + Download (181 MB)
      @@ -74,7 +74,7 @@

      March 21, 2018

      - Download + Download (183 MB)
      @@ -91,7 +91,7 @@

      March 21, 2018

      - Download + Download (202 MB)
      @@ -108,7 +108,7 @@

      March 21, 2018

      - Download + Download (199 MB)
      diff --git a/src/pages/downloads/archive/html/6.0.4/index.html b/src/pages/downloads/archive/html/6.0.4/index.html index 0a3f90a..4bad7e2 100644 --- a/src/pages/downloads/archive/html/6.0.4/index.html +++ b/src/pages/downloads/archive/html/6.0.4/index.html @@ -40,7 +40,7 @@

      June 14, 2018

      - Download + Download (209 MB)
      @@ -57,7 +57,7 @@

      June 14, 2018

      - Download + Download (181 MB)
      @@ -74,7 +74,7 @@

      June 14, 2018

      - Download + Download (183 MB)
      @@ -91,7 +91,7 @@

      June 14, 2018

      - Download + Download (203 MB)
      @@ -108,7 +108,7 @@

      June 14, 2018

      - Download + Download (200 MB)
      diff --git a/src/pages/downloads/archive/html/6.0/index.html b/src/pages/downloads/archive/html/6.0/index.html index 84fd82b..7402168 100644 --- a/src/pages/downloads/archive/html/6.0/index.html +++ b/src/pages/downloads/archive/html/6.0/index.html @@ -40,7 +40,7 @@

      June 14, 2018

      - Download + Download (209 MB)
      @@ -57,7 +57,7 @@

      June 14, 2018

      - Download + Download (181 MB)
      @@ -74,7 +74,7 @@

      June 14, 2018

      - Download + Download (183 MB)
      @@ -91,7 +91,7 @@

      June 14, 2018

      - Download + Download (203 MB)
      @@ -108,7 +108,7 @@

      June 14, 2018

      - Download + Download (200 MB)
      diff --git a/src/pages/downloads/archive/html/6.0beta/index.html b/src/pages/downloads/archive/html/6.0beta/index.html index 1a03fa1..21fc9b1 100644 --- a/src/pages/downloads/archive/html/6.0beta/index.html +++ b/src/pages/downloads/archive/html/6.0beta/index.html @@ -40,7 +40,7 @@

      May 3, 2016

      - Download + Download (161 MB)
      @@ -57,7 +57,7 @@

      May 3, 2016

      - Download + Download (150 MB)
      @@ -74,7 +74,7 @@

      May 3, 2016

      - Download + Download (151 MB)
      @@ -91,7 +91,7 @@

      May 3, 2016

      - Download + Download (161 MB)
      @@ -108,7 +108,7 @@

      May 3, 2016

      - Download + Download (158 MB)
      diff --git a/src/pages/downloads/archive/html/6.1.0/index.html b/src/pages/downloads/archive/html/6.1.0/index.html index 690611f..780a1f9 100644 --- a/src/pages/downloads/archive/html/6.1.0/index.html +++ b/src/pages/downloads/archive/html/6.1.0/index.html @@ -38,7 +38,7 @@

      May 17, 2019

      - Download + Download (213 MB)
      @@ -53,7 +53,7 @@

      May 17, 2019

      - Download + Download (185 MB)
      @@ -68,7 +68,7 @@

      May 17, 2019

      - Download + Download (187 MB)
      @@ -83,7 +83,7 @@

      May 17, 2019

      - Download + Download (211 MB)
      diff --git a/src/pages/downloads/archive/html/6.1.1/index.html b/src/pages/downloads/archive/html/6.1.1/index.html index 9a7f145..3cd74a6 100644 --- a/src/pages/downloads/archive/html/6.1.1/index.html +++ b/src/pages/downloads/archive/html/6.1.1/index.html @@ -40,7 +40,7 @@

      September 26, 2019

      - Download + Download (215 MB)
      @@ -57,7 +57,7 @@

      September 26, 2019

      - Download + Download (186 MB)
      @@ -74,7 +74,7 @@

      September 26, 2019

      - Download + Download (189 MB)
      @@ -91,7 +91,7 @@

      September 26, 2019

      - Download + Download (213 MB)
      @@ -108,7 +108,7 @@

      September 26, 2019

      - Download + Download (210 MB)
      diff --git a/src/pages/downloads/archive/html/6.1/index.html b/src/pages/downloads/archive/html/6.1/index.html index 3876a32..8d335ed 100644 --- a/src/pages/downloads/archive/html/6.1/index.html +++ b/src/pages/downloads/archive/html/6.1/index.html @@ -40,7 +40,7 @@

      September 26, 2019

      - Download + Download (215 MB)
      @@ -57,7 +57,7 @@

      September 26, 2019

      - Download + Download (186 MB)
      @@ -74,7 +74,7 @@

      September 26, 2019

      - Download + Download (189 MB)
      @@ -91,7 +91,7 @@

      September 26, 2019

      - Download + Download (213 MB)
      @@ -108,7 +108,7 @@

      September 26, 2019

      - Download + Download (210 MB)
      diff --git a/src/pages/downloads/archive/html/6.2.0/index.html b/src/pages/downloads/archive/html/6.2.0/index.html index f69ab23..a677058 100644 --- a/src/pages/downloads/archive/html/6.2.0/index.html +++ b/src/pages/downloads/archive/html/6.2.0/index.html @@ -38,7 +38,7 @@

      December 23, 2020

      - Download + Download (235 MB)
      @@ -53,7 +53,7 @@

      December 23, 2020

      - Download + Download (204 MB)
      @@ -68,7 +68,7 @@

      December 23, 2020

      - Download + Download (206 MB)
      @@ -83,7 +83,7 @@

      December 23, 2020

      - Download + Download (225 MB)
      @@ -98,7 +98,7 @@

      December 23, 2020

      - Download + Download (224 MB)
      diff --git a/src/pages/downloads/archive/html/6.2.1/index.html b/src/pages/downloads/archive/html/6.2.1/index.html index 25b0faf..47b5a33 100644 --- a/src/pages/downloads/archive/html/6.2.1/index.html +++ b/src/pages/downloads/archive/html/6.2.1/index.html @@ -40,7 +40,7 @@

      October 14, 2021

      - Download + Download (242 MB)
      @@ -57,7 +57,7 @@

      October 14, 2021

      - Download + Download (210 MB)
      @@ -74,7 +74,7 @@

      October 14, 2021

      - Download + Download (213 MB)
      @@ -91,7 +91,7 @@

      October 14, 2021

      - Download + Download (231 MB)
      @@ -108,7 +108,7 @@

      October 14, 2021

      - Download + Download (231 MB)
      diff --git a/src/pages/downloads/archive/html/6.2.2/index.html b/src/pages/downloads/archive/html/6.2.2/index.html index 8a4aa60..024d472 100644 --- a/src/pages/downloads/archive/html/6.2.2/index.html +++ b/src/pages/downloads/archive/html/6.2.2/index.html @@ -40,7 +40,7 @@

      December 8, 2021

      - Download + Download (243 MB)
      @@ -57,7 +57,7 @@

      December 8, 2021

      - Download + Download (215 MB)
      @@ -74,7 +74,7 @@

      December 8, 2021

      - Download + Download (217 MB)
      @@ -91,7 +91,7 @@

      December 8, 2021

      - Download + Download (232 MB)
      @@ -108,7 +108,7 @@

      December 8, 2021

      - Download + Download (232 MB)
      diff --git a/src/pages/downloads/archive/html/6.2/index.html b/src/pages/downloads/archive/html/6.2/index.html index 4992016..7042caa 100644 --- a/src/pages/downloads/archive/html/6.2/index.html +++ b/src/pages/downloads/archive/html/6.2/index.html @@ -40,7 +40,7 @@

      December 8, 2021

      - Download + Download (243 MB)
      @@ -57,7 +57,7 @@

      December 8, 2021

      - Download + Download (215 MB)
      @@ -74,7 +74,7 @@

      December 8, 2021

      - Download + Download (217 MB)
      @@ -91,7 +91,7 @@

      December 8, 2021

      - Download + Download (232 MB)
      @@ -108,7 +108,7 @@

      December 8, 2021

      - Download + Download (232 MB)
      diff --git a/src/pages/downloads/archive/html/6.3.0/index.html b/src/pages/downloads/archive/html/6.3.0/index.html index 745088d..a954b3a 100644 --- a/src/pages/downloads/archive/html/6.3.0/index.html +++ b/src/pages/downloads/archive/html/6.3.0/index.html @@ -38,7 +38,7 @@

      September 29, 2022

      - Download + Download (350 MB)
      @@ -53,7 +53,7 @@

      September 29, 2022

      - Download + Download (302 MB)
      @@ -68,7 +68,7 @@

      September 29, 2022

      - Download + Download (314 MB)
      @@ -83,7 +83,7 @@

      September 29, 2022

      - Download + Download (307 MB)
      @@ -98,7 +98,7 @@

      September 29, 2022

      - Download + Download (326 MB)
      diff --git a/src/pages/downloads/archive/html/6.3/index.html b/src/pages/downloads/archive/html/6.3/index.html index a35b2ce..b63846b 100644 --- a/src/pages/downloads/archive/html/6.3/index.html +++ b/src/pages/downloads/archive/html/6.3/index.html @@ -40,7 +40,7 @@

      September 29, 2022

      - Download + Download (350 MB)
      @@ -57,7 +57,7 @@

      September 29, 2022

      - Download + Download (302 MB)
      @@ -74,7 +74,7 @@

      September 29, 2022

      - Download + Download (314 MB)
      @@ -91,7 +91,7 @@

      September 29, 2022

      - Download + Download (307 MB)
      @@ -108,7 +108,7 @@

      September 29, 2022

      - Download + Download (326 MB)
      diff --git a/src/pages/downloads/archive/html/6.4.0-beta1/index.html b/src/pages/downloads/archive/html/6.4.0-beta1/index.html index 7f7deed..2a31e68 100644 --- a/src/pages/downloads/archive/html/6.4.0-beta1/index.html +++ b/src/pages/downloads/archive/html/6.4.0-beta1/index.html @@ -38,7 +38,7 @@

      October 2, 2023

      - Download + Download (457 MB)
      @@ -53,7 +53,7 @@

      October 2, 2023

      - Download + Download (583 MB)
      @@ -68,7 +68,7 @@

      October 2, 2023

      - Download + Download (591 MB)
      @@ -83,7 +83,7 @@

      October 2, 2023

      - Download + Download (413 MB)
      @@ -98,7 +98,7 @@

      October 2, 2023

      - Download + Download (434 MB)
      diff --git a/src/pages/downloads/archive/html/6.4.0/index.html b/src/pages/downloads/archive/html/6.4.0/index.html index 17da3b3..11a8181 100644 --- a/src/pages/downloads/archive/html/6.4.0/index.html +++ b/src/pages/downloads/archive/html/6.4.0/index.html @@ -38,7 +38,7 @@

      November 16, 2023

      - Download + Download (346 MB)
      @@ -53,7 +53,7 @@

      November 16, 2023

      - Download + Download (298 MB)
      @@ -68,7 +68,7 @@

      November 16, 2023

      - Download + Download (311 MB)
      @@ -83,7 +83,7 @@

      November 16, 2023

      - Download + Download (332 MB)
      @@ -98,7 +98,7 @@

      November 16, 2023

      - Download + Download (353 MB)
      diff --git a/src/pages/downloads/archive/html/6.4/index.html b/src/pages/downloads/archive/html/6.4/index.html index 070e321..7353321 100644 --- a/src/pages/downloads/archive/html/6.4/index.html +++ b/src/pages/downloads/archive/html/6.4/index.html @@ -40,7 +40,7 @@

      November 16, 2023

      - Download + Download (346 MB)
      @@ -57,7 +57,7 @@

      November 16, 2023

      - Download + Download (298 MB)
      @@ -74,7 +74,7 @@

      November 16, 2023

      - Download + Download (311 MB)
      @@ -91,7 +91,7 @@

      November 16, 2023

      - Download + Download (332 MB)
      @@ -108,7 +108,7 @@

      November 16, 2023

      - Download + Download (353 MB)
      diff --git a/src/pages/downloads/archive/html/7.0.0-beta1/index.html b/src/pages/downloads/archive/html/7.0.0-beta1/index.html index 1699c41..bd264cc 100644 --- a/src/pages/downloads/archive/html/7.0.0-beta1/index.html +++ b/src/pages/downloads/archive/html/7.0.0-beta1/index.html @@ -42,7 +42,7 @@

      May 21, 2025

      - Download + Download (488 MB)
      @@ -59,7 +59,7 @@

      May 21, 2025

      - Download + Download (463 MB)
      @@ -76,7 +76,7 @@

      May 21, 2025

      - Download + Download (277 MB)
      @@ -93,7 +93,7 @@

      May 21, 2025

      - Download + Download (335 MB)
      @@ -110,7 +110,7 @@

      May 21, 2025

      - Download + Download (314 MB)
      @@ -127,7 +127,7 @@

      May 21, 2025

      - Download + Download (347 MB)
      diff --git a/src/pages/downloads/archive/html/7.0.0-beta2/index.html b/src/pages/downloads/archive/html/7.0.0-beta2/index.html index d61cf25..cd8b4bd 100644 --- a/src/pages/downloads/archive/html/7.0.0-beta2/index.html +++ b/src/pages/downloads/archive/html/7.0.0-beta2/index.html @@ -42,7 +42,7 @@

      July 18, 2025

      - Download + Download (391 MB)
      @@ -59,7 +59,7 @@

      July 18, 2025

      - Download + Download (366 MB)
      @@ -76,7 +76,7 @@

      July 18, 2025

      - Download + Download (351 MB)
      @@ -93,7 +93,7 @@

      July 18, 2025

      - Download + Download (294 MB)
      @@ -110,7 +110,7 @@

      July 18, 2025

      - Download + Download (431 MB)
      @@ -127,7 +127,7 @@

      July 18, 2025

      - Download + Download (397 MB)
      diff --git a/src/pages/downloads/archive/html/7.0.0/index.html b/src/pages/downloads/archive/html/7.0.0/index.html index 8e58995..648eb40 100644 --- a/src/pages/downloads/archive/html/7.0.0/index.html +++ b/src/pages/downloads/archive/html/7.0.0/index.html @@ -42,7 +42,7 @@

      September 8, 2025

      - Download + Download (415 MB)
      @@ -59,7 +59,7 @@

      September 8, 2025

      - Download + Download (390 MB)
      @@ -76,7 +76,7 @@

      September 8, 2025

      - Download + Download (376 MB)
      @@ -93,7 +93,7 @@

      September 8, 2025

      - Download + Download (353 MB)
      @@ -110,7 +110,7 @@

      September 8, 2025

      - Download + Download (413 MB)
      @@ -127,7 +127,7 @@

      September 8, 2025

      - Download + Download (379 MB)
      From 48ecdbd1e2f023dcba667a5de66dc375a205712e Mon Sep 17 00:00:00 2001 From: Omar Ibrahim Date: Fri, 14 Nov 2025 12:35:39 -0600 Subject: [PATCH 14/16] Minor: update old CCL links --- src/components/download/download-section.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/download/download-section.tsx b/src/components/download/download-section.tsx index bd76891..9dd0691 100644 --- a/src/components/download/download-section.tsx +++ b/src/components/download/download-section.tsx @@ -33,13 +33,13 @@ const DownloadSection = ({ downloadData, devOs }: DownloadSectionProps) => { />
      -
      +

      {"Most computers can run NetLogo (see "} system requirements @@ -61,7 +61,7 @@ const DownloadSection = ({ downloadData, devOs }: DownloadSectionProps) => { {"Transition Guide"} From 28ef8935f48a364325108e29cc8e8e3ae5a49e0e Mon Sep 17 00:00:00 2001 From: Omar Ibrahim Date: Fri, 14 Nov 2025 12:46:10 -0600 Subject: [PATCH 15/16] Minor: fix broken links and port 7.0.x pages for download archive --- src/pages/downloads/archive/_versions.json | 1143 +++++++++-------- .../downloads/archive/html/1.0/index.html | 2 +- .../downloads/archive/html/1.0d/index.html | 2 +- .../downloads/archive/html/1.1/index.html | 2 +- .../downloads/archive/html/1.1f/index.html | 2 +- .../downloads/archive/html/1.2.1/index.html | 4 +- .../downloads/archive/html/1.2/index.html | 4 +- .../downloads/archive/html/1.3.1/index.html | 6 +- .../downloads/archive/html/1.3/index.html | 6 +- .../downloads/archive/html/2.0.1/index.html | 2 +- .../downloads/archive/html/2.0.2/index.html | 2 +- .../downloads/archive/html/2.0/index.html | 2 +- .../downloads/archive/html/2.1.0/index.html | 2 +- .../downloads/archive/html/2.1/index.html | 2 +- .../downloads/archive/html/3.0.0/index.html | 4 +- .../downloads/archive/html/3.0.1/index.html | 4 +- .../downloads/archive/html/3.0.2/index.html | 4 +- .../downloads/archive/html/3.0/index.html | 4 +- .../downloads/archive/html/3.1.0/index.html | 4 +- .../downloads/archive/html/3.1.1/index.html | 4 +- .../downloads/archive/html/3.1.2/index.html | 4 +- .../downloads/archive/html/3.1.3/index.html | 4 +- .../downloads/archive/html/3.1.4/index.html | 4 +- .../downloads/archive/html/3.1.5/index.html | 4 +- .../downloads/archive/html/3.1/index.html | 4 +- .../downloads/archive/html/4.0.0/index.html | 4 +- .../downloads/archive/html/4.0.1/index.html | 4 +- .../downloads/archive/html/4.0.2/index.html | 4 +- .../downloads/archive/html/4.0.3/index.html | 4 +- .../downloads/archive/html/4.0.4/index.html | 4 +- .../downloads/archive/html/4.0.5/index.html | 6 +- .../downloads/archive/html/4.0.5/windows.html | 2 +- .../downloads/archive/html/4.0/index.html | 6 +- .../downloads/archive/html/4.0/windows.html | 2 +- .../downloads/archive/html/4.1.0/index.html | 8 +- .../downloads/archive/html/4.1.0/windows.html | 2 +- .../downloads/archive/html/4.1.1/index.html | 6 +- .../downloads/archive/html/4.1.2/index.html | 6 +- .../downloads/archive/html/4.1.3/index.html | 6 +- .../downloads/archive/html/4.1/index.html | 6 +- .../downloads/archive/html/5.0.0/index.html | 2 +- .../downloads/archive/html/5.0.1/index.html | 2 +- .../downloads/archive/html/5.0.2/index.html | 2 +- .../downloads/archive/html/5.0.3/index.html | 2 +- .../downloads/archive/html/5.0.4/index.html | 2 +- .../downloads/archive/html/5.0.5/index.html | 2 +- .../downloads/archive/html/5.0/index.html | 2 +- .../archive/html/5.1.0-M1/index.html | 2 +- .../archive/html/5.1.0-M2/index.html | 2 +- .../downloads/archive/html/5.1.0/index.html | 2 +- .../downloads/archive/html/5.1/index.html | 2 +- .../downloads/archive/html/5.2-RC2/index.html | 2 +- .../downloads/archive/html/5.2-RC3/index.html | 2 +- .../archive/html/5.2.0-RC4/index.html | 2 +- .../archive/html/5.2.0-RC5/index.html | 2 +- .../downloads/archive/html/5.2.0/index.html | 2 +- .../downloads/archive/html/5.2.1/index.html | 2 +- .../downloads/archive/html/5.2/index.html | 2 +- .../downloads/archive/html/5.3-RC1/index.html | 4 +- .../downloads/archive/html/5.3.0/index.html | 4 +- .../archive/html/5.3.1-RC1/index.html | 4 +- .../archive/html/5.3.1-RC2/index.html | 4 +- .../archive/html/5.3.1-RC3/index.html | 4 +- .../downloads/archive/html/5.3.1/index.html | 4 +- .../downloads/archive/html/5.3/index.html | 4 +- .../archive/html/6.0-BETA1/index.html | 4 +- .../archive/html/6.0-BETA2/index.html | 4 +- .../index.html | 4 +- .../downloads/archive/html/6.0-M1/index.html | 4 +- .../downloads/archive/html/6.0-M2/index.html | 4 +- .../downloads/archive/html/6.0-M3/index.html | 4 +- .../downloads/archive/html/6.0-M4/index.html | 4 +- .../downloads/archive/html/6.0-M5/index.html | 4 +- .../downloads/archive/html/6.0-M6/index.html | 4 +- .../downloads/archive/html/6.0-M7/index.html | 4 +- .../downloads/archive/html/6.0-M8/index.html | 4 +- .../downloads/archive/html/6.0-M9/index.html | 4 +- .../downloads/archive/html/6.0beta/index.html | 4 +- .../downloads/archive/html/7.0.1/index.html | 249 ++++ .../downloads/archive/html/7.0.2/index.html | 249 ++++ .../archive/html/7.0.3-beta1/index.html | 251 ++++ 81 files changed, 1485 insertions(+), 675 deletions(-) create mode 100644 src/pages/downloads/archive/html/7.0.1/index.html create mode 100644 src/pages/downloads/archive/html/7.0.2/index.html create mode 100644 src/pages/downloads/archive/html/7.0.3-beta1/index.html diff --git a/src/pages/downloads/archive/_versions.json b/src/pages/downloads/archive/_versions.json index 685b72f..e535779 100644 --- a/src/pages/downloads/archive/_versions.json +++ b/src/pages/downloads/archive/_versions.json @@ -1,563 +1,584 @@ [ - { - "version": "7.0.0", - "releaseDate": "September 2025", - "href": "/downloads/archive/7.0.0/", - "blurb": [ - "New modernized GUI with light, dark, and classic modes", - "New .nlogox XML file format for better extensibility", - "Enhanced widget tools for easier model authoring", - "Improved customization with more preferences and settings" - ], - "flags": [ - "LATEST" - ] - }, - { - "version": "7.0.0-beta2", - "releaseDate": "July 2025", - "href": "/downloads/archive/7.0.0-beta2/", - "flags": [ - "BETA" - ] - }, - { - "version": "7.0.0-beta1", - "releaseDate": "May 2025", - "href": "/downloads/archive/7.0.0-beta1/", - "flags": [ - "BETA" - ] - }, - { - "version": "6.4.0", - "releaseDate": "November 2023", - "href": "/downloads/archive/6.4.0/", - "blurb": "Major BehaviorSpace upgrade with sub-experiments, conditional measurements, and pause/resume capabilities." - }, - { - "version": "6.4.0-beta1", - "releaseDate": "October 2023", - "href": "/downloads/archive/6.4.0-beta1/", - "flags": [ - "BETA" - ] - }, - { - "version": "6.3.0", - "releaseDate": "September 2022", - "href": "/downloads/archive/6.3.0/", - "blurb": "Upgraded from Java 8 to Java 17 for improved performance and security." - }, - { - "version": "6.2.2", - "releaseDate": "December 2021", - "href": "/downloads/archive/6.2.2/" - }, - { - "version": "6.2.1", - "releaseDate": "October 2021", - "href": "/downloads/archive/6.2.1/" - }, - { - "version": "6.2.0", - "releaseDate": "December 2020", - "href": "/downloads/archive/6.2.0/", - "blurb": [ - "Pop-out code tab for side-by-side view", - "Time extension now bundled", - "View2.5D extension significantly upgraded" - ] - }, - { - "version": "6.1.1", - "releaseDate": "September 2019", - "href": "/downloads/archive/6.1.1/" - }, - { - "version": "6.1.0", - "releaseDate": "May 2019", - "href": "/downloads/archive/6.1.0/", - "blurb": [ - "Extension Manager for easy installation and updates", - "Python extension now bundled", - "Variadic ifelse and ifelse-value primitives" - ] - }, - { - "version": "6.0.4", - "releaseDate": "June 2018", - "href": "/downloads/archive/6.0.4/" - }, - { - "version": "6.0.3", - "releaseDate": "March 2018", - "href": "/downloads/archive/6.0.3/" - }, - { - "version": "6.0.2", - "releaseDate": "August 2017", - "href": "/downloads/archive/6.0.2/" - }, - { - "version": "6.0.2-RC1", - "releaseDate": "March 2017", - "href": "/downloads/archive/6.0.2-RC1/", - "flags": [ - "RC" - ] - }, - { - "version": "6.0.1", - "releaseDate": "March 2017", - "href": "/downloads/archive/6.0.1/" - }, - { - "version": "6.0.1-M1", - "href": "/downloads/archive/6.0.1-M1/", - "flags": [ - "MILESTONE" - ] - }, - { - "version": "6.0.1-RC1", - "releaseDate": "March 2017", - "href": "/downloads/archive/6.0.1-RC1/", - "flags": [ - "RC" - ] - }, - { - "version": "6.0", - "releaseDate": "December 2016", - "href": "/downloads/archive/6.0.0/", - "blurb": [ - "Anonymous procedures replace tasks", - "LevelSpace extension for multi-level modeling", - "Code autocompletion and folding", - "Enhanced link reporters" - ] - }, - { - "version": "6.0-BETA2", - "href": "/downloads/archive/6.0-BETA2/", - "releaseDate": "November 2016", - "flags": [ - "BETA" - ] - }, - { - "version": "6.0-BETA1", - "href": "/downloads/archive/6.0-BETA1/", - "releaseDate": "October 2016", - "flags": [ - "BETA" - ] - }, - { - "version": "6.0beta", - "href": "/downloads/archive/6.0beta/", - "releaseDate": "May 2016", - "flags": [ - "BETA" - ] - }, - { - "version": "6.0-M9", - "href": "/downloads/archive/6.0-M9/", - "releaseDate": "July 2016", - "flags": [ - "MILESTONE" - ] - }, - { - "version": "6.0-M8", - "href": "/downloads/archive/6.0-M8/", - "releaseDate": "June 2016", - "flags": [ - "MILESTONE" - ] - }, - { - "version": "6.0-M7", - "href": "/downloads/archive/6.0-M7/", - "releaseDate": "May 2016", - "flags": [ - "MILESTONE" - ] - }, - { - "version": "6.0-M6", - "href": "/downloads/archive/6.0-M6/", - "releaseDate": "May 2016", - "flags": [ - "MILESTONE" - ] - }, - { - "version": "6.0-M5", - "href": "/downloads/archive/6.0-M5/", - "releaseDate": "April 2016", - "flags": [ - "MILESTONE" - ] - }, - { - "version": "6.0-M4", - "href": "/downloads/archive/6.0-M4/", - "releaseDate": "April 2016", - "flags": [ - "MILESTONE" - ] - }, - { - "version": "6.0-M3", - "href": "/downloads/archive/6.0-M3/", - "releaseDate": "March 2016", - "flags": [ - "MILESTONE" - ] - }, - { - "version": "6.0-M2", - "href": "/downloads/archive/6.0-M2/", - "releaseDate": "March 2016", - "flags": [ - "MILESTONE" - ] - }, - { - "version": "6.0-M1", - "href": "/downloads/archive/6.0-M1/", - "releaseDate": "December 2015", - "flags": [ - "MILESTONE" - ] - }, - { - "version": "6.0-CONSTRUCTIONISM-2016-PREVIEW", - "href": "/downloads/archive/6.0-CONSTRUCTIONISM-2016-PREVIEW/", - "releaseDate": "December 2015", - "flags": [ - "PREVIEW" - ] - }, - { - "version": "5.3.1", - "href": "/downloads/archive/5.3.1/", - "releaseDate": "February 2016" - }, - { - "version": "5.3.1-RC3", - "href": "/downloads/archive/5.3.1-RC3/", - "releaseDate": "February 2016", - "flags": [ - "RC" - ] - }, - { - "version": "5.3.1-RC2", - "href": "/downloads/archive/5.3.1-RC2/", - "releaseDate": "February 2016", - "flags": [ - "RC" - ] - }, - { - "version": "5.3.1-RC1", - "href": "/downloads/archive/5.3.1-RC1/", - "releaseDate": "January 2016", - "flags": [ - "RC" - ] - }, - { - "version": "5.3", - "releaseDate": "December 2015", - "href": "/downloads/archive/5.3.0/", - "blurb": "Mathematica Link included and tested with Mathematica 10." - }, - { - "version": "5.3-RC1", - "href": "/downloads/archive/5.3-RC1/", - "releaseDate": "December 2015", - "flags": [ - "RC" - ] - }, - { - "version": "5.2.1", - "releaseDate": "October 2015", - "href": "/downloads/archive/5.2.1/" - }, - { - "version": "5.2", - "releaseDate": "April 2015", - "href": "/downloads/archive/5.2.0/", - "blurb": [ - "CSV and Palette extensions included", - "Network extension with support for many file types", - "HSB color primitives updated" - ] - }, - { - "version": "5.2.0-RC5", - "href": "/downloads/archive/5.2.0-RC5/", - "flags": [ - "RC" - ] - }, - { - "version": "5.2.0-RC4", - "href": "/downloads/archive/5.2.0-RC4/", - "flags": [ - "RC" - ] - }, - { - "version": "5.2-RC3", - "href": "/downloads/archive/5.2-RC3/", - "flags": [ - "RC" - ] - }, - { - "version": "5.2-RC2", - "href": "/downloads/archive/5.2-RC2/", - "flags": [ - "RC" - ] - }, - { - "version": "5.1.0", - "releaseDate": "July 2014", - "href": "/downloads/archive/5.1.0/", - "blurb": "New network extension bundled with NetLogo." - }, - { - "version": "5.1.0-M2", - "href": "/downloads/archive/5.1.0-M2/", - "flags": [ - "MILESTONE" - ] - }, - { - "version": "5.1.0-M1", - "href": "/downloads/archive/5.1.0-M1/", - "flags": [ - "MILESTONE" - ] - }, - { - "version": "5.0.5", - "releaseDate": "December 2013", - "href": "/downloads/archive/5.0.5/" - }, - { - "version": "5.0.4", - "releaseDate": "March 2013", - "href": "/downloads/archive/5.0.4/" - }, - { - "version": "5.0.3", - "releaseDate": "October 2012", - "href": "/downloads/archive/5.0.3/" - }, - { - "version": "5.0.2", - "releaseDate": "July 2012", - "href": "/downloads/archive/5.0.2/" - }, - { - "version": "5.0.1", - "releaseDate": "April 2012", - "href": "/downloads/archive/5.0.1/" - }, - { - "version": "5.0", - "releaseDate": "February 2012", - "href": "/downloads/archive/5.0.0/", - "blurb": [ - "Open source with GPL license", - "Tasks for first-class functions and closures", - "Rich formatting in Info tabs using Markdown", - "GUI localized in Spanish, Russian, and Chinese" - ] - }, - { - "version": "4.1.3", - "releaseDate": "April 2011", - "href": "/downloads/archive/4.1.3/" - }, - { - "version": "4.1.2", - "releaseDate": "December 2010", - "href": "/downloads/archive/4.1.2/" - }, - { - "version": "4.1.1", - "releaseDate": "August 2010", - "href": "/downloads/archive/4.1.1/" - }, - { - "version": "4.1", - "releaseDate": "December 2009", - "href": "/downloads/archive/4.1.0/", - "blurb": [ - "Parallel BehaviorSpace", - "Controlling API for embedding NetLogo", - "Automatic code indenter" - ] - }, - { - "version": "4.0.5", - "releaseDate": "December 2009", - "href": "/downloads/archive/4.0.5/" - }, - { - "version": "4.0.4", - "releaseDate": "November 2008", - "href": "/downloads/archive/4.0.4/" - }, - { - "version": "4.0.3", - "releaseDate": "August 2008", - "href": "/downloads/archive/4.0.3/" - }, - { - "version": "4.0.2", - "releaseDate": "December 2007", - "href": "/downloads/archive/4.0.2/" - }, - { - "version": "4.0.1", - "releaseDate": "October 2007", - "href": "/downloads/archive/4.0.1/" - }, - { - "version": "4.0", - "releaseDate": "September 2007", - "href": "/downloads/archive/4.0.0/", - "blurb": [ - "Link agents introduced", - "Tick counter and view update modes", - "Models run faster with JVM byte code compilation" - ] - }, - { - "version": "3.1.5", - "releaseDate": "December 2007", - "href": "/downloads/archive/3.1.5/" - }, - { - "version": "3.1.4", - "releaseDate": "February 2007", - "href": "/downloads/archive/3.1.4/" - }, - { - "version": "3.1.3", - "releaseDate": "September 2006", - "href": "/downloads/archive/3.1.3/" - }, - { - "version": "3.1.2", - "releaseDate": "August 2006", - "href": "/downloads/archive/3.1.2/" - }, - { - "version": "3.1.1", - "releaseDate": "June 2006", - "href": "/downloads/archive/3.1.1/" - }, - { - "version": "3.1", - "releaseDate": "April 2006", - "href": "/downloads/archive/3.1.0/", - "blurb": "Topologies with optional wrapping at world edges." - }, - { - "version": "3.0.2", - "releaseDate": "November 2005", - "href": "/downloads/archive/3.0.2/" - }, - { - "version": "3.0.1", - "releaseDate": "November 2005", - "href": "/downloads/archive/3.0.1/" - }, - { - "version": "3.0", - "releaseDate": "September 2005", - "href": "/downloads/archive/3.0.0/", - "blurb": [ - "3D view for 2D models", - "System Dynamics Modeler", - "Drawing layer and GoGo extension" - ] - }, - { - "version": "2.1", - "releaseDate": "December 2004", - "href": "/downloads/archive/2.1.0/", - "blurb": "Action keys to trigger buttons by keypresses and QuickTime movie export." - }, - { - "version": "2.0.2", - "releaseDate": "August 2004", - "href": "/downloads/archive/2.0.2/" - }, - { - "version": "2.0.1", - "releaseDate": "May 2004", - "href": "/downloads/archive/2.0.1/" - }, - { - "version": "2.0", - "releaseDate": "December 2003", - "href": "/downloads/archive/2.0.2/", - "blurb": "Fast, flicker-free, non-grid-based graphics system." - }, - { - "version": "1.3.1", - "releaseDate": "September 2003", - "href": "/downloads/archive/1.3.1/" - }, - { - "version": "1.3", - "releaseDate": "June 2003", - "href": "/downloads/archive/1.3/" - }, - { - "version": "1.2.1", - "releaseDate": "May 2003", - "href": "/downloads/archive/1.2.1/" - }, - { - "version": "1.2", - "href": "/downloads/archive/1.2/" - }, - { - "version": "1.1 Revision F", - "releaseDate": "November 2002", - "flags": [ - "REVISION" - ], - "href": "/downloads/archive/1.1f/" - }, - { - "version": "1.1", - "href": "/downloads/archive/1.1/" - }, - { - "version": "1.0 Revision D", - "releaseDate": "April 2002", - "flags": [ - "REVISION" - ], - "href": "/downloads/archive/1.0d/" - }, - { - "version": "1.0", - "href": "/downloads/archive/1.0/" - } + { + "version": "7.0.3-beta1", + "releaseDate": "November 2025", + "href": "/downloads/archive/7.0.3-beta1/", + "blurb": [], + "flags": [ + "BETA" + ] + }, + { + "version": "7.0.2", + "releaseDate": "October 2025", + "href": "/downloads/archive/7.0.2/", + "blurb": [], + "flags": [ + "LATEST" + ] + }, + { + "version": "7.0.1", + "releaseDate": "October 2025", + "href": "/downloads/archive/7.0.1/", + "blurb": [] + }, + { + "version": "7.0.0", + "releaseDate": "September 2025", + "href": "/downloads/archive/7.0.0/", + "blurb": [ + "New modernized GUI with light, dark, and classic modes", + "New .nlogox XML file format for better extensibility", + "Enhanced widget tools for easier model authoring", + "Improved customization with more preferences and settings" + ] + }, + { + "version": "7.0.0-beta2", + "releaseDate": "July 2025", + "href": "/downloads/archive/7.0.0-beta2/", + "flags": [ + "BETA" + ] + }, + { + "version": "7.0.0-beta1", + "releaseDate": "May 2025", + "href": "/downloads/archive/7.0.0-beta1/", + "flags": [ + "BETA" + ] + }, + { + "version": "6.4.0", + "releaseDate": "November 2023", + "href": "/downloads/archive/6.4.0/", + "blurb": "Major BehaviorSpace upgrade with sub-experiments, conditional measurements, and pause/resume capabilities." + }, + { + "version": "6.4.0-beta1", + "releaseDate": "October 2023", + "href": "/downloads/archive/6.4.0-beta1/", + "flags": [ + "BETA" + ] + }, + { + "version": "6.3.0", + "releaseDate": "September 2022", + "href": "/downloads/archive/6.3.0/", + "blurb": "Upgraded from Java 8 to Java 17 for improved performance and security." + }, + { + "version": "6.2.2", + "releaseDate": "December 2021", + "href": "/downloads/archive/6.2.2/" + }, + { + "version": "6.2.1", + "releaseDate": "October 2021", + "href": "/downloads/archive/6.2.1/" + }, + { + "version": "6.2.0", + "releaseDate": "December 2020", + "href": "/downloads/archive/6.2.0/", + "blurb": [ + "Pop-out code tab for side-by-side view", + "Time extension now bundled", + "View2.5D extension significantly upgraded" + ] + }, + { + "version": "6.1.1", + "releaseDate": "September 2019", + "href": "/downloads/archive/6.1.1/" + }, + { + "version": "6.1.0", + "releaseDate": "May 2019", + "href": "/downloads/archive/6.1.0/", + "blurb": [ + "Extension Manager for easy installation and updates", + "Python extension now bundled", + "Variadic ifelse and ifelse-value primitives" + ] + }, + { + "version": "6.0.4", + "releaseDate": "June 2018", + "href": "/downloads/archive/6.0.4/" + }, + { + "version": "6.0.3", + "releaseDate": "March 2018", + "href": "/downloads/archive/6.0.3/" + }, + { + "version": "6.0.2", + "releaseDate": "August 2017", + "href": "/downloads/archive/6.0.2/" + }, + { + "version": "6.0.2-RC1", + "releaseDate": "March 2017", + "href": "/downloads/archive/6.0.2-RC1/", + "flags": [ + "RC" + ] + }, + { + "version": "6.0.1", + "releaseDate": "March 2017", + "href": "/downloads/archive/6.0.1/" + }, + { + "version": "6.0.1-M1", + "href": "/downloads/archive/6.0.1-M1/", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "6.0.1-RC1", + "releaseDate": "March 2017", + "href": "/downloads/archive/6.0.1-RC1/", + "flags": [ + "RC" + ] + }, + { + "version": "6.0", + "releaseDate": "December 2016", + "href": "/downloads/archive/6.0.0/", + "blurb": [ + "Anonymous procedures replace tasks", + "LevelSpace extension for multi-level modeling", + "Code autocompletion and folding", + "Enhanced link reporters" + ] + }, + { + "version": "6.0-BETA2", + "href": "/downloads/archive/6.0-BETA2/", + "releaseDate": "November 2016", + "flags": [ + "BETA" + ] + }, + { + "version": "6.0-BETA1", + "href": "/downloads/archive/6.0-BETA1/", + "releaseDate": "October 2016", + "flags": [ + "BETA" + ] + }, + { + "version": "6.0beta", + "href": "/downloads/archive/6.0beta/", + "releaseDate": "May 2016", + "flags": [ + "BETA" + ] + }, + { + "version": "6.0-M9", + "href": "/downloads/archive/6.0-M9/", + "releaseDate": "July 2016", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "6.0-M8", + "href": "/downloads/archive/6.0-M8/", + "releaseDate": "June 2016", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "6.0-M7", + "href": "/downloads/archive/6.0-M7/", + "releaseDate": "May 2016", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "6.0-M6", + "href": "/downloads/archive/6.0-M6/", + "releaseDate": "May 2016", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "6.0-M5", + "href": "/downloads/archive/6.0-M5/", + "releaseDate": "April 2016", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "6.0-M4", + "href": "/downloads/archive/6.0-M4/", + "releaseDate": "April 2016", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "6.0-M3", + "href": "/downloads/archive/6.0-M3/", + "releaseDate": "March 2016", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "6.0-M2", + "href": "/downloads/archive/6.0-M2/", + "releaseDate": "March 2016", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "6.0-M1", + "href": "/downloads/archive/6.0-M1/", + "releaseDate": "December 2015", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "6.0-CONSTRUCTIONISM-2016-PREVIEW", + "href": "/downloads/archive/6.0-CONSTRUCTIONISM-2016-PREVIEW/", + "releaseDate": "December 2015", + "flags": [ + "PREVIEW" + ] + }, + { + "version": "5.3.1", + "href": "/downloads/archive/5.3.1/", + "releaseDate": "February 2016" + }, + { + "version": "5.3.1-RC3", + "href": "/downloads/archive/5.3.1-RC3/", + "releaseDate": "February 2016", + "flags": [ + "RC" + ] + }, + { + "version": "5.3.1-RC2", + "href": "/downloads/archive/5.3.1-RC2/", + "releaseDate": "February 2016", + "flags": [ + "RC" + ] + }, + { + "version": "5.3.1-RC1", + "href": "/downloads/archive/5.3.1-RC1/", + "releaseDate": "January 2016", + "flags": [ + "RC" + ] + }, + { + "version": "5.3", + "releaseDate": "December 2015", + "href": "/downloads/archive/5.3.0/", + "blurb": "Mathematica Link included and tested with Mathematica 10." + }, + { + "version": "5.3-RC1", + "href": "/downloads/archive/5.3-RC1/", + "releaseDate": "December 2015", + "flags": [ + "RC" + ] + }, + { + "version": "5.2.1", + "releaseDate": "October 2015", + "href": "/downloads/archive/5.2.1/" + }, + { + "version": "5.2", + "releaseDate": "April 2015", + "href": "/downloads/archive/5.2.0/", + "blurb": [ + "CSV and Palette extensions included", + "Network extension with support for many file types", + "HSB color primitives updated" + ] + }, + { + "version": "5.2.0-RC5", + "href": "/downloads/archive/5.2.0-RC5/", + "flags": [ + "RC" + ] + }, + { + "version": "5.2.0-RC4", + "href": "/downloads/archive/5.2.0-RC4/", + "flags": [ + "RC" + ] + }, + { + "version": "5.2-RC3", + "href": "/downloads/archive/5.2-RC3/", + "flags": [ + "RC" + ] + }, + { + "version": "5.2-RC2", + "href": "/downloads/archive/5.2-RC2/", + "flags": [ + "RC" + ] + }, + { + "version": "5.1.0", + "releaseDate": "July 2014", + "href": "/downloads/archive/5.1.0/", + "blurb": "New network extension bundled with NetLogo." + }, + { + "version": "5.1.0-M2", + "href": "/downloads/archive/5.1.0-M2/", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "5.1.0-M1", + "href": "/downloads/archive/5.1.0-M1/", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "5.0.5", + "releaseDate": "December 2013", + "href": "/downloads/archive/5.0.5/" + }, + { + "version": "5.0.4", + "releaseDate": "March 2013", + "href": "/downloads/archive/5.0.4/" + }, + { + "version": "5.0.3", + "releaseDate": "October 2012", + "href": "/downloads/archive/5.0.3/" + }, + { + "version": "5.0.2", + "releaseDate": "July 2012", + "href": "/downloads/archive/5.0.2/" + }, + { + "version": "5.0.1", + "releaseDate": "April 2012", + "href": "/downloads/archive/5.0.1/" + }, + { + "version": "5.0", + "releaseDate": "February 2012", + "href": "/downloads/archive/5.0.0/", + "blurb": [ + "Open source with GPL license", + "Tasks for first-class functions and closures", + "Rich formatting in Info tabs using Markdown", + "GUI localized in Spanish, Russian, and Chinese" + ] + }, + { + "version": "4.1.3", + "releaseDate": "April 2011", + "href": "/downloads/archive/4.1.3/" + }, + { + "version": "4.1.2", + "releaseDate": "December 2010", + "href": "/downloads/archive/4.1.2/" + }, + { + "version": "4.1.1", + "releaseDate": "August 2010", + "href": "/downloads/archive/4.1.1/" + }, + { + "version": "4.1", + "releaseDate": "December 2009", + "href": "/downloads/archive/4.1.0/", + "blurb": [ + "Parallel BehaviorSpace", + "Controlling API for embedding NetLogo", + "Automatic code indenter" + ] + }, + { + "version": "4.0.5", + "releaseDate": "December 2009", + "href": "/downloads/archive/4.0.5/" + }, + { + "version": "4.0.4", + "releaseDate": "November 2008", + "href": "/downloads/archive/4.0.4/" + }, + { + "version": "4.0.3", + "releaseDate": "August 2008", + "href": "/downloads/archive/4.0.3/" + }, + { + "version": "4.0.2", + "releaseDate": "December 2007", + "href": "/downloads/archive/4.0.2/" + }, + { + "version": "4.0.1", + "releaseDate": "October 2007", + "href": "/downloads/archive/4.0.1/" + }, + { + "version": "4.0", + "releaseDate": "September 2007", + "href": "/downloads/archive/4.0.0/", + "blurb": [ + "Link agents introduced", + "Tick counter and view update modes", + "Models run faster with JVM byte code compilation" + ] + }, + { + "version": "3.1.5", + "releaseDate": "December 2007", + "href": "/downloads/archive/3.1.5/" + }, + { + "version": "3.1.4", + "releaseDate": "February 2007", + "href": "/downloads/archive/3.1.4/" + }, + { + "version": "3.1.3", + "releaseDate": "September 2006", + "href": "/downloads/archive/3.1.3/" + }, + { + "version": "3.1.2", + "releaseDate": "August 2006", + "href": "/downloads/archive/3.1.2/" + }, + { + "version": "3.1.1", + "releaseDate": "June 2006", + "href": "/downloads/archive/3.1.1/" + }, + { + "version": "3.1", + "releaseDate": "April 2006", + "href": "/downloads/archive/3.1.0/", + "blurb": "Topologies with optional wrapping at world edges." + }, + { + "version": "3.0.2", + "releaseDate": "November 2005", + "href": "/downloads/archive/3.0.2/" + }, + { + "version": "3.0.1", + "releaseDate": "November 2005", + "href": "/downloads/archive/3.0.1/" + }, + { + "version": "3.0", + "releaseDate": "September 2005", + "href": "/downloads/archive/3.0.0/", + "blurb": [ + "3D view for 2D models", + "System Dynamics Modeler", + "Drawing layer and GoGo extension" + ] + }, + { + "version": "2.1", + "releaseDate": "December 2004", + "href": "/downloads/archive/2.1.0/", + "blurb": "Action keys to trigger buttons by keypresses and QuickTime movie export." + }, + { + "version": "2.0.2", + "releaseDate": "August 2004", + "href": "/downloads/archive/2.0.2/" + }, + { + "version": "2.0.1", + "releaseDate": "May 2004", + "href": "/downloads/archive/2.0.1/" + }, + { + "version": "2.0", + "releaseDate": "December 2003", + "href": "/downloads/archive/2.0.2/", + "blurb": "Fast, flicker-free, non-grid-based graphics system." + }, + { + "version": "1.3.1", + "releaseDate": "September 2003", + "href": "/downloads/archive/1.3.1/" + }, + { + "version": "1.3", + "releaseDate": "June 2003", + "href": "/downloads/archive/1.3/" + }, + { + "version": "1.2.1", + "releaseDate": "May 2003", + "href": "/downloads/archive/1.2.1/" + }, + { + "version": "1.2", + "href": "/downloads/archive/1.2/" + }, + { + "version": "1.1 Revision F", + "releaseDate": "November 2002", + "flags": [ + "REVISION" + ], + "href": "/downloads/archive/1.1f/" + }, + { + "version": "1.1", + "href": "/downloads/archive/1.1/" + }, + { + "version": "1.0 Revision D", + "releaseDate": "April 2002", + "flags": [ + "REVISION" + ], + "href": "/downloads/archive/1.0d/" + }, + { + "version": "1.0", + "href": "/downloads/archive/1.0/" + } ] \ No newline at end of file diff --git a/src/pages/downloads/archive/html/1.0/index.html b/src/pages/downloads/archive/html/1.0/index.html index c43f32f..3d78f74 100644 --- a/src/pages/downloads/archive/html/1.0/index.html +++ b/src/pages/downloads/archive/html/1.0/index.html @@ -1302,6 +1302,6 @@

      NetLogo 1.0 Downloads

      - + diff --git a/src/pages/downloads/archive/html/1.0d/index.html b/src/pages/downloads/archive/html/1.0d/index.html index 30ad2fd..48cd952 100644 --- a/src/pages/downloads/archive/html/1.0d/index.html +++ b/src/pages/downloads/archive/html/1.0d/index.html @@ -1302,6 +1302,6 @@

      NetLogo 1.0 Revision D Downloads

      - + diff --git a/src/pages/downloads/archive/html/1.1/index.html b/src/pages/downloads/archive/html/1.1/index.html index a0c3337..60474f4 100644 --- a/src/pages/downloads/archive/html/1.1/index.html +++ b/src/pages/downloads/archive/html/1.1/index.html @@ -1295,6 +1295,6 @@

      NetLogo 1.1 Rev F Downloads

      - + diff --git a/src/pages/downloads/archive/html/1.1f/index.html b/src/pages/downloads/archive/html/1.1f/index.html index 63fe1fd..265158b 100644 --- a/src/pages/downloads/archive/html/1.1f/index.html +++ b/src/pages/downloads/archive/html/1.1f/index.html @@ -1295,6 +1295,6 @@

      NetLogo 1.1 Rev F Downloads

      - + diff --git a/src/pages/downloads/archive/html/1.2.1/index.html b/src/pages/downloads/archive/html/1.2.1/index.html index 81f7e79..2413a70 100644 --- a/src/pages/downloads/archive/html/1.2.1/index.html +++ b/src/pages/downloads/archive/html/1.2.1/index.html @@ -690,7 +690,7 @@

      NetLogo 1.2.1 Downloads

      - Download (6.6 MB)
      + Download (6.6 MB)
      @@ -825,6 +825,6 @@

      NetLogo 1.2.1 Downloads

      - + diff --git a/src/pages/downloads/archive/html/1.2/index.html b/src/pages/downloads/archive/html/1.2/index.html index a6d9324..913c475 100644 --- a/src/pages/downloads/archive/html/1.2/index.html +++ b/src/pages/downloads/archive/html/1.2/index.html @@ -690,7 +690,7 @@

      NetLogo 1.2.1 Downloads

      - Download (6.6 MB)
      + Download (6.6 MB)
      @@ -825,6 +825,6 @@

      NetLogo 1.2.1 Downloads

      - + diff --git a/src/pages/downloads/archive/html/1.3.1/index.html b/src/pages/downloads/archive/html/1.3.1/index.html index ce18581..c2141d6 100644 --- a/src/pages/downloads/archive/html/1.3.1/index.html +++ b/src/pages/downloads/archive/html/1.3.1/index.html @@ -690,7 +690,7 @@

      NetLogo 1.3.1 Downloads

      - Download (7.1 MB)
      + Download (7.1 MB)
      @@ -825,7 +825,7 @@

      NetLogo 1.3.1 Downloads

      - - + + diff --git a/src/pages/downloads/archive/html/1.3/index.html b/src/pages/downloads/archive/html/1.3/index.html index be01252..c48ee00 100644 --- a/src/pages/downloads/archive/html/1.3/index.html +++ b/src/pages/downloads/archive/html/1.3/index.html @@ -690,7 +690,7 @@

      NetLogo 1.3 Downloads

      - Download (7.1 MB)
      + Download (7.1 MB)
      @@ -825,7 +825,7 @@

      NetLogo 1.3 Downloads

      - - + + diff --git a/src/pages/downloads/archive/html/2.0.1/index.html b/src/pages/downloads/archive/html/2.0.1/index.html index 5113ac8..ad81940 100644 --- a/src/pages/downloads/archive/html/2.0.1/index.html +++ b/src/pages/downloads/archive/html/2.0.1/index.html @@ -638,7 +638,7 @@

      NetLogo 2.0.1 Downloads

      - Download (8.2 MB) + Download (8.2 MB)
      diff --git a/src/pages/downloads/archive/html/2.0.2/index.html b/src/pages/downloads/archive/html/2.0.2/index.html index ab69433..ec1b0d0 100644 --- a/src/pages/downloads/archive/html/2.0.2/index.html +++ b/src/pages/downloads/archive/html/2.0.2/index.html @@ -638,7 +638,7 @@

      NetLogo 2.0.2 Downloads

      - Download (8.5 MB) + Download (8.5 MB)
      diff --git a/src/pages/downloads/archive/html/2.0/index.html b/src/pages/downloads/archive/html/2.0/index.html index 934b5f3..a9f61f6 100644 --- a/src/pages/downloads/archive/html/2.0/index.html +++ b/src/pages/downloads/archive/html/2.0/index.html @@ -638,7 +638,7 @@

      NetLogo 2.0.2 Downloads

      - Download (8.5 MB) + Download (8.5 MB)
      diff --git a/src/pages/downloads/archive/html/2.1.0/index.html b/src/pages/downloads/archive/html/2.1.0/index.html index b2a215b..0983181 100644 --- a/src/pages/downloads/archive/html/2.1.0/index.html +++ b/src/pages/downloads/archive/html/2.1.0/index.html @@ -644,7 +644,7 @@

      NetLogo 2.1 Downloads

      - Download (10.9 MB) + Download (10.9 MB)
      diff --git a/src/pages/downloads/archive/html/2.1/index.html b/src/pages/downloads/archive/html/2.1/index.html index 4762e74..8c82e4d 100644 --- a/src/pages/downloads/archive/html/2.1/index.html +++ b/src/pages/downloads/archive/html/2.1/index.html @@ -644,7 +644,7 @@

      NetLogo 2.1 Downloads

      - Download (10.9 MB) + Download (10.9 MB)
      diff --git a/src/pages/downloads/archive/html/3.0.0/index.html b/src/pages/downloads/archive/html/3.0.0/index.html index e9a9a6f..7c74af4 100644 --- a/src/pages/downloads/archive/html/3.0.0/index.html +++ b/src/pages/downloads/archive/html/3.0.0/index.html @@ -97,7 +97,7 @@

      NetLogo 3.0 Downloads

      - + Download (29M)
      @@ -137,6 +137,6 @@

      NetLogo 3.0 Downloads

      - + diff --git a/src/pages/downloads/archive/html/3.0.1/index.html b/src/pages/downloads/archive/html/3.0.1/index.html index c121c79..2523db3 100644 --- a/src/pages/downloads/archive/html/3.0.1/index.html +++ b/src/pages/downloads/archive/html/3.0.1/index.html @@ -97,7 +97,7 @@

      NetLogo 3.0.1 Downloads

      - + Download (21M)
      @@ -137,6 +137,6 @@

      NetLogo 3.0.1 Downloads

      - + diff --git a/src/pages/downloads/archive/html/3.0.2/index.html b/src/pages/downloads/archive/html/3.0.2/index.html index dff4c24..d86162a 100644 --- a/src/pages/downloads/archive/html/3.0.2/index.html +++ b/src/pages/downloads/archive/html/3.0.2/index.html @@ -97,7 +97,7 @@

      NetLogo 3.0.2 Downloads

      - + Download (21M)
      @@ -137,6 +137,6 @@

      NetLogo 3.0.2 Downloads

      - + diff --git a/src/pages/downloads/archive/html/3.0/index.html b/src/pages/downloads/archive/html/3.0/index.html index ea1cc08..8b6161c 100644 --- a/src/pages/downloads/archive/html/3.0/index.html +++ b/src/pages/downloads/archive/html/3.0/index.html @@ -97,7 +97,7 @@

      NetLogo 3.0.2 Downloads

      - + Download (21M)
      @@ -137,6 +137,6 @@

      NetLogo 3.0.2 Downloads

      - + diff --git a/src/pages/downloads/archive/html/3.1.0/index.html b/src/pages/downloads/archive/html/3.1.0/index.html index fbe9e50..535c117 100644 --- a/src/pages/downloads/archive/html/3.1.0/index.html +++ b/src/pages/downloads/archive/html/3.1.0/index.html @@ -98,7 +98,7 @@

      April 14, 2006

      - + Download (24M)
      @@ -138,6 +138,6 @@

      April 14, 2006

      - + diff --git a/src/pages/downloads/archive/html/3.1.1/index.html b/src/pages/downloads/archive/html/3.1.1/index.html index 17f8bc5..8cdb34f 100644 --- a/src/pages/downloads/archive/html/3.1.1/index.html +++ b/src/pages/downloads/archive/html/3.1.1/index.html @@ -98,7 +98,7 @@

      June 16, 2006

      - + Download (24M)
      @@ -138,6 +138,6 @@

      June 16, 2006

      - + diff --git a/src/pages/downloads/archive/html/3.1.2/index.html b/src/pages/downloads/archive/html/3.1.2/index.html index 4a3fed0..69c78a4 100644 --- a/src/pages/downloads/archive/html/3.1.2/index.html +++ b/src/pages/downloads/archive/html/3.1.2/index.html @@ -98,7 +98,7 @@

      August 9, 2006

      - + Download (24M)
      @@ -138,6 +138,6 @@

      August 9, 2006

      - + diff --git a/src/pages/downloads/archive/html/3.1.3/index.html b/src/pages/downloads/archive/html/3.1.3/index.html index 0b7aa6d..3309fb6 100644 --- a/src/pages/downloads/archive/html/3.1.3/index.html +++ b/src/pages/downloads/archive/html/3.1.3/index.html @@ -98,7 +98,7 @@

      September 20, 2006

      - + Download (24M)
      @@ -138,6 +138,6 @@

      September 20, 2006

      - + diff --git a/src/pages/downloads/archive/html/3.1.4/index.html b/src/pages/downloads/archive/html/3.1.4/index.html index a8795a0..ee5e676 100644 --- a/src/pages/downloads/archive/html/3.1.4/index.html +++ b/src/pages/downloads/archive/html/3.1.4/index.html @@ -98,7 +98,7 @@

      February 16, 2007

      - + Download (24M)
      @@ -138,6 +138,6 @@

      February 16, 2007

      - + diff --git a/src/pages/downloads/archive/html/3.1.5/index.html b/src/pages/downloads/archive/html/3.1.5/index.html index 3eb4009..197f583 100644 --- a/src/pages/downloads/archive/html/3.1.5/index.html +++ b/src/pages/downloads/archive/html/3.1.5/index.html @@ -98,7 +98,7 @@

      December 5, 2007

      - + Download (24M)
      @@ -138,6 +138,6 @@

      December 5, 2007

      - + diff --git a/src/pages/downloads/archive/html/3.1/index.html b/src/pages/downloads/archive/html/3.1/index.html index a869fce..b8c4a7c 100644 --- a/src/pages/downloads/archive/html/3.1/index.html +++ b/src/pages/downloads/archive/html/3.1/index.html @@ -98,7 +98,7 @@

      December 5, 2007

      - + Download (24M)
      @@ -138,6 +138,6 @@

      December 5, 2007

      - + diff --git a/src/pages/downloads/archive/html/4.0.0/index.html b/src/pages/downloads/archive/html/4.0.0/index.html index c22de51..7b7e6b1 100644 --- a/src/pages/downloads/archive/html/4.0.0/index.html +++ b/src/pages/downloads/archive/html/4.0.0/index.html @@ -71,7 +71,7 @@

      September 25, 2007

      - + Download (30M)
      @@ -112,6 +112,6 @@

      September 25, 2007

      - + diff --git a/src/pages/downloads/archive/html/4.0.1/index.html b/src/pages/downloads/archive/html/4.0.1/index.html index 846f743..6849bc4 100644 --- a/src/pages/downloads/archive/html/4.0.1/index.html +++ b/src/pages/downloads/archive/html/4.0.1/index.html @@ -71,7 +71,7 @@

      October 31, 2007

      - + Download (30M)
      @@ -112,6 +112,6 @@

      October 31, 2007

      - + diff --git a/src/pages/downloads/archive/html/4.0.2/index.html b/src/pages/downloads/archive/html/4.0.2/index.html index 4cf05b8..544e202 100644 --- a/src/pages/downloads/archive/html/4.0.2/index.html +++ b/src/pages/downloads/archive/html/4.0.2/index.html @@ -71,7 +71,7 @@

      December 5, 2007

      - + Download (30M)
      @@ -112,6 +112,6 @@

      December 5, 2007

      - + diff --git a/src/pages/downloads/archive/html/4.0.3/index.html b/src/pages/downloads/archive/html/4.0.3/index.html index 5cf89c6..2743b5d 100644 --- a/src/pages/downloads/archive/html/4.0.3/index.html +++ b/src/pages/downloads/archive/html/4.0.3/index.html @@ -71,7 +71,7 @@

      August 6, 2008

      - + Download (35M)
      @@ -112,6 +112,6 @@

      August 6, 2008

      - + diff --git a/src/pages/downloads/archive/html/4.0.4/index.html b/src/pages/downloads/archive/html/4.0.4/index.html index 7de5a44..5b398e8 100644 --- a/src/pages/downloads/archive/html/4.0.4/index.html +++ b/src/pages/downloads/archive/html/4.0.4/index.html @@ -71,7 +71,7 @@

      November 24, 2008

      - + Download (35M)
      @@ -112,6 +112,6 @@

      November 24, 2008

      - + diff --git a/src/pages/downloads/archive/html/4.0.5/index.html b/src/pages/downloads/archive/html/4.0.5/index.html index 22c92e7..f409988 100644 --- a/src/pages/downloads/archive/html/4.0.5/index.html +++ b/src/pages/downloads/archive/html/4.0.5/index.html @@ -17,7 +17,7 @@ -

      +

      @@ -71,7 +71,7 @@

      December 14, 2009

      @@ -112,6 +112,6 @@

      December 14, 2009

      - + Download (35M)
      - + diff --git a/src/pages/downloads/archive/html/4.0.5/windows.html b/src/pages/downloads/archive/html/4.0.5/windows.html index 6637590..942fff9 100644 --- a/src/pages/downloads/archive/html/4.0.5/windows.html +++ b/src/pages/downloads/archive/html/4.0.5/windows.html @@ -15,7 +15,7 @@ -

      +

      diff --git a/src/pages/downloads/archive/html/4.0/index.html b/src/pages/downloads/archive/html/4.0/index.html index e99a9d7..412ac2e 100644 --- a/src/pages/downloads/archive/html/4.0/index.html +++ b/src/pages/downloads/archive/html/4.0/index.html @@ -17,7 +17,7 @@ -

      +

      @@ -71,7 +71,7 @@

      December 14, 2009

      @@ -112,6 +112,6 @@

      December 14, 2009

      - + Download (35M)
      - + diff --git a/src/pages/downloads/archive/html/4.0/windows.html b/src/pages/downloads/archive/html/4.0/windows.html index 9965ea7..017e4db 100644 --- a/src/pages/downloads/archive/html/4.0/windows.html +++ b/src/pages/downloads/archive/html/4.0/windows.html @@ -15,7 +15,7 @@ -

      +

      diff --git a/src/pages/downloads/archive/html/4.1.0/index.html b/src/pages/downloads/archive/html/4.1.0/index.html index b5ef258..cfdddb7 100644 --- a/src/pages/downloads/archive/html/4.1.0/index.html +++ b/src/pages/downloads/archive/html/4.1.0/index.html @@ -21,7 +21,7 @@ -

      +

      @@ -75,7 +75,7 @@

      December 20, 2009

      @@ -93,7 +93,7 @@

      si

      -Donate
      +Donate

      - + Download (41M)
      @@ -127,6 +127,6 @@

      si

      - + diff --git a/src/pages/downloads/archive/html/4.1.0/windows.html b/src/pages/downloads/archive/html/4.1.0/windows.html index 4196a05..35a2c8d 100644 --- a/src/pages/downloads/archive/html/4.1.0/windows.html +++ b/src/pages/downloads/archive/html/4.1.0/windows.html @@ -15,7 +15,7 @@ -

      +

      diff --git a/src/pages/downloads/archive/html/4.1.1/index.html b/src/pages/downloads/archive/html/4.1.1/index.html index 0d9b74a..82bcde0 100644 --- a/src/pages/downloads/archive/html/4.1.1/index.html +++ b/src/pages/downloads/archive/html/4.1.1/index.html @@ -72,7 +72,7 @@

      August 4, 2010

      @@ -81,7 +81,7 @@

      August 4, 2010

      - + Download (41M)
      -


      Donate
      +


      Donate

      @@ -115,6 +115,6 @@

      August 4, 2010

      - + diff --git a/src/pages/downloads/archive/html/4.1.2/index.html b/src/pages/downloads/archive/html/4.1.2/index.html index aacd4f8..4151a3c 100644 --- a/src/pages/downloads/archive/html/4.1.2/index.html +++ b/src/pages/downloads/archive/html/4.1.2/index.html @@ -72,7 +72,7 @@

      December 6, 2010

      - + Download (41M)
      @@ -81,7 +81,7 @@

      December 6, 2010

      -


      Donate
      +


      Donate

      @@ -115,6 +115,6 @@

      December 6, 2010

      - + diff --git a/src/pages/downloads/archive/html/4.1.3/index.html b/src/pages/downloads/archive/html/4.1.3/index.html index 0354252..8fd6e25 100644 --- a/src/pages/downloads/archive/html/4.1.3/index.html +++ b/src/pages/downloads/archive/html/4.1.3/index.html @@ -72,7 +72,7 @@

      April 3, 2011

      - + Download (42M)
      @@ -81,7 +81,7 @@

      April 3, 2011

      -


      Donate
      +


      Donate

      @@ -122,6 +122,6 @@

      April 3, 2011

      - + diff --git a/src/pages/downloads/archive/html/4.1/index.html b/src/pages/downloads/archive/html/4.1/index.html index 79e6047..698819b 100644 --- a/src/pages/downloads/archive/html/4.1/index.html +++ b/src/pages/downloads/archive/html/4.1/index.html @@ -72,7 +72,7 @@

      April 3, 2011

      - + Download (42M)
      @@ -81,7 +81,7 @@

      April 3, 2011

      -


      Donate
      +


      Donate

      @@ -122,6 +122,6 @@

      April 3, 2011

      - + diff --git a/src/pages/downloads/archive/html/5.0.0/index.html b/src/pages/downloads/archive/html/5.0.0/index.html index c31aefa..bffa94b 100644 --- a/src/pages/downloads/archive/html/5.0.0/index.html +++ b/src/pages/downloads/archive/html/5.0.0/index.html @@ -74,7 +74,7 @@

      February 16, 2012

      - Download + Download (60M)
      diff --git a/src/pages/downloads/archive/html/5.0.1/index.html b/src/pages/downloads/archive/html/5.0.1/index.html index a26a6d6..978ef57 100644 --- a/src/pages/downloads/archive/html/5.0.1/index.html +++ b/src/pages/downloads/archive/html/5.0.1/index.html @@ -74,7 +74,7 @@

      April 12, 2012

      - Download + Download (60M)
      diff --git a/src/pages/downloads/archive/html/5.0.2/index.html b/src/pages/downloads/archive/html/5.0.2/index.html index 9ee7904..4b466b4 100644 --- a/src/pages/downloads/archive/html/5.0.2/index.html +++ b/src/pages/downloads/archive/html/5.0.2/index.html @@ -74,7 +74,7 @@

      July 27, 2012

      - Download + Download (61M)
      diff --git a/src/pages/downloads/archive/html/5.0.3/index.html b/src/pages/downloads/archive/html/5.0.3/index.html index f2be373..62b01f1 100644 --- a/src/pages/downloads/archive/html/5.0.3/index.html +++ b/src/pages/downloads/archive/html/5.0.3/index.html @@ -74,7 +74,7 @@

      October 25, 2012

      - Download + Download (64M)
      diff --git a/src/pages/downloads/archive/html/5.0.4/index.html b/src/pages/downloads/archive/html/5.0.4/index.html index 490f475..e6969a6 100644 --- a/src/pages/downloads/archive/html/5.0.4/index.html +++ b/src/pages/downloads/archive/html/5.0.4/index.html @@ -74,7 +74,7 @@

      March 19, 2013

      - Download + Download (66M)
      diff --git a/src/pages/downloads/archive/html/5.0.5/index.html b/src/pages/downloads/archive/html/5.0.5/index.html index 5be3c8a..3d4b782 100644 --- a/src/pages/downloads/archive/html/5.0.5/index.html +++ b/src/pages/downloads/archive/html/5.0.5/index.html @@ -74,7 +74,7 @@

      December 19, 2013

      - Download + Download (67M)
      diff --git a/src/pages/downloads/archive/html/5.0/index.html b/src/pages/downloads/archive/html/5.0/index.html index 497c5d7..f8fb55e 100644 --- a/src/pages/downloads/archive/html/5.0/index.html +++ b/src/pages/downloads/archive/html/5.0/index.html @@ -74,7 +74,7 @@

      July 25, 2014

      - Download + Download (67M)
      diff --git a/src/pages/downloads/archive/html/5.1.0-M1/index.html b/src/pages/downloads/archive/html/5.1.0-M1/index.html index 93c592a..eef303a 100644 --- a/src/pages/downloads/archive/html/5.1.0-M1/index.html +++ b/src/pages/downloads/archive/html/5.1.0-M1/index.html @@ -74,7 +74,7 @@

      INTERIM DEVEL BUILD

      - Download + Download (78M)
      diff --git a/src/pages/downloads/archive/html/5.1.0-M2/index.html b/src/pages/downloads/archive/html/5.1.0-M2/index.html index 65211cd..58c8d9a 100644 --- a/src/pages/downloads/archive/html/5.1.0-M2/index.html +++ b/src/pages/downloads/archive/html/5.1.0-M2/index.html @@ -74,7 +74,7 @@

      INTERIM DEVEL BUILD

      - Download + Download (78M)
      diff --git a/src/pages/downloads/archive/html/5.1.0/index.html b/src/pages/downloads/archive/html/5.1.0/index.html index 5ea47c8..d6b92ed 100644 --- a/src/pages/downloads/archive/html/5.1.0/index.html +++ b/src/pages/downloads/archive/html/5.1.0/index.html @@ -74,7 +74,7 @@

      July 25, 2014

      - Download + Download (67M)
      diff --git a/src/pages/downloads/archive/html/5.1/index.html b/src/pages/downloads/archive/html/5.1/index.html index a02b6c1..4df52cd 100644 --- a/src/pages/downloads/archive/html/5.1/index.html +++ b/src/pages/downloads/archive/html/5.1/index.html @@ -74,7 +74,7 @@

      July 25, 2014

      - Download + Download (67M)
      diff --git a/src/pages/downloads/archive/html/5.2-RC2/index.html b/src/pages/downloads/archive/html/5.2-RC2/index.html index 783c9ae..47bb5fb 100644 --- a/src/pages/downloads/archive/html/5.2-RC2/index.html +++ b/src/pages/downloads/archive/html/5.2-RC2/index.html @@ -74,7 +74,7 @@

      January 26, 2015

      - Download + Download (69M)
      diff --git a/src/pages/downloads/archive/html/5.2-RC3/index.html b/src/pages/downloads/archive/html/5.2-RC3/index.html index 56ec9f3..eeff1cf 100644 --- a/src/pages/downloads/archive/html/5.2-RC3/index.html +++ b/src/pages/downloads/archive/html/5.2-RC3/index.html @@ -74,7 +74,7 @@

      January 26, 2015

      - Download + Download (97M)
      diff --git a/src/pages/downloads/archive/html/5.2.0-RC4/index.html b/src/pages/downloads/archive/html/5.2.0-RC4/index.html index 66d4733..74ef6b4 100644 --- a/src/pages/downloads/archive/html/5.2.0-RC4/index.html +++ b/src/pages/downloads/archive/html/5.2.0-RC4/index.html @@ -74,7 +74,7 @@

      March 21, 2015

      - Download + Download (100M)
      diff --git a/src/pages/downloads/archive/html/5.2.0-RC5/index.html b/src/pages/downloads/archive/html/5.2.0-RC5/index.html index 8771b5f..32dd1ce 100644 --- a/src/pages/downloads/archive/html/5.2.0-RC5/index.html +++ b/src/pages/downloads/archive/html/5.2.0-RC5/index.html @@ -80,7 +80,7 @@

      April 1, 2015

      - Download + Download (101M)
      diff --git a/src/pages/downloads/archive/html/5.2.0/index.html b/src/pages/downloads/archive/html/5.2.0/index.html index 67d01d2..3d37b27 100644 --- a/src/pages/downloads/archive/html/5.2.0/index.html +++ b/src/pages/downloads/archive/html/5.2.0/index.html @@ -80,7 +80,7 @@

      April 3, 2015

      - Download + Download (101M)
      diff --git a/src/pages/downloads/archive/html/5.2.1/index.html b/src/pages/downloads/archive/html/5.2.1/index.html index cf6c7f7..0e116f2 100644 --- a/src/pages/downloads/archive/html/5.2.1/index.html +++ b/src/pages/downloads/archive/html/5.2.1/index.html @@ -80,7 +80,7 @@

      October 1, 2015

      - Download + Download (104M)
      diff --git a/src/pages/downloads/archive/html/5.2/index.html b/src/pages/downloads/archive/html/5.2/index.html index ad985e1..c5546fc 100644 --- a/src/pages/downloads/archive/html/5.2/index.html +++ b/src/pages/downloads/archive/html/5.2/index.html @@ -80,7 +80,7 @@

      October 1, 2015

      - Download + Download (104M)
      diff --git a/src/pages/downloads/archive/html/5.3-RC1/index.html b/src/pages/downloads/archive/html/5.3-RC1/index.html index 95314c6..a71d02a 100644 --- a/src/pages/downloads/archive/html/5.3-RC1/index.html +++ b/src/pages/downloads/archive/html/5.3-RC1/index.html @@ -185,7 +185,9 @@

    • If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit Windows. More information is available - on the requirements page. + on the requirements page.
    • diff --git a/src/pages/downloads/archive/html/5.3.0/index.html b/src/pages/downloads/archive/html/5.3.0/index.html index 75e33cd..47751a7 100644 --- a/src/pages/downloads/archive/html/5.3.0/index.html +++ b/src/pages/downloads/archive/html/5.3.0/index.html @@ -185,7 +185,9 @@

    • If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit Windows. More information is available - on the requirements page. + on the requirements page.
    • diff --git a/src/pages/downloads/archive/html/5.3.1-RC1/index.html b/src/pages/downloads/archive/html/5.3.1-RC1/index.html index a764f2a..3b72a11 100644 --- a/src/pages/downloads/archive/html/5.3.1-RC1/index.html +++ b/src/pages/downloads/archive/html/5.3.1-RC1/index.html @@ -185,7 +185,9 @@

    • If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit Windows. More information is available - on the requirements page. + on the requirements page.
    • diff --git a/src/pages/downloads/archive/html/5.3.1-RC2/index.html b/src/pages/downloads/archive/html/5.3.1-RC2/index.html index b64921f..3527484 100644 --- a/src/pages/downloads/archive/html/5.3.1-RC2/index.html +++ b/src/pages/downloads/archive/html/5.3.1-RC2/index.html @@ -185,7 +185,9 @@

    • If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit Windows. More information is available - on the requirements page. + on the requirements page.
    • diff --git a/src/pages/downloads/archive/html/5.3.1-RC3/index.html b/src/pages/downloads/archive/html/5.3.1-RC3/index.html index 321f89f..362d809 100644 --- a/src/pages/downloads/archive/html/5.3.1-RC3/index.html +++ b/src/pages/downloads/archive/html/5.3.1-RC3/index.html @@ -185,7 +185,9 @@

    • If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit Windows. More information is available - on the requirements page. + on the requirements page.
    • diff --git a/src/pages/downloads/archive/html/5.3.1/index.html b/src/pages/downloads/archive/html/5.3.1/index.html index 32b47d9..69420a3 100644 --- a/src/pages/downloads/archive/html/5.3.1/index.html +++ b/src/pages/downloads/archive/html/5.3.1/index.html @@ -185,7 +185,9 @@

    • If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit Windows. More information is available - on the requirements page. + on the requirements page.
    • diff --git a/src/pages/downloads/archive/html/5.3/index.html b/src/pages/downloads/archive/html/5.3/index.html index 2e60650..2456d8c 100644 --- a/src/pages/downloads/archive/html/5.3/index.html +++ b/src/pages/downloads/archive/html/5.3/index.html @@ -185,7 +185,9 @@

    • If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit Windows. More information is available - on the requirements page. + on the requirements page.
    • diff --git a/src/pages/downloads/archive/html/6.0-BETA1/index.html b/src/pages/downloads/archive/html/6.0-BETA1/index.html index f13f29f..1542fb4 100644 --- a/src/pages/downloads/archive/html/6.0-BETA1/index.html +++ b/src/pages/downloads/archive/html/6.0-BETA1/index.html @@ -188,7 +188,9 @@

    • If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit Windows. More information is available - on the requirements page. + on the requirements page.
    • diff --git a/src/pages/downloads/archive/html/6.0-BETA2/index.html b/src/pages/downloads/archive/html/6.0-BETA2/index.html index cc30a9f..a8ad104 100644 --- a/src/pages/downloads/archive/html/6.0-BETA2/index.html +++ b/src/pages/downloads/archive/html/6.0-BETA2/index.html @@ -188,7 +188,9 @@

    • If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit Windows. More information is available - on the requirements page. + on the requirements page.
    • diff --git a/src/pages/downloads/archive/html/6.0-CONSTRUCTIONISM-2016-PREVIEW/index.html b/src/pages/downloads/archive/html/6.0-CONSTRUCTIONISM-2016-PREVIEW/index.html index 35432f6..421abf4 100644 --- a/src/pages/downloads/archive/html/6.0-CONSTRUCTIONISM-2016-PREVIEW/index.html +++ b/src/pages/downloads/archive/html/6.0-CONSTRUCTIONISM-2016-PREVIEW/index.html @@ -200,7 +200,9 @@

    • If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit Windows. More information is available - on the requirements page. + on the requirements page.
    • diff --git a/src/pages/downloads/archive/html/6.0-M1/index.html b/src/pages/downloads/archive/html/6.0-M1/index.html index 6e8bbca..100a916 100644 --- a/src/pages/downloads/archive/html/6.0-M1/index.html +++ b/src/pages/downloads/archive/html/6.0-M1/index.html @@ -185,7 +185,9 @@

    • If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit Windows. More information is available - on the requirements page. + on the requirements page.
    • diff --git a/src/pages/downloads/archive/html/6.0-M2/index.html b/src/pages/downloads/archive/html/6.0-M2/index.html index 096e458..619e730 100644 --- a/src/pages/downloads/archive/html/6.0-M2/index.html +++ b/src/pages/downloads/archive/html/6.0-M2/index.html @@ -185,7 +185,9 @@

    • If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit Windows. More information is available - on the requirements page. + on the requirements page.
    • diff --git a/src/pages/downloads/archive/html/6.0-M3/index.html b/src/pages/downloads/archive/html/6.0-M3/index.html index 1c380c6..610f193 100644 --- a/src/pages/downloads/archive/html/6.0-M3/index.html +++ b/src/pages/downloads/archive/html/6.0-M3/index.html @@ -185,7 +185,9 @@

    • If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit Windows. More information is available - on the requirements page. + on the requirements page.
    • diff --git a/src/pages/downloads/archive/html/6.0-M4/index.html b/src/pages/downloads/archive/html/6.0-M4/index.html index 2157def..bc2dfa1 100644 --- a/src/pages/downloads/archive/html/6.0-M4/index.html +++ b/src/pages/downloads/archive/html/6.0-M4/index.html @@ -185,7 +185,9 @@

    • If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit Windows. More information is available - on the requirements page. + on the requirements page.
    • diff --git a/src/pages/downloads/archive/html/6.0-M5/index.html b/src/pages/downloads/archive/html/6.0-M5/index.html index 2659106..3bb8789 100644 --- a/src/pages/downloads/archive/html/6.0-M5/index.html +++ b/src/pages/downloads/archive/html/6.0-M5/index.html @@ -185,7 +185,9 @@

    • If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit Windows. More information is available - on the requirements page. + on the requirements page.
    • diff --git a/src/pages/downloads/archive/html/6.0-M6/index.html b/src/pages/downloads/archive/html/6.0-M6/index.html index 78660e9..e986a61 100644 --- a/src/pages/downloads/archive/html/6.0-M6/index.html +++ b/src/pages/downloads/archive/html/6.0-M6/index.html @@ -185,7 +185,9 @@

    • If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit Windows. More information is available - on the requirements page. + on the requirements page.
    • diff --git a/src/pages/downloads/archive/html/6.0-M7/index.html b/src/pages/downloads/archive/html/6.0-M7/index.html index 8289432..a4b746e 100644 --- a/src/pages/downloads/archive/html/6.0-M7/index.html +++ b/src/pages/downloads/archive/html/6.0-M7/index.html @@ -185,7 +185,9 @@

    • If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit Windows. More information is available - on the requirements page. + on the requirements page.
    • diff --git a/src/pages/downloads/archive/html/6.0-M8/index.html b/src/pages/downloads/archive/html/6.0-M8/index.html index c1eee91..aa676f9 100644 --- a/src/pages/downloads/archive/html/6.0-M8/index.html +++ b/src/pages/downloads/archive/html/6.0-M8/index.html @@ -185,7 +185,9 @@

    • If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit Windows. More information is available - on the requirements page. + on the requirements page.
    • diff --git a/src/pages/downloads/archive/html/6.0-M9/index.html b/src/pages/downloads/archive/html/6.0-M9/index.html index a598d24..fe41d19 100644 --- a/src/pages/downloads/archive/html/6.0-M9/index.html +++ b/src/pages/downloads/archive/html/6.0-M9/index.html @@ -185,7 +185,9 @@

    • If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit Windows. More information is available - on the requirements page. + on the requirements page.
    • diff --git a/src/pages/downloads/archive/html/6.0beta/index.html b/src/pages/downloads/archive/html/6.0beta/index.html index 21fc9b1..c4937d5 100644 --- a/src/pages/downloads/archive/html/6.0beta/index.html +++ b/src/pages/downloads/archive/html/6.0beta/index.html @@ -185,7 +185,9 @@

    • If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit Windows. More information is available - on the requirements page. + on the requirements page.
    • diff --git a/src/pages/downloads/archive/html/7.0.1/index.html b/src/pages/downloads/archive/html/7.0.1/index.html new file mode 100644 index 0000000..d1f2be3 --- /dev/null +++ b/src/pages/downloads/archive/html/7.0.1/index.html @@ -0,0 +1,249 @@ + + + + + + NetLogo 7.0.1 Downloads + + + +

      + NetLogo banner +

      + +

      + + + + +
      +

      NetLogo 7.0.1 Downloads

      +

      October 22, 2025

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X Intel +
      + Download + (418 MB) +
      +
      + + Mac OS X Silicon +
      + Download + (392 MB) +
      +
      + + Windows (64-bit) +
      + Download + (377 MB) +
      +
      + + Windows (32-bit) +
      + Download + (352 MB) +
      +
      + + Linux (64-bit) +
      + Download + (414 MB) +
      +
      + + Linux (32-bit) +
      + Download + (380 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
      • +
      • + NetLogo 7.0.1 requires OS X 10.8.3 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
      • +
      • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + If you are not sure about which version to download and your computer was made after 2005, choose 64-bit. + More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/7.0.2/index.html b/src/pages/downloads/archive/html/7.0.2/index.html new file mode 100644 index 0000000..4f52677 --- /dev/null +++ b/src/pages/downloads/archive/html/7.0.2/index.html @@ -0,0 +1,249 @@ + + + + + + NetLogo 7.0.2 Downloads + + + +

      + NetLogo banner +

      + +

      + + + + +
      +

      NetLogo 7.0.2 Downloads

      +

      October 24, 2025

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X Intel +
      + Download + (418 MB) +
      +
      + + Mac OS X Silicon +
      + Download + (392 MB) +
      +
      + + Windows (64-bit) +
      + Download + (377 MB) +
      +
      + + Windows (32-bit) +
      + Download + (352 MB) +
      +
      + + Linux (64-bit) +
      + Download + (414 MB) +
      +
      + + Linux (32-bit) +
      + Download + (380 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
      • +
      • + NetLogo 7.0.2 requires OS X 10.8.3 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
      • +
      • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + If you are not sure about which version to download and your computer was made after 2005, choose 64-bit. + More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + diff --git a/src/pages/downloads/archive/html/7.0.3-beta1/index.html b/src/pages/downloads/archive/html/7.0.3-beta1/index.html new file mode 100644 index 0000000..42a8435 --- /dev/null +++ b/src/pages/downloads/archive/html/7.0.3-beta1/index.html @@ -0,0 +1,251 @@ + + + + + + NetLogo 7.0.3-beta1 Downloads + + + +

      + NetLogo banner +

      + +

      + + + + +
      +

      NetLogo 7.0.3-beta1 Downloads

      +

      November 13, 2025

      +

      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + + Mac OS X Intel +
      + Download + (419 MB) +
      +
      + + Mac OS X Silicon +
      + Download + (391 MB) +
      +
      + + Windows (64-bit) +
      + Download + (378 MB) +
      +
      + + Windows (32-bit) +
      + Download + (352 MB) +
      +
      + + Linux (64-bit) +
      + Download + (416 MB) +
      +
      + + Linux (32-bit) +
      + Download + (382 MB) +
      +
      + +
      +

      + sign up for NetLogo community mailing lists
      + (where many questions can be posted and answered) +

      + +
      +

      + NetLogo is free, open source software.
      + Your donations (tax deductible) will help us continue to maintain and improve it. +

      +

      + Donate +
      +

      + +

      + + + + +
      +

      +
      + +

      + Notes for Mac OS X users:
      +

      + +
        +
      • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
      • +
      • + NetLogo 7.0.3-beta1 requires OS X 10.8.3 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
      • +
      + +

      +
      +

      + Notes for Windows users:
      +

      + +
        +
      • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
      • +
      • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      • + If you are not sure about which version to download and your computer was made after 2005, choose 64-bit. + More information is available + on the requirements page. +
      • +
      + +

      +
      + +

      + Notes for Linux users:
      +

      + +
        +
      • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
      • +
      + +

      +
      + +

      + Problems downloading? Write bugs@ccl.northwestern.edu. + +

      +
      + + From 9d6725e573a09fd5ed6345d8ad6f55956a0f4956 Mon Sep 17 00:00:00 2001 From: Omar Ibrahim Date: Fri, 14 Nov 2025 13:31:50 -0600 Subject: [PATCH 16/16] Minor: Change links in download archive to open in a new tab --- .../download/archive/version-entry.tsx | 110 +++++++++--------- .../downloads/archive/html/4.0.5/index.html | 2 +- .../downloads/archive/html/4.0/index.html | 2 +- .../downloads/archive/html/4.1.0/index.html | 2 +- .../downloads/archive/html/4.1.0/windows.html | 2 +- .../downloads/archive/html/5.3-RC1/index.html | 2 +- .../downloads/archive/html/5.3.0/index.html | 2 +- .../archive/html/5.3.1-RC1/index.html | 2 +- .../archive/html/5.3.1-RC2/index.html | 2 +- .../archive/html/5.3.1-RC3/index.html | 2 +- .../downloads/archive/html/5.3.1/index.html | 2 +- .../downloads/archive/html/5.3/index.html | 2 +- .../archive/html/6.0-BETA1/index.html | 2 +- .../archive/html/6.0-BETA2/index.html | 2 +- .../index.html | 5 +- .../downloads/archive/html/6.0-M1/index.html | 2 +- .../downloads/archive/html/6.0-M2/index.html | 2 +- .../downloads/archive/html/6.0-M3/index.html | 2 +- .../downloads/archive/html/6.0-M4/index.html | 2 +- .../downloads/archive/html/6.0-M5/index.html | 2 +- .../downloads/archive/html/6.0-M6/index.html | 2 +- .../downloads/archive/html/6.0-M7/index.html | 2 +- .../downloads/archive/html/6.0-M8/index.html | 2 +- .../downloads/archive/html/6.0-M9/index.html | 2 +- .../downloads/archive/html/6.0.0/index.html | 2 +- .../archive/html/6.0.1-M1/index.html | 2 +- .../archive/html/6.0.1-RC1/index.html | 2 +- .../downloads/archive/html/6.0.1/index.html | 2 +- .../downloads/archive/html/6.0/index.html | 2 +- .../downloads/archive/html/6.0beta/index.html | 2 +- .../downloads/archive/html/6.1.0/index.html | 4 +- .../downloads/archive/html/6.1/index.html | 2 +- .../downloads/archive/html/6.2.0/index.html | 2 +- .../downloads/archive/html/6.2/index.html | 2 +- .../downloads/archive/html/6.3.0/index.html | 2 +- .../downloads/archive/html/6.3/index.html | 2 +- .../archive/html/6.4.0-beta1/index.html | 2 +- .../downloads/archive/html/6.4.0/index.html | 2 +- .../downloads/archive/html/6.4/index.html | 2 +- .../archive/html/7.0.0-beta1/index.html | 2 +- .../archive/html/7.0.0-beta2/index.html | 2 +- .../downloads/archive/html/7.0.0/index.html | 2 +- 42 files changed, 99 insertions(+), 98 deletions(-) diff --git a/src/components/download/archive/version-entry.tsx b/src/components/download/archive/version-entry.tsx index ee6cdd1..8b6b329 100644 --- a/src/components/download/archive/version-entry.tsx +++ b/src/components/download/archive/version-entry.tsx @@ -1,88 +1,88 @@ // VersionEntry Component interface VersionEntryProps { - // The version string, e.g., "6.2.0" - version: string; - // The release date string in a standard format, e.g., "2020-05-15" - releaseDate?: string; - // Optional URL to the version's download page - href?: string; - // Optional flags indicating special version types - flags?: VersionFlag[]; - // Optional short description (0-2 sentences) or list of key features - blurb?: string | string[]; + // The version string, e.g., "6.2.0" + version: string; + // The release date string in a standard format, e.g., "2020-05-15" + releaseDate?: string; + // Optional URL to the version's download page + href?: string; + // Optional flags indicating special version types + flags?: VersionFlag[]; + // Optional short description (0-2 sentences) or list of key features + blurb?: string | string[]; } const VersionEntry = ({ version, releaseDate, flags = [], href, blurb }: VersionEntryProps) => { - const formattedDate = releaseDate ? formatReleaseDate(releaseDate) : undefined; + const formattedDate = releaseDate ? formatReleaseDate(releaseDate) : undefined; - return ( - <> - NetLogo {version} - {formattedDate && ( - {formattedDate} - )} - {flags.length > 0 && ( - - {flags.map((flag) => ( - - ))} - - )} - - - ) + return ( + <> + NetLogo {version} + {formattedDate && ( + {formattedDate} + )} + {flags.length > 0 && ( + + {flags.map((flag) => ( + + ))} + + )} + + + ) } // Blurb Component const Blurb = ({ text }: { text: string | string[] | undefined }) => { - if (!text) return null; + if (!text) return null; - if (Array.isArray(text) && text.length > 0) { - return ( -
        - {text.map((item, index) => ( -
      • {item}
      • - ))} -
      - ); - } + if (Array.isArray(text) && text.length > 0) { + return ( +
        + {text.map((item, index) => ( +
      • {item}
      • + ))} +
      + ); + } - return

      {text}

      ; + return

      {text}

      ; }; // VersionFlagBadge Subcomponent type VersionFlag = 'BETA' | 'RC' | 'REVISION' | 'LATEST' | "MILESTONE" | "PREVIEW"; const versionFlagStyles: { [key in VersionFlag]: string } = { - BETA: "badge bg-warning text-dark me-1 ms-2", - RC: "badge bg-info me-1 ms-2", - REVISION: "badge bg-secondary me-1 ms-2", - LATEST: "badge bg-success me-1 ms-2", - MILESTONE: "badge bg-primary me-1 ms-2", - PREVIEW: "badge bg-dark me-1 ms-2", + BETA: "badge bg-warning text-dark me-1 ms-2", + RC: "badge bg-info me-1 ms-2", + REVISION: "badge bg-secondary me-1 ms-2", + LATEST: "badge bg-success me-1 ms-2", + MILESTONE: "badge bg-primary me-1 ms-2", + PREVIEW: "badge bg-dark me-1 ms-2", }; const versionFlagTexts: { [key in VersionFlag]: string } = { - BETA: "Beta", - RC: "Release Candidate", - REVISION: "Revision", - LATEST: "Latest", - MILESTONE: "Milestone", - PREVIEW: "Preview", + BETA: "Beta", + RC: "Release Candidate", + REVISION: "Revision", + LATEST: "Latest", + MILESTONE: "Milestone", + PREVIEW: "Preview", }; const VersionFlagBadge = ({ flag }: { flag: VersionFlag }) => { - let badgeText = versionFlagTexts[flag]; - let badgeClass = versionFlagStyles[flag]; + let badgeText = versionFlagTexts[flag]; + let badgeClass = versionFlagStyles[flag]; - return {badgeText}; + return {badgeText}; }; // Utilities const formatReleaseDate = (dateString: string) => { - const options: Intl.DateTimeFormatOptions = { year: 'numeric', month: 'long' }; - return new Date(dateString).toLocaleDateString(undefined, options); + const options: Intl.DateTimeFormatOptions = { year: 'numeric', month: 'long' }; + return new Date(dateString).toLocaleDateString(undefined, options); }; export type { VersionEntryProps, VersionFlag }; diff --git a/src/pages/downloads/archive/html/4.0.5/index.html b/src/pages/downloads/archive/html/4.0.5/index.html index f409988..26d3fd3 100644 --- a/src/pages/downloads/archive/html/4.0.5/index.html +++ b/src/pages/downloads/archive/html/4.0.5/index.html @@ -17,7 +17,7 @@ -

      +

      diff --git a/src/pages/downloads/archive/html/4.0/index.html b/src/pages/downloads/archive/html/4.0/index.html index 412ac2e..14a6d9a 100644 --- a/src/pages/downloads/archive/html/4.0/index.html +++ b/src/pages/downloads/archive/html/4.0/index.html @@ -17,7 +17,7 @@ -

      +

      diff --git a/src/pages/downloads/archive/html/4.1.0/index.html b/src/pages/downloads/archive/html/4.1.0/index.html index cfdddb7..a2deca0 100644 --- a/src/pages/downloads/archive/html/4.1.0/index.html +++ b/src/pages/downloads/archive/html/4.1.0/index.html @@ -21,7 +21,7 @@ -

      +

      diff --git a/src/pages/downloads/archive/html/4.1.0/windows.html b/src/pages/downloads/archive/html/4.1.0/windows.html index 35a2c8d..a3bed22 100644 --- a/src/pages/downloads/archive/html/4.1.0/windows.html +++ b/src/pages/downloads/archive/html/4.1.0/windows.html @@ -15,7 +15,7 @@ -

      +

      diff --git a/src/pages/downloads/archive/html/5.3-RC1/index.html b/src/pages/downloads/archive/html/5.3-RC1/index.html index a71d02a..7ef58f3 100644 --- a/src/pages/downloads/archive/html/5.3-RC1/index.html +++ b/src/pages/downloads/archive/html/5.3-RC1/index.html @@ -162,7 +162,7 @@

    • NetLogo 5.3-RC1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier. There are no functional changes between 5.2.1 and 5.3.
    • diff --git a/src/pages/downloads/archive/html/5.3.0/index.html b/src/pages/downloads/archive/html/5.3.0/index.html index 47751a7..e2d121c 100644 --- a/src/pages/downloads/archive/html/5.3.0/index.html +++ b/src/pages/downloads/archive/html/5.3.0/index.html @@ -162,7 +162,7 @@

    • NetLogo 5.3 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier. There are no functional changes between 5.2.1 and 5.3.
    • diff --git a/src/pages/downloads/archive/html/5.3.1-RC1/index.html b/src/pages/downloads/archive/html/5.3.1-RC1/index.html index 3b72a11..561a44f 100644 --- a/src/pages/downloads/archive/html/5.3.1-RC1/index.html +++ b/src/pages/downloads/archive/html/5.3.1-RC1/index.html @@ -162,7 +162,7 @@

    • NetLogo 5.3.1-RC1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier. There are no functional changes between 5.2.1 and 5.3.
    • diff --git a/src/pages/downloads/archive/html/5.3.1-RC2/index.html b/src/pages/downloads/archive/html/5.3.1-RC2/index.html index 3527484..fa1f104 100644 --- a/src/pages/downloads/archive/html/5.3.1-RC2/index.html +++ b/src/pages/downloads/archive/html/5.3.1-RC2/index.html @@ -162,7 +162,7 @@

    • NetLogo 5.3.1-RC2 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier. There are no functional changes between 5.2.1 and 5.3.
    • diff --git a/src/pages/downloads/archive/html/5.3.1-RC3/index.html b/src/pages/downloads/archive/html/5.3.1-RC3/index.html index 362d809..60fd505 100644 --- a/src/pages/downloads/archive/html/5.3.1-RC3/index.html +++ b/src/pages/downloads/archive/html/5.3.1-RC3/index.html @@ -162,7 +162,7 @@

    • NetLogo 5.3.1-RC3 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier. There are no functional changes between 5.2.1 and 5.3.
    • diff --git a/src/pages/downloads/archive/html/5.3.1/index.html b/src/pages/downloads/archive/html/5.3.1/index.html index 69420a3..da715ea 100644 --- a/src/pages/downloads/archive/html/5.3.1/index.html +++ b/src/pages/downloads/archive/html/5.3.1/index.html @@ -162,7 +162,7 @@

    • NetLogo 5.3.1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier. There are no functional changes between 5.2.1 and 5.3.
    • diff --git a/src/pages/downloads/archive/html/5.3/index.html b/src/pages/downloads/archive/html/5.3/index.html index 2456d8c..6200d13 100644 --- a/src/pages/downloads/archive/html/5.3/index.html +++ b/src/pages/downloads/archive/html/5.3/index.html @@ -162,7 +162,7 @@

    • NetLogo 5.3.1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier. There are no functional changes between 5.2.1 and 5.3.
    • diff --git a/src/pages/downloads/archive/html/6.0-BETA1/index.html b/src/pages/downloads/archive/html/6.0-BETA1/index.html index 1542fb4..8b7c57c 100644 --- a/src/pages/downloads/archive/html/6.0-BETA1/index.html +++ b/src/pages/downloads/archive/html/6.0-BETA1/index.html @@ -162,7 +162,7 @@

    • NetLogo 6.0-BETA1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier. There are no functional changes between 5.2.1 and 5.3.
    • diff --git a/src/pages/downloads/archive/html/6.0-BETA2/index.html b/src/pages/downloads/archive/html/6.0-BETA2/index.html index a8ad104..13e1448 100644 --- a/src/pages/downloads/archive/html/6.0-BETA2/index.html +++ b/src/pages/downloads/archive/html/6.0-BETA2/index.html @@ -162,7 +162,7 @@

    • NetLogo 6.0-BETA2 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier. There are no functional changes between 5.2.1 and 5.3.
    • diff --git a/src/pages/downloads/archive/html/6.0-CONSTRUCTIONISM-2016-PREVIEW/index.html b/src/pages/downloads/archive/html/6.0-CONSTRUCTIONISM-2016-PREVIEW/index.html index 421abf4..09b6113 100644 --- a/src/pages/downloads/archive/html/6.0-CONSTRUCTIONISM-2016-PREVIEW/index.html +++ b/src/pages/downloads/archive/html/6.0-CONSTRUCTIONISM-2016-PREVIEW/index.html @@ -177,7 +177,7 @@

    • NetLogo 6.0-CONSTRUCTIONISM-2016-PREVIEW requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier. There are no functional changes between 5.2.1 and 5.3.
    • @@ -200,7 +200,8 @@

    • If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit Windows. More information is available - on the requirements page.
    • diff --git a/src/pages/downloads/archive/html/6.0-M1/index.html b/src/pages/downloads/archive/html/6.0-M1/index.html index 100a916..3b41c42 100644 --- a/src/pages/downloads/archive/html/6.0-M1/index.html +++ b/src/pages/downloads/archive/html/6.0-M1/index.html @@ -162,7 +162,7 @@

    • NetLogo 6.0-M1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier. There are no functional changes between 5.2.1 and 5.3.
    • diff --git a/src/pages/downloads/archive/html/6.0-M2/index.html b/src/pages/downloads/archive/html/6.0-M2/index.html index 619e730..9ac5f85 100644 --- a/src/pages/downloads/archive/html/6.0-M2/index.html +++ b/src/pages/downloads/archive/html/6.0-M2/index.html @@ -162,7 +162,7 @@

    • NetLogo 6.0-M2 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier. There are no functional changes between 5.2.1 and 5.3.
    • diff --git a/src/pages/downloads/archive/html/6.0-M3/index.html b/src/pages/downloads/archive/html/6.0-M3/index.html index 610f193..7238ec6 100644 --- a/src/pages/downloads/archive/html/6.0-M3/index.html +++ b/src/pages/downloads/archive/html/6.0-M3/index.html @@ -162,7 +162,7 @@

    • NetLogo 6.0-M3 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier. There are no functional changes between 5.2.1 and 5.3.
    • diff --git a/src/pages/downloads/archive/html/6.0-M4/index.html b/src/pages/downloads/archive/html/6.0-M4/index.html index bc2dfa1..bd17be2 100644 --- a/src/pages/downloads/archive/html/6.0-M4/index.html +++ b/src/pages/downloads/archive/html/6.0-M4/index.html @@ -162,7 +162,7 @@

    • NetLogo 6.0-M4 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier. There are no functional changes between 5.2.1 and 5.3.
    • diff --git a/src/pages/downloads/archive/html/6.0-M5/index.html b/src/pages/downloads/archive/html/6.0-M5/index.html index 3bb8789..4001b4a 100644 --- a/src/pages/downloads/archive/html/6.0-M5/index.html +++ b/src/pages/downloads/archive/html/6.0-M5/index.html @@ -162,7 +162,7 @@

    • NetLogo 6.0-M5 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier. There are no functional changes between 5.2.1 and 5.3.
    • diff --git a/src/pages/downloads/archive/html/6.0-M6/index.html b/src/pages/downloads/archive/html/6.0-M6/index.html index e986a61..ab79f66 100644 --- a/src/pages/downloads/archive/html/6.0-M6/index.html +++ b/src/pages/downloads/archive/html/6.0-M6/index.html @@ -162,7 +162,7 @@

    • NetLogo 6.0-M6 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier. There are no functional changes between 5.2.1 and 5.3.
    • diff --git a/src/pages/downloads/archive/html/6.0-M7/index.html b/src/pages/downloads/archive/html/6.0-M7/index.html index a4b746e..2757cab 100644 --- a/src/pages/downloads/archive/html/6.0-M7/index.html +++ b/src/pages/downloads/archive/html/6.0-M7/index.html @@ -162,7 +162,7 @@

    • NetLogo 6.0-M7 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier. There are no functional changes between 5.2.1 and 5.3.
    • diff --git a/src/pages/downloads/archive/html/6.0-M8/index.html b/src/pages/downloads/archive/html/6.0-M8/index.html index aa676f9..d53fae8 100644 --- a/src/pages/downloads/archive/html/6.0-M8/index.html +++ b/src/pages/downloads/archive/html/6.0-M8/index.html @@ -162,7 +162,7 @@

    • NetLogo 6.0-M8 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier. There are no functional changes between 5.2.1 and 5.3.
    • diff --git a/src/pages/downloads/archive/html/6.0-M9/index.html b/src/pages/downloads/archive/html/6.0-M9/index.html index fe41d19..74aab8a 100644 --- a/src/pages/downloads/archive/html/6.0-M9/index.html +++ b/src/pages/downloads/archive/html/6.0-M9/index.html @@ -162,7 +162,7 @@

    • NetLogo 6.0-M9 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier. There are no functional changes between 5.2.1 and 5.3.
    • diff --git a/src/pages/downloads/archive/html/6.0.0/index.html b/src/pages/downloads/archive/html/6.0.0/index.html index c8a8203..39392bf 100644 --- a/src/pages/downloads/archive/html/6.0.0/index.html +++ b/src/pages/downloads/archive/html/6.0.0/index.html @@ -162,7 +162,7 @@

    • NetLogo 6.0 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier. There are no functional changes between 5.2.1 and 5.3.
    • diff --git a/src/pages/downloads/archive/html/6.0.1-M1/index.html b/src/pages/downloads/archive/html/6.0.1-M1/index.html index bbb1fd6..f2da559 100644 --- a/src/pages/downloads/archive/html/6.0.1-M1/index.html +++ b/src/pages/downloads/archive/html/6.0.1-M1/index.html @@ -162,7 +162,7 @@

    • NetLogo 6.0.1-M1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier. There are no functional changes between 5.2.1 and 5.3.
    • diff --git a/src/pages/downloads/archive/html/6.0.1-RC1/index.html b/src/pages/downloads/archive/html/6.0.1-RC1/index.html index a97989c..2d46f91 100644 --- a/src/pages/downloads/archive/html/6.0.1-RC1/index.html +++ b/src/pages/downloads/archive/html/6.0.1-RC1/index.html @@ -162,7 +162,7 @@

    • NetLogo 6.0.1-RC1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier. There are no functional changes between 5.2.1 and 5.3.
    • diff --git a/src/pages/downloads/archive/html/6.0.1/index.html b/src/pages/downloads/archive/html/6.0.1/index.html index 4e15d20..59b648b 100644 --- a/src/pages/downloads/archive/html/6.0.1/index.html +++ b/src/pages/downloads/archive/html/6.0.1/index.html @@ -168,7 +168,7 @@

    • NetLogo 6.0.1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier.
    • diff --git a/src/pages/downloads/archive/html/6.0/index.html b/src/pages/downloads/archive/html/6.0/index.html index 7402168..622d4fc 100644 --- a/src/pages/downloads/archive/html/6.0/index.html +++ b/src/pages/downloads/archive/html/6.0/index.html @@ -168,7 +168,7 @@

    • NetLogo 6.0.4 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier.
    • diff --git a/src/pages/downloads/archive/html/6.0beta/index.html b/src/pages/downloads/archive/html/6.0beta/index.html index c4937d5..5c86143 100644 --- a/src/pages/downloads/archive/html/6.0beta/index.html +++ b/src/pages/downloads/archive/html/6.0beta/index.html @@ -162,7 +162,7 @@

    • NetLogo 6.0-M6 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier. There are no functional changes between 5.2.1 and 5.3.
    • diff --git a/src/pages/downloads/archive/html/6.1.0/index.html b/src/pages/downloads/archive/html/6.1.0/index.html index 780a1f9..029fedf 100644 --- a/src/pages/downloads/archive/html/6.1.0/index.html +++ b/src/pages/downloads/archive/html/6.1.0/index.html @@ -98,7 +98,7 @@

      May 17, 2019

      @@ -118,7 +118,7 @@

      Your donations (tax deductible) will help us continue to maintain and improve it.

      - Donate
      diff --git a/src/pages/downloads/archive/html/6.1/index.html b/src/pages/downloads/archive/html/6.1/index.html index 8d335ed..e744740 100644 --- a/src/pages/downloads/archive/html/6.1/index.html +++ b/src/pages/downloads/archive/html/6.1/index.html @@ -170,7 +170,7 @@

    • NetLogo 6.1.1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier.
    • diff --git a/src/pages/downloads/archive/html/6.2.0/index.html b/src/pages/downloads/archive/html/6.2.0/index.html index a677058..da242fd 100644 --- a/src/pages/downloads/archive/html/6.2.0/index.html +++ b/src/pages/downloads/archive/html/6.2.0/index.html @@ -118,7 +118,7 @@

      Your donations (tax deductible) will help us continue to maintain and improve it.

      - Donate
      diff --git a/src/pages/downloads/archive/html/6.2/index.html b/src/pages/downloads/archive/html/6.2/index.html index 7042caa..1e12dce 100644 --- a/src/pages/downloads/archive/html/6.2/index.html +++ b/src/pages/downloads/archive/html/6.2/index.html @@ -170,7 +170,7 @@

    • NetLogo 6.2.2 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier.
    • diff --git a/src/pages/downloads/archive/html/6.3.0/index.html b/src/pages/downloads/archive/html/6.3.0/index.html index a954b3a..c240eaa 100644 --- a/src/pages/downloads/archive/html/6.3.0/index.html +++ b/src/pages/downloads/archive/html/6.3.0/index.html @@ -118,7 +118,7 @@

      Your donations (tax deductible) will help us continue to maintain and improve it.

      - Donate
      diff --git a/src/pages/downloads/archive/html/6.3/index.html b/src/pages/downloads/archive/html/6.3/index.html index b63846b..f655d8d 100644 --- a/src/pages/downloads/archive/html/6.3/index.html +++ b/src/pages/downloads/archive/html/6.3/index.html @@ -170,7 +170,7 @@

    • NetLogo 6.3.0 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier.
    • diff --git a/src/pages/downloads/archive/html/6.4.0-beta1/index.html b/src/pages/downloads/archive/html/6.4.0-beta1/index.html index 2a31e68..36389bc 100644 --- a/src/pages/downloads/archive/html/6.4.0-beta1/index.html +++ b/src/pages/downloads/archive/html/6.4.0-beta1/index.html @@ -118,7 +118,7 @@

      Your donations (tax deductible) will help us continue to maintain and improve it.

      - Donate
      diff --git a/src/pages/downloads/archive/html/6.4.0/index.html b/src/pages/downloads/archive/html/6.4.0/index.html index 11a8181..3b54725 100644 --- a/src/pages/downloads/archive/html/6.4.0/index.html +++ b/src/pages/downloads/archive/html/6.4.0/index.html @@ -118,7 +118,7 @@

      Your donations (tax deductible) will help us continue to maintain and improve it.

      - Donate
      diff --git a/src/pages/downloads/archive/html/6.4/index.html b/src/pages/downloads/archive/html/6.4/index.html index 7353321..4730229 100644 --- a/src/pages/downloads/archive/html/6.4/index.html +++ b/src/pages/downloads/archive/html/6.4/index.html @@ -170,7 +170,7 @@

    • NetLogo 6.4.0 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier.
    • diff --git a/src/pages/downloads/archive/html/7.0.0-beta1/index.html b/src/pages/downloads/archive/html/7.0.0-beta1/index.html index bd264cc..d93003a 100644 --- a/src/pages/downloads/archive/html/7.0.0-beta1/index.html +++ b/src/pages/downloads/archive/html/7.0.0-beta1/index.html @@ -189,7 +189,7 @@

    • NetLogo 7.0.0-beta1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier.
    • diff --git a/src/pages/downloads/archive/html/7.0.0-beta2/index.html b/src/pages/downloads/archive/html/7.0.0-beta2/index.html index cd8b4bd..052b595 100644 --- a/src/pages/downloads/archive/html/7.0.0-beta2/index.html +++ b/src/pages/downloads/archive/html/7.0.0-beta2/index.html @@ -189,7 +189,7 @@

    • NetLogo 7.0.0-beta2 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier.
    • diff --git a/src/pages/downloads/archive/html/7.0.0/index.html b/src/pages/downloads/archive/html/7.0.0/index.html index 648eb40..849c1ac 100644 --- a/src/pages/downloads/archive/html/7.0.0/index.html +++ b/src/pages/downloads/archive/html/7.0.0/index.html @@ -189,7 +189,7 @@

    • NetLogo 7.0.0 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please consider - NetLogo 5.2.1 + NetLogo 5.2.1 or earlier.
    • - Download + Download (208 MB)