Skip to content

Commit

Permalink
Muledump v9.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jakcodex committed Feb 3, 2018
1 parent 942fd91 commit 11fc1a5
Show file tree
Hide file tree
Showing 20 changed files with 1,291 additions and 1,052 deletions.
11 changes: 7 additions & 4 deletions CHANGELOG.md
@@ -1,4 +1,4 @@
**2018-02-??** version 9.1.0
**2018-02-03** version 9.1.0

- Bug Fixes
* Totals not stretching with window resizing when set to automatic width (#116)
Expand All @@ -8,8 +8,10 @@
* Email address validation format simplified (#126)

- New Features
* MuleQueue v2 - In progress! (#71)
* MuleQueue resumes upon reload after being interrupted
* MuleQueue v2 - Streamlined account data management with a full user interface (#71)
- Start, stop, pause, and manage account data tasks
- Queue can be resumed uninterrupted after closing and reloading Muledump later
- View history and statistics of account requests
* Jakcodex/Muledump CORS Adapter - Chrome Extension (#122)
* Page Search for easily finding accounts on-screen (#121)

Expand All @@ -20,7 +22,8 @@
* Add OwnedSkins and Purchased Gold stats to Account Info (#112)
* Browser detection and upgrade assistant added (#110)
* Usage Analytics updates (#113)


- Rate Limited bar restyled
- Various improvements to SetupTools apis
- CORS Assistant updated
- Default rendersVersion added if not detected (#115)
Expand Down
6 changes: 3 additions & 3 deletions README.md
@@ -1,5 +1,4 @@
![Jakcodex/Muledump](https://img.shields.io/badge/jakcodex-muledump-blue.svg?style=flat-square)
[![Muledump Local](https://img.shields.io/badge/dynamic/json.svg?label=local&colorB=4286f4&prefix=v&suffix=&query=$.version&uri=https%3A%2F%2Fraw.githubusercontent.com%2Fjakcodex%2Fmuledump%2Fmaster%2Fpackage.json)](https://github.com/jakcodex/muledump/releases/)
[![Muledump Online](https://img.shields.io/badge/dynamic/json.svg?label=online&colorB=9e43f9&prefix=v&suffix=&query=$.version&uri=https%3A%2F%2Fjakcodex.github.io%2Fmuledump%2Fpackage.json)](https://jakcodex.github.io/muledump/muledump.html)
[![Muledump Preview](https://img.shields.io/badge/dynamic/json.svg?label=preview&colorB=5942f4&prefix=v&suffix=&query=$.version&uri=https%3A%2F%2Fraw.githubusercontent.com%2Fjakcodex%2Fmuledump-preview%2Fmaster%2Fpackage.json)](https://jakcodex.github.io/muledump-preview/muledump.html)

Expand All @@ -25,7 +24,7 @@ See the [Requirements](REQUIREMENTS.md) page for more information.

## Release Information

The current version is Jakcodex/Muledump v9.0.
The current version is Jakcodex/Muledump v9.1.

Muledump Online is available hosted on Github [here](https://jakcodex.github.io/muledump/muledump.html).

Expand Down Expand Up @@ -69,6 +68,7 @@ All released versions are available for download [here](https://github.com/jakco
- logins thru muledump count towards daily login calendar
- account settings include automatic reload, login-only (daily calendar only), and cache disable
- right click anywhere on a mule to access the mule menu
- active mulequeue can be resumed if muledump is closed

## Check out the [Frequently Asked Questions](https://github.com/jakcodex/muledump/wiki/Frequently-Asked-Questions) and explore the [wiki](https://github.com/jakcodex/muledump/wiki) for more information!

Expand Down Expand Up @@ -119,7 +119,7 @@ Click to read more about our [Privacy Policy](privacy-policy.md).

## Jakcodex/Muledump License

Copyright 2017 [Jakcodex](https://github.com/jakcodex)
Copyright 2018 [Jakcodex](https://github.com/jakcodex)

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

Expand Down
4 changes: 3 additions & 1 deletion THANKS.md
Expand Up @@ -12,4 +12,6 @@ Lucy

tuvior

Numerous others from the community who offered feedback.
Curlip

Numerous others from the community who offered feedback.
29 changes: 21 additions & 8 deletions docs/setuptools/dev/setuptools-object-ref.md
@@ -1,5 +1,7 @@
# SetupTools Object Reference

Last Updated: 2018-02-01

SetupTools started off large and will only get larger. This document outlines all the methods and keys found in SetupTools in an effort to make understanding it easier on future development and new devs.

For the method reference, arguments contained in brackets [...] are optional.
Expand Down Expand Up @@ -42,26 +44,32 @@ For the method reference, arguments contained in brackets [...] are optional.

These are keys which report state information about SetupTools current runtime. All values are boolean.

#### setuptools.state.assistant
Various assistant states.

#### setuptools.state.ctrlKey
Whether or not the control key is being pressed.

#### setuptools.state.error
Whether or not SetupTools has entered an error state.

#### setuptools.state.loaded
Whether or not SetupTools has successfully loaded client configuration.
#### setuptools.state.extension
Whether or not the user has been detected as having or not having the Muledump CORS Adapter.

#### setuptools.state.firsttime
Whether or not the user is detected as being a first time user.

#### setuptools.state.hosted
Whether or not the user is running local or hosted Muledump

#### setuptools.state.ctrlKey
Whether or not the control key is being pressed.
#### setuptools.state.loaded
Whether or not SetupTools has successfully loaded client configuration.

#### setuptools.state.notifier
Whether or not any notifier is running.

#### setuptools.state.assistant
Various assistant states.
#### setuptools.state.preview
Whether or not the system has detected we're in preview mode.

## <a id="serverconfigkeys" href="#"></a>Server Configuration Keys - setuptools.config

Expand Down Expand Up @@ -221,9 +229,9 @@ How many accounts to display per page during pagination.
Whether or not to alert on new versions (0=off, 1=releases, 2=all versions).

#### setuptools.data.config.animations
`[default: boolean|true]`
`[default: number|1]`

Whether or not to show full or reduced animations where applicable.
Whether or not to show full (1), reduced (0), or minimal (-1) animations where applicable.

#### setuptools.data.config.automaticBackups
`[default: boolean|true]`
Expand Down Expand Up @@ -325,6 +333,11 @@ Whether or not one-click login is enabled

Whether or not to disable Masonry page layout

#### setuptools.data.config.pagesearch
`[default: number|2]`

Whether or not to display the full Page Search bar (2), expanding bar (1), or no bar (0).

#### setuptools.data.config.preventAutoDownload
`[default: boolean|true]`

Expand Down

0 comments on commit 11fc1a5

Please sign in to comment.